[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 0/5] Make the core disassembler functions target-independent
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v2 0/5] Make the core disassembler functions target-independent |
|
Date: |
Tue, 9 May 2023 17:33:21 +0100 |
Merges Thomas' RFC patch set with part of my "build-tcg-once" patch set.
The only real change from Thomas' is to use uint64_t instead of hwaddr.
r~
Richard Henderson (3):
disas: Move disas.c to disas/
disas: Remove target_ulong from the interface
disas: Remove target-specific headers
Thomas Huth (2):
disas: Move softmmu specific code to separate file
disas: Move disas.c into the target-independent source set
meson.build | 3 --
disas/disas-internal.h | 21 ++++++++
include/disas/disas.h | 23 +++------
bsd-user/elfload.c | 5 +-
disas/disas-mon.c | 65 +++++++++++++++++++++++++
disas.c => disas/disas.c | 100 +++++++--------------------------------
linux-user/elfload.c | 5 +-
disas/meson.build | 6 ++-
8 files changed, 121 insertions(+), 107 deletions(-)
create mode 100644 disas/disas-internal.h
create mode 100644 disas/disas-mon.c
rename disas.c => disas/disas.c (79%)
--
2.34.1
- [PATCH v2 0/5] Make the core disassembler functions target-independent,
Richard Henderson <=
- [PATCH v2 2/5] disas: Remove target_ulong from the interface, Richard Henderson, 2023/05/09
- [PATCH v2 3/5] disas: Remove target-specific headers, Richard Henderson, 2023/05/09
- [PATCH v2 1/5] disas: Move disas.c to disas/, Richard Henderson, 2023/05/09
- [PATCH v2 4/5] disas: Move softmmu specific code to separate file, Richard Henderson, 2023/05/09
- [PATCH v2 5/5] disas: Move disas.c into the target-independent source set, Richard Henderson, 2023/05/09