Searched refs:xloc (Results 1 - 17 of 17) sorted by relevance

/freebsd-9.3-release/contrib/gcc/
H A Ddiagnostic.c305 expanded_location xloc = expand_location (p->location);
308 xloc.file, xloc.line);
311 xloc = expand_location (p->location);
314 xloc.file, xloc.line);
303 expanded_location xloc = expand_location (p->location); local
H A Dtree-mudflap.c120 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (decl)); local
122 unsigned sourceline = xloc.line;
125 sourcecolumn = xloc.column;
127 sourcefile = xloc.file;
202 expanded_location xloc = expand_location (location); local
209 file = xloc.file;
215 if (xloc.line > 0)
218 if (xloc.column > 0)
219 sprintf (linecolbuf, "%d:%d", xloc.line, xloc
[all...]
H A Dc-aux-info.c558 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (fndecl));
574 xloc.file, xloc.line,
557 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (fndecl)); local
H A Dtoplev.c906 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node)); local
910 xloc.file, xloc.line);
928 expanded_location xloc local
933 xloc.file, xloc.line);
937 xloc.file, xloc.line);
H A Dprint-tree.c180 expanded_location xloc;
435 xloc = expand_location (DECL_SOURCE_LOCATION (node));
436 fprintf (file, " file %s line %d", xloc.file, xloc.line);
873 expanded_location xloc = expand_location (EXPR_LOCATION (node));
875 fprintf (file, "%s:%d", xloc.file, xloc.line);
179 expanded_location xloc; local
872 expanded_location xloc = expand_location (EXPR_LOCATION (node)); local
H A Dmodulo-sched.c842 expanded_location xloc;
843 NOTE_EXPANDED_LOCATION (xloc, line_note);
845 xloc.file, xloc.line);
860 expanded_location xloc;
861 NOTE_EXPANDED_LOCATION (xloc, line_note);
863 xloc.file, xloc.line);
996 expanded_location xloc;
997 NOTE_EXPANDED_LOCATION (xloc, line_not
839 expanded_location xloc; local
857 expanded_location xloc; local
993 expanded_location xloc; local
1091 expanded_location xloc; local
[all...]
H A Dsched-vis.c683 expanded_location xloc;
684 NOTE_EXPANDED_LOCATION (xloc, x);
686 xloc.file, xloc.line);
682 expanded_location xloc; local
H A Dcoverage.c513 expanded_location xloc
515 unsigned chksum = xloc.line;
517 chksum = coverage_checksum_string (chksum, xloc.file);
538 expanded_location xloc
561 gcov_write_string (xloc.file);
562 gcov_write_unsigned (xloc.line);
510 expanded_location xloc local
534 expanded_location xloc local
H A Dtree-dump.c331 expanded_location xloc; local
344 xloc = expand_location (DECL_SOURCE_LOCATION (t));
345 if (xloc.file)
347 const char *filename = strrchr (xloc.file, '/');
349 filename = xloc.file;
356 xloc.line);
H A Dcfglayout.c279 expanded_location xloc;
280 NOTE_EXPANDED_LOCATION (xloc, insn);
281 line_number = xloc.line;
282 file_name = xloc.file;
276 expanded_location xloc; local
H A Dsched-rgn.c2592 expanded_location xloc;
2593 NOTE_EXPANDED_LOCATION (xloc, insn);
2595 xloc.line, xloc.file);
2589 expanded_location xloc; local
H A Dtree-pretty-print.c436 expanded_location xloc = expand_location (EXPR_LOCATION (node)); local
438 if (xloc.file)
440 pp_string (buffer, xloc.file);
443 pp_decimal_int (buffer, xloc.line);
H A Dtree.c3247 expanded_location xloc;
3248 if (loc == 0) { xloc.file = NULL; xloc.line = 0; xloc.column = 0; }
3252 xloc.file = map->to_file;
3253 xloc.line = SOURCE_LINE (map, loc);
3254 xloc.column = SOURCE_COLUMN (map, loc);
3256 return xloc;
3227 expanded_location xloc; local
H A Dcse.c2764 validate_canon_reg (rtx *xloc, rtx insn)
2766 rtx new = canon_reg (*xloc, insn);
2771 validate_change (insn, xloc, new, 1);
2773 *xloc = new;
2748 validate_canon_reg(rtx *xloc, rtx insn) argument
H A Ddwarf2out.c13430 expanded_location xloc;
13498 xloc = expand_location (input_location);
13499 add_AT_file (imported_die, DW_AT_decl_file, lookup_filename (xloc.file));
13500 add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
13414 expanded_location xloc; local
/freebsd-9.3-release/contrib/gcc/cp/
H A Derror.c2273 expanded_location xloc; local
2276 xloc = expand_location (loc);
2280 xloc.file, xloc.line,
2286 xloc.file, xloc.line);
/freebsd-9.3-release/contrib/gcc/config/mips/
H A Dmips.c2120 mips_legitimize_address (rtx *xloc, enum machine_mode mode)
2124 if (mips_tls_operand_p (*xloc))
2126 *xloc = mips_legitimize_tls_address (*xloc);
2131 if (mips_symbolic_constant_p (*xloc, &symbol_type)
2135 *xloc = mips_split_symbol (0, *xloc);
2139 if (GET_CODE (*xloc) == PLUS && GET_CODE (XEXP (*xloc, 1)) == CONST_INT)
2144 reg = XEXP (*xloc,
2114 mips_legitimize_address(rtx *xloc, enum machine_mode mode) argument
[all...]

Completed in 264 milliseconds