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.
46 // of code into a FILE*, meaning that the above functionality could also be
254 int32_t code = instr->Bits(25, 6);
256 v8i::OS::SNPrintF(out_buffer_ + out_buffer_pos_, "0x%05x", code);
265 int32_t code = instr->Bits(15, 6);
267 v8i::OS::SNPrintF(out_buffer_ + out_buffer_pos_, "0x%03x", code);
332 case 'c': { // 'code for break or trap instructions
333 ASSERT(STRING_STARTS_WITH(format, "code"));
526 Format(instr, "break, code: 'code");
529 Format(instr, "tge 'rs, 'rt, code: 'code");
532 Format(instr, "tgeu 'rs, 'rt, code: 'code");
535 Format(instr, "tlt 'rs, 'rt, code: 'code");
538 Format(instr, "tltu 'rs, 'rt, code: 'code");
541 Format(instr, "teq 'rs, 'rt, code: 'code");
544 Format(instr, "tne 'rs, 'rt, code: 'code");
740 // The default name converter is called for unknown code. So we will not try