1 /* listing.c - mainting assembly listings
2 Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
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
23 Contributed by Steve Chamberlain <sac@cygnus.com>
25 A listing page looks like:
27 LISTING_HEADER sourcefilename pagenumber
30 linenumber address data source
31 linenumber address data source
32 linenumber address data source
33 linenumber address data source
35 If not overridden, the listing commands are:
38 Put "stuff" onto the title line
40 Put stuff onto the subtitle line
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
48 Increment the enable listing counter
50 Decrement the enable listing counter
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
56 If the counter goes below zero, listing is suppressed.
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.
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
67 function also rememebers when the filename changes.
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.
74 The only things which the architecture can change about the listing
75 are defined in these macros:
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
83 LISTING_LHS_WIDTH Number of words of above size for the lhs
85 LISTING_LHS_WIDTH_SECOND Number of words for the data on the lhs
88 LISTING_LHS_CONT_LINES Max number of lines to use up for a continutation
89 LISTING_RHS_WIDTH Number of chars from the input file to print
97 #include "input-file.h"
102 #ifndef LISTING_HEADER
103 #define LISTING_HEADER "GAS LISTING"
105 #ifndef LISTING_WORD_SIZE
106 #define LISTING_WORD_SIZE 4
108 #ifndef LISTING_LHS_WIDTH
109 #define LISTING_LHS_WIDTH ((LISTING_WORD_SIZE) > 4 ? 1 : 4 / (LISTING_WORD_SIZE))
111 #ifndef LISTING_LHS_WIDTH_SECOND
112 #define LISTING_LHS_WIDTH_SECOND LISTING_LHS_WIDTH
114 #ifndef LISTING_RHS_WIDTH
115 #define LISTING_RHS_WIDTH 100
117 #ifndef LISTING_LHS_CONT_LINES
118 #define LISTING_LHS_CONT_LINES 4
121 /* This structure remembers which .s were used. */
122 typedef struct file_info_struct
{
123 struct file_info_struct
* next
;
126 unsigned int linenum
;
130 /* This structure rememebrs which line from which file goes into which
132 struct list_info_struct
{
133 /* Frag which this line of source is nearest to. */
136 /* The actual line in the source file. */
138 /* Pointer to the file info struct for the file which this line
140 file_info_type
*file
;
142 /* The expanded text of any macro that may have been executing. */
146 struct list_info_struct
*next
;
148 /* Pointer to the file info struct for the high level language
149 source line that belongs here. */
150 file_info_type
*hll_file
;
151 /* High level language source line. */
152 unsigned int hll_line
;
154 /* Pointer to any error message associated with this line. */
168 /* Nonzero if this line is to be omitted because it contains
169 debugging information. This can become a flags field if we come
170 up with more information to store here. */
174 typedef struct list_info_struct list_info_type
;
176 int listing_lhs_width
= LISTING_LHS_WIDTH
;
177 int listing_lhs_width_second
= LISTING_LHS_WIDTH_SECOND
;
178 int listing_lhs_cont_lines
= LISTING_LHS_CONT_LINES
;
179 int listing_rhs_width
= LISTING_RHS_WIDTH
;
181 struct list_info_struct
* listing_tail
;
183 static file_info_type
* file_info_head
;
184 static file_info_type
* last_open_file_info
;
185 static FILE * last_open_file
;
186 static struct list_info_struct
* head
;
187 static int paper_width
= 200;
188 static int paper_height
= 60;
192 /* File to output listings to. */
193 static FILE *list_file
;
195 /* This static array is used to keep the text of data to be printed
196 before the start of the line. */
199 (((LISTING_WORD_SIZE * 2) + 1) * listing_lhs_width \
200 + ((((LISTING_WORD_SIZE * 2) + 1) * listing_lhs_width_second) \
201 * listing_lhs_cont_lines) \
204 static char *data_buffer
;
207 static void listing_message
PARAMS ((const char *name
, const char *message
));
208 static file_info_type
*file_info
PARAMS ((const char *file_name
));
209 static void new_frag
PARAMS ((void));
210 static char *buffer_line
PARAMS ((file_info_type
*file
,
211 char *line
, unsigned int size
));
212 static void listing_page
PARAMS ((list_info_type
*list
));
213 static unsigned int calc_hex
PARAMS ((list_info_type
*list
));
214 static void print_lines
PARAMS ((list_info_type
*, unsigned int,
215 char *, unsigned int));
216 static void list_symbol_table
PARAMS ((void));
217 static void print_source
PARAMS ((file_info_type
*current_file
,
218 list_info_type
*list
,
220 unsigned int width
));
221 static int debugging_pseudo
PARAMS ((list_info_type
*, const char *));
222 static void listing_listing
PARAMS ((char *name
));
225 listing_message (name
, message
)
229 if (listing_tail
!= (list_info_type
*) NULL
)
231 unsigned int l
= strlen (name
) + strlen (message
) + 1;
232 char *n
= (char *) xmalloc (l
);
235 listing_tail
->message
= n
;
240 listing_warning (message
)
243 listing_message (_("Warning:"), message
);
247 listing_error (message
)
250 listing_message (_("Error:"), message
);
253 static file_info_type
*
254 file_info (file_name
)
255 const char *file_name
;
257 /* Find an entry with this file name. */
258 file_info_type
*p
= file_info_head
;
260 while (p
!= (file_info_type
*) NULL
)
262 if (strcmp (p
->filename
, file_name
) == 0)
267 /* Make new entry. */
269 p
= (file_info_type
*) xmalloc (sizeof (file_info_type
));
270 p
->next
= file_info_head
;
272 p
->filename
= xmalloc ((unsigned long) strlen (file_name
) + 1);
273 strcpy (p
->filename
, file_name
);
285 frag_wane (frag_now
);
296 static unsigned int last_line
= 0xffff;
297 static char *last_file
= NULL
;
298 list_info_type
*new = NULL
;
303 if (now_seg
== absolute_section
)
307 /* In ELF, anything in a section beginning with .debug or .line is
308 considered to be debugging information. This includes the
309 statement which switches us into the debugging section, which we
310 can only set after we are already in the debugging section. */
311 if ((listing
& LISTING_NODEBUG
) != 0
312 && listing_tail
!= NULL
313 && ! listing_tail
->debugging
)
317 segname
= segment_name (now_seg
);
318 if (strncmp (segname
, ".debug", sizeof ".debug" - 1) == 0
319 || strncmp (segname
, ".line", sizeof ".line" - 1) == 0)
320 listing_tail
->debugging
= 1;
324 as_where (&file
, &line
);
327 if (line
== last_line
328 && !(last_file
&& file
&& strcmp (file
, last_file
)))
331 new = (list_info_type
*) xmalloc (sizeof (list_info_type
));
333 /* Detect if we are reading from stdin by examining the file
334 name returned by as_where().
336 [FIXME: We rely upon the name in the strcmp below being the
337 same as the one used by input_scrub_new_file(), if that is
338 not true, then this code will fail].
340 If we are reading from stdin, then we need to save each input
341 line here (assuming of course that we actually have a line of
342 input to read), so that it can be displayed in the listing
343 that is produced at the end of the assembly. */
344 if (strcmp (file
, _("{standard input}")) == 0
345 && input_line_pointer
!= NULL
)
351 for (copy
= input_line_pointer
- 1;
353 || (! is_end_of_line
[(unsigned char) *copy
]));
355 if (*copy
== '"' && copy
[-1] != '\\')
356 seen_quote
= ! seen_quote
;
358 len
= (copy
- input_line_pointer
) + 2;
360 copy
= xmalloc (len
);
364 char *src
= input_line_pointer
- 1;
369 unsigned char c
= *src
++;
371 /* Omit control characters in the listing. */
372 if (isascii (c
) && ! iscntrl (c
))
379 new->line_contents
= copy
;
382 new->line_contents
= NULL
;
386 new = (list_info_type
*) xmalloc (sizeof (list_info_type
));
387 new->line_contents
= ps
;
396 listing_tail
->next
= new;
402 new->frag
= frag_now
;
404 new->file
= file_info (file
);
405 new->next
= (list_info_type
*) NULL
;
406 new->message
= (char *) NULL
;
407 new->edict
= EDICT_NONE
;
408 new->hll_file
= (file_info_type
*) NULL
;
415 /* In ELF, anything in a section beginning with .debug or .line is
416 considered to be debugging information. */
417 if ((listing
& LISTING_NODEBUG
) != 0)
421 segname
= segment_name (now_seg
);
422 if (strncmp (segname
, ".debug", sizeof ".debug" - 1) == 0
423 || strncmp (segname
, ".line", sizeof ".line" - 1) == 0)
429 /* Attach all current frags to the previous line instead of the
430 current line. This is called by the MIPS backend when it discovers
431 that it needs to add some NOP instructions; the added NOP
432 instructions should go with the instruction that has the delay, not
433 with the new instruction. */
441 if (head
== (list_info_type
*) NULL
442 || head
== listing_tail
)
447 for (l
= head
; l
->next
!= listing_tail
; l
= l
->next
)
450 for (f
= frchain_now
->frch_root
; f
!= (fragS
*) NULL
; f
= f
->fr_next
)
451 if (f
->line
== listing_tail
)
454 listing_tail
->frag
= frag_now
;
458 /* This function returns the next source line from the file supplied,
459 truncated to size. It appends a fake line to the end of each input
463 buffer_line (file
, line
, size
)
464 file_info_type
*file
;
468 unsigned int count
= 0;
473 /* If we couldn't open the file, return an empty line. */
477 /* Check the cache and see if we last used this file. */
478 if (!last_open_file_info
|| file
!= last_open_file_info
)
482 last_open_file_info
->pos
= ftell (last_open_file
);
483 fclose (last_open_file
);
486 last_open_file_info
= file
;
487 last_open_file
= fopen (file
->filename
, "r");
488 if (last_open_file
== NULL
)
494 /* Seek to where we were last time this file was open. */
496 fseek (last_open_file
, file
->pos
, SEEK_SET
);
499 c
= fgetc (last_open_file
);
501 /* Leave room for null. */
504 while (c
!= EOF
&& c
!= '\n')
510 c
= fgetc (last_open_file
);
525 static const char *fn
;
527 static unsigned int eject
; /* Eject pending */
528 static unsigned int page
; /* Current page number */
529 static char *title
; /* Current title */
530 static char *subtitle
; /* Current subtitle */
531 static unsigned int on_page
; /* Number of lines printed on current page */
535 list_info_type
*list
;
537 /* Grope around, see if we can see a title or subtitle edict coming up
538 soon. (we look down 10 lines of the page and see if it's there) */
539 if ((eject
|| (on_page
>= (unsigned int) paper_height
))
540 && paper_height
!= 0)
544 int had_subtitle
= 0;
548 while (c
!= 0 && list
)
550 if (list
->edict
== EDICT_SBTTL
&& !had_subtitle
)
553 subtitle
= list
->edict_arg
;
555 if (list
->edict
== EDICT_TITLE
&& !had_title
)
558 title
= list
->edict_arg
;
566 fprintf (list_file
, "\f");
569 fprintf (list_file
, "%s %s \t\t\tpage %d\n", LISTING_HEADER
, fn
, page
);
570 fprintf (list_file
, "%s\n", title
);
571 fprintf (list_file
, "%s\n", subtitle
);
579 list_info_type
*list
;
581 int data_buffer_size
;
582 list_info_type
*first
= list
;
583 unsigned int address
= ~(unsigned int) 0;
586 unsigned int octet_in_frag
;
588 /* Find first frag which says it belongs to this line. */
590 while (frag
&& frag
->line
!= list
)
591 frag
= frag
->fr_next
;
595 data_buffer_size
= 0;
597 /* Dump all the frags which belong to this line. */
598 while (frag_ptr
!= (fragS
*) NULL
&& frag_ptr
->line
== first
)
600 /* Print as many bytes from the fixed part as is sensible. */
602 while ((offsetT
) octet_in_frag
< frag_ptr
->fr_fix
603 && data_buffer_size
< MAX_BYTES
- 3)
605 if (address
== ~(unsigned int) 0)
607 address
= frag_ptr
->fr_address
/ OCTETS_PER_BYTE
;
610 sprintf (data_buffer
+ data_buffer_size
,
612 (frag_ptr
->fr_literal
[octet_in_frag
]) & 0xff);
613 data_buffer_size
+= 2;
616 if (frag_ptr
->fr_type
== rs_fill
)
618 unsigned int var_rep_max
= octet_in_frag
;
619 unsigned int var_rep_idx
= octet_in_frag
;
621 /* Print as many bytes from the variable part as is sensible. */
622 while (((offsetT
) octet_in_frag
623 < (frag_ptr
->fr_fix
+ frag_ptr
->fr_var
* frag_ptr
->fr_offset
))
624 && data_buffer_size
< MAX_BYTES
- 3)
626 if (address
== ~(unsigned int) 0)
628 address
= frag_ptr
->fr_address
/ OCTETS_PER_BYTE
;
630 sprintf (data_buffer
+ data_buffer_size
,
632 (frag_ptr
->fr_literal
[var_rep_idx
]) & 0xff);
634 data_buffer
[data_buffer_size
++] = '*';
635 data_buffer
[data_buffer_size
++] = '*';
637 data_buffer_size
+= 2;
642 if ((offsetT
) var_rep_idx
>= frag_ptr
->fr_fix
+ frag_ptr
->fr_var
)
643 var_rep_idx
= var_rep_max
;
647 frag_ptr
= frag_ptr
->fr_next
;
649 data_buffer
[data_buffer_size
] = '\0';
654 print_lines (list
, lineno
, string
, address
)
655 list_info_type
*list
;
658 unsigned int address
;
663 unsigned int octet_in_word
= 0;
664 char *src
= data_buffer
;
667 /* Print the stuff on the first line. */
669 nchars
= (LISTING_WORD_SIZE
* 2 + 1) * listing_lhs_width
;
671 /* Print the hex for the first line. */
672 if (address
== ~(unsigned int) 0)
674 fprintf (list_file
, "% 4d ", lineno
);
675 for (idx
= 0; idx
< nchars
; idx
++)
676 fprintf (list_file
, " ");
678 fprintf (list_file
, "\t%s\n", string
? string
: "");
688 fprintf (list_file
, "% 4d ???? ", lineno
);
690 fprintf (list_file
, "% 4d %04x ", lineno
, address
);
692 /* And the data to go along with it. */
695 while (src
[cur
] && idx
< nchars
)
699 fprintf (list_file
, "%c%c", src
[offset
], src
[offset
+ 1]);
703 if (octet_in_word
== LISTING_WORD_SIZE
)
705 fprintf (list_file
, " ");
713 for (; idx
< nchars
; idx
++)
714 fprintf (list_file
, " ");
716 fprintf (list_file
, "\t%s\n", string
? string
: "");
722 fprintf (list_file
, "**** %s\n", list
->message
);
728 lines
< (unsigned int) listing_lhs_cont_lines
732 nchars
= ((LISTING_WORD_SIZE
* 2) + 1) * listing_lhs_width_second
- 1;
735 /* Print any more lines of data, but more compactly. */
736 fprintf (list_file
, "% 4d ", lineno
);
738 while (src
[cur
] && idx
< nchars
)
742 fprintf (list_file
, "%c%c", src
[offset
], src
[offset
+ 1]);
747 if (octet_in_word
== LISTING_WORD_SIZE
)
749 fprintf (list_file
, " ");
755 fprintf (list_file
, "\n");
764 extern symbolS
*symbol_rootP
;
771 for (ptr
= symbol_rootP
; ptr
!= (symbolS
*) NULL
; ptr
= symbol_next (ptr
))
773 if (SEG_NORMAL (S_GET_SEGMENT (ptr
))
774 || S_GET_SEGMENT (ptr
) == absolute_section
)
777 /* Don't report section symbols. They are not interesting. */
778 if (symbol_section_p (ptr
))
781 if (S_GET_NAME (ptr
))
783 char buf
[30], fmt
[8];
784 valueT val
= S_GET_VALUE (ptr
);
786 /* @@ Note that this is dependent on the compilation options,
787 not solely on the target characteristics. */
788 if (sizeof (val
) == 4 && sizeof (int) == 4)
789 sprintf (buf
, "%08lx", (unsigned long) val
);
790 else if (sizeof (val
) <= sizeof (unsigned long))
792 sprintf (fmt
, "%%0%lulx",
793 (unsigned long) (sizeof (val
) * 2));
794 sprintf (buf
, fmt
, (unsigned long) val
);
797 else if (sizeof (val
) > 4)
798 sprintf_vma (buf
, val
);
805 fprintf (list_file
, "DEFINED SYMBOLS\n");
810 if (symbol_get_frag (ptr
) && symbol_get_frag (ptr
)->line
)
812 fprintf (list_file
, "%20s:%-5d %s:%s %s\n",
813 symbol_get_frag (ptr
)->line
->file
->filename
,
814 symbol_get_frag (ptr
)->line
->line
,
815 segment_name (S_GET_SEGMENT (ptr
)),
816 buf
, S_GET_NAME (ptr
));
820 fprintf (list_file
, "%33s:%s %s\n",
821 segment_name (S_GET_SEGMENT (ptr
)),
822 buf
, S_GET_NAME (ptr
));
833 fprintf (list_file
, "NO DEFINED SYMBOLS\n");
836 fprintf (list_file
, "\n");
842 for (ptr
= symbol_rootP
; ptr
!= (symbolS
*) NULL
; ptr
= symbol_next (ptr
))
844 if (S_GET_NAME (ptr
) && strlen (S_GET_NAME (ptr
)) != 0)
846 if (S_GET_SEGMENT (ptr
) == undefined_section
)
851 fprintf (list_file
, "UNDEFINED SYMBOLS\n");
855 fprintf (list_file
, "%s\n", S_GET_NAME (ptr
));
863 fprintf (list_file
, "NO UNDEFINED SYMBOLS\n");
870 print_source (current_file
, list
, buffer
, width
)
871 file_info_type
*current_file
;
872 list_info_type
*list
;
876 if (!current_file
->at_end
)
878 while (current_file
->linenum
< list
->hll_line
879 && !current_file
->at_end
)
881 char *p
= buffer_line (current_file
, buffer
, width
);
882 fprintf (list_file
, "%4u:%-13s **** %s\n", current_file
->linenum
,
883 current_file
->filename
, p
);
890 /* Sometimes the user doesn't want to be bothered by the debugging
891 records inserted by the compiler, see if the line is suspicious. */
894 debugging_pseudo (list
, line
)
895 list_info_type
*list
;
907 was_debug
= in_debug
;
910 while (isspace ((unsigned char) *line
))
916 /* The ELF compiler sometimes emits blank lines after switching
917 out of a debugging section. If the next line drops us back
918 into debugging information, then don't print the blank line.
919 This is a hack for a particular compiler behaviour, not a
923 && list
->next
!= NULL
924 && list
->next
->debugging
)
936 if (strncmp (line
, "def", 3) == 0)
938 if (strncmp (line
, "val", 3) == 0)
940 if (strncmp (line
, "scl", 3) == 0)
942 if (strncmp (line
, "line", 4) == 0)
944 if (strncmp (line
, "endef", 5) == 0)
946 if (strncmp (line
, "ln", 2) == 0)
948 if (strncmp (line
, "type", 4) == 0)
950 if (strncmp (line
, "size", 4) == 0)
952 if (strncmp (line
, "dim", 3) == 0)
954 if (strncmp (line
, "tag", 3) == 0)
957 if (strncmp (line
, "stabs", 5) == 0)
959 if (strncmp (line
, "stabn", 5) == 0)
966 listing_listing (name
)
967 char *name ATTRIBUTE_UNUSED
;
969 list_info_type
*list
= head
;
970 file_info_type
*current_hll_file
= (file_info_type
*) NULL
;
974 int show_listing
= 1;
977 buffer
= xmalloc (listing_rhs_width
);
978 data_buffer
= xmalloc (MAX_BYTES
);
982 while (list
!= (list_info_type
*) NULL
&& 0)
985 list
->frag
= list
->next
->frag
;
994 unsigned int list_line
;
996 width
= listing_rhs_width
> paper_width
? paper_width
:
999 list_line
= list
->line
;
1000 switch (list
->edict
)
1003 /* Skip all lines up to the current. */
1009 case EDICT_NOLIST_NEXT
:
1016 title
= list
->edict_arg
;
1019 subtitle
= list
->edict_arg
;
1025 if (show_listing
<= 0)
1027 while (list
->file
->linenum
< list_line
1028 && !list
->file
->at_end
)
1029 p
= buffer_line (list
->file
, buffer
, width
);
1032 if (list
->edict
== EDICT_LIST
)
1034 /* Enable listing for the single line that caused the enable. */
1039 if (show_listing
> 0)
1041 /* Scan down the list and print all the stuff which can be done
1042 with this line (or lines). */
1047 current_hll_file
= list
->hll_file
;
1050 if (current_hll_file
&& list
->hll_line
&& (listing
& LISTING_HLL
))
1052 print_source (current_hll_file
, list
, buffer
, width
);
1055 if (list
->line_contents
)
1057 if (!((listing
& LISTING_NODEBUG
)
1058 && debugging_pseudo (list
, list
->line_contents
)))
1061 list
->file
->linenum
== 0 ? list
->line
: list
->file
->linenum
,
1062 list
->line_contents
, calc_hex (list
));
1064 free (list
->line_contents
);
1065 list
->line_contents
= NULL
;
1069 while (list
->file
->linenum
< list_line
1070 && !list
->file
->at_end
)
1072 unsigned int address
;
1074 p
= buffer_line (list
->file
, buffer
, width
);
1076 if (list
->file
->linenum
< list_line
)
1077 address
= ~(unsigned int) 0;
1079 address
= calc_hex (list
);
1081 if (!((listing
& LISTING_NODEBUG
)
1082 && debugging_pseudo (list
, p
)))
1083 print_lines (list
, list
->file
->linenum
, p
, address
);
1087 if (list
->edict
== EDICT_EJECT
)
1093 if (list
->edict
== EDICT_NOLIST_NEXT
)
1105 listing_print (name
)
1120 list_file
= fopen (name
, "w");
1121 if (list_file
!= NULL
)
1125 as_perror (_("can't open list file: %s"), name
);
1131 if (listing
& LISTING_NOFORM
)
1136 if (listing
& LISTING_LISTING
)
1138 listing_listing (name
);
1141 if (listing
& LISTING_SYMBOLS
)
1143 list_symbol_table ();
1148 if (fclose (list_file
) == EOF
)
1149 as_perror (_("error closing list file: %s"), name
);
1154 fclose (last_open_file
);
1166 listing_eject (ignore
)
1167 int ignore ATTRIBUTE_UNUSED
;
1170 listing_tail
->edict
= EDICT_EJECT
;
1174 listing_flags (ignore
)
1175 int ignore ATTRIBUTE_UNUSED
;
1177 while ((*input_line_pointer
++) && (*input_line_pointer
!= '\n'))
1178 input_line_pointer
++;
1182 /* Turn listing on or off. An argument of 0 means to turn off
1183 listing. An argument of 1 means to turn on listing. An argument
1184 of 2 means to turn off listing, but as of the next line; that is,
1185 the current line should be listed, but the next line should not. */
1196 if (listing_tail
->edict
== EDICT_LIST
)
1197 listing_tail
->edict
= EDICT_NONE
;
1199 listing_tail
->edict
= EDICT_NOLIST
;
1202 if (listing_tail
->edict
== EDICT_NOLIST
1203 || listing_tail
->edict
== EDICT_NOLIST_NEXT
)
1204 listing_tail
->edict
= EDICT_NONE
;
1206 listing_tail
->edict
= EDICT_LIST
;
1209 listing_tail
->edict
= EDICT_NOLIST_NEXT
;
1218 listing_psize (width_only
)
1223 paper_height
= get_absolute_expression ();
1225 if (paper_height
< 0 || paper_height
> 1000)
1228 as_warn (_("strange paper height, set to no form"));
1231 if (*input_line_pointer
!= ',')
1233 demand_empty_rest_of_line ();
1237 ++input_line_pointer
;
1240 paper_width
= get_absolute_expression ();
1242 demand_empty_rest_of_line ();
1246 listing_nopage (ignore
)
1247 int ignore ATTRIBUTE_UNUSED
;
1253 listing_title (depth
)
1259 unsigned int length
;
1262 if (*input_line_pointer
!= '\"')
1267 ++input_line_pointer
;
1270 start
= input_line_pointer
;
1272 while (*input_line_pointer
)
1275 ? *input_line_pointer
== '\"'
1276 : is_end_of_line
[(unsigned char) *input_line_pointer
])
1280 length
= input_line_pointer
- start
;
1281 ttl
= xmalloc (length
+ 1);
1282 memcpy (ttl
, start
, length
);
1284 listing_tail
->edict
= depth
? EDICT_SBTTL
: EDICT_TITLE
;
1285 listing_tail
->edict_arg
= ttl
;
1288 input_line_pointer
++;
1289 demand_empty_rest_of_line ();
1292 else if (*input_line_pointer
== '\n')
1294 as_bad (_("New line in title"));
1295 demand_empty_rest_of_line ();
1300 input_line_pointer
++;
1306 listing_source_line (line
)
1312 listing_tail
->hll_line
= line
;
1318 listing_source_file (file
)
1322 listing_tail
->hll_file
= file_info (file
);
1327 /* Dummy functions for when compiled without listing enabled. */
1330 listing_flags (ignore
)
1344 listing_eject (ignore
)
1351 listing_psize (ignore
)
1358 listing_nopage (ignore
)
1365 listing_title (depth
)
1379 listing_newline (name
)
1386 listing_source_line (n
)
1393 listing_source_file (n
)