Home | History | Annotate | Download | only in mips

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
270 int32_t code = instr->Bits(25, 6);
272 "0x%05x (%d)", code, code);
281 int32_t code = instr->Bits(15, 6);
283 SNPrintF(out_buffer_ + out_buffer_pos_, "0x%03x", code);
352 case 'c': { // 'code for break or trap instructions.
353 DCHECK(STRING_STARTS_WITH(format, "code"));
772 Format(instr, "break, code: 'code");
775 Format(instr, "tge 'rs, 'rt, code: 'code");
778 Format(instr, "tgeu 'rs, 'rt, code: 'code");
781 Format(instr, "tlt 'rs, 'rt, code: 'code");
784 Format(instr, "tltu 'rs, 'rt, code: 'code");
787 Format(instr, "teq 'rs, 'rt, code: 'code");
790 Format(instr, "tne 'rs, 'rt, code: 'code");
1307 // The default name converter is called for unknown code. So we will not try