output: remove ABSOLUTE handling, OUT_RAWDATA asserts
[nasm.git] / asm / error.c
blob3fdaa027c2b0a28e84f1f0e8c4dc1cf74b74e8ff
1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2018 The NASM Authors - All Rights Reserved
4 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
9 * conditions are met:
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * ----------------------------------------------------------------------- */
35 * error.c - error message handling routines for the assembler
38 #include "compiler.h"
40 #include <stdlib.h>
42 #include "nasmlib.h"
43 #include "error.h"
46 * Description of the suppressible warnings for the command line and
47 * the [warning] directive.
49 const struct warning warnings[ERR_WARN_ALL+1] = {
50 {"other", "any warning not specifially mentioned below", true},
51 {"macro-params", "macro calls with wrong parameter count", true},
52 {"macro-selfref", "cyclic macro references", false},
53 {"macro-defaults", "macros with more default than optional parameters", true},
54 {"orphan-labels", "labels alone on lines without trailing `:'", true},
55 {"number-overflow", "numeric constant does not fit", true},
56 {"gnu-elf-extensions", "using 8- or 16-bit relocation in ELF32, a GNU extension", false},
57 {"float-overflow", "floating point overflow", true},
58 {"float-denorm", "floating point denormal", false},
59 {"float-underflow", "floating point underflow", false},
60 {"float-toolong", "too many digits in floating-point number", true},
61 {"user", "%warning directives", true},
62 {"lock", "lock prefix on unlockable instructions", true},
63 {"hle", "invalid hle prefixes", true},
64 {"bnd", "invalid bnd prefixes", true},
65 {"zext-reloc", "relocation zero-extended to match output format", true},
66 {"ptr", "non-NASM keyword used in other assemblers", true},
67 {"bad-pragma", "empty or malformed %pragma", false},
68 {"unknown-pragma", "unknown %pragma facility or directive", false},
69 {"not-my-pragma", "%pragma not applicable to this compilation", false},
70 {"unknown-warning", "unknown warning in -W/-w or warning directive", false},
71 {"negative-rep", "regative %rep count", true},
73 /* THIS ENTRY MUST COME LAST */
74 {"all", "all possible warnings", false}
77 uint8_t warning_state[ERR_WARN_ALL];/* Current state */
78 uint8_t warning_state_init[ERR_WARN_ALL]; /* Command-line state, for reset */
80 vefunc nasm_verror; /* Global error handling function */
82 void nasm_error(int severity, const char *fmt, ...)
84 va_list ap;
86 va_start(ap, fmt);
87 nasm_verror(severity, fmt, ap);
88 va_end(ap);
91 fatal_func nasm_fatal(int flags, const char *fmt, ...)
93 va_list ap;
95 va_start(ap, fmt);
96 nasm_verror(flags | ERR_FATAL, fmt, ap);
97 abort(); /* We should never get here */
100 fatal_func nasm_panic(int flags, const char *fmt, ...)
102 va_list ap;
104 va_start(ap, fmt);
105 nasm_verror(flags | ERR_PANIC, fmt, ap);
106 abort(); /* We should never get here */
109 fatal_func nasm_panic_from_macro(const char *file, int line)
111 nasm_panic(ERR_NOFILE, "Internal error at %s:%d\n", file, line);
114 fatal_func nasm_assert_failed(const char *file, int line, const char *msg)
116 nasm_panic(0, "assertion %s failed at %s:%d", msg, file, line);
120 * This is called when processing a -w or -W option, or a warning directive.
121 * Returns true if if the action was successful.
123 bool set_warning_status(const char *value)
125 enum warn_action { WID_OFF, WID_ON, WID_RESET };
126 enum warn_action action;
127 uint8_t mask;
128 int i;
129 bool ok = false;
131 value = nasm_skip_spaces(value);
132 switch (*value) {
133 case '-':
134 action = WID_OFF;
135 value++;
136 break;
137 case '+':
138 action = WID_ON;
139 value++;
140 break;
141 case '*':
142 action = WID_RESET;
143 value++;
144 break;
145 case 'N':
146 case 'n':
147 if (!nasm_strnicmp(value, "no-", 3)) {
148 action = WID_OFF;
149 value += 3;
150 break;
151 } else if (!nasm_stricmp(value, "none")) {
152 action = WID_OFF;
153 value = NULL;
154 break;
156 /* else fall through */
157 default:
158 action = WID_ON;
159 break;
162 mask = WARN_ST_ENABLED;
164 if (value && !nasm_strnicmp(value, "error", 5)) {
165 switch (value[5]) {
166 case '=':
167 mask = WARN_ST_ERROR;
168 value += 6;
169 break;
170 case '\0':
171 mask = WARN_ST_ERROR;
172 value = NULL;
173 break;
174 default:
175 /* Just an accidental prefix? */
176 break;
180 if (value && !nasm_stricmp(value, "all"))
181 value = NULL;
183 /* This is inefficient, but it shouldn't matter... */
184 for (i = 0; i < ERR_WARN_ALL; i++) {
185 if (!value || !nasm_stricmp(value, warnings[i].name)) {
186 ok = true; /* At least one action taken */
187 switch (action) {
188 case WID_OFF:
189 warning_state[i] &= ~mask;
190 break;
191 case WID_ON:
192 warning_state[i] |= mask;
193 break;
194 case WID_RESET:
195 warning_state[i] &= ~mask;
196 warning_state[i] |= warning_state_init[i] & mask;
197 break;
202 return ok;