| 84 | //----------------------------------------------------------------------------- |
| 85 | |
| 86 | uint32_t get_implementation_specific(const InstructionOperand *operand, char *outBuffer, uint32_t outBufferSize) |
| 87 | { |
| 88 | return snprintf(outBuffer, |
| 89 | outBufferSize, |
| 90 | "s%d_%d_c%d_c%d_%d", |
| 91 | operand->implspec[0], |
| 92 | operand->implspec[1], |
| 93 | operand->implspec[2], |
| 94 | operand->implspec[3], |
| 95 | operand->implspec[4]) >= outBufferSize; |
| 96 | } |
| 97 | |
| 98 | const char *get_operation(const Instruction *inst) |
| 99 | { |
no outgoing calls
no test coverage detected