MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / VisitInstructions

Method VisitInstructions

mediumlevelil.cpp:391–397  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

389
390
391void 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
400void MediumLevelILFunction::VisitAllExprs(

Callers

nothing calls this directly

Calls 2

GetStartMethod · 0.45
GetEndMethod · 0.45

Tested by

no test coverage detected