Home | History | Annotate | Download | only in src

Lines Matching defs:reg_index

58           int reg_index = unalloc->fixed_register_index();
59 if (reg_index < 0 ||
60 reg_index >= Register::kMaxNumAllocatableRegisters) {
61 stream->Add("(=invalid_reg#%d)", reg_index);
64 Register::AllocationIndexToString(reg_index);
70 int reg_index = unalloc->fixed_register_index();
71 if (reg_index < 0 ||
72 reg_index >= DoubleRegister::kMaxNumAllocatableRegisters) {
73 stream->Add("(=invalid_double_reg#%d)", reg_index);
76 DoubleRegister::AllocationIndexToString(reg_index);
108 int reg_index = index();
109 if (reg_index < 0 || reg_index >= Register::kMaxNumAllocatableRegisters) {
110 stream->Add("(=invalid_reg#%d|R)", reg_index);
112 stream->Add("[%s|R]", Register::AllocationIndexToString(reg_index));
117 int reg_index = index();
118 if (reg_index < 0 ||
119 reg_index >= DoubleRegister::kMaxNumAllocatableRegisters) {
120 stream->Add("(=invalid_double_reg#%d|R)", reg_index);
123 DoubleRegister::AllocationIndexToString(reg_index));