转自:http://blog.csdn.net/cywosp/article/details/10730931

有些时候我们在编写代码或者阅读开源项目时经常会遇到一些陌生的宏定义,在找遍所有源代码都没发现其在哪里被定义过,这时这些宏定义很可能是系统编译器自己定义的,例如

  1. #ifdef RW_SPINLOCK_USE_X86_INTRINSIC_
  2. // A more balanced Read-Write spin lock implemented based on GCC intrinsics.
  3. namespace detail {
  4. template <size_t kBitWidth> struct RWTicketIntTrait {
  5. static_assert(kBitWidth == 32 || kBitWidth == 64,
  6. "bit width has to be either 32 or 64 ");
  7. };
  8. template <>
  9. struct RWTicketIntTrait<64> {
  10. typedef uint64_t FullInt;
  11. typedef uint32_t HalfInt;
  12. typedef uint16_t QuarterInt;
  13. #ifdef __SSE2__
  14. static __m128i make128(const uint16_t v[4]) {
  15. return _mm_set_epi16(0, 0, 0, 0, v[3], v[2], v[1], v[0]);
  16. }
  17. static inline __m128i fromInteger(uint64_t from) {
  18. return _mm_cvtsi64_si128(from);
  19. }
  20. static inline uint64_t toInteger(__m128i in) {
  21. return _mm_cvtsi128_si64(in);
  22. }
  23. static inline uint64_t addParallel(__m128i in, __m128i kDelta) {
  24. return toInteger(_mm_add_epi16(in, kDelta));
  25. }
  26. #endif
  27. };
  28. ... ...
  29. #endif // RW_SPINLOCK_USE_X86_INTRINSIC_
其中的RW_SPINLOCK_USE_X86_INTRINSIC_和__SSE2__都是由gcc自己定义的,那么我们如何查看系统定义了哪些宏呢?具体方法如下:
gcc -posix -E -dM - </dev/null

我的机器输出如下:

    1. #define __DBL_MIN_EXP__ (-1021)
    2. #define __UINT_LEAST16_MAX__ 65535
    3. #define __FLT_MIN__ 1.17549435082228750797e-38F
    4. #define __UINT_LEAST8_TYPE__ unsigned char
    5. #define __INTMAX_C(c) c ## L
    6. #define __CHAR_BIT__ 8
    7. #define __UINT8_MAX__ 255
    8. #define __WINT_MAX__ 4294967295U
    9. #define __ORDER_LITTLE_ENDIAN__ 1234
    10. #define __SIZE_MAX__ 18446744073709551615UL
    11. #define __WCHAR_MAX__ 2147483647
    12. #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1
    13. #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1
    14. #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1
    15. #define __DBL_DENORM_MIN__ ((double)4.94065645841246544177e-324L)
    16. #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1
    17. #define __FLT_EVAL_METHOD__ 0
    18. #define __unix__ 1
    19. #define __x86_64 1
    20. #define __UINT_FAST64_MAX__ 18446744073709551615UL
    21. #define __SIG_ATOMIC_TYPE__ int
    22. #define __DBL_MIN_10_EXP__ (-307)
    23. #define __FINITE_MATH_ONLY__ 0
    24. #define __GNUC_PATCHLEVEL__ 2
    25. #define __UINT_FAST8_MAX__ 255
    26. #define __DEC64_MAX_EXP__ 385
    27. #define __INT8_C(c) c
    28. #define __UINT_LEAST64_MAX__ 18446744073709551615UL
    29. #define __SHRT_MAX__ 32767
    30. #define __LDBL_MAX__ 1.18973149535723176502e+4932L
    31. #define __UINT_LEAST8_MAX__ 255
    32. #define __UINTMAX_TYPE__ long unsigned int
    33. #define __linux 1
    34. #define __DEC32_EPSILON__ 1E-6DF
    35. #define __unix 1
    36. #define __UINT32_MAX__ 4294967295U
    37. #define __LDBL_MAX_EXP__ 16384
    38. #define __WINT_MIN__ 0U
    39. #define __linux__ 1
    40. #define __SCHAR_MAX__ 127
    41. #define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1)
    42. #define __INT64_C(c) c ## L
    43. #define __DBL_DIG__ 15
    44. #define _POSIX_SOURCE 1
    45. #define __SIZEOF_INT__ 4
    46. #define __SIZEOF_POINTER__ 8
    47. #define __USER_LABEL_PREFIX__
    48. #define __STDC_HOSTED__ 1
    49. #define __LDBL_HAS_INFINITY__ 1
    50. #define __FLT_EPSILON__ 1.19209289550781250000e-7F
    51. #define __LDBL_MIN__ 3.36210314311209350626e-4932L
    52. #define __DEC32_MAX__ 9.999999E96DF
    53. #define __INT32_MAX__ 2147483647
    54. #define __SIZEOF_LONG__ 8
    55. #define __UINT16_C(c) c
    56. #define __DECIMAL_DIG__ 21
    57. #define __gnu_linux__ 1
    58. #define __LDBL_HAS_QUIET_NAN__ 1
    59. #define __GNUC__ 4
    60. #define __MMX__ 1
    61. #define __FLT_HAS_DENORM__ 1
    62. #define __SIZEOF_LONG_DOUBLE__ 16
    63. #define __BIGGEST_ALIGNMENT__ 16
    64. #define __DBL_MAX__ ((double)1.79769313486231570815e+308L)
    65. #define __INT_FAST32_MAX__ 9223372036854775807L
    66. #define __DBL_HAS_INFINITY__ 1
    67. #define __DEC32_MIN_EXP__ (-94)
    68. #define __INT_FAST16_TYPE__ long int
    69. #define __LDBL_HAS_DENORM__ 1
    70. #define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL
    71. #define __INT_LEAST32_MAX__ 2147483647
    72. #define __DEC32_MIN__ 1E-95DF
    73. #define __DBL_MAX_EXP__ 1024
    74. #define __DEC128_EPSILON__ 1E-33DL
    75. #define __SSE2_MATH__ 1
    76. #define __PTRDIFF_MAX__ 9223372036854775807L
    77. #define __amd64 1
    78. #define __LONG_LONG_MAX__ 9223372036854775807LL
    79. #define __SIZEOF_SIZE_T__ 8
    80. #define __SIZEOF_WINT_T__ 4
    81. #define __GCC_HAVE_DWARF2_CFI_ASM 1
    82. #define __GXX_ABI_VERSION 1002
    83. #define __FLT_MIN_EXP__ (-125)
    84. #define __INT_FAST64_TYPE__ long int
    85. #define __DBL_MIN__ ((double)2.22507385850720138309e-308L)
    86. #define __LP64__ 1
    87. #define __DECIMAL_BID_FORMAT__ 1
    88. #define __DEC128_MIN__ 1E-6143DL
    89. #define __REGISTER_PREFIX__
    90. #define __UINT16_MAX__ 65535
    91. #define __DBL_HAS_DENORM__ 1
    92. #define __UINT8_TYPE__ unsigned char
    93. #define __NO_INLINE__ 1
    94. #define __FLT_MANT_DIG__ 24
    95. #define __VERSION__ "4.6.2"
    96. #define __UINT64_C(c) c ## UL
    97. #define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__
    98. #define __INT32_C(c) c
    99. #define __DEC64_EPSILON__ 1E-15DD
    100. #define __ORDER_PDP_ENDIAN__ 3412
    101. #define __DEC128_MIN_EXP__ (-6142)
    102. #define __INT_FAST32_TYPE__ long int
    103. #define __UINT_LEAST16_TYPE__ short unsigned int
    104. #define unix 1
    105. #define __INT16_MAX__ 32767
    106. #define __SIZE_TYPE__ long unsigned int
    107. #define __UINT64_MAX__ 18446744073709551615UL
    108. #define __INT8_TYPE__ signed char
    109. #define __ELF__ 1
    110. #define __FLT_RADIX__ 2
    111. #define __INT_LEAST16_TYPE__ short int
    112. #define __LDBL_EPSILON__ 1.08420217248550443401e-19L
    113. #define __UINTMAX_C(c) c ## UL
    114. #define __SSE_MATH__ 1
    115. #define __k8 1
    116. #define __SIG_ATOMIC_MAX__ 2147483647
    117. #define __SIZEOF_PTRDIFF_T__ 8
    118. #define __x86_64__ 1
    119. #define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF
    120. #define __INT_FAST16_MAX__ 9223372036854775807L
    121. #define __UINT_FAST32_MAX__ 18446744073709551615UL
    122. #define __UINT_LEAST64_TYPE__ long unsigned int
    123. #define __FLT_HAS_QUIET_NAN__ 1
    124. #define __FLT_MAX_10_EXP__ 38
    125. #define __LONG_MAX__ 9223372036854775807L
    126. #define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
    127. #define __FLT_HAS_INFINITY__ 1
    128. #define __UINT_FAST16_TYPE__ long unsigned int
    129. #define __DEC64_MAX__ 9.999999999999999E384DD
    130. #define __CHAR16_TYPE__ short unsigned int
    131. #define __PRAGMA_REDEFINE_EXTNAME 1
    132. #define __INT_LEAST16_MAX__ 32767
    133. #define __DEC64_MANT_DIG__ 16
    134. #define __INT64_MAX__ 9223372036854775807L
    135. #define __UINT_LEAST32_MAX__ 4294967295U
    136. #define __INT_LEAST64_TYPE__ long int
    137. #define __INT16_TYPE__ short int
    138. #define __INT_LEAST8_TYPE__ signed char
    139. #define __DEC32_MAX_EXP__ 97
    140. #define __INT_FAST8_MAX__ 127
    141. #define __INTPTR_MAX__ 9223372036854775807L
    142. #define linux 1
    143. #define __SSE2__ 1
    144. #define __LDBL_MANT_DIG__ 64
    145. #define __DBL_HAS_QUIET_NAN__ 1
    146. #define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1)
    147. #define __k8__ 1
    148. #define __INTPTR_TYPE__ long int
    149. #define __UINT16_TYPE__ short unsigned int
    150. #define __WCHAR_TYPE__ int
    151. #define __SIZEOF_FLOAT__ 4
    152. #define __UINTPTR_MAX__ 18446744073709551615UL
    153. #define __DEC64_MIN_EXP__ (-382)
    154. #define __INT_FAST64_MAX__ 9223372036854775807L
    155. #define __FLT_DIG__ 6
    156. #define __UINT_FAST64_TYPE__ long unsigned int
    157. #define __INT_MAX__ 2147483647
    158. #define __amd64__ 1
    159. #define __INT64_TYPE__ long int
    160. #define __FLT_MAX_EXP__ 128
    161. #define __ORDER_BIG_ENDIAN__ 4321
    162. #define __DBL_MANT_DIG__ 53
    163. #define __INT_LEAST64_MAX__ 9223372036854775807L
    164. #define __DEC64_MIN__ 1E-383DD
    165. #define __WINT_TYPE__ unsigned int
    166. #define __UINT_LEAST32_TYPE__ unsigned int
    167. #define __SIZEOF_SHORT__ 2
    168. #define __SSE__ 1
    169. #define __LDBL_MIN_EXP__ (-16381)
    170. #define __INT_LEAST8_MAX__ 127
    171. #define __SIZEOF_INT128__ 16
    172. #define __LDBL_MAX_10_EXP__ 4932
    173. #define __DBL_EPSILON__ ((double)2.22044604925031308085e-16L)
    174. #define _LP64 1
    175. #define __UINT8_C(c) c
    176. #define __INT_LEAST32_TYPE__ int
    177. #define __SIZEOF_WCHAR_T__ 4
    178. #define __UINT64_TYPE__ long unsigned int
    179. #define __INT_FAST8_TYPE__ signed char
    180. #define __DBL_DECIMAL_DIG__ 17
    181. #define __DEC_EVAL_METHOD__ 2
    182. #define __UINT32_C(c) c ## U
    183. #define __INTMAX_MAX__ 9223372036854775807L
    184. #define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
    185. #define __FLT_DENORM_MIN__ 1.40129846432481707092e-45F
    186. #define __INT8_MAX__ 127
    187. #define __UINT_FAST32_TYPE__ long unsigned int
    188. #define __CHAR32_TYPE__ unsigned int
    189. #define __FLT_MAX__ 3.40282346638528859812e+38F
    190. #define __INT32_TYPE__ int
    191. #define __SIZEOF_DOUBLE__ 8
    192. #define __FLT_MIN_10_EXP__ (-37)
    193. #define __INTMAX_TYPE__ long int
    194. #define __DEC128_MAX_EXP__ 6145
    195. #define __GNUC_MINOR__ 6
    196. #define __UINTMAX_MAX__ 18446744073709551615UL
    197. #define __DEC32_MANT_DIG__ 7
    198. #define __DBL_MAX_10_EXP__ 308
    199. #define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L
    200. #define __INT16_C(c) c
    201. #define __STDC__ 1
    202. #define __PTRDIFF_TYPE__ long int
    203. #define __UINT32_TYPE__ unsigned int
    204. #define __UINTPTR_TYPE__ long unsigned int
    205. #define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
    206. #define __DEC128_MANT_DIG__ 34
    207. #define __LDBL_MIN_10_EXP__ (-4931)
    208. #define __SIZEOF_LONG_LONG__ 8
    209. #define __LDBL_DIG__ 18
    210. #define __FLT_DECIMAL_DIG__ 9
    211. #define __UINT_FAST16_MAX__ 18446744073709551615UL
    212. #define __GNUC_GNU_INLINE__ 1
    213. #define __UINT_FAST8_TYPE__ unsigned char

查看gcc的默认宏定义命令【转】的更多相关文章

  1. c++宏定义命令

    在程序开始以#开头的命令,他们是预编译命令.有三类预编译命令:宏定义命令.文件包含命令.条件编译命令:今天聊聊宏定义: 宏定义命令将一个标识符定义为一个字符串,源程序中的该标识符均以指定的字符串来代替 ...

  2. C基础:关于预处理宏定义命令

    为了程序的通用性,可以使用#define预处理宏定义命令,它的具体作用,就是方便程序段的定义和修改. 1.关于预定义替代 #define Conn(x,y) x##y#define ToChar(x) ...

  3. 查看gcc/g++默认include路径

    转自:http://gcc.gnu.org/ml/gcc-help/2007-09/msg00205.html `gcc -print-prog-name=cc1plus` -v `g++ -prin ...

  4. 获取gcc和clang的内置宏定义

    下面是对Gcc的内置宏定义的解释: https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html https://github.co ...

  5. c语言宏定义

    一. #define是C语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能理解该命令的本质,总是在此处产生一些困惑,在编程时 ...

  6. C语言宏定义#define用法

    #define是C语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能 理解该命令的本质,总是在此处产生一些困惑,在编程时误用 ...

  7. 宏定义中的##操作符和... and _ _VA_ARGS_ _

    1.Preprocessor Glue: The ## Operator 预处理连接符:##操作符 Like the # operator, the ## operator can be used i ...

  8. C++宏定义详解

    一.#define的基本用法     #define是C语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能 理解该命令的本质 ...

  9. [转]C++宏定义详解

    一.#define的基本用法     #define是C语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能 理解该命令的本质 ...

随机推荐

  1. Linux服务器中安装python包管理工具pip

    pip是python的包管理工具,python的强大之处除了在于语法的简练,还有就是对众多的库支持了. 1.下载pip包管理工具 链接地址:https://pypi.python.org/pypi/p ...

  2. 初次使用http打不开页面,使用https打开过后使用http协议又能正常访问

    http协议为什么打不开https站点 在访问一个https的站点,比如 https://www.aaa.com,首次访问时,访问的地址是 http://www.aaa.com,(不加S),出现的是网 ...

  3. Android Studio 使用VCS版本控制

    1.SVN的配置: 如果项目使用的是SVN配置,那么除了乌龟SVN GUI工具外,你还得下载Subversion, 因为AS要用其中的xx.exe命令行执行程序, 下载地址:https://www.v ...

  4. bzoj 4199 && NOI 2015 品酒大会

    一年一度的“幻影阁夏日品酒大会”隆重开幕了.大会包含品尝和趣味挑战两个环节,分别向优胜者颁发“首席品酒家”和“首席猎手”两个奖项,吸引了众多品酒师参加. 在大会的晚餐上,调酒师 Rainbow 调制了 ...

  5. python之旅:函数基础

    一.引子 1.函数是什么 用函数与不用函数 #1.代码的组织结构不清晰,可读性差 #2.遇到重复的功能只能重复编写实现代码,代码冗余 #3.功能需要扩展时,需要找出所有实现该功能的地方修改之,无法统一 ...

  6. DBMS_RANDOM 用法

    oracle中用于生成随机数的包:DBMS_RANDOM,这个包里面包含了很多方法,以下列出几个常用的方法 1.DBMS_RANDOM.RANDOM方法: FUNCTION random RETURN ...

  7. GC的时机

    说到JVM,GC(垃圾回收)是非常重要的机制. 那么首先的问题是: GC在什么时候会发生? GC的触发包括两种情况:1.程序调用System.gc()的时候.2.系统自身决定是否需要GC. 系统进行G ...

  8. bzoj千题计划170:bzoj1968: [Ahoi2005]COMMON 约数研究

    http://www.lydsy.com/JudgeOnline/problem.php?id=1968 换个角度 一个数可以成为几个数的约数 #include<cstdio> #incl ...

  9. PHP7 学习笔记(一)Ubuntu 16.04 编译安装Nginx-1.10.3、 PHP7.0.9、Redis3.0 扩展、Phalcon3.1 扩展、Swoole1.9.8 扩展、ssh2扩展(全程编译安装)

    ==================== PHP 7.0 编译安装================== wget http://cn2.php.net/get/php-7.0.9.tar.bz2/fr ...

  10. sparse representation 与sparse coding 的区别的观点

    @G_Auss: 一直觉得以稀疏为目标的无监督学习没有道理.稀疏表示是生物神经系统的一个特性,但它究竟只是神经系统完成任务的副产物,还是一个优化目标,没有相关理论,这里有推理漏洞.实际上,稀疏目标只能 ...