| 1296 | |
| 1297 | |
| 1298 | MediumLevelILInstruction MediumLevelILInstructionBase::GetNonSSAForm() const |
| 1299 | { |
| 1300 | Ref<MediumLevelILFunction> nonSsa = function->GetNonSSAForm(); |
| 1301 | if (!nonSsa) |
| 1302 | return *this; |
| 1303 | size_t expr = GetNonSSAExprIndex(); |
| 1304 | size_t instr = GetNonSSAInstructionIndex(); |
| 1305 | return MediumLevelILInstruction(nonSsa, nonSsa->GetRawExpr(expr), expr, instr); |
| 1306 | } |
| 1307 | |
| 1308 | |
| 1309 | size_t MediumLevelILInstructionBase::GetLowLevelILInstructionIndex() const |
nothing calls this directly
no test coverage detected