Home
last modified time | relevance | path

Searched refs:Compile_GetRegister (Results 1 – 2 of 2) sorted by relevance

/dports/emulators/yuzu/yuzu-0b47f7a46/src/video_core/macro/
H A Dmacro_jit_x64.cpp67 src_a = Compile_GetRegister(opcode.src_a, RESULT); in Compile_ALU()
68 src_b = Compile_GetRegister(opcode.src_b, eax); in Compile_ALU()
71 src_a = Compile_GetRegister(opcode.src_a, RESULT); in Compile_ALU()
74 src_b = Compile_GetRegister(opcode.src_b, eax); in Compile_ALU()
213 auto dst = Compile_GetRegister(opcode.src_a, RESULT); in Compile_ExtractInsert()
214 auto src = Compile_GetRegister(opcode.src_b, eax); in Compile_ExtractInsert()
242 const auto dst = Compile_GetRegister(opcode.src_a, ecx); in Compile_ExtractShiftLeftImmediate()
243 const auto src = Compile_GetRegister(opcode.src_b, RESULT); in Compile_ExtractShiftLeftImmediate()
261 const auto dst = Compile_GetRegister(opcode.src_a, ecx); in Compile_ExtractShiftLeftRegister()
262 const auto src = Compile_GetRegister(opcode.src_b, RESULT); in Compile_ExtractShiftLeftRegister()
[all …]
H A Dmacro_jit_x64.h57 Xbyak::Reg32 Compile_GetRegister(u32 index, Xbyak::Reg32 dst);