// Hint files help the Visual Studio IDE interpret Visual C++ identifiers // such as names of functions and macros. // For more information see https://go.microsoft.com/fwlink/?linkid=865984 #define OPCODEREC(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } #define OPCODESHIFT(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } #define OPCODEOVREC(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } #define OPCODE(op, __VA_ARGS__) void dppc_interpreter::ppc_##op(uint32_t instr) {##__VA_ARGS__ } #define OPCODECARRY(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } #define POWEROPCODEREC(op, __VA_ARGS__) template void dppc_interpreter::power_##op(uint32_t instr) { __VA_ARGS__ } #define POWEROPCODEOVREC(op, __VA_ARGS__) template void dppc_interpreter::power_##op(uint32_t instr) { __VA_ARGS__ } #define OPCODELOGIC(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } #define OPCODELKAA(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } #define OPCODE601L(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } #define POWEROPCODE(op, __VA_ARGS__) void dppc_interpreter::power_##op(uint32_t instr) {##__VA_ARGS__ } #define OPCODEMEM(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } #define OPCODESHIFTREC(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } #define OPCODE601REC(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } #define OPCODEEXTSIGN(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } #define ppc_store_iresult_reg(reg, ppc_result) ppc_state.gpr[reg] = ppc_result #define ppc_set_xer(entry) ppc_state.spr[SPR::XER] |= entry#define OPCODEL(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr) { __VA_ARGS__ } template void dppc_interpreter::ppc_##op(uint32_t instr); template void dppc_interpreter::ppc_##op(uint32_t instr); #define OPCODEL(op, __VA_ARGS__) template void dppc_interpreter::ppc_##op(uint32_t instr)