QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.0 KiB
26 lines
1.0 KiB
#include "def-helper.h"
|
|
|
|
DEF_HELPER_1(raise_exception, void, i32)
|
|
DEF_HELPER_1(tlb_flush_pid, void, i32)
|
|
DEF_HELPER_1(spc_write, void, i32)
|
|
DEF_HELPER_3(dump, void, i32, i32, i32)
|
|
DEF_HELPER_0(rfe, void);
|
|
DEF_HELPER_0(rfn, void);
|
|
|
|
DEF_HELPER_2(movl_sreg_reg, void, i32, i32)
|
|
DEF_HELPER_2(movl_reg_sreg, void, i32, i32)
|
|
|
|
DEF_HELPER_FLAGS_1(lz, TCG_CALL_PURE, i32, i32);
|
|
DEF_HELPER_FLAGS_3(btst, TCG_CALL_PURE, i32, i32, i32, i32);
|
|
|
|
DEF_HELPER_FLAGS_3(evaluate_flags_muls, TCG_CALL_PURE, i32, i32, i32, i32)
|
|
DEF_HELPER_FLAGS_3(evaluate_flags_mulu, TCG_CALL_PURE, i32, i32, i32, i32)
|
|
DEF_HELPER_FLAGS_4(evaluate_flags_mcp, TCG_CALL_PURE, i32, i32, i32, i32, i32)
|
|
DEF_HELPER_FLAGS_4(evaluate_flags_alu_4, TCG_CALL_PURE, i32, i32, i32, i32, i32)
|
|
DEF_HELPER_FLAGS_4(evaluate_flags_sub_4, TCG_CALL_PURE, i32, i32, i32, i32, i32)
|
|
DEF_HELPER_FLAGS_2(evaluate_flags_move_4, TCG_CALL_PURE, i32, i32, i32)
|
|
DEF_HELPER_FLAGS_2(evaluate_flags_move_2, TCG_CALL_PURE, i32, i32, i32)
|
|
DEF_HELPER_0(evaluate_flags, void)
|
|
DEF_HELPER_0(top_evaluate_flags, void)
|
|
|
|
#include "def-helper.h"
|
|
|