| 389 | |
| 390 | |
| 391 | void MediumLevelILFunction::VisitInstructions( |
| 392 | const function<void(BasicBlock* block, const MediumLevelILInstruction& instr)>& func) |
| 393 | { |
| 394 | for (auto& i : GetBasicBlocks()) |
| 395 | for (size_t j = i->GetStart(); j < i->GetEnd(); j++) |
| 396 | func(i, GetInstruction(j)); |
| 397 | } |
| 398 | |
| 399 | |
| 400 | void MediumLevelILFunction::VisitAllExprs( |