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