C++预定义的宏

The common predefined macros are GNU C extensions. They are availablewith the same meanings regardless of the machine or operating system onwhich you are using GNU C or GNU Fortran. Their names all start withdouble underscores.
__COUNTER__
This macro expands to sequential integral values starting from 0. Inconjunction with the ## operator, this provides a convenient means togenerate unique identifiers. Care must be taken to ensure that __COUNTER__ is not expanded prior to inclusion of precompiled headerswhich use it. Otherwise, the precompiled headers will not be used.
__GFORTRAN__
The GNU Fortran compiler defines this.
__GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__
These macros are defined by all GNU compilers that use the Cpreprocessor: C, C++, Objective-C and Fortran. Their values are the majorversion, minor version, and patch level of the compiler, as integerconstants. For example, GCC 3.2.1 will define __GNUC__ to 3, __GNUC_MINOR__ to 2, and __GNUC_PATCHLEVEL__ to 1. Thesemacros are also defined if you invoke the preprocessor directly.

__GNUC_PATCHLEVEL__ is new to GCC 3.0; it is also present in thewidely-used development snapshots leading up to 3.0 (which identifythemselves as GCC 2.96 or 2.97, depending on which snapshot you have).

If all you need to know is whether or not your program is being compiledby GCC, or a non-GCC compiler that claims to accept the GNU C dialects,you can simply test __GNUC__. If you need to write codewhich depends on a specific version, you must be more careful. Eachtime the minor version is increased, the patch level is reset to zero;each time the major version is increased (which happens rarely), theminor version and patch level are reset. If you wish to use thepredefined macros directly in the conditional, you will need to write itlike this:

          /* Test for GCC > 3.2.0 */
          #if __GNUC__ > 3 || \
              (__GNUC__ == 3 && (__GNUC_MINOR__ > 2 || \
                                 (__GNUC_MINOR__ == 2 && \
                                  __GNUC_PATCHLEVEL__ > 0))

Another approach is to use the predefined macros tocalculate a single number, then compare that against a threshold:

          #define GCC_VERSION (__GNUC__ * 10000 \
                               + __GNUC_MINOR__ * 100 \
                               + __GNUC_PATCHLEVEL__)
          ...
          /* Test for GCC > 3.2.0 */
          #if GCC_VERSION > 30200

Many people find this form easier to understand.

__GNUG__
The GNU C++ compiler defines this. Testing it is equivalent totesting (__GNUC__ && __cplusplus).
__STRICT_ANSI__
GCC defines this macro if and only if the -ansi switch, or a -std switch specifying strict conformance to some version of ISO Cor ISO C++, was specified when GCC was invoked. It is defined to ‘ 1’. This macro exists primarily to direct GNU libc's header files torestrict their definitions to the minimal set found in the 1989 Cstandard.
__BASE_FILE__
This macro expands to the name of the main input file, in the formof a C string constant. This is the source file that was specifiedon the command line of the preprocessor or C compiler.
__INCLUDE_LEVEL__
This macro expands to a decimal integer constant that represents thedepth of nesting in include files. The value of this macro isincremented on every ‘ #include’ directive and decremented at theend of every included file. It starts out at 0, its value within thebase file specified on the command line.
__ELF__
This macro is defined if the target uses the ELF object format.
__VERSION__
This macro expands to a string constant which describes the version ofthe compiler in use. You should not rely on its contents having anyparticular form, but it can be counted on to contain at least therelease number.
__OPTIMIZE__ __OPTIMIZE_SIZE__ __NO_INLINE__
These macros describe the compilation mode. __OPTIMIZE__ isdefined in all optimizing compilations. __OPTIMIZE_SIZE__ isdefined if the compiler is optimizing for size, not speed. __NO_INLINE__ is defined if no functions will be inlined intotheir callers (when not optimizing, or when inlining has beenspecifically disabled by -fno-inline).

These macros cause certain GNU header files to provide optimizeddefinitions, using macros or inline functions, of system libraryfunctions. You should not use these macros in any way unless you makesure that programs will execute with the same effect whether or not theyare defined. If they are defined, their value is 1.

__GNUC_GNU_INLINE__
GCC defines this macro if functions declared inline will behandled in GCC's traditional gnu90 mode. Object files will containexternally visible definitions of all functions declared inlinewithout extern or static. They will not contain anydefinitions of any functions declared extern inline.
__GNUC_STDC_INLINE__
GCC defines this macro if functions declared inline will behandled according to the ISO C99 standard. Object files will containexternally visible definitions of all functions declared externinline. They will not contain definitions of any functions declared inline without extern.

