| 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( |
nothing calls this directly
no test coverage detected