| 1699 | |
| 1700 | |
| 1701 | LowLevelILInstruction LowLevelILInstructionBase::GetNonSSAForm() const |
| 1702 | { |
| 1703 | Ref<LowLevelILFunction> nonSsa = function->GetNonSSAForm(); |
| 1704 | if (!nonSsa) |
| 1705 | return *this; |
| 1706 | size_t expr = GetNonSSAExprIndex(); |
| 1707 | size_t instr = GetNonSSAInstructionIndex(); |
| 1708 | return LowLevelILInstruction(nonSsa, nonSsa->GetRawExpr(expr), expr, instr); |
| 1709 | } |
| 1710 | |
| 1711 | |
| 1712 | size_t LowLevelILInstructionBase::GetMediumLevelILInstructionIndex() const |
nothing calls this directly
no test coverage detected