aboutsummaryrefslogtreecommitdiff
path: root/linux-user
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-05-03 08:23:27 +0100
committerRichard Henderson <richard.henderson@linaro.org>2023-05-11 09:49:51 +0100
commitb6235a759a4552d21c5b68d16c894aa5b96d4b96 (patch)
tree6eb5dfd90f8fe347183b4cd8762eabfe3167c014 /linux-user
parentf779026478773da05e3f5b4621dddc5c6d6542dc (diff)
downloadqemu-b6235a759a4552d21c5b68d16c894aa5b96d4b96.zip
qemu-b6235a759a4552d21c5b68d16c894aa5b96d4b96.tar.gz
qemu-b6235a759a4552d21c5b68d16c894aa5b96d4b96.tar.bz2
disas: Remove target_ulong from the interface
Use uint64_t for the pc, and size_t for the size. Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230503072331.1747057-81-richard.henderson@linaro.org>
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/elfload.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/linux-user/elfload.c b/linux-user/elfload.c
index 703f743..80085b8 100644
--- a/linux-user/elfload.c
+++ b/linux-user/elfload.c
@@ -3327,9 +3327,10 @@ static void load_elf_interp(const char *filename, struct image_info *info,
static int symfind(const void *s0, const void *s1)
{
- target_ulong addr = *(target_ulong *)s0;
struct elf_sym *sym = (struct elf_sym *)s1;
+ __typeof(sym->st_value) addr = *(uint64_t *)s0;
int result = 0;
+
if (addr < sym->st_value) {
result = -1;
} else if (addr >= sym->st_value + sym->st_size) {
@@ -3338,7 +3339,7 @@ static int symfind(const void *s0, const void *s1)
return result;
}
-static const char *lookup_symbolxx(struct syminfo *s, target_ulong orig_addr)
+static const char *lookup_symbolxx(struct syminfo *s, uint64_t orig_addr)
{
#if ELF_CLASS == ELFCLASS32
struct elf_sym *syms = s->disas_symtab.elf32;