rx-tdep.c: Use target_read_code instead of target_read_memory.
This change causes the prologue scanner and the frame type scanner in rx-tdep.c to use target_read_code() instead of target_read_memory(). This change allows these instruction scanners to operate much more quickly due to the fact that target_read_code() can potentially read from a cache maintained by GDB. gdb/ChangeLog: * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead of target_read_memory.
This commit is contained in:
parent
58c1b36c67
commit
a0e28e5467
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-07-10 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead
|
||||
of target_read_memory.
|
||||
|
||||
2015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||
|
||||
* tui/tui-win.c (tui_set_win_height): Use a cleanup to free the
|
||||
|
|
|
@ -204,7 +204,7 @@ rx_get_opcode_byte (void *handle)
|
|||
int status;
|
||||
gdb_byte byte;
|
||||
|
||||
status = target_read_memory (opcdata->pc, &byte, 1);
|
||||
status = target_read_code (opcdata->pc, &byte, 1);
|
||||
if (status == 0)
|
||||
{
|
||||
opcdata->pc += 1;
|
||||
|
|
Loading…
Reference in a new issue