查看gcc的默认宏定义命令【转】
转自:http://blog.csdn.net/cywosp/article/details/10730931
有些时候我们在编写代码或者阅读开源项目时经常会遇到一些陌生的宏定义,在找遍所有源代码都没发现其在哪里被定义过,这时这些宏定义很可能是系统编译器自己定义的,例如
- #ifdef RW_SPINLOCK_USE_X86_INTRINSIC_
- // A more balanced Read-Write spin lock implemented based on GCC intrinsics.
- namespace detail {
- template <size_t kBitWidth> struct RWTicketIntTrait {
- static_assert(kBitWidth == 32 || kBitWidth == 64,
- "bit width has to be either 32 or 64 ");
- };
- template <>
- struct RWTicketIntTrait<64> {
- typedef uint64_t FullInt;
- typedef uint32_t HalfInt;
- typedef uint16_t QuarterInt;
- #ifdef __SSE2__
- static __m128i make128(const uint16_t v[4]) {
- return _mm_set_epi16(0, 0, 0, 0, v[3], v[2], v[1], v[0]);
- }
- static inline __m128i fromInteger(uint64_t from) {
- return _mm_cvtsi64_si128(from);
- }
- static inline uint64_t toInteger(__m128i in) {
- return _mm_cvtsi128_si64(in);
- }
- static inline uint64_t addParallel(__m128i in, __m128i kDelta) {
- return toInteger(_mm_add_epi16(in, kDelta));
- }
- #endif
- };
- ... ...
- #endif // RW_SPINLOCK_USE_X86_INTRINSIC_
我的机器输出如下:
- #define __DBL_MIN_EXP__ (-1021)
- #define __UINT_LEAST16_MAX__ 65535
- #define __FLT_MIN__ 1.17549435082228750797e-38F
- #define __UINT_LEAST8_TYPE__ unsigned char
- #define __INTMAX_C(c) c ## L
- #define __CHAR_BIT__ 8
- #define __UINT8_MAX__ 255
- #define __WINT_MAX__ 4294967295U
- #define __ORDER_LITTLE_ENDIAN__ 1234
- #define __SIZE_MAX__ 18446744073709551615UL
- #define __WCHAR_MAX__ 2147483647
- #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1
- #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1
- #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1
- #define __DBL_DENORM_MIN__ ((double)4.94065645841246544177e-324L)
- #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1
- #define __FLT_EVAL_METHOD__ 0
- #define __unix__ 1
- #define __x86_64 1
- #define __UINT_FAST64_MAX__ 18446744073709551615UL
- #define __SIG_ATOMIC_TYPE__ int
- #define __DBL_MIN_10_EXP__ (-307)
- #define __FINITE_MATH_ONLY__ 0
- #define __GNUC_PATCHLEVEL__ 2
- #define __UINT_FAST8_MAX__ 255
- #define __DEC64_MAX_EXP__ 385
- #define __INT8_C(c) c
- #define __UINT_LEAST64_MAX__ 18446744073709551615UL
- #define __SHRT_MAX__ 32767
- #define __LDBL_MAX__ 1.18973149535723176502e+4932L
- #define __UINT_LEAST8_MAX__ 255
- #define __UINTMAX_TYPE__ long unsigned int
- #define __linux 1
- #define __DEC32_EPSILON__ 1E-6DF
- #define __unix 1
- #define __UINT32_MAX__ 4294967295U
- #define __LDBL_MAX_EXP__ 16384
- #define __WINT_MIN__ 0U
- #define __linux__ 1
- #define __SCHAR_MAX__ 127
- #define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1)
- #define __INT64_C(c) c ## L
- #define __DBL_DIG__ 15
- #define _POSIX_SOURCE 1
- #define __SIZEOF_INT__ 4
- #define __SIZEOF_POINTER__ 8
- #define __USER_LABEL_PREFIX__
- #define __STDC_HOSTED__ 1
- #define __LDBL_HAS_INFINITY__ 1
- #define __FLT_EPSILON__ 1.19209289550781250000e-7F
- #define __LDBL_MIN__ 3.36210314311209350626e-4932L
- #define __DEC32_MAX__ 9.999999E96DF
- #define __INT32_MAX__ 2147483647
- #define __SIZEOF_LONG__ 8
- #define __UINT16_C(c) c
- #define __DECIMAL_DIG__ 21
- #define __gnu_linux__ 1
- #define __LDBL_HAS_QUIET_NAN__ 1
- #define __GNUC__ 4
- #define __MMX__ 1
- #define __FLT_HAS_DENORM__ 1
- #define __SIZEOF_LONG_DOUBLE__ 16
- #define __BIGGEST_ALIGNMENT__ 16
- #define __DBL_MAX__ ((double)1.79769313486231570815e+308L)
- #define __INT_FAST32_MAX__ 9223372036854775807L
- #define __DBL_HAS_INFINITY__ 1
- #define __DEC32_MIN_EXP__ (-94)
- #define __INT_FAST16_TYPE__ long int
- #define __LDBL_HAS_DENORM__ 1
- #define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL
- #define __INT_LEAST32_MAX__ 2147483647
- #define __DEC32_MIN__ 1E-95DF
- #define __DBL_MAX_EXP__ 1024
- #define __DEC128_EPSILON__ 1E-33DL
- #define __SSE2_MATH__ 1
- #define __PTRDIFF_MAX__ 9223372036854775807L
- #define __amd64 1
- #define __LONG_LONG_MAX__ 9223372036854775807LL
- #define __SIZEOF_SIZE_T__ 8
- #define __SIZEOF_WINT_T__ 4
- #define __GCC_HAVE_DWARF2_CFI_ASM 1
- #define __GXX_ABI_VERSION 1002
- #define __FLT_MIN_EXP__ (-125)
- #define __INT_FAST64_TYPE__ long int
- #define __DBL_MIN__ ((double)2.22507385850720138309e-308L)
- #define __LP64__ 1
- #define __DECIMAL_BID_FORMAT__ 1
- #define __DEC128_MIN__ 1E-6143DL
- #define __REGISTER_PREFIX__
- #define __UINT16_MAX__ 65535
- #define __DBL_HAS_DENORM__ 1
- #define __UINT8_TYPE__ unsigned char
- #define __NO_INLINE__ 1
- #define __FLT_MANT_DIG__ 24
- #define __VERSION__ "4.6.2"
- #define __UINT64_C(c) c ## UL
- #define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__
- #define __INT32_C(c) c
- #define __DEC64_EPSILON__ 1E-15DD
- #define __ORDER_PDP_ENDIAN__ 3412
- #define __DEC128_MIN_EXP__ (-6142)
- #define __INT_FAST32_TYPE__ long int
- #define __UINT_LEAST16_TYPE__ short unsigned int
- #define unix 1
- #define __INT16_MAX__ 32767
- #define __SIZE_TYPE__ long unsigned int
- #define __UINT64_MAX__ 18446744073709551615UL
- #define __INT8_TYPE__ signed char
- #define __ELF__ 1
- #define __FLT_RADIX__ 2
- #define __INT_LEAST16_TYPE__ short int
- #define __LDBL_EPSILON__ 1.08420217248550443401e-19L
- #define __UINTMAX_C(c) c ## UL
- #define __SSE_MATH__ 1
- #define __k8 1
- #define __SIG_ATOMIC_MAX__ 2147483647
- #define __SIZEOF_PTRDIFF_T__ 8
- #define __x86_64__ 1
- #define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF
- #define __INT_FAST16_MAX__ 9223372036854775807L
- #define __UINT_FAST32_MAX__ 18446744073709551615UL
- #define __UINT_LEAST64_TYPE__ long unsigned int
- #define __FLT_HAS_QUIET_NAN__ 1
- #define __FLT_MAX_10_EXP__ 38
- #define __LONG_MAX__ 9223372036854775807L
- #define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
- #define __FLT_HAS_INFINITY__ 1
- #define __UINT_FAST16_TYPE__ long unsigned int
- #define __DEC64_MAX__ 9.999999999999999E384DD
- #define __CHAR16_TYPE__ short unsigned int
- #define __PRAGMA_REDEFINE_EXTNAME 1
- #define __INT_LEAST16_MAX__ 32767
- #define __DEC64_MANT_DIG__ 16
- #define __INT64_MAX__ 9223372036854775807L
- #define __UINT_LEAST32_MAX__ 4294967295U
- #define __INT_LEAST64_TYPE__ long int
- #define __INT16_TYPE__ short int
- #define __INT_LEAST8_TYPE__ signed char
- #define __DEC32_MAX_EXP__ 97
- #define __INT_FAST8_MAX__ 127
- #define __INTPTR_MAX__ 9223372036854775807L
- #define linux 1
- #define __SSE2__ 1
- #define __LDBL_MANT_DIG__ 64
- #define __DBL_HAS_QUIET_NAN__ 1
- #define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1)
- #define __k8__ 1
- #define __INTPTR_TYPE__ long int
- #define __UINT16_TYPE__ short unsigned int
- #define __WCHAR_TYPE__ int
- #define __SIZEOF_FLOAT__ 4
- #define __UINTPTR_MAX__ 18446744073709551615UL
- #define __DEC64_MIN_EXP__ (-382)
- #define __INT_FAST64_MAX__ 9223372036854775807L
- #define __FLT_DIG__ 6
- #define __UINT_FAST64_TYPE__ long unsigned int
- #define __INT_MAX__ 2147483647
- #define __amd64__ 1
- #define __INT64_TYPE__ long int
- #define __FLT_MAX_EXP__ 128
- #define __ORDER_BIG_ENDIAN__ 4321
- #define __DBL_MANT_DIG__ 53
- #define __INT_LEAST64_MAX__ 9223372036854775807L
- #define __DEC64_MIN__ 1E-383DD
- #define __WINT_TYPE__ unsigned int
- #define __UINT_LEAST32_TYPE__ unsigned int
- #define __SIZEOF_SHORT__ 2
- #define __SSE__ 1
- #define __LDBL_MIN_EXP__ (-16381)
- #define __INT_LEAST8_MAX__ 127
- #define __SIZEOF_INT128__ 16
- #define __LDBL_MAX_10_EXP__ 4932
- #define __DBL_EPSILON__ ((double)2.22044604925031308085e-16L)
- #define _LP64 1
- #define __UINT8_C(c) c
- #define __INT_LEAST32_TYPE__ int
- #define __SIZEOF_WCHAR_T__ 4
- #define __UINT64_TYPE__ long unsigned int
- #define __INT_FAST8_TYPE__ signed char
- #define __DBL_DECIMAL_DIG__ 17
- #define __DEC_EVAL_METHOD__ 2
- #define __UINT32_C(c) c ## U
- #define __INTMAX_MAX__ 9223372036854775807L
- #define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
- #define __FLT_DENORM_MIN__ 1.40129846432481707092e-45F
- #define __INT8_MAX__ 127
- #define __UINT_FAST32_TYPE__ long unsigned int
- #define __CHAR32_TYPE__ unsigned int
- #define __FLT_MAX__ 3.40282346638528859812e+38F
- #define __INT32_TYPE__ int
- #define __SIZEOF_DOUBLE__ 8
- #define __FLT_MIN_10_EXP__ (-37)
- #define __INTMAX_TYPE__ long int
- #define __DEC128_MAX_EXP__ 6145
- #define __GNUC_MINOR__ 6
- #define __UINTMAX_MAX__ 18446744073709551615UL
- #define __DEC32_MANT_DIG__ 7
- #define __DBL_MAX_10_EXP__ 308
- #define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L
- #define __INT16_C(c) c
- #define __STDC__ 1
- #define __PTRDIFF_TYPE__ long int
- #define __UINT32_TYPE__ unsigned int
- #define __UINTPTR_TYPE__ long unsigned int
- #define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
- #define __DEC128_MANT_DIG__ 34
- #define __LDBL_MIN_10_EXP__ (-4931)
- #define __SIZEOF_LONG_LONG__ 8
- #define __LDBL_DIG__ 18
- #define __FLT_DECIMAL_DIG__ 9
- #define __UINT_FAST16_MAX__ 18446744073709551615UL
- #define __GNUC_GNU_INLINE__ 1
- #define __UINT_FAST8_TYPE__ unsigned char
查看gcc的默认宏定义命令【转】的更多相关文章
- c++宏定义命令
在程序开始以#开头的命令,他们是预编译命令.有三类预编译命令:宏定义命令.文件包含命令.条件编译命令:今天聊聊宏定义: 宏定义命令将一个标识符定义为一个字符串,源程序中的该标识符均以指定的字符串来代替 ...
- C基础:关于预处理宏定义命令
为了程序的通用性,可以使用#define预处理宏定义命令,它的具体作用,就是方便程序段的定义和修改. 1.关于预定义替代 #define Conn(x,y) x##y#define ToChar(x) ...
- 查看gcc/g++默认include路径
转自:http://gcc.gnu.org/ml/gcc-help/2007-09/msg00205.html `gcc -print-prog-name=cc1plus` -v `g++ -prin ...
- 获取gcc和clang的内置宏定义
下面是对Gcc的内置宏定义的解释: https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html https://github.co ...
- c语言宏定义
一. #define是C语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能理解该命令的本质,总是在此处产生一些困惑,在编程时 ...
- C语言宏定义#define用法
#define是C语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能 理解该命令的本质,总是在此处产生一些困惑,在编程时误用 ...
- 宏定义中的##操作符和... and _ _VA_ARGS_ _
1.Preprocessor Glue: The ## Operator 预处理连接符:##操作符 Like the # operator, the ## operator can be used i ...
- C++宏定义详解
一.#define的基本用法 #define是C语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能 理解该命令的本质 ...
- [转]C++宏定义详解
一.#define的基本用法 #define是C语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能 理解该命令的本质 ...
随机推荐
- 【Java并发编程】之十:使用wait/notify/notifyAll实现线程间通信的几点重要说明
在Java中,可以通过配合调用Object对象的wait()方法和notify()方法或notifyAll()方法来实现线程间的通信.在线程中调用wait()方法,将阻塞等待其他线程的通知(其他线程调 ...
- OpenSSL 自签名证书
通过下面9步,可以轻松生成自签名证书. 1.安装.部署OpenSSL 略 2.创建文件夹(下面通常root文件夹).用来放即将创建的各种证书等.如:I:\Key10.167.219.64 3.在roo ...
- 深入理解HashMap(原理,查找,扩容)
面试的时候闻到了Hashmap的扩容机制,之前只看到了Hasmap的实现机制,补一下基础知识,讲的非常好 原文链接: http://www.iteye.com/topic/539465 Hashmap ...
- Girls' research HDU - 3294(马拉车水题)
题意: 求最长回文串 长度要大于等于2 且输出起点和终点 输出回文串字符 这个字符还是要以给出的字符为起点a 输出 解析: 分析一下s_new串就好了 #include <iostream& ...
- Powerful array CodeForces - 86D(莫队)
给你n个数,m次询问,Ks为区间内s的数目,求区间[L,R]之间所有Ks*Ks*s的和.1<=n,m<=200000.1<=s<=10^6 #include <iostr ...
- BZOJ 1180: [CROATIAN2009]OTOCI
1180: [CROATIAN2009]OTOCI Time Limit: 50 Sec Memory Limit: 162 MBSubmit: 989 Solved: 611[Submit][S ...
- 我的shell脚本
问题:在ip.lt文件中有600个IP,有3个文档模版,三个文档的名称结构都是“ip+一系列字符串”,要求:1.将600个IP分成3分,以三个模版为基础创建600个文档,名字结构与模版相同:2修改60 ...
- Libssh认证绕过CVE-2018-10933漏洞复现
0x00 漏洞描述 libssh 0.6 及以上的版本,在服务端的代码实现中存在身份认证绕过漏洞.在向服务端认证的流程中,攻击者通过将 SSH2_MSG_USERAUTH_REQUEST 消息替换为 ...
- IO编程(1)-文件读写
文件读写 读写文件是最常见的IO操作.Python内置了读写文件的函数,用法和C是兼容的. 读写文件前,我们先必须了解一下,在磁盘上读写文件的功能都是由操作系统提供的,现代操作系统不允许普通的程序直接 ...
- laravel 命令行输出进度条
有时候我们想在命令行执行一些耗时的命令,我们可以利用 symfony 提供的进度条相关的类,来输出一个进度条,显示当前的处理进度. 参考:http://symfony.com/doc/current/ ...