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