In the most common case this can now be implemented as a simple
addition because the offset is already encoded as a single scalar
value in bytes.
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
break;
case VGRF:
case ATTR:
- case UNIFORM: {
- const unsigned reg_size = (reg.file == UNIFORM ? 4 : REG_SIZE);
- const unsigned suboffset = reg.offset % reg_size + delta;
- reg.offset += ROUND_DOWN_TO(suboffset, reg_size);
- reg.offset = ROUND_DOWN_TO(reg.offset, reg_size) + suboffset % reg_size;
+ case UNIFORM:
+ reg.offset += delta;
break;
- }
case MRF: {
- const unsigned suboffset = reg.offset % REG_SIZE + delta;
+ const unsigned suboffset = reg.offset + delta;
reg.nr += suboffset / REG_SIZE;
- reg.offset = ROUND_DOWN_TO(reg.offset, REG_SIZE) + suboffset % REG_SIZE;
+ reg.offset = suboffset % REG_SIZE;
break;
}
case ARF: