Home | History | Annotate | Download | only in runtime

Lines Matching full:opcode

179   std::string opcode;
185 opcode = StringPrintf("op=%d fn=%d", op, function);
189 opcode = gMipsInstructions[i].name;
209 case 0: opcode += ".s"; break;
210 case 1: opcode += ".d"; break;
211 case 4: opcode += ".w"; break;
212 case 5: opcode += ".l"; break;
213 case 6: opcode += ".ps"; break;
214 default: opcode += ".?"; break;
257 os << StringPrintf("%p: %08x\t%-7s ", instr_ptr, instruction, opcode.c_str()) << args.str() << '\n';