860e0b965b
The fallback code in cpu_loop_exit_sigsegv is sufficient for hppa linux-user. Remove the code from cpu_loop that raised SIGSEGV. This makes all of the code in mem_helper.c sysemu only, so remove the ifdefs and move the file to hppa_softmmu_ss. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
22 lines
380 B
Meson
22 lines
380 B
Meson
gen = decodetree.process('insns.decode')
|
|
|
|
hppa_ss = ss.source_set()
|
|
hppa_ss.add(gen)
|
|
hppa_ss.add(files(
|
|
'cpu.c',
|
|
'gdbstub.c',
|
|
'helper.c',
|
|
'int_helper.c',
|
|
'op_helper.c',
|
|
'translate.c',
|
|
))
|
|
|
|
hppa_softmmu_ss = ss.source_set()
|
|
hppa_softmmu_ss.add(files(
|
|
'machine.c',
|
|
'mem_helper.c',
|
|
))
|
|
|
|
target_arch += {'hppa': hppa_ss}
|
|
target_softmmu_arch += {'hppa': hppa_softmmu_ss}
|