Re: [Mesa-dev] [PATCH 5/9] i965: Combine assembly annotations if possible.

2015-11-03 Thread Kenneth Graunke
On Tuesday, November 03, 2015 01:23:13 PM Matt Turner wrote: > On Mon, Oct 26, 2015 at 5:08 AM, Pohjolainen, Topi > wrote: > > On Wed, Oct 21, 2015 at 03:58:13PM -0700, Matt Turner wrote: > >> Often annotations are identical between sets of consecutive > >> instructions. We can perhaps avoid some

Re: [Mesa-dev] [PATCH 5/9] i965: Combine assembly annotations if possible.

2015-11-03 Thread Matt Turner
On Mon, Oct 26, 2015 at 5:08 AM, Pohjolainen, Topi wrote: > On Wed, Oct 21, 2015 at 03:58:13PM -0700, Matt Turner wrote: >> Often annotations are identical between sets of consecutive >> instructions. We can perhaps avoid some memory allocations by reusing >> the previous annotation. >> --- >> sr

Re: [Mesa-dev] [PATCH 5/9] i965: Combine assembly annotations if possible.

2015-10-26 Thread Pohjolainen, Topi
On Wed, Oct 21, 2015 at 03:58:13PM -0700, Matt Turner wrote: > Often annotations are identical between sets of consecutive > instructions. We can perhaps avoid some memory allocations by reusing > the previous annotation. > --- > src/mesa/drivers/dri/i965/intel_asm_annotation.c | 19 ++

[Mesa-dev] [PATCH 5/9] i965: Combine assembly annotations if possible.

2015-10-21 Thread Matt Turner
Often annotations are identical between sets of consecutive instructions. We can perhaps avoid some memory allocations by reusing the previous annotation. --- src/mesa/drivers/dri/i965/intel_asm_annotation.c | 19 ++- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/s