Re: [Mesa-dev] [PATCH v2 1/7] nir: split out instruction comparison functions

2015-09-30 Thread Connor Abbott
(CC'ing the list) On Wed, Sep 30, 2015 at 4:37 PM, Michael Schellenberger wrote: > Hi, > > Am 30.09.2015 um 17:11 schrieb Connor Abbott: >> Right now nir_instrs_equal() is tied pretty tightly to CSE, but we're >> going to introduce the idea of an instruction set and tie it to that >> instead. In

[Mesa-dev] [PATCH v2 1/7] nir: split out instruction comparison functions

2015-09-30 Thread Connor Abbott
Right now nir_instrs_equal() is tied pretty tightly to CSE, but we're going to introduce the idea of an instruction set and tie it to that instead. In anticipation of that, move this into its own file where we'll add the rest of the instruction set implementation later. v2: Rebase on texture supp