]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/input-scrub.c
PR 30022, concurrent builds can fail
[thirdparty/binutils-gdb.git] / gas / input-scrub.c
CommitLineData
252b5132 1/* input_scrub.c - Break up input buffers into whole numbers of lines.
d87bef3a 2 Copyright (C) 1987-2023 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 106
969b9a36
JB
107/* Indicator whether the origin of an update was a .linefile directive. */
108static bool is_linefile;
109
252b5132 110/* Struct used to save the state of the input handler during include files */
ee515fb7 111struct input_save {
e972090a
NC
112 char * buffer_start;
113 char * partial_where;
9cee1c1e 114 size_t partial_size;
e972090a 115 char save_source[AFTER_SIZE];
39a45edc 116 size_t buffer_length;
ecc263d6
AM
117 const char * physical_input_file;
118 const char * logical_input_file;
144886fa 119 unsigned int physical_input_line;
ecc263d6 120 unsigned int logical_input_line;
969b9a36 121 bool is_linefile;
39a45edc 122 size_t sb_index;
e972090a 123 sb from_sb;
657edeab 124 enum expansion from_sb_expansion; /* Should we do a conditional check? */
e972090a
NC
125 struct input_save * next_saved_file; /* Chain of input_saves. */
126 char * input_file_save; /* Saved state of input routines. */
127 char * saved_position; /* Caller's saved position in buf. */
7152f1dc 128};
252b5132 129
b1f1fa96
KH
130static struct input_save *input_scrub_push (char *saved_position);
131static char *input_scrub_pop (struct input_save *arg);
252b5132
RH
132
133/* Saved information about the file that .include'd this one. When we hit EOF,
e13b337a 134 we automatically pop to that file. */
252b5132
RH
135
136static struct input_save *next_saved_file;
137
9cee1c1e
NS
138/* Initialize input buffering. */
139
140static void
141input_scrub_reinit (void)
142{
143 input_file_begin (); /* Reinitialize! */
ecc263d6 144 logical_input_line = -1u;
9cee1c1e 145 logical_input_file = NULL;
38ef9f36 146 sb_index = -1;
9cee1c1e
NS
147
148 buffer_length = input_file_buffer_size () * 2;
149 buffer_start = XNEWVEC (char, BEFORE_SIZE + AFTER_SIZE + 1 + buffer_length);
150 memcpy (buffer_start, BEFORE_STRING, (int) BEFORE_SIZE);
151}
152
252b5132
RH
153/* Push the state of input reading and scrubbing so that we can #include.
154 The return value is a 'void *' (fudged for old compilers) to a save
e13b337a 155 area, which can be restored by passing it to input_scrub_pop(). */
7152f1dc 156
252b5132 157static struct input_save *
b1f1fa96 158input_scrub_push (char *saved_position)
252b5132 159{
ed9e98c2 160 struct input_save *saved;
252b5132 161
add39d23 162 saved = XNEW (struct input_save);
252b5132
RH
163
164 saved->saved_position = saved_position;
165 saved->buffer_start = buffer_start;
166 saved->partial_where = partial_where;
167 saved->partial_size = partial_size;
168 saved->buffer_length = buffer_length;
169 saved->physical_input_file = physical_input_file;
170 saved->logical_input_file = logical_input_file;
171 saved->physical_input_line = physical_input_line;
172 saved->logical_input_line = logical_input_line;
969b9a36 173 saved->is_linefile = is_linefile;
252b5132
RH
174 saved->sb_index = sb_index;
175 saved->from_sb = from_sb;
657edeab 176 saved->from_sb_expansion = from_sb_expansion;
252b5132
RH
177 memcpy (saved->save_source, save_source, sizeof (save_source));
178 saved->next_saved_file = next_saved_file;
179 saved->input_file_save = input_file_push ();
180
9cee1c1e 181 input_scrub_reinit ();
252b5132
RH
182
183 return saved;
7152f1dc 184}
252b5132
RH
185
186static char *
b1f1fa96 187input_scrub_pop (struct input_save *saved)
252b5132
RH
188{
189 char *saved_position;
190
191 input_scrub_end (); /* Finish off old buffer */
192
193 input_file_pop (saved->input_file_save);
194 saved_position = saved->saved_position;
195 buffer_start = saved->buffer_start;
196 buffer_length = saved->buffer_length;
197 physical_input_file = saved->physical_input_file;
198 logical_input_file = saved->logical_input_file;
199 physical_input_line = saved->physical_input_line;
200 logical_input_line = saved->logical_input_line;
969b9a36 201 is_linefile = saved->is_linefile;
252b5132
RH
202 sb_index = saved->sb_index;
203 from_sb = saved->from_sb;
657edeab 204 from_sb_expansion = saved->from_sb_expansion;
252b5132
RH
205 partial_where = saved->partial_where;
206 partial_size = saved->partial_size;
207 next_saved_file = saved->next_saved_file;
208 memcpy (save_source, saved->save_source, sizeof (save_source));
209
210 free (saved);
211 return saved_position;
212}
213\f
252b5132 214void
b1f1fa96 215input_scrub_begin (void)
252b5132
RH
216{
217 know (strlen (BEFORE_STRING) == BEFORE_SIZE);
7152f1dc
KH
218 know (strlen (AFTER_STRING) == AFTER_SIZE
219 || (AFTER_STRING[0] == '\0' && AFTER_SIZE == 1));
252b5132 220
e13b337a 221 physical_input_file = NULL; /* No file read yet. */
252b5132 222 next_saved_file = NULL; /* At EOF, don't pop to any other file */
9cee1c1e 223 input_scrub_reinit ();
252b5132
RH
224 do_scrub_begin (flag_m68k_mri);
225}
226
227void
b1f1fa96 228input_scrub_end (void)
252b5132
RH
229{
230 if (buffer_start)
231 {
232 free (buffer_start);
233 buffer_start = 0;
234 input_file_end ();
235 }
236}
237
7152f1dc
KH
238/* Start reading input from a new file.
239 Return start of caller's part of buffer. */
252b5132 240
7152f1dc 241char *
3b4dbbbf 242input_scrub_new_file (const char *filename)
252b5132
RH
243{
244 input_file_open (filename, !flag_no_comments);
245 physical_input_file = filename[0] ? filename : _("{standard input}");
246 physical_input_line = 0;
247
248 partial_size = 0;
249 return (buffer_start + BEFORE_SIZE);
250}
251
252b5132
RH
252/* Include a file from the current file. Save our state, cause it to
253 be restored on EOF, and begin handling a new file. Same result as
e13b337a 254 input_scrub_new_file. */
252b5132
RH
255
256char *
3b4dbbbf 257input_scrub_include_file (const char *filename, char *position)
252b5132
RH
258{
259 next_saved_file = input_scrub_push (position);
657edeab 260 from_sb_expansion = expanding_none;
252b5132
RH
261 return input_scrub_new_file (filename);
262}
263
264/* Start getting input from an sb structure. This is used when
265 expanding a macro. */
266
267void
657edeab 268input_scrub_include_sb (sb *from, char *position, enum expansion expansion)
252b5132 269{
d2ae702c
L
270 int newline;
271
252b5132 272 if (macro_nest > max_macro_nest)
dcb87e5c 273 as_fatal (_("macros nested too deeply"));
252b5132
RH
274 ++macro_nest;
275
9f10757c 276#ifdef md_macro_start
657edeab 277 if (expansion == expanding_macro)
9f10757c
TW
278 {
279 md_macro_start ();
280 }
281#endif
282
252b5132
RH
283 next_saved_file = input_scrub_push (position);
284
4d74aab7
AM
285 /* Allocate sufficient space: from->len plus optional newline
286 plus two ".linefile " directives, plus a little more for other
287 expansion. */
d2ae702c 288 newline = from->len >= 1 && from->ptr[0] != '\n';
4d74aab7 289 sb_build (&from_sb, from->len + newline + 2 * sizeof (".linefile") + 30);
657edeab 290 from_sb_expansion = expansion;
d2ae702c 291 if (newline)
252b5132
RH
292 {
293 /* Add the sentinel required by read.c. */
294 sb_add_char (&from_sb, '\n');
295 }
c19d1205 296 sb_scrub_and_add_sb (&from_sb, from);
cb26feec
HPN
297
298 /* Make sure the parser looks at defined contents when it scans for
299 e.g. end-of-line at the end of a macro. */
d2ae702c 300 sb_terminate (&from_sb);
cb26feec 301
252b5132
RH
302 sb_index = 1;
303
304 /* These variables are reset by input_scrub_push. Restore them
305 since we are, after all, still at the same point in the file. */
306 logical_input_line = next_saved_file->logical_input_line;
307 logical_input_file = next_saved_file->logical_input_file;
308}
309
310void
b1f1fa96 311input_scrub_close (void)
252b5132
RH
312{
313 input_file_close ();
144886fa 314 physical_input_line = 0;
ecc263d6 315 logical_input_line = -1u;
252b5132
RH
316}
317
318char *
b1f1fa96 319input_scrub_next_buffer (char **bufp)
252b5132 320{
ed9e98c2 321 char *limit; /*->just after last char of buffer. */
252b5132 322
39a45edc 323 if (sb_index != (size_t) -1)
252b5132
RH
324 {
325 if (sb_index >= from_sb.len)
326 {
327 sb_kill (&from_sb);
657edeab 328 if (from_sb_expansion == expanding_macro)
7152f1dc
KH
329 {
330 cond_finish_check (macro_nest);
9f10757c 331#ifdef md_macro_end
7152f1dc
KH
332 /* Allow the target to clean up per-macro expansion
333 data. */
334 md_macro_end ();
9f10757c 335#endif
7152f1dc
KH
336 }
337 --macro_nest;
252b5132 338 partial_where = NULL;
511b1657 339 partial_size = 0;
252b5132
RH
340 if (next_saved_file != NULL)
341 *bufp = input_scrub_pop (next_saved_file);
342 return partial_where;
343 }
344
345 partial_where = from_sb.ptr + from_sb.len;
346 partial_size = 0;
347 *bufp = from_sb.ptr + sb_index;
348 sb_index = from_sb.len;
349 return partial_where;
350 }
351
252b5132
RH
352 if (partial_size)
353 {
9cee1c1e 354 memmove (buffer_start + BEFORE_SIZE, partial_where, partial_size);
252b5132
RH
355 memcpy (buffer_start + BEFORE_SIZE, save_source, AFTER_SIZE);
356 }
511b1657
AM
357
358 while (1)
252b5132 359 {
511b1657 360 char *p;
9cee1c1e 361 char *start = buffer_start + BEFORE_SIZE + partial_size;
511b1657
AM
362
363 *bufp = buffer_start + BEFORE_SIZE;
9cee1c1e 364 limit = input_file_give_next_buffer (start);
511b1657 365 if (!limit)
252b5132 366 {
9cee1c1e
NS
367 if (!partial_size)
368 /* End of this file. */
511b1657 369 break;
252b5132 370
511b1657
AM
371 as_warn (_("end of file not at end of a line; newline inserted"));
372 p = buffer_start + BEFORE_SIZE + partial_size;
373 *p++ = '\n';
374 limit = p;
375 }
376 else
377 {
f8ef9cd7
BS
378 /* Terminate the buffer to avoid confusing TC_EOL_IN_INSN. */
379 *limit = '\0';
511b1657
AM
380
381 /* Find last newline. */
f8ef9cd7 382 for (p = limit - 1; *p != '\n' || TC_EOL_IN_INSN (p); --p)
9cee1c1e
NS
383 if (p < start)
384 goto read_more;
252b5132
RH
385 ++p;
386 }
387
578c64a4
NC
388 if (multibyte_handling == multibyte_warn)
389 (void) scan_for_multibyte_characters ((const unsigned char *) p,
390 (const unsigned char *) limit,
391 true /* Generate warnings */);
392
9cee1c1e
NS
393 /* We found a newline in the newly read chars. */
394 partial_where = p;
395 partial_size = limit - p;
396
397 /* Save the fragment after that last newline. */
398 memcpy (save_source, partial_where, (int) AFTER_SIZE);
399 memcpy (partial_where, AFTER_STRING, (int) AFTER_SIZE);
400 return partial_where;
252b5132 401
9cee1c1e
NS
402 read_more:
403 /* Didn't find a newline. Read more text. */
511b1657 404 partial_size = limit - (buffer_start + BEFORE_SIZE);
9cee1c1e
NS
405 if (buffer_length - input_file_buffer_size () < partial_size)
406 {
407 /* Increase the buffer when it doesn't have room for the
408 next block of input. */
409 buffer_length *= 2;
410 buffer_start = XRESIZEVEC (char, buffer_start,
411 (buffer_length
412 + BEFORE_SIZE + AFTER_SIZE + 1));
413 }
252b5132 414 }
511b1657
AM
415
416 /* Tell the listing we've finished the file. */
417 LISTING_EOF ();
418
419 /* If we should pop to another file at EOF, do it. */
420 partial_where = NULL;
421 if (next_saved_file)
422 *bufp = input_scrub_pop (next_saved_file);
423
424 return partial_where;
7152f1dc 425}
252b5132 426\f
7152f1dc
KH
427/* The remaining part of this file deals with line numbers, error
428 messages and so on. Return TRUE if we opened any file. */
252b5132 429
252b5132 430int
b1f1fa96 431seen_at_least_1_file (void)
252b5132
RH
432{
433 return (physical_input_file != NULL);
434}
435
436void
b1f1fa96 437bump_line_counters (void)
252b5132 438{
39a45edc 439 if (sb_index == (size_t) -1)
7992631e
JB
440 ++physical_input_line;
441
969b9a36 442 if (logical_input_line != -1u)
7992631e 443 ++logical_input_line;
252b5132
RH
444}
445\f
7152f1dc
KH
446/* Tells us what the new logical line number and file are.
447 If the line_number is -1, we don't change the current logical line
c39e89c3 448 number.
2ee1792b
JB
449 If fname is NULL, we don't change the current logical file name, unless
450 bit 3 of flags is set.
7152f1dc
KH
451 Returns nonzero if the filename actually changes. */
452
66b39b8b 453void
3b4dbbbf 454new_logical_line_flags (const char *fname, /* DON'T destroy it! We point to it! */
93e914b2
AO
455 int line_number,
456 int flags)
252b5132 457{
93e914b2
AO
458 switch (flags)
459 {
460 case 0:
461 break;
462 case 1:
463 if (line_number != -1)
464 abort ();
465 break;
466 case 1 << 1:
467 case 1 << 2:
468 /* FIXME: we could check that include nesting is correct. */
469 break;
2ee1792b 470 case 1 << 3:
b60f6a62 471 if (line_number < 0 || fname != NULL)
2ee1792b 472 abort ();
b60f6a62
JB
473 if (next_saved_file == NULL)
474 fname = physical_input_file;
475 else if (next_saved_file->logical_input_file)
2ee1792b
JB
476 fname = next_saved_file->logical_input_file;
477 else
478 fname = next_saved_file->physical_input_file;
479 break;
93e914b2
AO
480 default:
481 abort ();
482 }
483
969b9a36
JB
484 is_linefile = flags != 1 && (flags != 0 || fname);
485
252b5132
RH
486 if (line_number >= 0)
487 logical_input_line = line_number;
93e914b2
AO
488 else if (line_number == -1 && fname && !*fname && (flags & (1 << 2)))
489 {
490 logical_input_file = physical_input_file;
491 logical_input_line = physical_input_line;
492 fname = NULL;
493 }
252b5132 494
66b39b8b
JB
495 if (fname
496 && (logical_input_file == NULL
497 || filename_cmp (logical_input_file, fname)))
498 logical_input_file = fname;
7152f1dc 499}
93e914b2 500
66b39b8b 501void
3b4dbbbf 502new_logical_line (const char *fname, int line_number)
93e914b2 503{
66b39b8b 504 new_logical_line_flags (fname, line_number, 0);
93e914b2
AO
505}
506
969b9a36
JB
507void
508as_report_context (void)
509{
510 const struct input_save *saved = next_saved_file;
511 enum expansion expansion = from_sb_expansion;
512 int indent = 1;
513
514 if (!macro_nest)
515 return;
516
517 do
518 {
519 if (expansion != expanding_macro)
520 /* Nothing. */;
521 else if (saved->logical_input_file != NULL
522 && saved->logical_input_line != -1u)
523 as_info_where (saved->logical_input_file, saved->logical_input_line,
524 indent, _("macro invoked from here"));
525 else
526 as_info_where (saved->physical_input_file, saved->physical_input_line,
527 indent, _("macro invoked from here"));
528
529 expansion = saved->from_sb_expansion;
530 ++indent;
531 }
532 while ((saved = saved->next_saved_file) != NULL);
533}
252b5132 534\f
39865a7f
NC
535/* Return the current physical input file name and line number, if known */
536
537const char *
538as_where_physical (unsigned int *linep)
539{
540 if (physical_input_file != NULL)
541 {
542 if (linep != NULL)
543 *linep = physical_input_line;
544 return physical_input_file;
545 }
546
547 if (linep != NULL)
548 *linep = 0;
549 return NULL;
550}
551
969b9a36
JB
552/* Return the file name and line number at the top most macro
553 invocation, unless .file / .line were used inside a macro. */
7152f1dc 554
3b4dbbbf
TS
555const char *
556as_where (unsigned int *linep)
969b9a36
JB
557{
558 const char *file = as_where_top (linep);
559
560 if (macro_nest && is_linefile)
561 {
562 const struct input_save *saved = next_saved_file;
563 enum expansion expansion = from_sb_expansion;
564
565 do
566 {
969b9a36
JB
567 if (expansion != expanding_macro)
568 /* Nothing. */;
569 else if (saved->logical_input_file != NULL
570 && (linep == NULL || saved->logical_input_line != -1u))
571 {
572 if (linep != NULL)
573 *linep = saved->logical_input_line;
574 file = saved->logical_input_file;
575 }
576 else if (saved->physical_input_file != NULL)
577 {
578 if (linep != NULL)
579 *linep = saved->physical_input_line;
580 file = saved->physical_input_file;
581 }
582
583 expansion = saved->from_sb_expansion;
584 }
585 while ((saved = saved->next_saved_file) != NULL);
586 }
587
588 return file;
589}
590
591/* Return the current file name and line number. */
592
593const char *
594as_where_top (unsigned int *linep)
252b5132
RH
595{
596 if (logical_input_file != NULL
ecc263d6 597 && (linep == NULL || logical_input_line != -1u))
252b5132 598 {
252b5132
RH
599 if (linep != NULL)
600 *linep = logical_input_line;
3b4dbbbf 601 return logical_input_file;
252b5132 602 }
39865a7f
NC
603
604 return as_where_physical (linep);
7152f1dc 605}