| 638 | |
| 639 | |
| 640 | bool 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 | |
| 654 | bool LowLevelILFunction::GetInstructionText( |