mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
JitBase: Add HasConstantCarry helper
This commit is contained in:
@ -178,6 +178,14 @@ protected:
|
|||||||
void CleanUpAfterStackFault();
|
void CleanUpAfterStackFault();
|
||||||
|
|
||||||
bool CanMergeNextInstructions(int count) const;
|
bool CanMergeNextInstructions(int count) const;
|
||||||
|
bool HasConstantCarry() const
|
||||||
|
{
|
||||||
|
#ifdef _M_ARM_64
|
||||||
|
return js.carryFlag == CarryFlag::ConstantTrue || js.carryFlag == CarryFlag::ConstantFalse;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
bool ShouldHandleFPExceptionForInstruction(const PPCAnalyst::CodeOp* op);
|
bool ShouldHandleFPExceptionForInstruction(const PPCAnalyst::CodeOp* op);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user