diff options
author | Per Bothner <per@bothner.com> | 2004-06-30 11:18:01 -0700 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 2004-06-30 11:18:01 -0700 |
commit | 6773e15fa5ac64bf67b19088e149f4d3cda2cf9a (patch) | |
tree | f55d68b85e9f94ddf4bbe5761ff0a2f4ee16bbc9 /gcc/profile.c | |
parent | a281759fdf4cc20f179d37ef875f7c233ab68f46 (diff) | |
download | gcc-6773e15fa5ac64bf67b19088e149f4d3cda2cf9a.zip gcc-6773e15fa5ac64bf67b19088e149f4d3cda2cf9a.tar.gz gcc-6773e15fa5ac64bf67b19088e149f4d3cda2cf9a.tar.bz2 |
Conditionally compile support for --enable-mapped_location.
* cfgexpand.c: Handle USE_MAPPED_LOCATION case for function_end_locus.
* cfglayout.c (insn_locators_initialize): Const cleanup. New macros.
* cfgrtl.c (delete_insn): Use new NOTE_DELETED_LABEL_NAME macro.
* print-rtl.c (print_rtx): Likewise.
* emit-rtl.c: Don't clear NOTE_SOURCE_FILE if USE_MAPPED_LOCATION.
* combine.c: Use new SET_INSN_DELETED macro.
* flow.c: Likewise.
* haifa-sched.c: Likewise.
* ifcvt.c: Likewise.
* recog.c: Likewise.
* reload1.c: Likewise.
* diagnostic.c: Use expand_location macro.
* pretty-print.c (pp_base_format_text): Likewise.
* profile.c: Likewise.
* dwarf2out.c: Likewise. Also use expand_location, DECL_IS_BUILTIN.
* dwarf2out.c (dwarf2out_decl: Use BUILTINS_LOCATION.
* emit-rtl.c (emit_line_note): Simplify if USE_MAPPED_LOCATION.
(force_next_line_note, insn_emit): Handle USE_MAPPED_LOCATION case.
* final.c (final): Likewise.
* haifa-sched.c: Likewise.
* integrate.c: Likewise.
* jump.c: Likewise.
* rtl-error.c: Likewise.
* stmt.c (check_seenlabel): Likewise.
* tree-pretty-print.c: Likewise.
From-SVN: r83921
Diffstat (limited to 'gcc/profile.c')
-rw-r--r-- | gcc/profile.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gcc/profile.c b/gcc/profile.c index 0468a0f..9a7b933 100644 --- a/gcc/profile.c +++ b/gcc/profile.c @@ -922,23 +922,26 @@ branch_prob (void) ignore_next_note = 0; else { + expanded_location s; + if (!offset) { offset = gcov_write_tag (GCOV_TAG_LINES); gcov_write_unsigned (BB_TO_GCOV_INDEX (bb)); } + NOTE_EXPANDED_LOCATION (s, insn); + /* If this is a new source file, then output the file's name to the .bb file. */ if (!prev_file_name - || strcmp (NOTE_SOURCE_FILE (insn), - prev_file_name)) + || strcmp (s.file, prev_file_name)) { - prev_file_name = NOTE_SOURCE_FILE (insn); + prev_file_name = s.file; gcov_write_unsigned (0); gcov_write_string (prev_file_name); } - gcov_write_unsigned (NOTE_LINE_NUMBER (insn)); + gcov_write_unsigned (s.line); } } insn = NEXT_INSN (insn); |