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

Method VisitAllExprs

mediumlevelil.cpp:400–406  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

398
399
400void MediumLevelILFunction::VisitAllExprs(
401 const function<bool(BasicBlock* block, const MediumLevelILInstruction& expr)>& func)
402{
403 VisitInstructions([&](BasicBlock* block, const MediumLevelILInstruction& instr) {
404 instr.VisitExprs([&](const MediumLevelILInstruction& expr) { return func(block, expr); });
405 });
406}
407
408
409vector<Ref<BasicBlock>> MediumLevelILFunction::GetBasicBlocks() const

Callers

nothing calls this directly

Calls 1

VisitExprsMethod · 0.45

Tested by

no test coverage detected