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
482 int32_t code = instr->Bits(25, 6);
484 "0x%05x (%d)", code, code);
493 int32_t code = instr->Bits(15, 6);
495 base::SNPrintF(out_buffer_ + out_buffer_pos_, "0x%03x", code);
744 case 'c': { // 'code for break or trap instructions.
745 DCHECK(STRING_STARTS_WITH(format, "code"));
1032 // This is already known to be BREAK instr, just extract the code.
1035 Format(instr, "break, code: 'code");
1044 Format(instr, "break, code: 'code");
1618 Format(instr, "tge 'rs, 'rt, code: 'code");
1621 Format(instr, "tgeu 'rs, 'rt, code: 'code");
1624 Format(instr, "tlt 'rs, 'rt, code: 'code");
1627 Format(instr, "tltu 'rs, 'rt, code: 'code");
1630 Format(instr, "teq 'rs, 'rt, code: 'code");
1633 Format(instr, "tne 'rs, 'rt, code: 'code");
2991 // The default name converter is called for unknown code. So we will not try