diff options
author | Igor Mammedov <imammedo@redhat.com> | 2017-10-05 15:51:01 +0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2017-10-27 16:04:27 +0200 |
commit | 6a8268664736cf74aa2f034df0dd6cebc3bb23d9 (patch) | |
tree | 596294c4784a3aa141b19331edbe1d5d2efd7015 /target/unicore32/cpu.h | |
parent | f83eb10d79d54c71db14567248ed228c5c3aa444 (diff) | |
download | qemu-6a8268664736cf74aa2f034df0dd6cebc3bb23d9.zip qemu-6a8268664736cf74aa2f034df0dd6cebc3bb23d9.tar.gz qemu-6a8268664736cf74aa2f034df0dd6cebc3bb23d9.tar.bz2 |
unicore32: cleanup cpu type name composition
use new UNICORE32_CPU_TYPE_NAME to compose CPU type
name and get rid of intermediate
UniCore32CPUInfo/uc32_cpu_register_types()
which is replaced by static TypeInfo array and
type_init_from_array()
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <1507211474-188400-28-git-send-email-imammedo@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target/unicore32/cpu.h')
-rw-r--r-- | target/unicore32/cpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/unicore32/cpu.h b/target/unicore32/cpu.h index 7724108..3dc6fbc 100644 --- a/target/unicore32/cpu.h +++ b/target/unicore32/cpu.h @@ -167,6 +167,9 @@ static inline int cpu_mmu_index(CPUUniCore32State *env, bool ifetch) #define cpu_init(cpu_model) cpu_generic_init(TYPE_UNICORE32_CPU, cpu_model) +#define UNICORE32_CPU_TYPE_SUFFIX "-" TYPE_UNICORE32_CPU +#define UNICORE32_CPU_TYPE_NAME(model) model UNICORE32_CPU_TYPE_SUFFIX + static inline void cpu_get_tb_cpu_state(CPUUniCore32State *env, target_ulong *pc, target_ulong *cs_base, uint32_t *flags) { |