Document case-insensitivity bug.
[nasm.git] / compiler.h
blob82b0d7ae71706ee09cf5f2f3d04e30e6a08e8937
1 /* ----------------------------------------------------------------------- *
3 * Copyright 2007 The NASM Authors - All Rights Reserved
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the license given in the file "LICENSE"
7 * distributed in the NASM archive.
9 * ----------------------------------------------------------------------- */
12 * compiler.h
14 * Compiler-specific macros for NASM. Feel free to add support for
15 * other compilers in here.
17 * This header file should be included before any other header.
20 #ifndef NASM_COMPILER_H
21 #define NASM_COMPILER_H 1
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 /* autoconf doesn't define these if they are redundant, but we want to
26 be able to #ifdef them... */
27 #else
28 /* Default these to unsupported unless we have config.h */
29 # ifndef inline
30 # define inline
31 # endif
32 # ifndef restrict
33 # define restrict
34 # endif
35 #endif /* HAVE_CONFIG_H */
37 /* This is required to get the standard <inttypes.h> macros when compiling
38 with a C++ compiler. This must be defined *before* <inttypes.h> is
39 included, directly or indirectly. */
40 #define __STDC_CONSTANT_MACROS 1
41 #define __STDC_LIMIT_MACROS 1
42 #define __STDC_FORMAT_MACROS 1
44 #ifdef __GNUC__
45 # if __GNUC__ >= 4
46 # define HAVE_GNUC_4
47 # endif
48 # if __GNUC__ >= 3
49 # define HAVE_GNUC_3
50 # endif
51 #endif
53 #ifdef __GNUC__
54 # define _unused __attribute__((unused))
55 #else
56 # define _unused
57 #endif
59 /* Some versions of MSVC have these only with underscores in front */
60 #include <stddef.h>
61 #include <stdarg.h>
62 #include <stdio.h>
64 #ifndef HAVE_SNPRINTF
65 # ifdef HAVE__SNPRINTF
66 # define snprintf _snprintf
67 # else
68 int snprintf(char *, size_t, const char *, ...);
69 # endif
70 #endif
72 #ifndef HAVE_VSNPRINTF
73 # ifdef HAVE__VSNPRINT
74 # define vsnprintf _vsnprintf
75 # else
76 int vsnprintf(char *, size_t, const char *, va_list);
77 # endif
78 #endif
80 #ifndef __cplusplus /* C++ has false, true, bool as keywords */
81 # ifdef HAVE_STDBOOL_H
82 # include <stdbool.h>
83 # else
84 /* This is sort of dangerous, since casts will behave different than
85 casting to the standard boolean type. Always use !!, not (bool). */
86 typedef enum bool { false, true } bool;
87 # endif
88 #endif
90 /* Some misguided platforms hide the defs for these */
91 #if defined(HAVE_STRCASECMP) && !HAVE_DECL_STRCASECMP
92 int strcasecmp(const char *, const char *);
93 #endif
95 #if defined(HAVE_STRICMP) && !HAVE_DECL_STRICMP
96 int stricmp(const char *, const char *);
97 #endif
99 #if defined(HAVE_STRNCASECMP) && !HAVE_DECL_STRNCASECMP
100 int strncasecmp(const char *, const char *, size_t);
101 #endif
103 #if defined(HAVE_STRNICMP) && !HAVE_DECL_STRNICMP
104 int strnicmp(const char *, const char *, size_t);
105 #endif
107 #if defined(HAVE_STRSEP) && !HAVE_DECL_STRSEP
108 char *strsep(char **, const char *);
109 #endif
112 * Define this to 1 for faster performance if this is a littleendian
113 * platform which can do unaligned memory references. It is safe
114 * to leave it defined to 0 even if that is true.
116 #if defined(__386__) || defined(__i386__) || defined(__x86_64__)
117 # define X86_MEMORY 1
118 # ifndef WORDS_LITTLEENDIAN
119 # define WORDS_LITTLEENDIAN 1
120 # endif
121 #else
122 # define X86_MEMORY 0
123 #endif
126 * Hints to the compiler that a particular branch of code is more or
127 * less likely to be taken.
129 #if defined(__GNUC__) && __GNUC__ >= 3
130 # define likely(x) __builtin_expect(!!(x), 1)
131 # define unlikely(x) __builtin_expect(!!(x), 0)
132 #else
133 # define likely(x) (!!(x))
134 # define unlikely(x) (!!(x))
135 #endif
137 #endif /* NASM_COMPILER_H */