Lines Matching defs:reg
70 void PrintRegister(int reg);
190 void Decoder::PrintRegister(int reg) {
191 Print(converter_.NameOfCPURegister(reg));
195 int reg = instr->RsValue();
196 PrintRegister(reg);
200 int reg = instr->RtValue();
201 PrintRegister(reg);
205 int reg = instr->RdValue();
206 PrintRegister(reg);
266 // Print the integer value of the rd field, when it is not used as reg.
657 int reg = instr->RsValue();
658 PrintRegister(reg);
661 int reg = instr->RtValue();
662 PrintRegister(reg);
665 int reg = instr->RdValue();
666 PrintRegister(reg);
678 int reg = instr->FsValue();
679 PrintFPUStatusRegister(reg);
682 int reg = instr->FtValue();
683 PrintFPUStatusRegister(reg);
686 int reg = instr->FdValue();
687 PrintFPUStatusRegister(reg);
690 int reg = instr->FrValue();
691 PrintFPUStatusRegister(reg);
696 int reg = instr->FsValue();
697 PrintFPURegister(reg);
700 int reg = instr->FtValue();
701 PrintFPURegister(reg);
704 int reg = instr->FdValue();
705 PrintFPURegister(reg);
708 int reg = instr->FrValue();
709 PrintFPURegister(reg);
721 int reg = instr->WsValue();
722 PrintMSARegister(reg);
725 int reg = instr->WtValue();
726 PrintMSARegister(reg);
729 int reg = instr->WdValue();
730 PrintMSARegister(reg);
2978 const char* NameConverter::NameOfCPURegister(int reg) const {
2979 return v8::internal::Registers::Name(reg);
2982 const char* NameConverter::NameOfXMMRegister(int reg) const {
2983 return v8::internal::FPURegisters::Name(reg);
2986 const char* NameConverter::NameOfByteCPURegister(int reg) const {