mirror of https://github.com/xqemu/xqemu.git
PPC: add support for TCG helpers
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5094 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
1c73fe5bba
commit
f10dc08e00
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef DEF_HELPER
|
||||||
|
#define DEF_HELPER(ret, name, params) ret name params;
|
||||||
|
#endif
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
#include "exec-all.h"
|
#include "exec-all.h"
|
||||||
#include "disas.h"
|
#include "disas.h"
|
||||||
|
#include "helper.h"
|
||||||
#include "tcg-op.h"
|
#include "tcg-op.h"
|
||||||
#include "qemu-common.h"
|
#include "qemu-common.h"
|
||||||
|
|
||||||
|
@ -65,6 +66,12 @@ void ppc_translate_init(void)
|
||||||
cpu_T[1] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG2, "T1");
|
cpu_T[1] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG2, "T1");
|
||||||
cpu_T[2] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG3, "T2");
|
cpu_T[2] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG3, "T2");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* register helpers */
|
||||||
|
#undef DEF_HELPER
|
||||||
|
#define DEF_HELPER(ret, name, params) tcg_register_helper(name, #name);
|
||||||
|
#include "helper.h"
|
||||||
|
|
||||||
done_init = 1;
|
done_init = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue