mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 05:17:52 +00:00
macro_jit_x64: Remove unused function Read
This commit is contained in:
parent
44f10d9b9f
commit
977ceb4056
1 changed files with 4 additions and 8 deletions
|
@ -270,14 +270,6 @@ void MacroJITx64Impl::Compile_ExtractShiftLeftRegister(Macro::Opcode opcode) {
|
||||||
Compile_ProcessResult(opcode.result_operation, opcode.dst);
|
Compile_ProcessResult(opcode.result_operation, opcode.dst);
|
||||||
}
|
}
|
||||||
|
|
||||||
static u32 Read(Engines::Maxwell3D* maxwell3d, u32 method) {
|
|
||||||
return maxwell3d->GetRegisterValue(method);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void Send(Engines::Maxwell3D* maxwell3d, Macro::MethodAddress method_address, u32 value) {
|
|
||||||
maxwell3d->CallMethodFromMME(method_address.address, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MacroJITx64Impl::Compile_Read(Macro::Opcode opcode) {
|
void MacroJITx64Impl::Compile_Read(Macro::Opcode opcode) {
|
||||||
if (optimizer.zero_reg_skip && opcode.src_a == 0) {
|
if (optimizer.zero_reg_skip && opcode.src_a == 0) {
|
||||||
if (opcode.immediate == 0) {
|
if (opcode.immediate == 0) {
|
||||||
|
@ -312,6 +304,10 @@ void MacroJITx64Impl::Compile_Read(Macro::Opcode opcode) {
|
||||||
Compile_ProcessResult(opcode.result_operation, opcode.dst);
|
Compile_ProcessResult(opcode.result_operation, opcode.dst);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void Send(Engines::Maxwell3D* maxwell3d, Macro::MethodAddress method_address, u32 value) {
|
||||||
|
maxwell3d->CallMethodFromMME(method_address.address, value);
|
||||||
|
}
|
||||||
|
|
||||||
void Tegra::MacroJITx64Impl::Compile_Send(Xbyak::Reg32 value) {
|
void Tegra::MacroJITx64Impl::Compile_Send(Xbyak::Reg32 value) {
|
||||||
Common::X64::ABI_PushRegistersAndAdjustStack(*this, PersistentCallerSavedRegs(), 0);
|
Common::X64::ABI_PushRegistersAndAdjustStack(*this, PersistentCallerSavedRegs(), 0);
|
||||||
mov(Common::X64::ABI_PARAM1, qword[STATE]);
|
mov(Common::X64::ABI_PARAM1, qword[STATE]);
|
||||||
|
|
Loading…
Reference in a new issue