From fc0a224429224e8ce0c1adb631e10124a597cc6d Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Fri, 31 Oct 2003 05:32:46 +0000 Subject: Index: sim/frv/ChangeLog 2003-10-30 Andrew Cagney * traps.c: Replace "struct symbol_cache_entry" with "struct bfd_symbol". Index: sim/d10v/ChangeLog 2003-10-30 Andrew Cagney * simops.c: Replace "struct symbol_cache_entry" with "struct bfd_symbol". Index: sim/common/ChangeLog 2003-10-30 Andrew Cagney * sim-trace.c, sim-base.h: Replace "struct symbol_cache_entry" with "struct bfd_symbol". Index: ld/ChangeLog 2003-10-30 Andrew Cagney * emultempl/pe.em, pe-dll.c: Replace "struct symbol_cache_entry" with "struct bfd_symbol". Index: bfd/ChangeLog 2003-10-30 Andrew Cagney * syms.c: Replace "struct symbol_cache_entry" with "struct bfd_symbol". * vms.h, targets.c, section.c, reloc.c, peicode.h: Ditto. * mipsbsd.c, elf.c, linker.c, elf-bfd.h, ecoff.c: Ditto. * cpu-z8k.c, cpu-ns32k.c, cpu-h8500.c, bfd.c, bfd-in.h: Ditto. * bfd-in2.h: Re-generate. --- sim/common/ChangeLog | 5 +++++ sim/common/sim-base.h | 2 +- sim/common/sim-trace.c | 2 +- sim/d10v/ChangeLog | 5 +++++ sim/d10v/simops.c | 2 +- sim/frv/ChangeLog | 5 +++++ sim/frv/traps.c | 2 +- 7 files changed, 19 insertions(+), 4 deletions(-) (limited to 'sim') diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 9e316d9..c7ff605 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2003-10-30 Andrew Cagney + + * sim-trace.c, sim-base.h: Replace "struct symbol_cache_entry" + with "struct bfd_symbol". + 2003-10-21 Andrew Cagney * callback.c (os_truncate): Call "truncate", and not "stat". diff --git a/sim/common/sim-base.h b/sim/common/sim-base.h index 6f565c7..fde9847 100644 --- a/sim/common/sim-base.h +++ b/sim/common/sim-base.h @@ -175,7 +175,7 @@ typedef struct { #define STATE_PROG_BFD(sd) ((sd)->base.prog_bfd) /* Symbol table for prog_bfd */ - struct symbol_cache_entry **prog_syms; + struct bfd_symbol **prog_syms; #define STATE_PROG_SYMS(sd) ((sd)->base.prog_syms) /* The program's text section. */ diff --git a/sim/common/sim-trace.c b/sim/common/sim-trace.c index bbdff62..ccae100 100644 --- a/sim/common/sim-trace.c +++ b/sim/common/sim-trace.c @@ -1263,7 +1263,7 @@ trace_one_insn (SIM_DESC sd, sim_cpu *cpu, address_word pc, if (bfd_find_nearest_line (STATE_PROG_BFD (CPU_STATE (cpu)), STATE_TEXT_SECTION (CPU_STATE (cpu)), - (struct symbol_cache_entry **) 0, + (struct bfd_symbol **) 0, pc - STATE_TEXT_START (CPU_STATE (cpu)), &pc_filename, &pc_function, &pc_linenum)) { diff --git a/sim/d10v/ChangeLog b/sim/d10v/ChangeLog index f8e70a5..e5aff56 100644 --- a/sim/d10v/ChangeLog +++ b/sim/d10v/ChangeLog @@ -1,3 +1,8 @@ +2003-10-30 Andrew Cagney + + * simops.c: Replace "struct symbol_cache_entry" with "struct + bfd_symbol". + 2003-06-22 Andrew Cagney * interp.c (xfer_mem): Simplify. Only do a single partial diff --git a/sim/d10v/simops.c b/sim/d10v/simops.c index fbffa4d..0b58505 100644 --- a/sim/d10v/simops.c +++ b/sim/d10v/simops.c @@ -206,7 +206,7 @@ trace_input_func (name, in1, in2, in3) filename = (const char *)0; functionname = (const char *)0; linenumber = 0; - if (bfd_find_nearest_line (prog_bfd, text, (struct symbol_cache_entry **)0, byte_pc - text_start, + if (bfd_find_nearest_line (prog_bfd, text, (struct bfd_symbol **)0, byte_pc - text_start, &filename, &functionname, &linenumber)) { p = buf; diff --git a/sim/frv/ChangeLog b/sim/frv/ChangeLog index 12fe6b3..63c8e98 100644 --- a/sim/frv/ChangeLog +++ b/sim/frv/ChangeLog @@ -1,3 +1,8 @@ +2003-10-30 Andrew Cagney + + * traps.c: Replace "struct symbol_cache_entry" with "struct + bfd_symbol". + 2003-10-10 Dave Brolley * cpu.h, sem.c: Regenerate. diff --git a/sim/frv/traps.c b/sim/frv/traps.c index 603dc21..f7b4b74 100644 --- a/sim/frv/traps.c +++ b/sim/frv/traps.c @@ -191,7 +191,7 @@ frv_itrap (SIM_CPU *current_cpu, PCADDR pc, USI base, SI offset) if (bfd_find_nearest_line (STATE_PROG_BFD (sd), STATE_TEXT_SECTION (sd), - (struct symbol_cache_entry **) 0, + (struct bfd_symbol **) 0, pc - STATE_TEXT_START (sd), &pc_filename, &pc_function, &pc_linenum) && (pc_function || pc_filename)) -- cgit v1.1