Lines Matching defs:code
2 // Use of this source code is governed by a BSD-style license that can be
5 // A Disassembler object is used to disassemble a block of code instruction by
9 // The example below will disassemble a block of code and print it to stdout.
22 // of code into a FILE*, meaning that the above functionality could also be
271 int32_t code = instr->Bits(25, 6);
273 "0x%05x (%d)", code, code);
282 int32_t code = instr->Bits(15, 6);
284 SNPrintF(out_buffer_ + out_buffer_pos_, "0x%03x", code);
353 case 'c': { // 'code for break or trap instructions.
354 DCHECK(STRING_STARTS_WITH(format, "code"));
454 // This is already known to be BREAK instr, just extract the code.
457 Format(instr, "break, code: 'code");
471 Format(instr, "break, code: 'code");
902 Format(instr, "tge 'rs, 'rt, code: 'code");
905 Format(instr, "tgeu 'rs, 'rt, code: 'code");
908 Format(instr, "tlt 'rs, 'rt, code: 'code");
911 Format(instr, "tltu 'rs, 'rt, code: 'code");
914 Format(instr, "teq 'rs, 'rt, code: 'code");
917 Format(instr, "tne 'rs, 'rt, code: 'code");
1458 // The default name converter is called for unknown code. So we will not try