Home | History | Annotate | Download | only in mips

Lines Matching defs:code

6 //     * Redistributions of source code must retain the above copyright
28 // A Disassembler object is used to disassemble a block of code instruction by
32 // The example below will disassemble a block of code and print it to stdout.
45 // 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 OS::SNPrintF(out_buffer_ + out_buffer_pos_, "0x%03x", code);
348 case 'c': { // 'code for break or trap instructions
349 ASSERT(STRING_STARTS_WITH(format, "code"));
692 Format(instr, "break, code: 'code");
695 Format(instr, "tge 'rs, 'rt, code: 'code");
698 Format(instr, "tgeu 'rs, 'rt, code: 'code");
701 Format(instr, "tlt 'rs, 'rt, code: 'code");
704 Format(instr, "tltu 'rs, 'rt, code: 'code");
707 Format(instr, "teq 'rs, 'rt, code: 'code");
710 Format(instr, "tne 'rs, 'rt, code: 'code");
977 // The default name converter is called for unknown code. So we will not try