1 /* input_scrub.c - Break up input buffers into whole numbers of lines.
2 Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 1997
3 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 #include <errno.h> /* Need this to make errno declaration right */
24 #include "input-file.h"
29 * O/S independent module to supply buffers of sanitised source code
30 * to rest of assembler. We get sanitised input data of arbitrary length.
31 * We break these buffers on line boundaries, recombine pieces that
32 * were broken across buffers, and return a buffer of full lines to
34 * The last partial line begins the next buffer we build and return to caller.
35 * The buffer returned to caller is preceeded by BEFORE_STRING and followed
36 * by AFTER_STRING, as sentinels. The last character before AFTER_STRING
38 * Also looks after line numbers, for e.g. error messages.
42 * We don't care how filthy our buffers are, but our callers assume
43 * that the following sanitation has already been done.
45 * No comments, reduce a comment to a space.
46 * Reduce a tab to a space unless it is 1st char of line.
47 * All multiple tabs and spaces collapsed into 1 char. Tab only
48 * legal if 1st char of line.
49 * # line file statements converted to .line x;.file y; statements.
50 * Escaped newlines at end of line: remove them but add as many newlines
51 * to end of statement as you removed in the middle, to synch line numbers.
54 #define BEFORE_STRING ("\n")
55 #define AFTER_STRING ("\0") /* memcpy of 0 chars might choke. */
56 #define BEFORE_SIZE (1)
57 #define AFTER_SIZE (1)
59 static char *buffer_start
; /*->1st char of full buffer area. */
60 static char *partial_where
; /*->after last full line in buffer. */
61 static int partial_size
; /* >=0. Number of chars in partial line in buffer. */
62 static char save_source
[AFTER_SIZE
];
63 /* Because we need AFTER_STRING just after last */
64 /* full line, it clobbers 1st part of partial */
65 /* line. So we preserve 1st part of partial */
67 static unsigned int buffer_length
; /* What is the largest size buffer that */
68 /* input_file_give_next_buffer() could */
71 /* The index into an sb structure we are reading from. -1 if none. */
72 static int sb_index
= -1;
74 /* If we are reading from an sb structure, this is it. */
77 /* Should we do a conditional check on from_sb? */
78 static int from_sb_is_expansion
= 1;
80 /* The number of nested sb structures we have included. */
83 /* We can have more than one source file open at once, though the info for all
84 but the latest one are saved off in a struct input_save. These files remain
85 open, so we are limited by the number of open files allowed by the
86 underlying OS. We may also sequentially read more than one source file in an
89 /* We must track the physical file and line number for error messages. We also
90 track a "logical" file and line number corresponding to (C?) compiler
91 source line numbers. Whenever we open a file we must fill in
92 physical_input_file. So if it is NULL we have not opened any files yet. */
94 static char *physical_input_file
;
95 static char *logical_input_file
;
97 typedef unsigned int line_numberT
; /* 1-origin line number in a source file. */
98 /* A line ends in '\n' or eof. */
100 static line_numberT physical_input_line
;
101 static int logical_input_line
;
103 /* Struct used to save the state of the input handler during include files */
109 char save_source
[AFTER_SIZE
];
110 unsigned int buffer_length
;
111 char *physical_input_file
;
112 char *logical_input_file
;
113 line_numberT physical_input_line
;
114 int logical_input_line
;
117 int from_sb_is_expansion
; /* Should we do a conditional check? */
118 struct input_save
*next_saved_file
; /* Chain of input_saves */
119 char *input_file_save
; /* Saved state of input routines */
120 char *saved_position
; /* Caller's saved position in buf */
123 static struct input_save
*input_scrub_push
PARAMS ((char *saved_position
));
124 static char *input_scrub_pop
PARAMS ((struct input_save
*arg
));
125 static void as_1_char
PARAMS ((unsigned int c
, FILE * stream
));
127 /* Saved information about the file that .include'd this one. When we hit EOF,
128 we automatically pop to that file. */
130 static struct input_save
*next_saved_file
;
132 /* Push the state of input reading and scrubbing so that we can #include.
133 The return value is a 'void *' (fudged for old compilers) to a save
134 area, which can be restored by passing it to input_scrub_pop(). */
135 static struct input_save
*
136 input_scrub_push (saved_position
)
137 char *saved_position
;
139 register struct input_save
*saved
;
141 saved
= (struct input_save
*) xmalloc (sizeof *saved
);
143 saved
->saved_position
= saved_position
;
144 saved
->buffer_start
= buffer_start
;
145 saved
->partial_where
= partial_where
;
146 saved
->partial_size
= partial_size
;
147 saved
->buffer_length
= buffer_length
;
148 saved
->physical_input_file
= physical_input_file
;
149 saved
->logical_input_file
= logical_input_file
;
150 saved
->physical_input_line
= physical_input_line
;
151 saved
->logical_input_line
= logical_input_line
;
152 saved
->sb_index
= sb_index
;
153 saved
->from_sb
= from_sb
;
154 saved
->from_sb_is_expansion
= from_sb_is_expansion
;
155 memcpy (saved
->save_source
, save_source
, sizeof (save_source
));
156 saved
->next_saved_file
= next_saved_file
;
157 saved
->input_file_save
= input_file_push ();
159 input_file_begin (); /* Reinitialize! */
160 logical_input_line
= -1;
161 logical_input_file
= (char *) NULL
;
162 buffer_length
= input_file_buffer_size ();
165 buffer_start
= xmalloc ((BEFORE_SIZE
+ buffer_length
+ buffer_length
+ AFTER_SIZE
));
166 memcpy (buffer_start
, BEFORE_STRING
, (int) BEFORE_SIZE
);
169 } /* input_scrub_push() */
172 input_scrub_pop (saved
)
173 struct input_save
*saved
;
175 char *saved_position
;
177 input_scrub_end (); /* Finish off old buffer */
179 input_file_pop (saved
->input_file_save
);
180 saved_position
= saved
->saved_position
;
181 buffer_start
= saved
->buffer_start
;
182 buffer_length
= saved
->buffer_length
;
183 physical_input_file
= saved
->physical_input_file
;
184 logical_input_file
= saved
->logical_input_file
;
185 physical_input_line
= saved
->physical_input_line
;
186 logical_input_line
= saved
->logical_input_line
;
187 sb_index
= saved
->sb_index
;
188 from_sb
= saved
->from_sb
;
189 from_sb_is_expansion
= saved
->from_sb_is_expansion
;
190 partial_where
= saved
->partial_where
;
191 partial_size
= saved
->partial_size
;
192 next_saved_file
= saved
->next_saved_file
;
193 memcpy (save_source
, saved
->save_source
, sizeof (save_source
));
196 return saved_position
;
203 know (strlen (BEFORE_STRING
) == BEFORE_SIZE
);
204 know (strlen (AFTER_STRING
) == AFTER_SIZE
|| (AFTER_STRING
[0] == '\0' && AFTER_SIZE
== 1));
208 buffer_length
= input_file_buffer_size ();
210 buffer_start
= xmalloc ((BEFORE_SIZE
+ buffer_length
+ buffer_length
+ AFTER_SIZE
));
211 memcpy (buffer_start
, BEFORE_STRING
, (int) BEFORE_SIZE
);
213 /* Line number things. */
214 logical_input_line
= -1;
215 logical_input_file
= (char *) NULL
;
216 physical_input_file
= NULL
; /* No file read yet. */
217 next_saved_file
= NULL
; /* At EOF, don't pop to any other file */
218 do_scrub_begin (flag_m68k_mri
);
232 /* Start reading input from a new file. */
234 char * /* Return start of caller's part of buffer. */
235 input_scrub_new_file (filename
)
238 input_file_open (filename
, !flag_no_comments
);
239 physical_input_file
= filename
[0] ? filename
: _("{standard input}");
240 physical_input_line
= 0;
243 return (buffer_start
+ BEFORE_SIZE
);
247 /* Include a file from the current file. Save our state, cause it to
248 be restored on EOF, and begin handling a new file. Same result as
249 input_scrub_new_file. */
252 input_scrub_include_file (filename
, position
)
256 next_saved_file
= input_scrub_push (position
);
257 return input_scrub_new_file (filename
);
260 /* Start getting input from an sb structure. This is used when
261 expanding a macro. */
264 input_scrub_include_sb (from
, position
, is_expansion
)
269 if (macro_nest
> max_macro_nest
)
270 as_fatal (_("buffers nested too deeply"));
273 #ifdef md_macro_start
280 next_saved_file
= input_scrub_push (position
);
283 from_sb_is_expansion
= is_expansion
;
284 if (from
->len
>= 1 && from
->ptr
[0] != '\n')
286 /* Add the sentinel required by read.c. */
287 sb_add_char (&from_sb
, '\n');
289 sb_add_sb (&from_sb
, from
);
292 /* These variables are reset by input_scrub_push. Restore them
293 since we are, after all, still at the same point in the file. */
294 logical_input_line
= next_saved_file
->logical_input_line
;
295 logical_input_file
= next_saved_file
->logical_input_file
;
305 input_scrub_next_buffer (bufp
)
308 register char *limit
; /*->just after last char of buffer. */
312 if (sb_index
>= from_sb
.len
)
315 if (from_sb_is_expansion
)
317 cond_finish_check (macro_nest
);
319 /* allow the target to clean up per-macro expansion data */
324 partial_where
= NULL
;
325 if (next_saved_file
!= NULL
)
326 *bufp
= input_scrub_pop (next_saved_file
);
327 return partial_where
;
330 partial_where
= from_sb
.ptr
+ from_sb
.len
;
332 *bufp
= from_sb
.ptr
+ sb_index
;
333 sb_index
= from_sb
.len
;
334 return partial_where
;
337 *bufp
= buffer_start
+ BEFORE_SIZE
;
341 memcpy (buffer_start
+ BEFORE_SIZE
, partial_where
,
342 (unsigned int) partial_size
);
343 memcpy (buffer_start
+ BEFORE_SIZE
, save_source
, AFTER_SIZE
);
345 limit
= input_file_give_next_buffer (buffer_start
350 register char *p
; /* Find last newline. */
352 for (p
= limit
- 1; *p
!= '\n'; --p
)
356 while (p
<= buffer_start
+ BEFORE_SIZE
)
360 limoff
= limit
- buffer_start
;
361 buffer_length
+= input_file_buffer_size ();
362 buffer_start
= xrealloc (buffer_start
,
366 *bufp
= buffer_start
+ BEFORE_SIZE
;
367 limit
= input_file_give_next_buffer (buffer_start
+ limoff
);
371 as_warn (_("partial line at end of file ignored"));
372 partial_where
= NULL
;
374 *bufp
= input_scrub_pop (next_saved_file
);
378 for (p
= limit
- 1; *p
!= '\n'; --p
)
384 partial_size
= limit
- p
;
385 memcpy (save_source
, partial_where
, (int) AFTER_SIZE
);
386 memcpy (partial_where
, AFTER_STRING
, (int) AFTER_SIZE
);
391 if (partial_size
> 0)
393 as_warn (_("Partial line at end of file ignored"));
396 /* Tell the listing we've finished the file. */
399 /* If we should pop to another file at EOF, do it. */
402 *bufp
= input_scrub_pop (next_saved_file
); /* Pop state */
403 /* partial_where is now correct to return, since we popped it. */
406 return (partial_where
);
407 } /* input_scrub_next_buffer() */
410 * The remaining part of this file deals with line numbers, error
411 * messages and so on.
416 seen_at_least_1_file () /* TRUE if we opened any file. */
418 return (physical_input_file
!= NULL
);
422 bump_line_counters ()
426 ++physical_input_line
;
427 if (logical_input_line
>= 0)
428 ++logical_input_line
;
435 * Tells us what the new logical line number and file are.
436 * If the line_number is -1, we don't change the current logical line
437 * number. If it is -2, we decrement the logical line number (this is
438 * to support the .appfile pseudo-op inserted into the stream by
440 * If the fname is NULL, we don't change the current logical file name.
441 * Returns nonzero if the filename actually changes.
444 new_logical_line (fname
, line_number
)
445 char *fname
; /* DON'T destroy it! We point to it! */
448 if (line_number
>= 0)
449 logical_input_line
= line_number
;
450 else if (line_number
== -2 && logical_input_line
> 0)
451 --logical_input_line
;
454 && (logical_input_file
== NULL
455 || strcmp (logical_input_file
, fname
)))
457 logical_input_file
= fname
;
462 } /* new_logical_line() */
467 * Return the current file name and line number.
468 * namep should be char * const *, but there are compilers which screw
469 * up declarations like that, and it's easier to avoid it.
472 as_where (namep
, linep
)
476 if (logical_input_file
!= NULL
477 && (linep
== NULL
|| logical_input_line
>= 0))
479 *namep
= logical_input_file
;
481 *linep
= logical_input_line
;
483 else if (physical_input_file
!= NULL
)
485 *namep
= physical_input_file
;
487 *linep
= physical_input_line
;
501 * a s _ h o w m u c h ()
503 * Output to given stream how much of line we have scanned so far.
504 * Assumes we have scanned up to and including input_line_pointer.
505 * No free '\n' at end of line.
509 FILE *stream
; /* Opened for write please. */
511 register char *p
; /* Scan input line. */
512 /* register char c; JF unused */
514 for (p
= input_line_pointer
- 1; *p
!= '\n'; --p
)
517 ++p
; /* p->1st char of line. */
518 for (; p
<= input_line_pointer
; p
++)
520 /* Assume ASCII. EBCDIC & other micro-computer char sets ignored. */
521 as_1_char ((unsigned char) *p
, stream
);
526 as_1_char (c
, stream
)
532 (void) putc ('%', stream
);
537 (void) putc ('^', stream
);
540 (void) putc (c
, stream
);
543 /* end of input_scrub.c */