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