| 1285 | |
| 1286 | |
| 1287 | MediumLevelILInstruction MediumLevelILInstructionBase::GetSSAForm() const |
| 1288 | { |
| 1289 | Ref<MediumLevelILFunction> ssa = function->GetSSAForm().GetPtr(); |
| 1290 | if (!ssa) |
| 1291 | return *this; |
| 1292 | size_t expr = GetSSAExprIndex(); |
| 1293 | size_t instr = GetSSAInstructionIndex(); |
| 1294 | return MediumLevelILInstruction(ssa, ssa->GetRawExpr(expr), expr, instr); |
| 1295 | } |
| 1296 | |
| 1297 | |
| 1298 | MediumLevelILInstruction MediumLevelILInstructionBase::GetNonSSAForm() const |
nothing calls this directly
no test coverage detected