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

Method GetSSAForm

mediumlevelilinstruction.cpp:1287–1295  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1285
1286
1287MediumLevelILInstruction 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
1298MediumLevelILInstruction MediumLevelILInstructionBase::GetNonSSAForm() const

Callers

nothing calls this directly

Calls 3

GetPtrMethod · 0.45
GetRawExprMethod · 0.45

Tested by

no test coverage detected