Skip to content

Commit

Permalink
target-unicore32: Make uc32_cpu_init() return UniCore32CPU
Browse files Browse the repository at this point in the history
This way, the cpu_init() function in target-unicore32 will follow the
same pattern used on all other architectures.

Signed-off-by: Eduardo Habkost <[email protected]>
Signed-off-by: Andreas Färber <[email protected]>
  • Loading branch information
ehabkost authored and afaerber committed Mar 10, 2015
1 parent 6e8e265 commit 4197966
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
14 changes: 12 additions & 2 deletions target-unicore32/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,9 @@ void cpu_asr_write(CPUUniCore32State *env1, target_ulong val, target_ulong mask)
#define UC32_HWCAP_CMOV 4 /* 1 << 2 */
#define UC32_HWCAP_UCF64 8 /* 1 << 3 */

#define cpu_init uc32_cpu_init
#define cpu_exec uc32_cpu_exec
#define cpu_signal_handler uc32_cpu_signal_handler

CPUUniCore32State *uc32_cpu_init(const char *cpu_model);
int uc32_cpu_exec(CPUUniCore32State *s);
int uc32_cpu_signal_handler(int host_signum, void *pinfo, void *puc);

Expand All @@ -143,6 +141,18 @@ static inline int cpu_mmu_index(CPUUniCore32State *env)
#include "cpu-qom.h"
#include "exec/exec-all.h"

UniCore32CPU *uc32_cpu_init(const char *cpu_model);

static inline CPUUniCore32State *cpu_init(const char *cpu_model)
{
UniCore32CPU *cpu = uc32_cpu_init(cpu_model);
if (cpu == NULL) {
return NULL;
}
return &cpu->env;

}

static inline void cpu_get_tb_cpu_state(CPUUniCore32State *env, target_ulong *pc,
target_ulong *cs_base, int *flags)
{
Expand Down
10 changes: 2 additions & 8 deletions target-unicore32/helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,9 @@
#define DPRINTF(fmt, ...) do {} while (0)
#endif

CPUUniCore32State *uc32_cpu_init(const char *cpu_model)
UniCore32CPU *uc32_cpu_init(const char *cpu_model)
{
UniCore32CPU *cpu;

cpu = UNICORE32_CPU(cpu_generic_init(TYPE_UNICORE32_CPU, cpu_model));
if (cpu == NULL) {
return NULL;
}
return &cpu->env;
return UNICORE32_CPU(cpu_generic_init(TYPE_UNICORE32_CPU, cpu_model));
}

uint32_t HELPER(clo)(uint32_t x)
Expand Down

0 comments on commit 4197966

Please sign in to comment.