转自: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. 【Java并发编程】之十:使用wait/notify/notifyAll实现线程间通信的几点重要说明

    在Java中,可以通过配合调用Object对象的wait()方法和notify()方法或notifyAll()方法来实现线程间的通信.在线程中调用wait()方法,将阻塞等待其他线程的通知(其他线程调 ...

  2. OpenSSL 自签名证书

    通过下面9步,可以轻松生成自签名证书. 1.安装.部署OpenSSL 略 2.创建文件夹(下面通常root文件夹).用来放即将创建的各种证书等.如:I:\Key10.167.219.64 3.在roo ...

  3. 深入理解HashMap(原理,查找,扩容)

    面试的时候闻到了Hashmap的扩容机制,之前只看到了Hasmap的实现机制,补一下基础知识,讲的非常好 原文链接: http://www.iteye.com/topic/539465 Hashmap ...

  4. Girls' research HDU - 3294(马拉车水题)

    题意: 求最长回文串 长度要大于等于2  且输出起点和终点  输出回文串字符 这个字符还是要以给出的字符为起点a 输出 解析: 分析一下s_new串就好了 #include <iostream& ...

  5. Powerful array CodeForces - 86D(莫队)

    给你n个数,m次询问,Ks为区间内s的数目,求区间[L,R]之间所有Ks*Ks*s的和.1<=n,m<=200000.1<=s<=10^6 #include <iostr ...

  6. BZOJ 1180: [CROATIAN2009]OTOCI

    1180: [CROATIAN2009]OTOCI Time Limit: 50 Sec  Memory Limit: 162 MBSubmit: 989  Solved: 611[Submit][S ...

  7. 我的shell脚本

    问题:在ip.lt文件中有600个IP,有3个文档模版,三个文档的名称结构都是“ip+一系列字符串”,要求:1.将600个IP分成3分,以三个模版为基础创建600个文档,名字结构与模版相同:2修改60 ...

  8. Libssh认证绕过CVE-2018-10933漏洞复现

    0x00 漏洞描述 libssh 0.6 及以上的版本,在服务端的代码实现中存在身份认证绕过漏洞.在向服务端认证的流程中,攻击者通过将 SSH2_MSG_USERAUTH_REQUEST 消息替换为  ...

  9. IO编程(1)-文件读写

    文件读写 读写文件是最常见的IO操作.Python内置了读写文件的函数,用法和C是兼容的. 读写文件前,我们先必须了解一下,在磁盘上读写文件的功能都是由操作系统提供的,现代操作系统不允许普通的程序直接 ...

  10. laravel 命令行输出进度条

    有时候我们想在命令行执行一些耗时的命令,我们可以利用 symfony 提供的进度条相关的类,来输出一个进度条,显示当前的处理进度. 参考:http://symfony.com/doc/current/ ...