If this macro is defined, GCC supports the gnu_inline functionattribute as a way to always get the gnu90 behavior. Support forthis and __GNUC_GNU_INLINE__ was added in GCC 4.1.3. Ifneither macro is defined, an older version of GCC is being used:inline functions will be compiled in gnu90 mode, and thegnu_inline function attribute will not be recognized.

__CHAR_UNSIGNED__
GCC defines this macro if and only if the data type char isunsigned on the target machine. It exists to cause the standard headerfile limits.h to work correctly. You should not use this macroyourself; instead, refer to the standard macros defined in limits.h.
__WCHAR_UNSIGNED__
Like __CHAR_UNSIGNED__, this macro is defined if and only if thedata type wchar_t is unsigned and the front-end is in C++ mode.
__REGISTER_PREFIX__
This macro expands to a single token (not a string constant) which isthe prefix applied to CPU register names in assembly language for thistarget. You can use it to write assembly that is usable in multipleenvironments. For example, in the m68k-aout environment itexpands to nothing, but in the m68k-coff environment it expandsto a single ‘ %’.
__USER_LABEL_PREFIX__
This macro expands to a single token which is the prefix applied touser labels (symbols visible to C code) in assembly. For example, inthe m68k-aout environment it expands to an ‘ _’, but in the m68k-coff environment it expands to nothing.

This macro will have the correct definition even if-f(no-)underscores is in use, but it will not be correct iftarget-specific options that adjust this prefix are used (e.g. theOSF/rose -mno-underscores option).

