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

Method GetExprText

lowlevelil.cpp:640–651  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

638
639
640bool LowLevelILFunction::GetExprText(Architecture* arch, ExprId expr, vector<InstructionTextToken>& tokens,
641 DisassemblySettings* settings)
642{
643 size_t count;
644 BNInstructionTextToken* list;
645 if (!BNGetLowLevelILExprText(m_object, arch->GetObject(), expr, settings ? settings->GetObject() : nullptr,
646 &list, &count))
647 return false;
648
649 tokens = InstructionTextToken::ConvertAndFreeInstructionTextTokenList(list, count);
650 return true;
651}
652
653
654bool LowLevelILFunction::GetInstructionText(

Callers 6

DumpMethod · 0.45
formatMethod · 0.45
DumpMethod · 0.45
formatMethod · 0.45
DumpMethod · 0.45
formatMethod · 0.45

Calls 1

GetObjectMethod · 0.45

Tested by

no test coverage detected