* [commit] use get_frame_memory where easy
@ 2003-06-04 16:45 Richard Henderson
2003-06-04 17:59 ` Andrew Cagney
0 siblings, 1 reply; 2+ messages in thread
From: Richard Henderson @ 2003-06-04 16:45 UTC (permalink / raw)
To: gdb-patches
AFAICT, the rest of the places get called from hooks that don't
have access to the frame.
r~
* alpha-tdep.c (alpha_next_pc): Use alpha_read_insn.
(alpha_sigtramp_frame_this_id): Use get_frame_memory.
(alpha_sigtramp_frame_prev_register): Likewise.
(alpha_heuristic_frame_prev_register): Likewise.
* alpha-mdebug-tdep.c (alpha_mdebug_frame_prev_register): Likewise.
Index: alpha-mdebug-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/alpha-mdebug-tdep.c,v
retrieving revision 1.4
diff -c -p -d -u -r1.4 alpha-mdebug-tdep.c
--- alpha-mdebug-tdep.c 4 Jun 2003 16:40:50 -0000 1.4
+++ alpha-mdebug-tdep.c 4 Jun 2003 16:41:52 -0000
@@ -275,7 +275,7 @@ alpha_mdebug_frame_prev_register (struct
*addrp = info->saved_regs[regnum];
*realnump = -1;
if (bufferp != NULL)
- read_memory (*addrp, bufferp, ALPHA_REGISTER_SIZE);
+ get_frame_memory (next_frame, *addrp, bufferp, ALPHA_REGISTER_SIZE);
return;
}
Index: alpha-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/alpha-tdep.c,v
retrieving revision 1.109
diff -c -p -d -u -r1.109 alpha-tdep.c
--- alpha-tdep.c 4 Jun 2003 06:22:16 -0000 1.109
+++ alpha-tdep.c 4 Jun 2003 16:41:53 -0000
@@ -813,7 +813,8 @@ alpha_sigtramp_frame_this_id (struct fra
/* The stack address is trivially read from the sigcontext. */
stack_addr = alpha_sigtramp_register_address (info->sigcontext_addr,
ALPHA_SP_REGNUM);
- stack_addr = read_memory_unsigned_integer (stack_addr, ALPHA_REGISTER_SIZE);
+ stack_addr = get_frame_memory_unsigned (next_frame, stack_addr,
+ ALPHA_REGISTER_SIZE);
*this_id = frame_id_build (stack_addr, code_addr);
}
@@ -842,7 +843,7 @@ alpha_sigtramp_frame_prev_register (stru
*addrp = addr;
*realnump = -1;
if (bufferp != NULL)
- read_memory (addr, bufferp, ALPHA_REGISTER_SIZE);
+ get_frame_memory (next_frame, addr, bufferp, ALPHA_REGISTER_SIZE);
return;
}
}
@@ -1174,7 +1175,7 @@ alpha_heuristic_frame_prev_register (str
*addrp = info->saved_regs[regnum];
*realnump = -1;
if (bufferp != NULL)
- read_memory (*addrp, bufferp, ALPHA_REGISTER_SIZE);
+ get_frame_memory (next_frame, *addrp, bufferp, ALPHA_REGISTER_SIZE);
return;
}
@@ -1364,7 +1365,7 @@ alpha_next_pc (CORE_ADDR pc)
int offset;
LONGEST rav;
- insn = read_memory_unsigned_integer (pc, sizeof (insn));
+ insn = alpha_read_insn (pc);
/* Opcode is top 6 bits. */
op = (insn >> 26) & 0x3f;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2003-06-04 17:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-06-04 16:45 [commit] use get_frame_memory where easy Richard Henderson
2003-06-04 17:59 ` Andrew Cagney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox