Lines Matching defs:reg
70 void PrintRegister(int reg);
178 void Decoder::PrintRegister(int reg) {
179 Print(converter_.NameOfCPURegister(reg));
183 int reg = instr->RsValue();
184 PrintRegister(reg);
188 int reg = instr->RtValue();
189 PrintRegister(reg);
193 int reg = instr->RdValue();
194 PrintRegister(reg);
254 // Print the integer value of the rd field, when it is not used as reg.
616 int reg = instr->RsValue();
617 PrintRegister(reg);
620 int reg = instr->RtValue();
621 PrintRegister(reg);
624 int reg = instr->RdValue();
625 PrintRegister(reg);
637 int reg = instr->FsValue();
638 PrintFPUStatusRegister(reg);
641 int reg = instr->FtValue();
642 PrintFPUStatusRegister(reg);
645 int reg = instr->FdValue();
646 PrintFPUStatusRegister(reg);
649 int reg = instr->FrValue();
650 PrintFPUStatusRegister(reg);
655 int reg = instr->FsValue();
656 PrintFPURegister(reg);
659 int reg = instr->FtValue();
660 PrintFPURegister(reg);
663 int reg = instr->FdValue();
664 PrintFPURegister(reg);
667 int reg = instr->FrValue();
668 PrintFPURegister(reg);
680 int reg = instr->WsValue();
681 PrintMSARegister(reg);
684 int reg = instr->WtValue();
685 PrintMSARegister(reg);
688 int reg = instr->WdValue();
689 PrintMSARegister(reg);
2689 const char* NameConverter::NameOfCPURegister(int reg) const {
2690 return v8::internal::Registers::Name(reg);
2693 const char* NameConverter::NameOfXMMRegister(int reg) const {
2694 return v8::internal::FPURegisters::Name(reg);
2697 const char* NameConverter::NameOfByteCPURegister(int reg) const {