Lines Matching refs:reg
104 print_physReg(PhysReg reg, unsigned bytes, FILE* output, unsigned flags)
106 if (reg == 124) {
108 } else if (reg == 106) {
110 } else if (reg == 253) {
112 } else if (reg == 126) {
115 bool is_vgpr = reg / 256;
116 unsigned r = reg % 256;
127 if (reg.byte() || bytes % 4)
128 fprintf(output, "[%d:%d]", reg.byte() * 8, (reg.byte() + bytes) * 8);
133 print_constant(uint8_t reg, FILE* output)
135 if (reg >= 128 && reg <= 192) {
136 fprintf(output, "%d", reg - 128);
138 } else if (reg >= 192 && reg <= 208) {
139 fprintf(output, "%d", 192 - reg);
143 switch (reg) {
167 print_constant(operand->physReg().reg(), output);