查看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语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能 理解该命令的本质 ...
随机推荐
- Linux服务器中安装python包管理工具pip
pip是python的包管理工具,python的强大之处除了在于语法的简练,还有就是对众多的库支持了. 1.下载pip包管理工具 链接地址:https://pypi.python.org/pypi/p ...
- 初次使用http打不开页面,使用https打开过后使用http协议又能正常访问
http协议为什么打不开https站点 在访问一个https的站点,比如 https://www.aaa.com,首次访问时,访问的地址是 http://www.aaa.com,(不加S),出现的是网 ...
- Android Studio 使用VCS版本控制
1.SVN的配置: 如果项目使用的是SVN配置,那么除了乌龟SVN GUI工具外,你还得下载Subversion, 因为AS要用其中的xx.exe命令行执行程序, 下载地址:https://www.v ...
- bzoj 4199 && NOI 2015 品酒大会
一年一度的“幻影阁夏日品酒大会”隆重开幕了.大会包含品尝和趣味挑战两个环节,分别向优胜者颁发“首席品酒家”和“首席猎手”两个奖项,吸引了众多品酒师参加. 在大会的晚餐上,调酒师 Rainbow 调制了 ...
- python之旅:函数基础
一.引子 1.函数是什么 用函数与不用函数 #1.代码的组织结构不清晰,可读性差 #2.遇到重复的功能只能重复编写实现代码,代码冗余 #3.功能需要扩展时,需要找出所有实现该功能的地方修改之,无法统一 ...
- DBMS_RANDOM 用法
oracle中用于生成随机数的包:DBMS_RANDOM,这个包里面包含了很多方法,以下列出几个常用的方法 1.DBMS_RANDOM.RANDOM方法: FUNCTION random RETURN ...
- GC的时机
说到JVM,GC(垃圾回收)是非常重要的机制. 那么首先的问题是: GC在什么时候会发生? GC的触发包括两种情况:1.程序调用System.gc()的时候.2.系统自身决定是否需要GC. 系统进行G ...
- bzoj千题计划170:bzoj1968: [Ahoi2005]COMMON 约数研究
http://www.lydsy.com/JudgeOnline/problem.php?id=1968 换个角度 一个数可以成为几个数的约数 #include<cstdio> #incl ...
- 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 ...
- sparse representation 与sparse coding 的区别的观点
@G_Auss: 一直觉得以稀疏为目标的无监督学习没有道理.稀疏表示是生物神经系统的一个特性,但它究竟只是神经系统完成任务的副产物,还是一个优化目标,没有相关理论,这里有推理漏洞.实际上,稀疏目标只能 ...