__SIZE_TYPE__ __PTRDIFF_TYPE__ __WCHAR_TYPE__ __WINT_TYPE__ __INTMAX_TYPE__ __UINTMAX_TYPE__ __SIG_ATOMIC_TYPE__ __INT8_TYPE__ __INT16_TYPE__ __INT32_TYPE__ __INT64_TYPE__ __UINT8_TYPE__ __UINT16_TYPE__ __UINT32_TYPE__ __UINT64_TYPE__ __INT_LEAST8_TYPE__ __INT_LEAST16_TYPE__ __INT_LEAST32_TYPE__ __INT_LEAST64_TYPE__ __UINT_LEAST8_TYPE__ __UINT_LEAST16_TYPE__ __UINT_LEAST32_TYPE__ __UINT_LEAST64_TYPE__ __INT_FAST8_TYPE__ __INT_FAST16_TYPE__ __INT_FAST32_TYPE__ __INT_FAST64_TYPE__ __UINT_FAST8_TYPE__ __UINT_FAST16_TYPE__ __UINT_FAST32_TYPE__ __UINT_FAST64_TYPE__ __INTPTR_TYPE__ __UINTPTR_TYPE__
These macros are defined to the correct underlying types for the size_t, ptrdiff_t, wchar_t, wint_t, intmax_t, uintmax_t, sig_atomic_t, int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t, int_least8_t, int_least16_t, int_least32_t, int_least64_t, uint_least8_t, uint_least16_t, uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t, int_fast32_t, int_fast64_t, uint_fast8_t, uint_fast16_t, uint_fast32_t, uint_fast64_t, intptr_t, and uintptr_t typedefs,respectively. They exist to make the standard header files stddef.h, stdint.h, and wchar.h work correctly. You should not use these macros directly; instead, include theappropriate headers and use the typedefs. Some of these macros maynot be defined on particular systems if GCC does not provide a stdint.h header on those systems.
__CHAR_BIT__
Defined to the number of bits used in the representation of the char data type. It exists to make the standard header givennumerical limits work correctly. You should not usethis macro directly; instead, include the appropriate headers.
__SCHAR_MAX__ __WCHAR_MAX__ __SHRT_MAX__ __INT_MAX__ __LONG_MAX__ __LONG_LONG_MAX__ __WINT_MAX__ __SIZE_MAX__ __PTRDIFF_MAX__ __INTMAX_MAX__ __UINTMAX_MAX__ __SIG_ATOMIC_MAX__ __INT8_MAX__ __INT16_MAX__ __INT32_MAX__ __INT64_MAX__ __UINT8_MAX__ __UINT16_MAX__ __UINT32_MAX__ __UINT64_MAX__ __INT_LEAST8_MAX__ __INT_LEAST16_MAX__ __INT_LEAST32_MAX__ __INT_LEAST64_MAX__ __UINT_LEAST8_MAX__ __UINT_LEAST16_MAX__ __UINT_LEAST32_MAX__ __UINT_LEAST64_MAX__ __INT_FAST8_MAX__ __INT_FAST16_MAX__ __INT_FAST32_MAX__ __INT_FAST64_MAX__ __UINT_FAST8_MAX__ __UINT_FAST16_MAX__ __UINT_FAST32_MAX__ __UINT_FAST64_MAX__ __INTPTR_MAX__ __UINTPTR_MAX__ __WCHAR_MIN__ __WINT_MIN__ __SIG_ATOMIC_MIN__
Defined to the maximum value of the signed char, wchar_t, signed short, signed int, signed long, signed long long, wint_t, size_t, ptrdiff_t, intmax_t, uintmax_t, sig_atomic_t, int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t, int_least8_t, int_least16_t, int_least32_t, int_least64_t, uint_least8_t, uint_least16_t, uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t, int_fast32_t, int_fast64_t, uint_fast8_t, uint_fast16_t, uint_fast32_t, uint_fast64_t, intptr_t, and uintptr_t types andto the minimum value of the wchar_t, wint_t, and sig_atomic_t types respectively. They exist to make thestandard header given numerical limits work correctly. You should notuse these macros directly; instead, include the appropriate headers. Some of these macros may not be defined on particular systems if GCCdoes not provide a stdint.h header on those systems.
__INT8_C __INT16_C __INT32_C __INT64_C __UINT8_C __UINT16_C __UINT32_C __UINT64_C __INTMAX_C __UINTMAX_C
Defined to implementations of the standard stdint.h macros withthe same names without the leading __. They exist the make theimplementation of that header work correctly. You should not usethese macros directly; instead, include the appropriate headers. Someof these macros may not be defined on particular systems if GCC doesnot provide a stdint.h header on those systems.
__SIZEOF_INT__ __SIZEOF_LONG__ __SIZEOF_LONG_LONG__ __SIZEOF_SHORT__ __SIZEOF_POINTER__ __SIZEOF_FLOAT__ __SIZEOF_DOUBLE__ __SIZEOF_LONG_DOUBLE__ __SIZEOF_SIZE_T__ __SIZEOF_WCHAR_T__ __SIZEOF_WINT_T__ __SIZEOF_PTRDIFF_T__
Defined to the number of bytes of the C standard data types: int, long, long long, short, void *, float, double, long double, size_t, wchar_t, wint_tand ptrdiff_t.
__BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ __ORDER_BIG_ENDIAN__ __ORDER_PDP_ENDIAN__
__BYTE_ORDER__ is defined to one of the values __ORDER_LITTLE_ENDIAN__, __ORDER_BIG_ENDIAN__, or __ORDER_PDP_ENDIAN__ to reflect the layout of multi-byte andmulti-word quantities in memory. If __BYTE_ORDER__ is equal to __ORDER_LITTLE_ENDIAN__ or __ORDER_BIG_ENDIAN__, thenmulti-byte and multi-word quantities are laid out identically: thebyte (word) at the lowest address is the least significant or mostsignificant byte (word) of the quantity, respectively. If __BYTE_ORDER__ is equal to __ORDER_PDP_ENDIAN__, thenbytes in 16-bit words are laid out in a little-endian fashion, whereasthe 16-bit subwords of a 32-bit quantity are laid out in big-endianfashion.

You should use these macros for testing like this:

          /* Test for a little-endian machine */
          #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__

