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

Method tokenize_condition

arch/arm64/arch_arm64.cpp:690–699  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

688
689
690 uint32_t tokenize_condition(
691 const InstructionOperand* restrict operand, vector<InstructionTextToken>& result)
692 {
693 const char* condStr = get_condition((Condition)operand->cond);
694 if (condStr == NULL)
695 return FAILED_TO_DISASSEMBLE_OPERAND;
696
697 result.emplace_back(TextToken, condStr);
698 return DISASM_SUCCESS;
699 }
700
701
702 uint32_t tokenize_implementation_specific(

Callers

nothing calls this directly

Calls 1

get_conditionFunction · 0.50

Tested by

no test coverage detected