Re: [Mesa-dev] [PATCH 1/2] gm107/ir: do not combine CONST loads

2016-11-25 Thread Ilia Mirkin
Reviewed-by: Ilia Mirkin On Fri, Nov 25, 2016 at 5:07 AM, Samuel Pitoiset wrote: > This will allow to use MOV instead of LD. The main advantage is > that MOV doesn't require a read dependency barrier while LD does, > and so this will both reduce barriers pressure and the number of > stall counts

[Mesa-dev] [PATCH 1/2] gm107/ir: do not combine CONST loads

2016-11-25 Thread Samuel Pitoiset
This will allow to use MOV instead of LD. The main advantage is that MOV doesn't require a read dependency barrier while LD does, and so this will both reduce barriers pressure and the number of stall counts needed to read data from constant memory. This is currently only for user uniform accesses