2016-03-25 20:32:54 +03:00
|
|
|
/*++
|
|
|
|
|
|
|
|
Copyright (c) 2016 Pete Batard <pete@akeo.ie>
|
|
|
|
|
|
|
|
Module Name:
|
|
|
|
|
|
|
|
eficompiler.h
|
|
|
|
|
|
|
|
Abstract:
|
|
|
|
|
|
|
|
Compiler specific adjustments
|
|
|
|
|
|
|
|
--*/
|
|
|
|
|
|
|
|
#ifdef _MSC_EXTENSIONS
|
|
|
|
#define EFI_UNUSED
|
|
|
|
#else
|
|
|
|
#define EFI_UNUSED __attribute__((__unused__))
|
|
|
|
#endif
|
|
|
|
|
2024-03-22 17:23:15 +03:00
|
|
|
#ifdef _MSC_EXTENSIONS
|
|
|
|
#define EFI_NO_TAIL_CALL
|
|
|
|
#else
|
|
|
|
#ifdef __clang__
|
|
|
|
#define EFI_NO_TAIL_CALL __attribute__((disable_tail_calls))
|
|
|
|
#else
|
|
|
|
#define EFI_NO_TAIL_CALL __attribute__((optimize("no-optimize-sibling-calls")))
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-03-25 20:32:54 +03:00
|
|
|
#ifdef _MSC_EXTENSIONS
|
|
|
|
#define ALIGN(x) __declspec(align(x))
|
|
|
|
#else
|
|
|
|
#define ALIGN(x) __attribute__((__aligned__(x)))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Also add a catch-all on __attribute__() for MS compilers */
|
|
|
|
#ifdef _MSC_EXTENSIONS
|
|
|
|
#define __attribute__(x)
|
|
|
|
#endif
|