查看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语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能 理解该命令的本质 ...
随机推荐
- huhamhire-hosts — Hosts文件自动配置工具
https://www.anotherhome.net/1376 推荐配合EasyGoAgent使用: EasyGoAgent — 开箱即用的GoAgent Update 2015.5.15 数据文件 ...
- Mybatis笔记八:MyBatis中#{}和${}的区别
先给大家介绍下MyBatis中#{}和${}的区别,具体介绍如下: 1. $将传入的数据直接显示生成在sql中 2. #方式能够很大程度防止sql注入. 3.$方式无法防止Sql注入. 4.$方式一般 ...
- BZOJ 3282: Tree
3282: Tree Time Limit: 30 Sec Memory Limit: 512 MBSubmit: 1714 Solved: 765[Submit][Status][Discuss ...
- 【转】关于在vim中的查找和替换
1,查找 在normal模式下按下/即可进入查找模式,输入要查找的字符串并按下回车. Vim会跳转到第一个匹配.按下n查找下一个,按下N查找上一个. Vim查找支持正则表达式,例如/vim$匹配行尾的 ...
- 毕业设计预习:VHDL入门知识学习(一) VHDL程序基本结构
VHDL入门知识学习(一) VHDL程序基本结构 简介 VHDL程序基本结构 简介 概念: HDL-Hardware Description Language-硬件描述语言-描述硬件电路的功能.信号连 ...
- 解题:USACO13JAN Island Travels
题面 好像没啥可说的,就当练码力了...... 先用BFS跑出岛屿,然后跑最短路求岛屿间的距离,最后状压DP得出答案 注意细节,码码码2333 #include<set> #include ...
- 设计模式之单例模式实现(C++)
#ifndef SINGLETON_H #define SINGLETON_H #include <cassert> #include <memory> #include &l ...
- qsort和sort
sort()函数是C++中的排序函数其头文件为:#include<algorithm>头文件: qsort()是C中的排序函数,其头文件为:#include<stdlib.h> ...
- numpy二进制转换和范围缩放
numpy二进制转换和范围缩放 觉得有用的话,欢迎一起讨论相互学习~Follow Me 一维二进制转换 import numpy as np # 一维二进制数组转换 a=np.array([0,1,1 ...
- vue-router 实践
1. vue-router2学习实践笔记 2. router.push() 3. 使用vue-router跳转页面