diff options
author | Yao Qi <yao.qi@linaro.org> | 2015-11-05 09:44:32 +0000 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2015-11-05 09:44:32 +0000 |
commit | c86a40c6c2902b73ec6f601176820c760524afd2 (patch) | |
tree | 9b07e76e0225621aba52b3cc51b17fec0f2d0634 /gdb/aarch64-tdep.c | |
parent | d9ebcbce29f3621a687872270cc8952ba1501e56 (diff) | |
download | gdb-c86a40c6c2902b73ec6f601176820c760524afd2.zip gdb-c86a40c6c2902b73ec6f601176820c760524afd2.tar.gz gdb-c86a40c6c2902b73ec6f601176820c760524afd2.tar.bz2 |
Use aarch64_decode_insn in aarch64_displaced_step_copy_insn
gdb:
2015-11-05 Yao Qi <yao.qi@linaro.org>
* aarch64-tdep.c (aarch64_displaced_step_copy_insn): Call
aarch64_decode_insn and decode instruction by aarch64_inst.
Diffstat (limited to 'gdb/aarch64-tdep.c')
-rw-r--r-- | gdb/aarch64-tdep.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/aarch64-tdep.c b/gdb/aarch64-tdep.c index 4bdd227..bc282e9 100644 --- a/gdb/aarch64-tdep.c +++ b/gdb/aarch64-tdep.c @@ -2500,9 +2500,13 @@ aarch64_displaced_step_copy_insn (struct gdbarch *gdbarch, enum bfd_endian byte_order_for_code = gdbarch_byte_order_for_code (gdbarch); uint32_t insn = read_memory_unsigned_integer (from, 4, byte_order_for_code); struct aarch64_displaced_step_data dsd; + aarch64_inst inst; + + if (aarch64_decode_insn (insn, &inst, 1) != 0) + return NULL; /* Look for a Load Exclusive instruction which begins the sequence. */ - if (decode_masked_match (insn, 0x3fc00000, 0x08400000)) + if (inst.opcode->iclass == ldstexcl && bit (insn, 22)) { /* We can't displaced step atomic sequences. */ return NULL; |