MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / IsSWInstr

Function IsSWInstr

pcsx2/DebugTools/MipsStackWalk.cpp:36–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34 }
35
36 bool IsSWInstr(const R5900::OPCODE& op)
37 {
38 if ((op.flags & IS_MEMORY) && (op.flags & IS_STORE))
39 {
40 switch (op.flags & MEMTYPE_MASK)
41 {
42 case MEMTYPE_WORD:
43 case MEMTYPE_DWORD:
44 case MEMTYPE_QWORD:
45 return true;
46 }
47 }
48
49 return false;
50 }
51
52 bool IsJRInstr(const R5900::OPCODE& op)
53 {

Callers 1

ScanForEntryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected