aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2006-10-31 20:21:57 +0000
committerPaul Brook <paul@codesourcery.com>2006-10-31 20:21:57 +0000
commit2087ad8497a3aa9818a7bf0a866b56ac92069bfa (patch)
tree21683cd8a2dcd9b4b04f32bd4f1609c60966ee49 /opcodes
parent7a1d4c38938b172a8f3fdb38b01551306bd51d8d (diff)
downloadgdb-2087ad8497a3aa9818a7bf0a866b56ac92069bfa.zip
gdb-2087ad8497a3aa9818a7bf0a866b56ac92069bfa.tar.gz
gdb-2087ad8497a3aa9818a7bf0a866b56ac92069bfa.tar.bz2
2006-10-30 Paul Brook <paul@codesourcery.com>
binutils/ * objdump.c (disassemble_section): Set info->symtab_pos. (disassemble_data): Set info->symtab and info->symtab_size. include/ * dis-asm.h (disassemble_info): Add symtab, symtab_pos and symtab_size. opcodes/ * arm-dis.c (last_is_thumb, last_mapping_sym, last_mapping_addr): New. (get_sym_code_type): New function. (print_insn): Search for mapping symbols.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog6
-rw-r--r--opcodes/arm-dis.c105
2 files changed, 106 insertions, 5 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 01613cd..31b2051 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,9 @@
+2006-10-30 Paul Brook <paul@codesourcery.com>
+
+ * arm-dis.c (last_is_thumb, last_mapping_sym, last_mapping_addr): New.
+ (get_sym_code_type): New function.
+ (print_insn): Search for mapping symbols.
+
2006-10-31 Mei Ligang <ligang@sunnorth.com.cn>
* score-dis.c (print_insn): Correct the error code to print
diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c
index 5a8d541..7a02e31 100644
--- a/opcodes/arm-dis.c
+++ b/opcodes/arm-dis.c
@@ -1480,6 +1480,11 @@ static unsigned int ifthen_next_state;
static bfd_vma ifthen_address;
#define IFTHEN_COND ((ifthen_state >> 4) & 0xf)
+/* Cached Thumb state. */
+int last_is_thumb;
+int last_mapping_sym = -1;
+bfd_vma last_mapping_addr = 0;
+
/* Functions. */
int
@@ -3859,6 +3864,38 @@ find_ifthen_state (bfd_vma pc, struct disassemble_info *info,
ifthen_state = 0;
}
+/* Try to infer the code type (Arm or Thumb) from a symbol.
+ Returns nonzero if is_thumb was set. */
+
+static int
+get_sym_code_type (struct disassemble_info *info, int n, int *is_thumb)
+{
+ elf_symbol_type *es;
+ unsigned int type;
+ const char *name;
+
+ es = *(elf_symbol_type **)(info->symbols);
+ type = ELF_ST_TYPE (es->internal_elf_sym.st_info);
+
+ /* If the symbol has function type then use that. */
+ if (type == STT_FUNC || type == STT_ARM_TFUNC)
+ {
+ *is_thumb = (type == STT_ARM_TFUNC);
+ return TRUE;
+ }
+
+ /* Check for mapping symbols. */
+ name = bfd_asymbol_name(info->symtab[n]);
+ if (name[0] == '$' && (name[1] == 'a' || name[1] == 't')
+ && (name[2] == 0 || name[2] == '.'))
+ {
+ *is_thumb = (name[1] == 't');
+ return TRUE;
+ }
+
+ return FALSE;
+}
+
/* NOTE: There are no checks in these routines that
the relevant number of data bytes exist. */
@@ -3897,13 +3934,71 @@ print_insn (bfd_vma pc, struct disassemble_info *info, bfd_boolean little)
}
else if (bfd_asymbol_flavour (*info->symbols) == bfd_target_elf_flavour)
{
- elf_symbol_type * es;
- unsigned int type;
+ bfd_vma addr;
+ int n;
+ int last_sym;
+ bfd_boolean found;
- es = *(elf_symbol_type **)(info->symbols);
- type = ELF_ST_TYPE (es->internal_elf_sym.st_info);
+ if (info->symtab)
+ {
+ if (pc <= last_mapping_addr)
+ last_mapping_sym = -1;
+ is_thumb = last_is_thumb;
+ found = FALSE;
+ /* Start scanning at the start of the function, or wherever
+ we finished last time. */
+ n = info->symtab_pos + 1;
+ if (n < last_mapping_sym)
+ n = last_mapping_sym;
+
+ /* Scan up to the location being disassembled. */
+ for (; n < info->symtab_size; n++)
+ {
+ addr = bfd_asymbol_value (info->symtab[n]);
+ if (addr > pc)
+ break;
+ if (get_sym_code_type (info, n, &is_thumb))
+ found = TRUE;
+ }
+
+ last_sym = n;
+ if (!found)
+ {
+ if (last_mapping_sym == -1)
+ last_mapping_sym = 0;
+ else
+ found = TRUE;
+
+ /* No mapping symbol found at this address. Look backwards
+ for a preceeding one. */
+ for (n = info->symtab_pos; n >= last_mapping_sym; n--)
+ {
+ if (get_sym_code_type (info, n, &is_thumb))
+ {
+ found = TRUE;
+ break;
+ }
+ }
+ }
+
+ last_mapping_sym = last_sym;
+ last_is_thumb = is_thumb;
+ }
+ else
+ found = FALSE;
- is_thumb = (type == STT_ARM_TFUNC) || (type == STT_ARM_16BIT);
+ /* If no mapping symbol has been found then fall back to the type
+ of the function symbol. */
+ if (!found)
+ {
+ elf_symbol_type * es;
+ unsigned int type;
+
+ es = *(elf_symbol_type **)(info->symbols);
+ type = ELF_ST_TYPE (es->internal_elf_sym.st_info);
+
+ is_thumb = (type == STT_ARM_TFUNC) || (type == STT_ARM_16BIT);
+ }
}
}