Lines Matching refs:line

38  	Put "stuff" onto the title line
40 Put stuff onto the subtitle line
62 time it sees a newline, and -l is on the command line.
86 for the second line
90 on a line. */
129 /* This structure remembers which line from which file goes into which
133 /* Frag which this line of source is nearest to. */
136 /* The actual line in the source file. */
137 unsigned int line;
139 /* Pointer to the file info struct for the file which this line
150 source line that belongs here. */
153 /* High level language source line. */
156 /* Pointer to any error message associated with this line. */
171 /* Nonzero if this line is to be omitted because it contains
199 before the start of the line. */
283 unsigned int line;
295 /* In ELF, anything in a section beginning with .debug or .line is
307 || strncmp (segname, ".line", sizeof ".line" - 1) == 0)
312 as_where (&file, &line);
315 if (line == last_line
329 line here (assuming of course that we actually have a line of
378 last_line = line;
391 new->line = line;
403 /* In ELF, anything in a section beginning with .debug or .line is
411 || strncmp (segname, ".line", sizeof ".line" - 1) == 0)
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
439 if (f->line == listing_tail)
440 f->line = l;
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
451 buffer_line (file_info_type *file, char *line, unsigned int size)
456 char *p = line;
458 /* If we couldn't open the file, return an empty line. */
510 return line;
574 /* Find first frag which says it belongs to this line. */
576 while (frag && frag->line != list)
583 /* Dump all the frags which belong to this line. */
584 while (frag_ptr != (fragS *) NULL && frag_ptr->line == first)
643 /* Print the stuff on the first line. */
647 /* Print the hex for the first line. */
785 if (symbol_get_frag (ptr) && symbol_get_frag (ptr)->line)
788 symbol_get_frag (ptr)->line->file->filename,
789 symbol_get_frag (ptr)->line->line,
864 records inserted by the compiler, see if the line is suspicious. */
867 debugging_pseudo (list_info_type *list, const char *line)
881 while (ISSPACE (*line))
882 line++;
884 if (*line != '.')
888 out of a debugging section. If the next line drops us back
889 into debugging information, then don't print the blank line.
893 && *line == '\0'
905 line++;
907 if (strncmp (line, "def", 3) == 0)
909 if (strncmp (line, "val", 3) == 0)
911 if (strncmp (line, "scl", 3) == 0)
913 if (strncmp (line, "line", 4) == 0)
915 if (strncmp (line, "endef", 5) == 0)
917 if (strncmp (line, "ln", 2) == 0)
919 if (strncmp (line, "type", 4) == 0)
921 if (strncmp (line, "size", 4) == 0)
923 if (strncmp (line, "dim", 3) == 0)
925 if (strncmp (line, "tag", 3) == 0)
927 if (strncmp (line, "stabs", 5) == 0)
929 if (strncmp (line, "stabn", 5) == 0)
958 list_line = list->line;
996 /* Enable listing for the single line that caused the enable. */
1004 with this line (or lines). */
1018 list->file->linenum == 0 ? list->line : list->file->linenum,
1127 of 2 means to turn off listing, but as of the next line; that is,
1128 the current line should be listed, but the next line should not. */
1233 as_bad (_("new line in title"));
1245 listing_source_line (unsigned int line)
1250 listing_tail->hll_line = line;