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

/haiku-buildtools/gcc/gcc/
H A Dinput.h41 extern const char *location_get_source_line (expanded_location xloc,
H A Dinput.c135 expanded_location xloc; local
146 memset (&xloc, 0, sizeof (xloc));
165 xloc = linemap_expand_location (line_table, map, loc);
168 xloc.data = block;
170 xloc.file = loc == UNKNOWN_LOCATION ? NULL : _("<built-in>");
172 return xloc;
211 expanded_location xloc = expand_location (l); local
212 r = xloc.line;
688 /* Return the physical source line that corresponds to xloc i
695 location_get_source_line(expanded_location xloc, int *line_len) argument
[all...]
H A Dcoverage.c597 expanded_location xloc
599 unsigned chksum = xloc.line;
601 chksum = coverage_checksum_string (chksum, xloc.file);
623 expanded_location xloc
627 chksum = (use_name_only ? 0 : xloc.line);
628 chksum = coverage_checksum_string (chksum, xloc.file);
681 expanded_location xloc;
689 xloc = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
706 gcov_write_string (xloc.file);
707 gcov_write_unsigned (xloc
594 expanded_location xloc local
620 expanded_location xloc local
677 expanded_location xloc; local
[all...]
H A Dprint-tree.c209 expanded_location xloc;
479 xloc = expand_location (DECL_SOURCE_LOCATION (node));
480 fprintf (file, " file %s line %d col %d", xloc.file, xloc.line,
481 xloc.column);
941 expanded_location xloc = expand_location (EXPR_LOCATION (node));
943 fprintf (file, "%s:%d:%d", xloc.file, xloc.line, xloc.column);
208 expanded_location xloc; local
940 expanded_location xloc = expand_location (EXPR_LOCATION (node)); local
H A Dtree-dump.c368 expanded_location xloc; local
381 xloc = expand_location (DECL_SOURCE_LOCATION (t));
382 if (xloc.file)
384 const char *filename = lbasename (xloc.file);
388 xloc.line);
H A Dlto-streamer-out.c207 expanded_location xloc; local
214 xloc = expand_location (loc);
216 bp_pack_value (bp, ob->current_file != xloc.file, 1);
217 bp_pack_value (bp, ob->current_line != xloc.line, 1);
218 bp_pack_value (bp, ob->current_col != xloc.column, 1);
220 if (ob->current_file != xloc.file)
221 bp_pack_string (ob, bp, xloc.file, true);
222 ob->current_file = xloc.file;
224 if (ob->current_line != xloc.line)
225 bp_pack_var_len_unsigned (bp, xloc
[all...]
H A Dubsan.c318 expanded_location xloc; local
321 xloc = expand_location (loc);
323 if (xloc.file == NULL)
326 xloc.line = 0;
327 xloc.column = 0;
332 size_t len = strlen (xloc.file) + 1;
333 str = build_string (len, xloc.file);
341 xloc.line), NULL_TREE,
343 xloc.column));
H A Dprint-rtl.c414 expanded_location xloc = insn_location (in_insn); local
415 fprintf (outfile, " %s:%i", xloc.file, xloc.line);
H A Dasan.c2252 expanded_location xloc = expand_location (loc); local
2253 if (xloc.file != NULL)
2265 pp_string (&filename_pp, xloc.file);
2270 xloc.line), NULL_TREE,
2272 xloc.column));
H A Dtree-ssa-uninit.c151 expanded_location xloc, floc; local
181 xloc = expand_location (location);
189 if (xloc.file != floc.file
H A Dtree-pretty-print.c837 expanded_location xloc = expand_location (loc); local
840 if (xloc.file)
842 pp_string (pp, xloc.file);
845 pp_decimal_int (pp, xloc.line);
847 pp_decimal_int (pp, xloc.column);
H A Dmodulo-sched.c1290 expanded_location xloc = insn_location (insn);
1291 fprintf (dump_file, " %s:%i", xloc.file, xloc.line);
1287 expanded_location xloc = insn_location (insn); local
H A Dcse.c2832 validate_canon_reg (rtx *xloc, rtx_insn *insn)
2834 if (*xloc)
2836 rtx new_rtx = canon_reg (*xloc, insn);
2841 validate_change (insn, xloc, new_rtx, 1);
2816 validate_canon_reg(rtx *xloc, rtx_insn *insn) argument
H A Dfinal.c3100 expanded_location xloc = insn_location (insn);
3101 filename = xloc.file;
3102 linenum = xloc.line;
3089 expanded_location xloc = insn_location (insn); local
H A Ddwarf2out.c21147 expanded_location xloc;
21153 xloc = expand_location (DECL_SOURCE_LOCATION (decl));
21158 xloc = expand_location (input_location);
21216 add_AT_file (imported_die, DW_AT_decl_file, lookup_filename (xloc.file));
21217 add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
21128 expanded_location xloc; local
/haiku-buildtools/gcc/gcc/ada/gcc-interface/
H A Dmisc.c307 expanded_location xloc; local
337 xloc = expand_location (input_location);
338 if (context->show_column && xloc.column != 0)
339 loc = xasprintf ("%s:%d:%d", xloc.file, xloc.line, xloc.column);
341 loc = xasprintf ("%s:%d", xloc.file, xloc.line);
/haiku-buildtools/gcc/gcc/c/
H A Dc-aux-info.c546 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (fndecl));
562 xloc.file, xloc.line,
545 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (fndecl)); local
H A Dc-typeck.c9410 source_location xloc = expansion_point_location_if_in_system_header (loc);
9413 warning_at (xloc, 0,
9468 pedwarn (xloc, 0,
9471 pedwarn (xloc, OPT_Wpedantic, "ISO C forbids "
9376 source_location xloc = expansion_point_location_if_in_system_header (loc); local
H A Dc-parser.c5052 location_t xloc = c_parser_peek_token (parser)->location;
5055 stmt = c_finish_return (xloc, expr.value, expr.original_type);
5050 location_t xloc = c_parser_peek_token (parser)->location; local
/haiku-buildtools/gcc/libcpp/
H A Dline-map.c1428 expanded_location xloc; local
1430 memset (&xloc, 0, sizeof (xloc));
1434 xloc.data
1456 xloc.file = LINEMAP_FILE (map);
1457 xloc.line = SOURCE_LINE (map, loc);
1458 xloc.column = SOURCE_COLUMN (map, loc);
1459 xloc.sysp = LINEMAP_SYSP (map) != 0;
1462 return xloc;
/haiku-buildtools/gcc/gcc/cp/
H A Derror.c3294 expanded_location xloc = expand_location (loc);
3298 "locus", xloc.file, xloc.line, xloc.column);
3301 "locus", xloc.file, xloc.line);
3371 expanded_location xloc; local
3372 xloc = expand_location (loc);
3378 "locus", xloc.file, xloc
3432 expanded_location xloc = expand_location (EXPR_LOCATION (t)); local
[all...]
/haiku-buildtools/gcc/gcc/c-family/
H A Dc-ada-spec.c1245 expanded_location xloc = expand_location (decl_sloc (decl, false)); local
1247 if (xloc.file && xloc.line)
1249 if (xloc.file != source_file_base)
1267 char *s1 = get_ada_package (xloc.file);
1628 expanded_location xloc; local
1630 xloc.file = NULL;
1633 xloc = expand_location (DECL_SOURCE_LOCATION (node));
1635 xloc = expand_location (EXPR_LOCATION (node));
1637 if (xloc
[all...]

Completed in 541 milliseconds