__FLOAT_WORD_ORDER__
__FLOAT_WORD_ORDER__ is defined to one of the values __ORDER_LITTLE_ENDIAN__ or __ORDER_BIG_ENDIAN__ to reflectthe layout of the words of multi-word floating-point quantities.
__DEPRECATED
This macro is defined, with value 1, when compiling a C++ source filewith warnings about deprecated constructs enabled. These warnings areenabled by default, but can be disabled with -Wno-deprecated.
__EXCEPTIONS
This macro is defined, with value 1, when compiling a C++ source filewith exceptions enabled. If -fno-exceptions is used whencompiling the file, then this macro is not defined.
__GXX_RTTI
This macro is defined, with value 1, when compiling a C++ source filewith runtime type identification enabled. If -fno-rtti isused when compiling the file, then this macro is not defined.
__USING_SJLJ_EXCEPTIONS__
This macro is defined, with value 1, if the compiler uses the oldmechanism based on setjmp and longjmp for exceptionhandling.
__GXX_EXPERIMENTAL_CXX0X__
This macro is defined when compiling a C++ source file with the option -std=c++0x or -std=gnu++0x. It indicates that somefeatures likely to be included in C++0x are available. Note that thesefeatures are experimental, and may change or be removed in futureversions of GCC.
__GXX_WEAK__
This macro is defined when compiling a C++ source file. It has thevalue 1 if the compiler will use weak symbols, COMDAT sections, orother similar techniques to collapse symbols with “vague linkage”that are defined in multiple translation units. If the compiler willnot collapse such symbols, this macro is defined with value 0. Ingeneral, user code should not need to make use of this macro; thepurpose of this macro is to ease implementation of the C++ runtimelibrary provided with G++.
__NEXT_RUNTIME__
This macro is defined, with value 1, if (and only if) the NeXT runtime(as in -fnext-runtime) is in use for Objective-C. If the GNUruntime is used, this macro is not defined, so that you can use thismacro to determine which runtime (NeXT or GNU) is being used.
__LP64__ _LP64
These macros are defined, with value 1, if (and only if) the compilationis for a target where long int and pointer both use 64-bits and int uses 32-bit.
__SSP__
This macro is defined, with value 1, when -fstack-protector is inuse.
__SSP_ALL__
This macro is defined, with value 2, when -fstack-protector-all isin use.
__SSP_STRONG__
This macro is defined, with value 3, when -fstack-protector-strong isin use.
__SANITIZE_ADDRESS__
This macro is defined, with value 1, when -fsanitize=addressor -fsanitize=kernel-address are in use.
__TIMESTAMP__
This macro expands to a string constant that describes the date and timeof the last modification of the current source file. The string constantcontains abbreviated day of the week, month, day of the month, time inhh:mm:ss form, year and looks like "Sun Sep 16 01:03:52 1973". If the day of the month is less than 10, it is padded with a space on the left.

If GCC cannot determine the current date, it will emit a warning message(once per compilation) and __TIMESTAMP__ will expand to"??? ??? ?? ??:??:?? ????".

__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16
These macros are defined when the target processor supports atomic compareand swap operations on operands 1, 2, 4, 8 or 16 bytes in length, respectively.
__GCC_HAVE_DWARF2_CFI_ASM
This macro is defined when the compiler is emitting Dwarf2 CFI directivesto the assembler. When this is defined, it is possible to emit those samedirectives in inline assembly.
__FP_FAST_FMA __FP_FAST_FMAF __FP_FAST_FMAL
These macros are defined with value 1 if the backend supports the fma, fmaf, and fmal builtin functions, so thatthe include file math.h can define the macros FP_FAST_FMA, FP_FAST_FMAF, and FP_FAST_FMALfor compatibility with the 1999 C standard.
__GCC_IEC_559
This macro is defined to indicate the intended level of support forIEEE 754 (IEC 60559) floating-point arithmetic. It expands to anonnegative integer value. If 0, it indicates that the combination ofthe compiler configuration and the command-line options is notintended to support IEEE 754 arithmetic for float and double as defined in C99 and C11 Annex F (for example, that thestandard rounding modes and exceptions are not supported, or thatoptimizations are enabled that conflict with IEEE 754 semantics). If1, it indicates that IEEE 754 arithmetic is intended to be supported;this does not mean that all relevant language features are supportedby GCC. If 2 or more, it additionally indicates support for IEEE754-2008 (in particular, that the binary encodings for quiet andsignaling NaNs are as specified in IEEE 754-2008).

This macro does not indicate the default state of command-line optionsthat control optimizations that C99 and C11 permit to be controlled bystandard pragmas, where those standards do not require a particulardefault state. It does not indicate whether optimizations respectsignaling NaN semantics (the macro for that is__SUPPORT_SNAN__). It does not indicate support for decimalfloating point or the IEEE 754 binary16 and binary128 types.

__GCC_IEC_559_COMPLEX
This macro is defined to indicate the intended level of support forIEEE 754 (IEC 60559) floating-point arithmetic for complex numbers, asdefined in C99 and C11 Annex G. It expands to a nonnegative integervalue. If 0, it indicates that the combination of the compilerconfiguration and the command-line options is not intended to supportAnnex G requirements (for example, because -fcx-limited-rangewas used). If 1 or more, it indicates that it is intended to supportthose requirements; this does not mean that all relevant languagefeatures are supported by GCC.
__NO_MATH_ERRNO__
This macro is defined if -fno-math-errno is used, or enabledby another option such as -ffast-math or by default.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值