]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/input-scrub.c
Arm: avoid unhelpful uses of .macro in testsuite
[thirdparty/binutils-gdb.git] / gas / input-scrub.c
CommitLineData
252b5132 1/* input_scrub.c - Break up input buffers into whole numbers of lines.
a2c58332 2 Copyright (C) 1987-2022 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
252b5132 21#include "as.h"
8b6efd89 22#include "filenames.h"
252b5132
RH
23#include "input-file.h"
24#include "sb.h"
25#include "listing.h"
26
27/*
28 * O/S independent module to supply buffers of sanitised source code
29 * to rest of assembler. We get sanitised input data of arbitrary length.
30 * We break these buffers on line boundaries, recombine pieces that
31 * were broken across buffers, and return a buffer of full lines to
32 * the caller.
33 * The last partial line begins the next buffer we build and return to caller.
47eebc20 34 * The buffer returned to caller is preceded by BEFORE_STRING and followed
252b5132
RH
35 * by AFTER_STRING, as sentinels. The last character before AFTER_STRING
36 * is a newline.
37 * Also looks after line numbers, for e.g. error messages.
38 */
39
40/*
41 * We don't care how filthy our buffers are, but our callers assume
42 * that the following sanitation has already been done.
43 *
44 * No comments, reduce a comment to a space.
45 * Reduce a tab to a space unless it is 1st char of line.
46 * All multiple tabs and spaces collapsed into 1 char. Tab only
47 * legal if 1st char of line.
48 * # line file statements converted to .line x;.file y; statements.
49 * Escaped newlines at end of line: remove them but add as many newlines
50 * to end of statement as you removed in the middle, to synch line numbers.
51 */
52\f
53#define BEFORE_STRING ("\n")
e13b337a 54#define AFTER_STRING ("\0") /* memcpy of 0 chars might choke. */
252b5132
RH
55#define BEFORE_SIZE (1)
56#define AFTER_SIZE (1)
57
f8ef9cd7
BS
58#ifndef TC_EOL_IN_INSN
59#define TC_EOL_IN_INSN(P) 0
60#endif
61
e13b337a
KH
62static char *buffer_start; /*->1st char of full buffer area. */
63static char *partial_where; /*->after last full line in buffer. */
9cee1c1e 64static size_t partial_size; /* >=0. Number of chars in partial line in buffer. */
7152f1dc
KH
65
66/* Because we need AFTER_STRING just after last full line, it clobbers
67 1st part of partial line. So we preserve 1st part of partial line
68 here. */
252b5132 69static char save_source[AFTER_SIZE];
7152f1dc 70
9cee1c1e
NS
71/* The size of the input buffer we concatenate
72 input_file_give_next_buffer chunks into. Excludes the BEFORE and
73 AFTER counts. */
74static size_t buffer_length;
252b5132
RH
75
76/* The index into an sb structure we are reading from. -1 if none. */
39a45edc 77static size_t sb_index = -1;
252b5132
RH
78
79/* If we are reading from an sb structure, this is it. */
80static sb from_sb;
81
9f10757c 82/* Should we do a conditional check on from_sb? */
657edeab 83static enum expansion from_sb_expansion = expanding_none;
9f10757c 84
252b5132
RH
85/* The number of nested sb structures we have included. */
86int macro_nest;
87
88/* We can have more than one source file open at once, though the info for all
89 but the latest one are saved off in a struct input_save. These files remain
90 open, so we are limited by the number of open files allowed by the
91 underlying OS. We may also sequentially read more than one source file in an
e13b337a 92 assembly. */
252b5132
RH
93
94/* We must track the physical file and line number for error messages. We also
95 track a "logical" file and line number corresponding to (C?) compiler
96 source line numbers. Whenever we open a file we must fill in
e13b337a 97 physical_input_file. So if it is NULL we have not opened any files yet. */
252b5132 98
3b4dbbbf
TS
99static const char *physical_input_file;
100static const char *logical_input_file;
252b5132 101
144886fa 102/* 1-origin line number in a source file. */
e13b337a 103/* A line ends in '\n' or eof. */
144886fa 104static unsigned int physical_input_line;
ecc263d6 105static unsigned int logical_input_line;
252b5132
RH
106
107/* Struct used to save the state of the input handler during include files */
ee515fb7 108struct input_save {
e972090a
NC
109 char * buffer_start;
110 char * partial_where;
9cee1c1e 111 size_t partial_size;
e972090a 112 char save_source[AFTER_SIZE];
39a45edc 113 size_t buffer_length;
ecc263d6
AM
114 const char * physical_input_file;
115 const char * logical_input_file;
144886fa 116 unsigned int physical_input_line;
ecc263d6 117 unsigned int logical_input_line;
39a45edc 118 size_t sb_index;
e972090a 119 sb from_sb;
657edeab 120 enum expansion from_sb_expansion; /* Should we do a conditional check? */
e972090a
NC
121 struct input_save * next_saved_file; /* Chain of input_saves. */
122 char * input_file_save; /* Saved state of input routines. */
123 char * saved_position; /* Caller's saved position in buf. */
7152f1dc 124};
252b5132 125
b1f1fa96
KH
126static struct input_save *input_scrub_push (char *saved_position);
127static char *input_scrub_pop (struct input_save *arg);
252b5132
RH
128
129/* Saved information about the file that .include'd this one. When we hit EOF,
e13b337a 130 we automatically pop to that file. */
252b5132
RH
131
132static struct input_save *next_saved_file;
133
9cee1c1e
NS
134/* Initialize input buffering. */
135
136static void
137input_scrub_reinit (void)
138{
139 input_file_begin (); /* Reinitialize! */
ecc263d6 140 logical_input_line = -1u;
9cee1c1e 141 logical_input_file = NULL;
38ef9f36 142 sb_index = -1;
9cee1c1e
NS
143
144 buffer_length = input_file_buffer_size () * 2;
145 buffer_start = XNEWVEC (char, BEFORE_SIZE + AFTER_SIZE + 1 + buffer_length);
146 memcpy (buffer_start, BEFORE_STRING, (int) BEFORE_SIZE);
147}
148
252b5132
RH
149/* Push the state of input reading and scrubbing so that we can #include.
150 The return value is a 'void *' (fudged for old compilers) to a save
e13b337a 151 area, which can be restored by passing it to input_scrub_pop(). */
7152f1dc 152
252b5132 153static struct input_save *
b1f1fa96 154input_scrub_push (char *saved_position)
252b5132 155{
ed9e98c2 156 struct input_save *saved;
252b5132 157
add39d23 158 saved = XNEW (struct input_save);
252b5132
RH
159
160 saved->saved_position = saved_position;
161 saved->buffer_start = buffer_start;
162 saved->partial_where = partial_where;
163 saved->partial_size = partial_size;
164 saved->buffer_length = buffer_length;
165 saved->physical_input_file = physical_input_file;
166 saved->logical_input_file = logical_input_file;
167 saved->physical_input_line = physical_input_line;
168 saved->logical_input_line = logical_input_line;
169 saved->sb_index = sb_index;
170 saved->from_sb = from_sb;
657edeab 171 saved->from_sb_expansion = from_sb_expansion;
252b5132
RH
172 memcpy (saved->save_source, save_source, sizeof (save_source));
173 saved->next_saved_file = next_saved_file;
174 saved->input_file_save = input_file_push ();
175
9cee1c1e 176 input_scrub_reinit ();
252b5132
RH
177
178 return saved;
7152f1dc 179}
252b5132
RH
180
181static char *
b1f1fa96 182input_scrub_pop (struct input_save *saved)
252b5132
RH
183{
184 char *saved_position;
185
186 input_scrub_end (); /* Finish off old buffer */
187
188 input_file_pop (saved->input_file_save);
189 saved_position = saved->saved_position;
190 buffer_start = saved->buffer_start;
191 buffer_length = saved->buffer_length;
192 physical_input_file = saved->physical_input_file;
193 logical_input_file = saved->logical_input_file;
194 physical_input_line = saved->physical_input_line;
195 logical_input_line = saved->logical_input_line;
196 sb_index = saved->sb_index;
197 from_sb = saved->from_sb;
657edeab 198 from_sb_expansion = saved->from_sb_expansion;
252b5132
RH
199 partial_where = saved->partial_where;
200 partial_size = saved->partial_size;
201 next_saved_file = saved->next_saved_file;
202 memcpy (save_source, saved->save_source, sizeof (save_source));
203
204 free (saved);
205 return saved_position;
206}
207\f
252b5132 208void
b1f1fa96 209input_scrub_begin (void)
252b5132
RH
210{
211 know (strlen (BEFORE_STRING) == BEFORE_SIZE);
7152f1dc
KH
212 know (strlen (AFTER_STRING) == AFTER_SIZE
213 || (AFTER_STRING[0] == '\0' && AFTER_SIZE == 1));
252b5132 214
e13b337a 215 physical_input_file = NULL; /* No file read yet. */
252b5132 216 next_saved_file = NULL; /* At EOF, don't pop to any other file */
9cee1c1e 217 input_scrub_reinit ();
252b5132
RH
218 do_scrub_begin (flag_m68k_mri);
219}
220
221void
b1f1fa96 222input_scrub_end (void)
252b5132
RH
223{
224 if (buffer_start)
225 {
226 free (buffer_start);
227 buffer_start = 0;
228 input_file_end ();
229 }
230}
231
7152f1dc
KH
232/* Start reading input from a new file.
233 Return start of caller's part of buffer. */
252b5132 234
7152f1dc 235char *
3b4dbbbf 236input_scrub_new_file (const char *filename)
252b5132
RH
237{
238 input_file_open (filename, !flag_no_comments);
239 physical_input_file = filename[0] ? filename : _("{standard input}");
240 physical_input_line = 0;
241
242 partial_size = 0;
243 return (buffer_start + BEFORE_SIZE);
244}
245
252b5132
RH
246/* Include a file from the current file. Save our state, cause it to
247 be restored on EOF, and begin handling a new file. Same result as
e13b337a 248 input_scrub_new_file. */
252b5132
RH
249
250char *
3b4dbbbf 251input_scrub_include_file (const char *filename, char *position)
252b5132
RH
252{
253 next_saved_file = input_scrub_push (position);
657edeab 254 from_sb_expansion = expanding_none;
252b5132
RH
255 return input_scrub_new_file (filename);
256}
257
258/* Start getting input from an sb structure. This is used when
259 expanding a macro. */
260
261void
657edeab 262input_scrub_include_sb (sb *from, char *position, enum expansion expansion)
252b5132 263{
d2ae702c
L
264 int newline;
265
252b5132 266 if (macro_nest > max_macro_nest)
dcb87e5c 267 as_fatal (_("macros nested too deeply"));
252b5132
RH
268 ++macro_nest;
269
657edeab
JB
270 gas_assert (expansion < expanding_nested);
271
9f10757c 272#ifdef md_macro_start
657edeab 273 if (expansion == expanding_macro)
9f10757c
TW
274 {
275 md_macro_start ();
276 }
277#endif
278
252b5132
RH
279 next_saved_file = input_scrub_push (position);
280
4d74aab7
AM
281 /* Allocate sufficient space: from->len plus optional newline
282 plus two ".linefile " directives, plus a little more for other
283 expansion. */
d2ae702c 284 newline = from->len >= 1 && from->ptr[0] != '\n';
4d74aab7 285 sb_build (&from_sb, from->len + newline + 2 * sizeof (".linefile") + 30);
657edeab
JB
286 if (expansion == expanding_repeat && from_sb_expansion >= expanding_macro)
287 expansion = expanding_nested;
288 from_sb_expansion = expansion;
d2ae702c 289 if (newline)
252b5132
RH
290 {
291 /* Add the sentinel required by read.c. */
292 sb_add_char (&from_sb, '\n');
293 }
c19d1205 294 sb_scrub_and_add_sb (&from_sb, from);
cb26feec
HPN
295
296 /* Make sure the parser looks at defined contents when it scans for
297 e.g. end-of-line at the end of a macro. */
d2ae702c 298 sb_terminate (&from_sb);
cb26feec 299
252b5132
RH
300 sb_index = 1;
301
302 /* These variables are reset by input_scrub_push. Restore them
303 since we are, after all, still at the same point in the file. */
304 logical_input_line = next_saved_file->logical_input_line;
305 logical_input_file = next_saved_file->logical_input_file;
306}
307
308void
b1f1fa96 309input_scrub_close (void)
252b5132
RH
310{
311 input_file_close ();
144886fa 312 physical_input_line = 0;
ecc263d6 313 logical_input_line = -1u;
252b5132
RH
314}
315
316char *
b1f1fa96 317input_scrub_next_buffer (char **bufp)
252b5132 318{
ed9e98c2 319 char *limit; /*->just after last char of buffer. */
252b5132 320
39a45edc 321 if (sb_index != (size_t) -1)
252b5132
RH
322 {
323 if (sb_index >= from_sb.len)
324 {
325 sb_kill (&from_sb);
657edeab 326 if (from_sb_expansion == expanding_macro)
7152f1dc
KH
327 {
328 cond_finish_check (macro_nest);
9f10757c 329#ifdef md_macro_end
7152f1dc
KH
330 /* Allow the target to clean up per-macro expansion
331 data. */
332 md_macro_end ();
9f10757c 333#endif
7152f1dc
KH
334 }
335 --macro_nest;
252b5132 336 partial_where = NULL;
511b1657 337 partial_size = 0;
252b5132
RH
338 if (next_saved_file != NULL)
339 *bufp = input_scrub_pop (next_saved_file);
340 return partial_where;
341 }
342
343 partial_where = from_sb.ptr + from_sb.len;
344 partial_size = 0;
345 *bufp = from_sb.ptr + sb_index;
346 sb_index = from_sb.len;
347 return partial_where;
348 }
349
252b5132
RH
350 if (partial_size)
351 {
9cee1c1e 352 memmove (buffer_start + BEFORE_SIZE, partial_where, partial_size);
252b5132
RH
353 memcpy (buffer_start + BEFORE_SIZE, save_source, AFTER_SIZE);
354 }
511b1657
AM
355
356 while (1)
252b5132 357 {
511b1657 358 char *p;
9cee1c1e 359 char *start = buffer_start + BEFORE_SIZE + partial_size;
511b1657
AM
360
361 *bufp = buffer_start + BEFORE_SIZE;
9cee1c1e 362 limit = input_file_give_next_buffer (start);
511b1657 363 if (!limit)
252b5132 364 {
9cee1c1e
NS
365 if (!partial_size)
366 /* End of this file. */
511b1657 367 break;
252b5132 368
511b1657
AM
369 as_warn (_("end of file not at end of a line; newline inserted"));
370 p = buffer_start + BEFORE_SIZE + partial_size;
371 *p++ = '\n';
372 limit = p;
373 }
374 else
375 {
f8ef9cd7
BS
376 /* Terminate the buffer to avoid confusing TC_EOL_IN_INSN. */
377 *limit = '\0';
511b1657
AM
378
379 /* Find last newline. */
f8ef9cd7 380 for (p = limit - 1; *p != '\n' || TC_EOL_IN_INSN (p); --p)
9cee1c1e
NS
381 if (p < start)
382 goto read_more;
252b5132
RH
383 ++p;
384 }
385
578c64a4
NC
386 if (multibyte_handling == multibyte_warn)
387 (void) scan_for_multibyte_characters ((const unsigned char *) p,
388 (const unsigned char *) limit,
389 true /* Generate warnings */);
390
9cee1c1e
NS
391 /* We found a newline in the newly read chars. */
392 partial_where = p;
393 partial_size = limit - p;
394
395 /* Save the fragment after that last newline. */
396 memcpy (save_source, partial_where, (int) AFTER_SIZE);
397 memcpy (partial_where, AFTER_STRING, (int) AFTER_SIZE);
398 return partial_where;
252b5132 399
9cee1c1e
NS
400 read_more:
401 /* Didn't find a newline. Read more text. */
511b1657 402 partial_size = limit - (buffer_start + BEFORE_SIZE);
9cee1c1e
NS
403 if (buffer_length - input_file_buffer_size () < partial_size)
404 {
405 /* Increase the buffer when it doesn't have room for the
406 next block of input. */
407 buffer_length *= 2;
408 buffer_start = XRESIZEVEC (char, buffer_start,
409 (buffer_length
410 + BEFORE_SIZE + AFTER_SIZE + 1));
411 }
252b5132 412 }
511b1657
AM
413
414 /* Tell the listing we've finished the file. */
415 LISTING_EOF ();
416
417 /* If we should pop to another file at EOF, do it. */
418 partial_where = NULL;
419 if (next_saved_file)
420 *bufp = input_scrub_pop (next_saved_file);
421
422 return partial_where;
7152f1dc 423}
252b5132 424\f
7152f1dc
KH
425/* The remaining part of this file deals with line numbers, error
426 messages and so on. Return TRUE if we opened any file. */
252b5132 427
252b5132 428int
b1f1fa96 429seen_at_least_1_file (void)
252b5132
RH
430{
431 return (physical_input_file != NULL);
432}
433
434void
b1f1fa96 435bump_line_counters (void)
252b5132 436{
39a45edc 437 if (sb_index == (size_t) -1)
7992631e
JB
438 ++physical_input_line;
439
657edeab
JB
440 /* PR gas/16908 workaround: Don't bump logical line numbers while
441 expanding macros, unless file (and maybe line; see as_where()) are
442 used inside the macro. */
443 if (logical_input_line != -1u && from_sb_expansion < expanding_macro)
7992631e 444 ++logical_input_line;
252b5132
RH
445}
446\f
7152f1dc
KH
447/* Tells us what the new logical line number and file are.
448 If the line_number is -1, we don't change the current logical line
c39e89c3 449 number.
2ee1792b
JB
450 If fname is NULL, we don't change the current logical file name, unless
451 bit 3 of flags is set.
7152f1dc
KH
452 Returns nonzero if the filename actually changes. */
453
66b39b8b 454void
3b4dbbbf 455new_logical_line_flags (const char *fname, /* DON'T destroy it! We point to it! */
93e914b2
AO
456 int line_number,
457 int flags)
252b5132 458{
93e914b2
AO
459 switch (flags)
460 {
461 case 0:
462 break;
463 case 1:
464 if (line_number != -1)
465 abort ();
466 break;
467 case 1 << 1:
468 case 1 << 2:
469 /* FIXME: we could check that include nesting is correct. */
470 break;
2ee1792b 471 case 1 << 3:
b60f6a62 472 if (line_number < 0 || fname != NULL)
2ee1792b 473 abort ();
657edeab
JB
474 /* PR gas/16908 workaround: Ignore updates when nested inside a macro
475 expansion. */
476 if (from_sb_expansion == expanding_nested)
66b39b8b 477 return;
b60f6a62
JB
478 if (next_saved_file == NULL)
479 fname = physical_input_file;
480 else if (next_saved_file->logical_input_file)
2ee1792b
JB
481 fname = next_saved_file->logical_input_file;
482 else
483 fname = next_saved_file->physical_input_file;
484 break;
93e914b2
AO
485 default:
486 abort ();
487 }
488
252b5132
RH
489 if (line_number >= 0)
490 logical_input_line = line_number;
93e914b2
AO
491 else if (line_number == -1 && fname && !*fname && (flags & (1 << 2)))
492 {
493 logical_input_file = physical_input_file;
494 logical_input_line = physical_input_line;
495 fname = NULL;
496 }
252b5132 497
66b39b8b
JB
498 if (fname
499 && (logical_input_file == NULL
500 || filename_cmp (logical_input_file, fname)))
501 logical_input_file = fname;
502
657edeab
JB
503 /* When encountering file or line changes inside a macro, arrange for
504 bump_line_counters() to henceforth increment the logical line number
505 again, just like it does when expanding repeats. See as_where() for
506 why changing file or line alone doesn't alter expansion mode. */
507 if (from_sb_expansion == expanding_macro
66b39b8b 508 && logical_input_file != NULL
657edeab
JB
509 && logical_input_line != -1u)
510 from_sb_expansion = expanding_repeat;
7152f1dc 511}
93e914b2 512
66b39b8b 513void
3b4dbbbf 514new_logical_line (const char *fname, int line_number)
93e914b2 515{
66b39b8b 516 new_logical_line_flags (fname, line_number, 0);
93e914b2
AO
517}
518
252b5132 519\f
39865a7f
NC
520/* Return the current physical input file name and line number, if known */
521
522const char *
523as_where_physical (unsigned int *linep)
524{
525 if (physical_input_file != NULL)
526 {
527 if (linep != NULL)
528 *linep = physical_input_line;
529 return physical_input_file;
530 }
531
532 if (linep != NULL)
533 *linep = 0;
534 return NULL;
535}
536
3b4dbbbf 537/* Return the current file name and line number. */
7152f1dc 538
3b4dbbbf
TS
539const char *
540as_where (unsigned int *linep)
252b5132
RH
541{
542 if (logical_input_file != NULL
ecc263d6 543 && (linep == NULL || logical_input_line != -1u))
252b5132 544 {
252b5132
RH
545 if (linep != NULL)
546 *linep = logical_input_line;
3b4dbbbf 547 return logical_input_file;
252b5132 548 }
39865a7f
NC
549
550 return as_where_physical (linep);
7152f1dc 551}
39865a7f 552