JitState: Remove Unused instructionNumber
This commit is contained in:
parent
758097f09c
commit
e7dbd298a8
|
@ -952,7 +952,6 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC)
|
||||||
js.compilerPC = op.address;
|
js.compilerPC = op.address;
|
||||||
js.op = &op;
|
js.op = &op;
|
||||||
js.fpr_is_store_safe = op.fprIsStoreSafeBeforeInst;
|
js.fpr_is_store_safe = op.fprIsStoreSafeBeforeInst;
|
||||||
js.instructionNumber = i;
|
|
||||||
js.instructionsLeft = (code_block.m_num_instructions - 1) - i;
|
js.instructionsLeft = (code_block.m_num_instructions - 1) - i;
|
||||||
const GekkoOPInfo* opinfo = op.opinfo;
|
const GekkoOPInfo* opinfo = op.opinfo;
|
||||||
js.downcountAmount += opinfo->num_cycles;
|
js.downcountAmount += opinfo->num_cycles;
|
||||||
|
|
|
@ -1070,7 +1070,6 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC)
|
||||||
js.compilerPC = op.address;
|
js.compilerPC = op.address;
|
||||||
js.op = &op;
|
js.op = &op;
|
||||||
js.fpr_is_store_safe = op.fprIsStoreSafeBeforeInst;
|
js.fpr_is_store_safe = op.fprIsStoreSafeBeforeInst;
|
||||||
js.instructionNumber = i;
|
|
||||||
js.instructionsLeft = (code_block.m_num_instructions - 1) - i;
|
js.instructionsLeft = (code_block.m_num_instructions - 1) - i;
|
||||||
const GekkoOPInfo* opinfo = op.opinfo;
|
const GekkoOPInfo* opinfo = op.opinfo;
|
||||||
js.downcountAmount += opinfo->num_cycles;
|
js.downcountAmount += opinfo->num_cycles;
|
||||||
|
|
|
@ -91,7 +91,6 @@ protected:
|
||||||
{
|
{
|
||||||
u32 compilerPC;
|
u32 compilerPC;
|
||||||
u32 blockStart;
|
u32 blockStart;
|
||||||
int instructionNumber;
|
|
||||||
int instructionsLeft;
|
int instructionsLeft;
|
||||||
u32 downcountAmount;
|
u32 downcountAmount;
|
||||||
u32 numLoadStoreInst;
|
u32 numLoadStoreInst;
|
||||||
|
|
Loading…
Reference in New Issue