diff options
author | Joel Brobecker <brobecker@gnat.com> | 2009-09-28 23:47:02 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2009-09-28 23:47:02 +0000 |
commit | 35ec2a3e66b5f5e28170d267d36939db8ee27490 (patch) | |
tree | dc84a53401657a643205f09ec63dfa6b03900bd6 /gdb/ia64-tdep.c | |
parent | 66d990c74963fb25d8448e4d081fa757b427a5bc (diff) | |
download | gdb-35ec2a3e66b5f5e28170d267d36939db8ee27490.zip gdb-35ec2a3e66b5f5e28170d267d36939db8ee27490.tar.gz gdb-35ec2a3e66b5f5e28170d267d36939db8ee27490.tar.bz2 |
* ia64-tdep.c (ia64_memory_insert_breakpoint): Check the slotnum
and the type of instruction before deciding which slot to save
in the breakpoint shadown contents.
Diffstat (limited to 'gdb/ia64-tdep.c')
-rw-r--r-- | gdb/ia64-tdep.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c index 674204a..bbde5f6 100644 --- a/gdb/ia64-tdep.c +++ b/gdb/ia64-tdep.c @@ -635,6 +635,12 @@ ia64_memory_insert_breakpoint (struct gdbarch *gdbarch, return val; } + /* Check for L type instruction in slot 1, if present then bump up the slot + number to the slot 2. */ + template = extract_bit_field (bundle, 0, 5); + if (slotnum == 1 && template_encoding_table[template][slotnum] == L) + slotnum = 2; + /* Slot number 2 may skip at most 2 bytes at the beginning. */ bp_tgt->shadow_len = BUNDLE_LEN - 2; @@ -657,12 +663,6 @@ ia64_memory_insert_breakpoint (struct gdbarch *gdbarch, return val; } - /* Check for L type instruction in slot 1, if present then bump up the slot - number to the slot 2. */ - template = extract_bit_field (bundle, 0, 5); - if (slotnum == 1 && template_encoding_table[template][slotnum] == L) - slotnum = 2; - /* Breakpoints already present in the code will get deteacted and not get reinserted by bp_loc_is_permanent. Multiple breakpoints at the same location cannot induce the internal error as they are optimized into |