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

Method GetSSAForm

lowlevelilinstruction.cpp:1690–1698  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1688
1689
1690LowLevelILInstruction LowLevelILInstructionBase::GetSSAForm() const
1691{
1692 Ref<LowLevelILFunction> ssa = function->GetSSAForm().GetPtr();
1693 if (!ssa)
1694 return *this;
1695 size_t expr = GetSSAExprIndex();
1696 size_t instr = GetSSAInstructionIndex();
1697 return LowLevelILInstruction(ssa, ssa->GetRawExpr(expr), expr, instr);
1698}
1699
1700
1701LowLevelILInstruction LowLevelILInstructionBase::GetNonSSAForm() const

Callers

nothing calls this directly

Calls 3

GetPtrMethod · 0.45
GetRawExprMethod · 0.45

Tested by

no test coverage detected