keep fr30
[deliverable/binutils-gdb.git] / gas / listing.c
CommitLineData
5d9f0ecf 1/* listing.c - mainting assembly listings
7a6f6782
NC
2 Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 1998
3 Free Software Foundation, Inc.
c593cf41
SC
4
5This file is part of GAS, the GNU Assembler.
6
7GAS is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GAS is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
7b7a88d0
RH
18along with GAS; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
5d9f0ecf
SC
21
22/*
c593cf41
SC
23 Contributed by Steve Chamberlain
24 sac@cygnus.com
25
26
27 A listing page looks like:
58d4951d 28
c593cf41
SC
29 LISTING_HEADER sourcefilename pagenumber
30 TITLE LINE
31 SUBTITLE LINE
32 linenumber address data source
33 linenumber address data source
34 linenumber address data source
35 linenumber address data source
36
37 If not overridden, the listing commands are:
38
58d4951d
ILT
39 .title "stuff"
40 Put "stuff" onto the title line
c593cf41
SC
41 .sbttl "stuff"
42 Put stuff onto the subtitle line
43
5d9f0ecf
SC
44 If these commands come within 10 lines of the top of the page, they
45 will affect the page they are on, as well as any subsequent page
c593cf41
SC
46
47 .eject
48 Thow a page
49 .list
50 Increment the enable listing counter
51 .nolist
52 Decrement the enable listing counter
53
54 .psize Y[,X]
55 Set the paper size to X wide and Y high. Setting a psize Y of
56 zero will suppress form feeds except where demanded by .eject
57
58d4951d 58 If the counter goes below zero, listing is suppressed.
c593cf41
SC
59
60
61 Listings are a maintained by read calling various listing_<foo>
62 functions. What happens most is that the macro NO_LISTING is not
63 defined (from the Makefile), then the macro LISTING_NEWLINE expands
64 into a call to listing_newline. The call is done from read.c, every
65 time it sees a newline, and -l is on the command line.
66
67 The function listing_newline remembers the frag associated with the
68 newline, and creates a new frag - note that this is wasteful, but not
69 a big deal, since listing slows things down a lot anyway. The
70 function also rememebers when the filename changes.
71
72 When all the input has finished, and gas has had a chance to settle
73 down, the listing is output. This is done by running down the list of
74 frag/source file records, and opening the files as needed and printing
75 out the bytes and chars associated with them.
76
77 The only things which the architecture can change about the listing
78 are defined in these macros:
79
80 LISTING_HEADER The name of the architecture
81 LISTING_WORD_SIZE The make of the number of bytes in a word, this determines
82 the clumping of the output data. eg a value of
83 2 makes words look like 1234 5678, whilst 1
84 would make the same value look like 12 34 56
85 78
86 LISTING_LHS_WIDTH Number of words of above size for the lhs
87
88 LISTING_LHS_WIDTH_SECOND Number of words for the data on the lhs
89 for the second line
90
91 LISTING_LHS_CONT_LINES Max number of lines to use up for a continutation
92 LISTING_RHS_WIDTH Number of chars from the input file to print
93 on a line
94*/
5d9f0ecf 95
58d4951d
ILT
96#include <ctype.h>
97
5d9f0ecf
SC
98#include "as.h"
99#include <obstack.h>
100#include "input-file.h"
e860dfd0 101#include "subsegs.h"
7143f43c 102
5d9f0ecf 103#ifndef NO_LISTING
7b7a88d0 104
5d9f0ecf
SC
105#ifndef LISTING_HEADER
106#define LISTING_HEADER "GAS LISTING"
107#endif
108#ifndef LISTING_WORD_SIZE
109#define LISTING_WORD_SIZE 4
110#endif
111#ifndef LISTING_LHS_WIDTH
112#define LISTING_LHS_WIDTH 1
113#endif
114#ifndef LISTING_LHS_WIDTH_SECOND
115#define LISTING_LHS_WIDTH_SECOND 1
116#endif
117#ifndef LISTING_RHS_WIDTH
118#define LISTING_RHS_WIDTH 100
119#endif
58d4951d 120#ifndef LISTING_LHS_CONT_LINES
5d9f0ecf
SC
121#define LISTING_LHS_CONT_LINES 4
122#endif
123
b3ca913f 124/* This structure remembers which .s were used */
58d4951d 125typedef struct file_info_struct
c593cf41 126{
7a6f6782
NC
127 struct file_info_struct * next;
128 char * filename;
129 long pos;
130 unsigned int linenum;
131 int at_end;
58d4951d 132}
58d4951d
ILT
133file_info_type;
134
7a6f6782 135/* This structure rememebrs which line from which file goes into which
c593cf41 136 frag */
7b7a88d0 137struct list_info_struct
c593cf41
SC
138{
139 /* Frag which this line of source is nearest to */
7a6f6782 140 fragS * frag;
7b7a88d0 141
c593cf41
SC
142 /* The actual line in the source file */
143 unsigned int line;
144 /* Pointer to the file info struct for the file which this line
145 belongs to */
7a6f6782 146 file_info_type * file;
c593cf41 147
7b7a88d0 148 /* The expanded text of any macro that may have been executing. */
7a6f6782 149 char * line_contents;
7b7a88d0 150
c593cf41 151 /* Next in list */
7a6f6782 152 struct list_info_struct * next;
a39116f1 153
c593cf41
SC
154 /* Pointer to the file info struct for the high level language
155 source line that belongs here */
7a6f6782 156 file_info_type * hll_file;
c593cf41 157 /* High level language source line */
7a6f6782 158 unsigned int hll_line;
58d4951d 159
c593cf41 160 /* Pointer to any error message associated with this line */
7a6f6782 161 char * message;
58d4951d
ILT
162
163 enum
164 {
165 EDICT_NONE,
166 EDICT_SBTTL,
167 EDICT_TITLE,
168 EDICT_NOLIST,
169 EDICT_LIST,
7b7a88d0 170 EDICT_NOLIST_NEXT,
58d4951d
ILT
171 EDICT_EJECT
172 } edict;
7a6f6782 173 char * edict_arg;
58d4951d 174
7b7a88d0
RH
175 /* Nonzero if this line is to be omitted because it contains
176 debugging information. This can become a flags field if we come
177 up with more information to store here. */
178 int debugging;
179};
5d9f0ecf 180
7b7a88d0 181typedef struct list_info_struct list_info_type;
c593cf41 182
c593cf41 183
7a6f6782
NC
184int listing_lhs_width = LISTING_LHS_WIDTH;
185int listing_lhs_width_second = LISTING_LHS_WIDTH_SECOND;
186int listing_lhs_cont_lines = LISTING_LHS_CONT_LINES;
187int listing_rhs_width = LISTING_RHS_WIDTH;
188
189struct list_info_struct * listing_tail;
190
191static file_info_type * file_info_head;
192static file_info_type * last_open_file_info;
193static FILE * last_open_file;
194static struct list_info_struct * head;
195static int paper_width = 200;
196static int paper_height = 60;
197
198extern int listing;
5d9f0ecf 199
85a961c6 200/* File to output listings to. */
7a6f6782 201static FILE * list_file;
c593cf41 202
7b7a88d0
RH
203/* This static array is used to keep the text of data to be printed
204 before the start of the line. */
5d9f0ecf 205
7b7a88d0 206#define MAX_BYTES \
76f9e5af
RH
207 (((LISTING_WORD_SIZE * 2) + 1) * listing_lhs_width \
208 + ((((LISTING_WORD_SIZE * 2) + 1) * listing_lhs_width_second) \
209 * listing_lhs_cont_lines) \
7b7a88d0 210 + 20)
5d9f0ecf 211
7a6f6782 212static char * data_buffer;
58d4951d
ILT
213
214/* Prototypes. */
215static void listing_message PARAMS ((const char *name, const char *message));
7a6f6782 216static file_info_type * file_info PARAMS ((const char *file_name));
58d4951d 217static void new_frag PARAMS ((void));
7a6f6782 218static char * buffer_line PARAMS ((file_info_type *file,
58d4951d
ILT
219 char *line, unsigned int size));
220static void listing_page PARAMS ((list_info_type *list));
221static unsigned int calc_hex PARAMS ((list_info_type *list));
7b7a88d0
RH
222static void print_lines PARAMS ((list_info_type *, unsigned int,
223 char *, unsigned int));
58d4951d
ILT
224static void list_symbol_table PARAMS ((void));
225static void print_source PARAMS ((file_info_type *current_file,
226 list_info_type *list,
227 char *buffer,
228 unsigned int width));
7b7a88d0 229static int debugging_pseudo PARAMS ((list_info_type *, const char *));
58d4951d
ILT
230static void listing_listing PARAMS ((char *name));
231
232
5d9f0ecf 233static void
58d4951d
ILT
234listing_message (name, message)
235 const char *name;
236 const char *message;
c593cf41 237{
58d4951d
ILT
238 unsigned int l = strlen (name) + strlen (message) + 1;
239 char *n = (char *) xmalloc (l);
240 strcpy (n, name);
241 strcat (n, message);
242 if (listing_tail != (list_info_type *) NULL)
243 {
244 listing_tail->message = n;
245 }
c593cf41
SC
246}
247
58d4951d
ILT
248void
249listing_warning (message)
250 const char *message;
5d9f0ecf 251{
7a6f6782 252 listing_message (_("Warning:"), message);
5d9f0ecf
SC
253}
254
58d4951d
ILT
255void
256listing_error (message)
257 const char *message;
5d9f0ecf 258{
7a6f6782 259 listing_message (_("Error:"), message);
5d9f0ecf
SC
260}
261
5d9f0ecf 262static file_info_type *
58d4951d
ILT
263file_info (file_name)
264 const char *file_name;
5d9f0ecf 265{
c593cf41
SC
266 /* Find an entry with this file name */
267 file_info_type *p = file_info_head;
58d4951d
ILT
268
269 while (p != (file_info_type *) NULL)
270 {
271 if (strcmp (p->filename, file_name) == 0)
272 return p;
273 p = p->next;
274 }
c593cf41
SC
275
276 /* Make new entry */
277
58d4951d 278 p = (file_info_type *) xmalloc (sizeof (file_info_type));
c593cf41
SC
279 p->next = file_info_head;
280 file_info_head = p;
e860dfd0 281 p->filename = xmalloc ((unsigned long) strlen (file_name) + 1);
58d4951d 282 strcpy (p->filename, file_name);
7b7a88d0 283 p->pos = 0;
c593cf41 284 p->linenum = 0;
bcaa9b05 285 p->at_end = 0;
7143f43c 286
c593cf41 287 return p;
c593cf41 288}
5d9f0ecf
SC
289
290
58d4951d
ILT
291static void
292new_frag ()
b3ca913f 293{
58d4951d
ILT
294
295 frag_wane (frag_now);
296 frag_new (0);
c593cf41 297
b3ca913f
SC
298}
299
58d4951d
ILT
300void
301listing_newline (ps)
302 char *ps;
5d9f0ecf 303{
e860dfd0
KR
304 char *file;
305 unsigned int line;
58d4951d 306 static unsigned int last_line = 0xffff;
f949f7b8 307 static char *last_file = NULL;
7b7a88d0 308 list_info_type *new = NULL;
e860dfd0 309
f9b990cd
ILT
310 if (listing == 0)
311 return;
312
313 if (now_seg == absolute_section)
314 return;
315
7b7a88d0
RH
316#ifdef OBJ_ELF
317 /* In ELF, anything in a section beginning with .debug or .line is
318 considered to be debugging information. This includes the
319 statement which switches us into the debugging section, which we
320 can only set after we are already in the debugging section. */
321 if ((listing & LISTING_NODEBUG) != 0
322 && listing_tail != NULL
323 && ! listing_tail->debugging)
324 {
325 const char *segname;
326
327 segname = segment_name (now_seg);
328 if (strncmp (segname, ".debug", sizeof ".debug" - 1) == 0
329 || strncmp (segname, ".line", sizeof ".line" - 1) == 0)
330 listing_tail->debugging = 1;
331 }
332#endif
333
e860dfd0 334 as_where (&file, &line);
7b7a88d0 335 if (ps == NULL)
c593cf41 336 {
7a6f6782 337 if (line == last_line && !(last_file && file && strcmp (file, last_file)))
7b7a88d0 338 return;
58d4951d
ILT
339
340 new = (list_info_type *) xmalloc (sizeof (list_info_type));
7a6f6782
NC
341
342 /* Detect if we are reading from stdin by examining the file
343 name returned by as_where().
344
345 [FIXME: We rely upon the name in the strcmp below being the
346 same as the one used by input_scrub_new_file(), if that is
347 not true, then this code will fail].
348
349 If we are reading from stdin, then we need to save each input line
350 here (assuming of course that we actually have a line of input to read),
351 so that it can be displayed in the listing that is produced at the end
352 of the assembly. */
353 if (strcmp (file, _("{standard input}")) == 0
354 && input_line_pointer != NULL)
355 {
356 char * copy;
357 int len;
3b0ae696 358 int seen_quote = 0;
7a6f6782
NC
359
360 for (copy = input_line_pointer - 1;
3b0ae696 361 * copy && (seen_quote || (! is_end_of_line [* copy]));
7a6f6782 362 copy ++)
3b0ae696
NC
363 if (* copy == '"' && copy[-1] != '\')
364 seen_quote = ! seen_quote;
7a6f6782
NC
365
366 len = (copy - input_line_pointer) + 2;
367
368 copy = xmalloc (len);
369
370 if (copy != NULL)
371 {
372 char * src = input_line_pointer - 1;
373 char * dest = copy;
374
375 while (--len)
376 {
377 char c = * src ++;
378
379 /* Omit control characters in the listing. */
380 if (isascii (c) && ! iscntrl (c))
381 * dest ++ = c;
382 }
383
384 *dest = 0;
385 }
386
387 new->line_contents = copy;
388 }
389 else
390 new->line_contents = NULL;
7b7a88d0
RH
391 }
392 else
393 {
394 new = (list_info_type *) xmalloc (sizeof (list_info_type));
395 new->line_contents = ps;
396 }
58d4951d 397
7b7a88d0
RH
398 last_line = line;
399 last_file = file;
7a6f6782 400
7b7a88d0
RH
401 new_frag ();
402
403 if (listing_tail)
7a6f6782 404 listing_tail->next = new;
7b7a88d0 405 else
7a6f6782
NC
406 head = new;
407
7b7a88d0
RH
408 listing_tail = new;
409
410 new->frag = frag_now;
411 new->line = line;
412 new->file = file_info (file);
413 new->next = (list_info_type *) NULL;
414 new->message = (char *) NULL;
415 new->edict = EDICT_NONE;
416 new->hll_file = (file_info_type *) NULL;
417 new->hll_line = 0;
418 new->debugging = 0;
7a6f6782 419
7b7a88d0
RH
420 new_frag ();
421
422#ifdef OBJ_ELF
423 /* In ELF, anything in a section beginning with .debug or .line is
424 considered to be debugging information. */
425 if ((listing & LISTING_NODEBUG) != 0)
426 {
427 const char *segname;
428
429 segname = segment_name (now_seg);
430 if (strncmp (segname, ".debug", sizeof ".debug" - 1) == 0
431 || strncmp (segname, ".line", sizeof ".line" - 1) == 0)
432 new->debugging = 1;
433 }
434#endif
c593cf41 435}
5d9f0ecf 436
e860dfd0
KR
437/* Attach all current frags to the previous line instead of the
438 current line. This is called by the MIPS backend when it discovers
439 that it needs to add some NOP instructions; the added NOP
440 instructions should go with the instruction that has the delay, not
441 with the new instruction. */
442
443void
444listing_prev_line ()
445{
446 list_info_type *l;
447 fragS *f;
448
449 if (head == (list_info_type *) NULL
450 || head == listing_tail)
451 return;
452
453 new_frag ();
454
455 for (l = head; l->next != listing_tail; l = l->next)
456 ;
457
458 for (f = frchain_now->frch_root; f != (fragS *) NULL; f = f->fr_next)
459 if (f->line == listing_tail)
460 f->line = l;
461
462 listing_tail->frag = frag_now;
463 new_frag ();
464}
3340f7e5 465
58d4951d 466/*
c593cf41
SC
467 This function returns the next source line from the file supplied,
468 truncated to size. It appends a fake line to the end of each input
469 file to make
470*/
5d9f0ecf
SC
471
472static char *
58d4951d
ILT
473buffer_line (file, line, size)
474 file_info_type * file;
475 char *line;
476 unsigned int size;
5d9f0ecf 477{
c593cf41
SC
478 unsigned int count = 0;
479 int c;
58d4951d 480
c593cf41
SC
481 char *p = line;
482
483 /* If we couldn't open the file, return an empty line */
7b7a88d0
RH
484 if (file->at_end)
485 return "";
486
487 /* Check the cache and see if we last used this file. */
488 if (!last_open_file_info || file != last_open_file_info)
58d4951d 489 {
7b7a88d0
RH
490 if (last_open_file)
491 {
492 last_open_file_info->pos = ftell (last_open_file);
493 fclose (last_open_file);
494 }
495
496 last_open_file_info = file;
497 last_open_file = fopen (file->filename, "r");
7a6f6782
NC
498 if (last_open_file == NULL)
499 {
500 file->at_end = 1;
501 return "";
502 }
503
7b7a88d0
RH
504 /* Seek to where we were last time this file was open. */
505 if (file->pos)
506 fseek(last_open_file, file->pos, SEEK_SET);
507 }
ab737e51 508
7b7a88d0 509 c = fgetc (last_open_file);
58d4951d 510
c593cf41
SC
511 size -= 1; /* leave room for null */
512
58d4951d
ILT
513 while (c != EOF && c != '\n')
514 {
515 if (count < size)
516 *p++ = c;
517 count++;
518
7b7a88d0 519 c = fgetc (last_open_file);
58d4951d
ILT
520
521 }
522 if (c == EOF)
523 {
bcaa9b05 524 file->at_end = 1;
58d4951d
ILT
525 *p++ = '.';
526 *p++ = '.';
527 *p++ = '.';
528 }
529 file->linenum++;
c593cf41
SC
530 *p++ = 0;
531 return line;
532}
533
5d9f0ecf 534
58d4951d 535static const char *fn;
5d9f0ecf
SC
536
537static unsigned int eject; /* Eject pending */
58d4951d
ILT
538static unsigned int page; /* Current page number */
539static char *title; /* current title */
5d9f0ecf 540static char *subtitle; /* current subtitle */
58d4951d 541static unsigned int on_page; /* number of lines printed on current page */
5d9f0ecf 542
3340f7e5 543
c593cf41 544static void
58d4951d
ILT
545listing_page (list)
546 list_info_type *list;
c593cf41
SC
547{
548 /* Grope around, see if we can see a title or subtitle edict coming up
549 soon (we look down 10 lines of the page and see if it's there)*/
7a6f6782 550 if ((eject || (on_page >= (unsigned int) paper_height)) && paper_height != 0)
c593cf41 551 {
58d4951d
ILT
552 unsigned int c = 10;
553 int had_title = 0;
554 int had_subtitle = 0;
c593cf41 555
58d4951d
ILT
556 page++;
557
558 while (c != 0 && list)
559 {
560 if (list->edict == EDICT_SBTTL && !had_subtitle)
561 {
562 had_subtitle = 1;
563 subtitle = list->edict_arg;
564 }
565 if (list->edict == EDICT_TITLE && !had_title)
566 {
567 had_title = 1;
568 title = list->edict_arg;
569 }
570 list = list->next;
571 c--;
572 }
573
574
575 if (page > 1)
576 {
85a961c6 577 fprintf (list_file, "\f");
58d4951d
ILT
578 }
579
85a961c6
ILT
580 fprintf (list_file, "%s %s \t\t\tpage %d\n", LISTING_HEADER, fn, page);
581 fprintf (list_file, "%s\n", title);
582 fprintf (list_file, "%s\n", subtitle);
58d4951d
ILT
583 on_page = 3;
584 eject = 0;
c593cf41 585 }
c593cf41 586}
5d9f0ecf
SC
587
588
58d4951d
ILT
589static unsigned int
590calc_hex (list)
591 list_info_type * list;
5d9f0ecf 592{
7b7a88d0 593 int data_buffer_size;
c593cf41 594 list_info_type *first = list;
7a6f6782 595 unsigned int address = ~ (unsigned int) 0;
c593cf41
SC
596 fragS *frag;
597 fragS *frag_ptr;
e860dfd0 598 unsigned int byte_in_frag;
58d4951d 599
c593cf41 600 /* Find first frag which says it belongs to this line */
58d4951d
ILT
601 frag = list->frag;
602 while (frag && frag->line != list)
603 frag = frag->fr_next;
c593cf41
SC
604
605 frag_ptr = frag;
606
607 data_buffer_size = 0;
58d4951d 608
c593cf41 609 /* Dump all the frags which belong to this line */
58d4951d 610 while (frag_ptr != (fragS *) NULL && frag_ptr->line == first)
c593cf41 611 {
58d4951d 612 /* Print as many bytes from the fixed part as is sensible */
e860dfd0 613 byte_in_frag = 0;
7a6f6782 614 while ((offsetT) byte_in_frag < frag_ptr->fr_fix
76f9e5af 615 && data_buffer_size < MAX_BYTES - 3)
58d4951d 616 {
7a6f6782 617 if (address == ~ (unsigned int) 0)
58d4951d
ILT
618 {
619 address = frag_ptr->fr_address;
620 }
621
622 sprintf (data_buffer + data_buffer_size,
623 "%02X",
624 (frag_ptr->fr_literal[byte_in_frag]) & 0xff);
625 data_buffer_size += 2;
626 byte_in_frag++;
627 }
c593cf41 628 {
58d4951d
ILT
629 unsigned int var_rep_max = byte_in_frag;
630 unsigned int var_rep_idx = byte_in_frag;
631
632 /* Print as many bytes from the variable part as is sensible */
7a6f6782 633 while (((offsetT) byte_in_frag
f9b990cd 634 < frag_ptr->fr_fix + frag_ptr->fr_var * frag_ptr->fr_offset)
76f9e5af 635 && data_buffer_size < MAX_BYTES - 3)
58d4951d 636 {
7a6f6782 637 if (address == ~ (unsigned int) 0)
58d4951d
ILT
638 {
639 address = frag_ptr->fr_address;
640 }
641 sprintf (data_buffer + data_buffer_size,
642 "%02X",
643 (frag_ptr->fr_literal[var_rep_idx]) & 0xff);
644#if 0
645 data_buffer[data_buffer_size++] = '*';
646 data_buffer[data_buffer_size++] = '*';
c593cf41 647#endif
58d4951d
ILT
648 data_buffer_size += 2;
649
650 var_rep_idx++;
651 byte_in_frag++;
652
7a6f6782 653 if ((offsetT) var_rep_idx >= frag_ptr->fr_fix + frag_ptr->fr_var)
58d4951d
ILT
654 var_rep_idx = var_rep_max;
655 }
656 }
657
658 frag_ptr = frag_ptr->fr_next;
c593cf41 659 }
7b7a88d0 660 data_buffer[data_buffer_size] = '\0';
c593cf41
SC
661 return address;
662}
663
664
665
666
667
5d9f0ecf
SC
668
669static void
7b7a88d0 670print_lines (list, lineno, string, address)
58d4951d 671 list_info_type *list;
7b7a88d0 672 unsigned int lineno;
58d4951d
ILT
673 char *string;
674 unsigned int address;
c593cf41
SC
675{
676 unsigned int idx;
677 unsigned int nchars;
678 unsigned int lines;
58d4951d 679 unsigned int byte_in_word = 0;
c593cf41 680 char *src = data_buffer;
58d4951d 681
c593cf41 682 /* Print the stuff on the first line */
58d4951d 683 listing_page (list);
7b7a88d0 684 nchars = (LISTING_WORD_SIZE * 2 + 1) * listing_lhs_width;
7a6f6782 685
c593cf41 686 /* Print the hex for the first line */
7a6f6782 687 if (address == ~ (unsigned int) 0)
c593cf41 688 {
7b7a88d0 689 fprintf (list_file, "% 4d ", lineno);
58d4951d 690 for (idx = 0; idx < nchars; idx++)
85a961c6 691 fprintf (list_file, " ");
58d4951d 692
85a961c6 693 fprintf (list_file, "\t%s\n", string ? string : "");
7a6f6782
NC
694
695 on_page ++;
696
58d4951d
ILT
697 listing_page (0);
698
7a6f6782 699 return;
c593cf41 700 }
7a6f6782
NC
701
702 if (had_errors ())
703 fprintf (list_file, "% 4d ???? ", lineno);
58d4951d 704 else
7a6f6782
NC
705 fprintf (list_file, "% 4d %04x ", lineno, address);
706
707 /* And the data to go along with it */
708 idx = 0;
709
710 while (*src && idx < nchars)
58d4951d 711 {
7a6f6782
NC
712 fprintf (list_file, "%c%c", src[0], src[1]);
713 src += 2;
714 byte_in_word++;
715
716 if (byte_in_word == LISTING_WORD_SIZE)
58d4951d 717 {
7a6f6782
NC
718 fprintf (list_file, " ");
719 idx++;
720 byte_in_word = 0;
58d4951d 721 }
7a6f6782
NC
722
723 idx += 2;
724 }
725
726 for (; idx < nchars; idx++)
727 fprintf (list_file, " ");
728
729 fprintf (list_file, "\t%s\n", string ? string : "");
730 on_page++;
731 listing_page (list);
732
733 if (list->message)
734 {
735 fprintf (list_file, "**** %s\n", list->message);
736 listing_page (list);
737 on_page++;
738 }
739
740 for (lines = 0;
741 lines < (unsigned int) listing_lhs_cont_lines
742 && *src;
743 lines ++)
744 {
745 nchars = ((LISTING_WORD_SIZE * 2) + 1)
746 * listing_lhs_width_second - 1;
58d4951d 747 idx = 0;
7a6f6782
NC
748
749 /* Print any more lines of data, but more compactly */
750 fprintf (list_file, "% 4d ", lineno);
751
58d4951d 752 while (*src && idx < nchars)
c593cf41 753 {
85a961c6 754 fprintf (list_file, "%c%c", src[0], src[1]);
58d4951d 755 src += 2;
7a6f6782 756 idx += 2;
c593cf41 757 byte_in_word++;
7a6f6782 758
58d4951d
ILT
759 if (byte_in_word == LISTING_WORD_SIZE)
760 {
85a961c6 761 fprintf (list_file, " ");
58d4951d
ILT
762 idx++;
763 byte_in_word = 0;
764 }
c593cf41 765 }
7a6f6782
NC
766
767 fprintf (list_file, "\n");
768 on_page ++;
58d4951d 769 listing_page (list);
58d4951d
ILT
770 }
771}
5d9f0ecf
SC
772
773
774static void
58d4951d 775list_symbol_table ()
5d9f0ecf 776{
c593cf41 777 extern symbolS *symbol_rootP;
f949f7b8 778 int got_some = 0;
58d4951d
ILT
779
780 symbolS *ptr;
c593cf41 781 eject = 1;
58d4951d 782 listing_page (0);
58d4951d
ILT
783
784 for (ptr = symbol_rootP; ptr != (symbolS *) NULL; ptr = symbol_next (ptr))
c593cf41 785 {
7a6f6782
NC
786 if (SEG_NORMAL (S_GET_SEGMENT (ptr))
787 || S_GET_SEGMENT (ptr) == absolute_section)
58d4951d 788 {
7a6f6782
NC
789#ifdef BFD_ASSEMBLER
790 /* Don't report section symbols. They are not interesting. */
791 if (ptr->bsym->flags & BSF_SECTION_SYM)
792 continue;
793#endif
58d4951d
ILT
794 if (S_GET_NAME (ptr))
795 {
f949f7b8 796 char buf[30], fmt[8];
58d4951d
ILT
797 valueT val = S_GET_VALUE (ptr);
798
799 /* @@ Note that this is dependent on the compilation options,
800 not solely on the target characteristics. */
801 if (sizeof (val) == 4 && sizeof (int) == 4)
802 sprintf (buf, "%08lx", (unsigned long) val);
f949f7b8
KR
803 else if (sizeof (val) <= sizeof (unsigned long))
804 {
bcaa9b05
ILT
805 sprintf (fmt, "%%0%lulx",
806 (unsigned long) (sizeof (val) * 2));
f949f7b8
KR
807 sprintf (buf, fmt, (unsigned long) val);
808 }
809#if defined (BFD64)
58d4951d 810 else if (sizeof (val) > 4)
7b7a88d0 811 sprintf_vma (buf, val);
58d4951d
ILT
812#endif
813 else
814 abort ();
815
f949f7b8
KR
816 if (!got_some)
817 {
85a961c6 818 fprintf (list_file, "DEFINED SYMBOLS\n");
f949f7b8
KR
819 on_page++;
820 got_some = 1;
821 }
822
7a6f6782
NC
823 if (ptr->sy_frag && ptr->sy_frag->line)
824 {
825 fprintf (list_file, "%20s:%-5d %s:%s %s\n",
826 ptr->sy_frag->line->file->filename,
827 ptr->sy_frag->line->line,
828 segment_name (S_GET_SEGMENT (ptr)),
829 buf, S_GET_NAME (ptr));
830 }
831 else
832 {
833 fprintf (list_file, "%33s:%s %s\n",
834 segment_name (S_GET_SEGMENT (ptr)),
835 buf, S_GET_NAME (ptr));
836 }
58d4951d 837
7a6f6782 838 on_page ++;
58d4951d
ILT
839 listing_page (0);
840 }
841 }
c593cf41 842
c593cf41 843 }
f949f7b8
KR
844 if (!got_some)
845 {
85a961c6 846 fprintf (list_file, "NO DEFINED SYMBOLS\n");
f949f7b8
KR
847 on_page++;
848 }
85a961c6 849 fprintf (list_file, "\n");
c593cf41 850 on_page++;
58d4951d 851 listing_page (0);
f949f7b8
KR
852
853 got_some = 0;
58d4951d
ILT
854
855 for (ptr = symbol_rootP; ptr != (symbolS *) NULL; ptr = symbol_next (ptr))
c593cf41 856 {
58d4951d
ILT
857 if (S_GET_NAME (ptr) && strlen (S_GET_NAME (ptr)) != 0)
858 {
7a6f6782 859 if (S_GET_SEGMENT (ptr) == undefined_section)
58d4951d 860 {
f949f7b8
KR
861 if (!got_some)
862 {
863 got_some = 1;
85a961c6 864 fprintf (list_file, "UNDEFINED SYMBOLS\n");
f949f7b8
KR
865 on_page++;
866 listing_page (0);
867 }
85a961c6 868 fprintf (list_file, "%s\n", S_GET_NAME (ptr));
58d4951d
ILT
869 on_page++;
870 listing_page (0);
871 }
872 }
c593cf41 873 }
f949f7b8
KR
874 if (!got_some)
875 {
85a961c6 876 fprintf (list_file, "NO UNDEFINED SYMBOLS\n");
f949f7b8
KR
877 on_page++;
878 listing_page (0);
879 }
c593cf41 880}
5d9f0ecf 881
58d4951d
ILT
882static void
883print_source (current_file, list, buffer, width)
884 file_info_type *current_file;
885 list_info_type *list;
886 char *buffer;
887 unsigned int width;
c593cf41 888{
7b7a88d0 889 if (!current_file->at_end)
58d4951d 890 {
f949f7b8 891 while (current_file->linenum < list->hll_line
bcaa9b05 892 && !current_file->at_end)
58d4951d
ILT
893 {
894 char *p = buffer_line (current_file, buffer, width);
7a6f6782 895 fprintf (list_file, "%4u:%-13s **** %s\n", current_file->linenum,
85a961c6 896 current_file->filename, p);
58d4951d
ILT
897 on_page++;
898 listing_page (list);
899 }
c593cf41
SC
900 }
901}
b3ca913f 902
a39116f1 903/* Sometimes the user doesn't want to be bothered by the debugging
7b7a88d0 904 records inserted by the compiler, see if the line is suspicious. */
5d9f0ecf 905
a39116f1 906static int
7b7a88d0
RH
907debugging_pseudo (list, line)
908 list_info_type *list;
909 const char *line;
a39116f1 910{
7b7a88d0
RH
911 static int in_debug;
912 int was_debug;
913
914 if (list->debugging)
915 {
916 in_debug = 1;
917 return 1;
918 }
919
920 was_debug = in_debug;
921 in_debug = 0;
922
7a6f6782 923 while (isspace ((unsigned char) *line))
58d4951d
ILT
924 line++;
925
926 if (*line != '.')
7b7a88d0
RH
927 {
928#ifdef OBJ_ELF
929 /* The ELF compiler sometimes emits blank lines after switching
930 out of a debugging section. If the next line drops us back
931 into debugging information, then don't print the blank line.
932 This is a hack for a particular compiler behaviour, not a
933 general case. */
934 if (was_debug
935 && *line == '\0'
936 && list->next != NULL
937 && list->next->debugging)
938 {
939 in_debug = 1;
940 return 1;
941 }
942#endif
943
944 return 0;
945 }
c593cf41 946
c593cf41
SC
947 line++;
948
58d4951d
ILT
949 if (strncmp (line, "def", 3) == 0)
950 return 1;
951 if (strncmp (line, "val", 3) == 0)
952 return 1;
953 if (strncmp (line, "scl", 3) == 0)
954 return 1;
955 if (strncmp (line, "line", 4) == 0)
956 return 1;
957 if (strncmp (line, "endef", 5) == 0)
958 return 1;
959 if (strncmp (line, "ln", 2) == 0)
960 return 1;
961 if (strncmp (line, "type", 4) == 0)
962 return 1;
963 if (strncmp (line, "size", 4) == 0)
964 return 1;
965 if (strncmp (line, "dim", 3) == 0)
966 return 1;
967 if (strncmp (line, "tag", 3) == 0)
968 return 1;
969
970 if (strncmp (line, "stabs", 5) == 0)
971 return 1;
972 if (strncmp (line, "stabn", 5) == 0)
973 return 1;
974
c593cf41 975 return 0;
c593cf41 976}
5d9f0ecf 977
58d4951d
ILT
978static void
979listing_listing (name)
980 char *name;
c593cf41
SC
981{
982 list_info_type *list = head;
58d4951d 983 file_info_type *current_hll_file = (file_info_type *) NULL;
c593cf41
SC
984 char *message;
985 char *buffer;
986 char *p;
c593cf41
SC
987 int show_listing = 1;
988 unsigned int width;
58d4951d 989
7b7a88d0 990 buffer = xmalloc (listing_rhs_width);
76f9e5af 991 data_buffer = xmalloc (MAX_BYTES);
c593cf41
SC
992 eject = 1;
993 list = head;
994
58d4951d
ILT
995 while (list != (list_info_type *) NULL && 0)
996 {
997 if (list->next)
998 list->frag = list->next->frag;
999 list = list->next;
1000
1001 }
c593cf41 1002
c593cf41
SC
1003 list = head->next;
1004
1005
58d4951d 1006 while (list)
c593cf41 1007 {
7a6f6782
NC
1008 int list_line;
1009
7b7a88d0
RH
1010 width = listing_rhs_width > paper_width ? paper_width :
1011 listing_rhs_width;
c593cf41 1012
7a6f6782 1013 list_line = list->line;
58d4951d
ILT
1014 switch (list->edict)
1015 {
1016 case EDICT_LIST:
7a6f6782
NC
1017 /* Skip all lines up to the current. */
1018 list_line--;
58d4951d
ILT
1019 break;
1020 case EDICT_NOLIST:
1021 show_listing--;
1022 break;
7b7a88d0
RH
1023 case EDICT_NOLIST_NEXT:
1024 break;
58d4951d
ILT
1025 case EDICT_EJECT:
1026 break;
1027 case EDICT_NONE:
1028 break;
1029 case EDICT_TITLE:
1030 title = list->edict_arg;
1031 break;
1032 case EDICT_SBTTL:
1033 subtitle = list->edict_arg;
1034 break;
1035 default:
1036 abort ();
1037 }
c593cf41 1038
7a6f6782
NC
1039 if (show_listing <= 0)
1040 {
1041 while (list->file->linenum < list_line
1042 && !list->file->at_end)
1043 p = buffer_line (list->file, buffer, width);
1044 }
1045
1046 if (list->edict == EDICT_LIST)
1047 {
1048 /* Enable listing for the single line that caused the enable. */
1049 list_line++;
1050 show_listing++;
1051 }
1052
58d4951d
ILT
1053 if (show_listing > 0)
1054 {
1055 /* Scan down the list and print all the stuff which can be done
1056 with this line (or lines). */
1057 message = 0;
1058
1059 if (list->hll_file)
1060 {
1061 current_hll_file = list->hll_file;
1062 }
1063
7b7a88d0 1064 if (current_hll_file && list->hll_line && (listing & LISTING_HLL))
58d4951d
ILT
1065 {
1066 print_source (current_hll_file, list, buffer, width);
1067 }
1068
7b7a88d0 1069 if (list->line_contents)
58d4951d 1070 {
7b7a88d0
RH
1071 if (!((listing & LISTING_NODEBUG)
1072 && debugging_pseudo (list, list->line_contents)))
1073 {
7a6f6782
NC
1074 print_lines (list,
1075 list->file->linenum == 0 ? list->line : list->file->linenum,
7b7a88d0
RH
1076 list->line_contents, calc_hex (list));
1077 }
7a6f6782
NC
1078 free (list->line_contents);
1079 list->line_contents = NULL;
7b7a88d0
RH
1080 }
1081 else
1082 {
7a6f6782 1083 while (list->file->linenum < list_line
7b7a88d0 1084 && !list->file->at_end)
f949f7b8 1085 {
7b7a88d0
RH
1086 unsigned int address;
1087
1088 p = buffer_line (list->file, buffer, width);
1089
7a6f6782 1090 if (list->file->linenum < list_line)
7b7a88d0
RH
1091 address = ~ (unsigned int) 0;
1092 else
1093 address = calc_hex (list);
1094
1095 if (!((listing & LISTING_NODEBUG)
1096 && debugging_pseudo (list, p)))
1097 print_lines (list, list->file->linenum, p, address);
f949f7b8 1098 }
58d4951d
ILT
1099 }
1100
1101 if (list->edict == EDICT_EJECT)
1102 {
1103 eject = 1;
1104 }
1105 }
c593cf41 1106
7b7a88d0
RH
1107 if (list->edict == EDICT_NOLIST_NEXT)
1108 --show_listing;
1109
58d4951d 1110 list = list->next;
c593cf41 1111 }
76f9e5af 1112
58d4951d 1113 free (buffer);
76f9e5af
RH
1114 free (data_buffer);
1115 data_buffer = NULL;
c593cf41 1116}
5d9f0ecf 1117
58d4951d
ILT
1118void
1119listing_print (name)
1120 char *name;
5d9f0ecf 1121{
7b7a88d0 1122 int using_stdout;
7a6f6782 1123
c593cf41 1124 title = "";
58d4951d
ILT
1125 subtitle = "";
1126
85a961c6 1127 if (name == NULL)
7b7a88d0
RH
1128 {
1129 list_file = stdout;
1130 using_stdout = 1;
1131 }
85a961c6
ILT
1132 else
1133 {
1134 list_file = fopen (name, "w");
7b7a88d0
RH
1135 if (list_file != NULL)
1136 using_stdout = 0;
1137 else
85a961c6 1138 {
7a6f6782 1139 as_perror (_("can't open list file: %s"), name);
85a961c6 1140 list_file = stdout;
7b7a88d0 1141 using_stdout = 1;
85a961c6
ILT
1142 }
1143 }
1144
58d4951d
ILT
1145 if (listing & LISTING_NOFORM)
1146 {
1147 paper_height = 0;
1148 }
1149
1150 if (listing & LISTING_LISTING)
1151 {
1152 listing_listing (name);
58d4951d 1153 }
7b7a88d0 1154
58d4951d
ILT
1155 if (listing & LISTING_SYMBOLS)
1156 {
1157 list_symbol_table ();
1158 }
7b7a88d0
RH
1159
1160 if (! using_stdout)
1161 {
1162 if (fclose (list_file) == EOF)
7a6f6782 1163 as_perror (_("error closing list file: %s"), name);
7b7a88d0
RH
1164 }
1165
1166 if (last_open_file)
1167 {
1168 fclose (last_open_file);
1169 }
58d4951d 1170}
5d9f0ecf
SC
1171
1172
1173void
58d4951d
ILT
1174listing_file (name)
1175 const char *name;
5d9f0ecf 1176{
58d4951d 1177 fn = name;
5d9f0ecf
SC
1178}
1179
58d4951d 1180void
e860dfd0
KR
1181listing_eject (ignore)
1182 int ignore;
5d9f0ecf 1183{
f9b990cd
ILT
1184 if (listing)
1185 listing_tail->edict = EDICT_EJECT;
5d9f0ecf
SC
1186}
1187
1188void
e860dfd0
KR
1189listing_flags (ignore)
1190 int ignore;
5d9f0ecf 1191{
58d4951d
ILT
1192 while ((*input_line_pointer++) && (*input_line_pointer != '\n'))
1193 input_line_pointer++;
1194
c593cf41 1195}
58d4951d 1196
7b7a88d0
RH
1197/* Turn listing on or off. An argument of 0 means to turn off
1198 listing. An argument of 1 means to turn on listing. An argument
1199 of 2 means to turn off listing, but as of the next line; that is,
1200 the current line should be listed, but the next line should not. */
1201
c593cf41 1202void
58d4951d 1203listing_list (on)
e860dfd0 1204 int on;
c593cf41 1205{
f9b990cd 1206 if (listing)
7b7a88d0
RH
1207 {
1208 switch (on)
1209 {
1210 case 0:
1211 if (listing_tail->edict == EDICT_LIST)
1212 listing_tail->edict = EDICT_NONE;
1213 else
1214 listing_tail->edict = EDICT_NOLIST;
1215 break;
1216 case 1:
1217 if (listing_tail->edict == EDICT_NOLIST
1218 || listing_tail->edict == EDICT_NOLIST_NEXT)
1219 listing_tail->edict = EDICT_NONE;
1220 else
1221 listing_tail->edict = EDICT_LIST;
1222 break;
1223 case 2:
1224 listing_tail->edict = EDICT_NOLIST_NEXT;
1225 break;
1226 default:
1227 abort ();
1228 }
1229 }
5d9f0ecf 1230}
3340f7e5 1231
c593cf41 1232
5d9f0ecf 1233void
51a3bc15
ILT
1234listing_psize (width_only)
1235 int width_only;
5d9f0ecf 1236{
51a3bc15 1237 if (! width_only)
58d4951d 1238 {
51a3bc15
ILT
1239 paper_height = get_absolute_expression ();
1240
1241 if (paper_height < 0 || paper_height > 1000)
1242 {
1243 paper_height = 0;
7a6f6782 1244 as_warn (_("strange paper height, set to no form"));
51a3bc15
ILT
1245 }
1246
1247 if (*input_line_pointer != ',')
1248 {
1249 demand_empty_rest_of_line ();
1250 return;
1251 }
1252
1253 ++input_line_pointer;
58d4951d 1254 }
5d9f0ecf 1255
51a3bc15
ILT
1256 paper_width = get_absolute_expression ();
1257
1258 demand_empty_rest_of_line ();
1259}
5d9f0ecf 1260
f9b990cd
ILT
1261void
1262listing_nopage (ignore)
1263 int ignore;
1264{
1265 paper_height = 0;
1266}
1267
5d9f0ecf 1268void
58d4951d 1269listing_title (depth)
e860dfd0 1270 int depth;
a39116f1 1271{
f9b990cd 1272 int quoted;
c593cf41 1273 char *start;
e860dfd0 1274 char *ttl;
c593cf41 1275 unsigned int length;
58d4951d
ILT
1276
1277 SKIP_WHITESPACE ();
f9b990cd
ILT
1278 if (*input_line_pointer != '\"')
1279 quoted = 0;
1280 else
58d4951d 1281 {
f9b990cd
ILT
1282 quoted = 1;
1283 ++input_line_pointer;
1284 }
1285
1286 start = input_line_pointer;
58d4951d 1287
f9b990cd
ILT
1288 while (*input_line_pointer)
1289 {
1290 if (quoted
1291 ? *input_line_pointer == '\"'
1292 : is_end_of_line[(unsigned char) *input_line_pointer])
c593cf41 1293 {
f9b990cd 1294 if (listing)
58d4951d
ILT
1295 {
1296 length = input_line_pointer - start;
e860dfd0
KR
1297 ttl = xmalloc (length + 1);
1298 memcpy (ttl, start, length);
1299 ttl[length] = 0;
58d4951d 1300 listing_tail->edict = depth ? EDICT_SBTTL : EDICT_TITLE;
e860dfd0 1301 listing_tail->edict_arg = ttl;
58d4951d 1302 }
f9b990cd
ILT
1303 if (quoted)
1304 input_line_pointer++;
1305 demand_empty_rest_of_line ();
1306 return;
1307 }
1308 else if (*input_line_pointer == '\n')
1309 {
7a6f6782 1310 as_bad (_("New line in title"));
f9b990cd
ILT
1311 demand_empty_rest_of_line ();
1312 return;
1313 }
1314 else
1315 {
1316 input_line_pointer++;
c593cf41 1317 }
58d4951d 1318 }
c593cf41
SC
1319}
1320
5d9f0ecf
SC
1321
1322
1323void
58d4951d
ILT
1324listing_source_line (line)
1325 unsigned int line;
5d9f0ecf 1326{
f9b990cd
ILT
1327 if (listing)
1328 {
1329 new_frag ();
1330 listing_tail->hll_line = line;
1331 new_frag ();
1332 }
c593cf41 1333}
5d9f0ecf 1334
c593cf41 1335void
58d4951d
ILT
1336listing_source_file (file)
1337 const char *file;
c593cf41 1338{
f9b990cd 1339 if (listing)
e860dfd0 1340 listing_tail->hll_file = file_info (file);
c593cf41 1341}
5d9f0ecf 1342
b3ca913f 1343
58d4951d 1344
c593cf41
SC
1345#else
1346
1347
1348/* Dummy functions for when compiled without listing enabled */
1349
58d4951d 1350void
e860dfd0
KR
1351listing_flags (ignore)
1352 int ignore;
c593cf41 1353{
58d4951d 1354 s_ignore (0);
c593cf41
SC
1355}
1356
58d4951d
ILT
1357void
1358listing_list (on)
e860dfd0 1359 int on;
b3ca913f 1360{
58d4951d 1361 s_ignore (0);
c593cf41
SC
1362}
1363
58d4951d 1364void
e860dfd0
KR
1365listing_eject (ignore)
1366 int ignore;
c593cf41 1367{
58d4951d 1368 s_ignore (0);
c593cf41 1369}
58d4951d
ILT
1370
1371void
e860dfd0
KR
1372listing_psize (ignore)
1373 int ignore;
c593cf41 1374{
58d4951d 1375 s_ignore (0);
c593cf41 1376}
b3ca913f 1377
f9b990cd
ILT
1378void
1379listing_nopage (ignore)
1380 int ignore;
1381{
1382 s_ignore (0);
1383}
1384
58d4951d
ILT
1385void
1386listing_title (depth)
e860dfd0 1387 int depth;
c593cf41 1388{
58d4951d 1389 s_ignore (0);
c593cf41 1390}
58d4951d 1391
b3ca913f 1392void
58d4951d
ILT
1393listing_file (name)
1394 const char *name;
b3ca913f 1395{
c593cf41
SC
1396
1397}
1398
58d4951d
ILT
1399void
1400listing_newline (name)
1401 char *name;
c593cf41 1402{
58d4951d 1403
b3ca913f
SC
1404}
1405
58d4951d
ILT
1406void
1407listing_source_line (n)
1408 unsigned int n;
c593cf41 1409{
58d4951d 1410
c593cf41 1411}
58d4951d
ILT
1412void
1413listing_source_file (n)
1414 const char *n;
c593cf41 1415{
c593cf41 1416
58d4951d 1417}
c593cf41
SC
1418
1419#endif
This page took 0.300044 seconds and 4 git commands to generate.