• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright © 2017 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21  * IN THE SOFTWARE.
22  */
23 
24 /** @file
25  *
26  * This file contains a GRF bank conflict mitigation pass.  The pass is
27  * intended to be run after register allocation and works by rearranging the
28  * layout of the GRF space (without altering the semantics of the program) in
29  * a way that minimizes the number of GRF bank conflicts incurred by ternary
30  * instructions.
31  *
32  * Unfortunately there is close to no information about bank conflicts in the
33  * hardware spec, but experimentally on Gfx7-Gfx9 ternary instructions seem to
34  * incur an average bank conflict penalty of one cycle per SIMD8 op whenever
35  * the second and third source are stored in the same GRF bank (\sa bank_of()
36  * for the exact bank layout) which cannot be fetched during the same cycle by
37  * the EU, unless the EU logic manages to optimize out the read cycle of a
38  * duplicate source register (\sa is_conflict_optimized_out()).
39  *
40  * The asymptotic run-time of the algorithm is dominated by the
41  * shader_conflict_weight_matrix() computation below, which is O(n) on the
42  * number of instructions in the program, however for small and medium-sized
43  * programs the run-time is likely to be dominated by
44  * optimize_reg_permutation() which is O(m^3) on the number of GRF atoms of
45  * the program (\sa partitioning), which is bounded (since the program uses a
46  * bounded number of registers post-regalloc) and of the order of 100.  For
47  * that reason optimize_reg_permutation() is vectorized in order to keep the
48  * cubic term within reasonable bounds for m close to its theoretical maximum.
49  */
50 
51 #include "brw_fs.h"
52 #include "brw_cfg.h"
53 
54 #ifdef __SSE2__
55 
56 #include <emmintrin.h>
57 
58 /**
59  * Thin layer around vector intrinsics so they can be easily replaced with
60  * e.g. the fall-back scalar path, an implementation with different vector
61  * width or using different SIMD architectures (AVX-512?!).
62  *
63  * This implementation operates on pairs of independent SSE2 integer vectors à
64  * la SIMD16 for somewhat improved throughput.  SSE2 is supported by virtually
65  * all platforms that care about bank conflicts, so this path should almost
66  * always be available in practice.
67  */
68 namespace {
69    /**
70     * SIMD integer vector data type.
71     */
72    struct vector_type {
73       __m128i v[2];
74    };
75 
76    /**
77     * Scalar data type matching the representation of a single component of \p
78     * vector_type.
79     */
80    typedef int16_t scalar_type;
81 
82    /**
83     * Maximum integer value representable as a \p scalar_type.
84     */
85    const scalar_type max_scalar = INT16_MAX;
86 
87    /**
88     * Number of components of a \p vector_type.
89     */
90    const unsigned vector_width = 2 * sizeof(__m128i) / sizeof(scalar_type);
91 
92    /**
93     * Set the i-th component of vector \p v to \p x.
94     */
95    void
set(vector_type & v,unsigned i,scalar_type x)96    set(vector_type &v, unsigned i, scalar_type x)
97    {
98       assert(i < vector_width);
99       memcpy((char *)v.v + i * sizeof(x), &x, sizeof(x));
100    }
101 
102    /**
103     * Get the i-th component of vector \p v.
104     */
105    scalar_type
get(const vector_type & v,unsigned i)106    get(const vector_type &v, unsigned i)
107    {
108       assert(i < vector_width);
109       scalar_type x;
110       memcpy(&x, (char *)v.v + i * sizeof(x), sizeof(x));
111       return x;
112    }
113 
114    /**
115     * Add two vectors with saturation.
116     */
117    vector_type
adds(const vector_type & v,const vector_type & w)118    adds(const vector_type &v, const vector_type &w)
119    {
120       const vector_type u = {{
121             _mm_adds_epi16(v.v[0], w.v[0]),
122             _mm_adds_epi16(v.v[1], w.v[1])
123          }};
124       return u;
125    }
126 
127    /**
128     * Subtract two vectors with saturation.
129     */
130    vector_type
subs(const vector_type & v,const vector_type & w)131    subs(const vector_type &v, const vector_type &w)
132    {
133       const vector_type u = {{
134             _mm_subs_epi16(v.v[0], w.v[0]),
135             _mm_subs_epi16(v.v[1], w.v[1])
136          }};
137       return u;
138    }
139 
140    /**
141     * Compute the bitwise conjunction of two vectors.
142     */
143    vector_type
mask(const vector_type & v,const vector_type & w)144    mask(const vector_type &v, const vector_type &w)
145    {
146       const vector_type u = {{
147             _mm_and_si128(v.v[0], w.v[0]),
148             _mm_and_si128(v.v[1], w.v[1])
149          }};
150       return u;
151    }
152 
153    /**
154     * Reduce the components of a vector using saturating addition.
155     */
156    scalar_type
sums(const vector_type & v)157    sums(const vector_type &v)
158    {
159       const __m128i v8 = _mm_adds_epi16(v.v[0], v.v[1]);
160       const __m128i v4 = _mm_adds_epi16(v8, _mm_shuffle_epi32(v8, 0x4e));
161       const __m128i v2 = _mm_adds_epi16(v4, _mm_shuffle_epi32(v4, 0xb1));
162       const __m128i v1 = _mm_adds_epi16(v2, _mm_shufflelo_epi16(v2, 0xb1));
163       return _mm_extract_epi16(v1, 0);
164    }
165 }
166 
167 #else
168 
169 /**
170  * Thin layer around vector intrinsics so they can be easily replaced with
171  * e.g. the fall-back scalar path, an implementation with different vector
172  * width or using different SIMD architectures (AVX-512?!).
173  *
174  * This implementation operates on scalar values and doesn't rely on
175  * any vector extensions.  This is mainly intended for debugging and
176  * to keep this file building on exotic platforms.
177  */
178 namespace {
179    /**
180     * SIMD integer vector data type.
181     */
182    typedef int16_t vector_type;
183 
184    /**
185     * Scalar data type matching the representation of a single component of \p
186     * vector_type.
187     */
188    typedef int16_t scalar_type;
189 
190    /**
191     * Maximum integer value representable as a \p scalar_type.
192     */
193    const scalar_type max_scalar = INT16_MAX;
194 
195    /**
196     * Number of components of a \p vector_type.
197     */
198    const unsigned vector_width = 1;
199 
200    /**
201     * Set the i-th component of vector \p v to \p x.
202     */
203    void
set(vector_type & v,unsigned i,scalar_type x)204    set(vector_type &v, unsigned i, scalar_type x)
205    {
206       assert(i < vector_width);
207       v = x;
208    }
209 
210    /**
211     * Get the i-th component of vector \p v.
212     */
213    scalar_type
get(const vector_type & v,unsigned i)214    get(const vector_type &v, unsigned i)
215    {
216       assert(i < vector_width);
217       return v;
218    }
219 
220    /**
221     * Add two vectors with saturation.
222     */
223    vector_type
adds(vector_type v,vector_type w)224    adds(vector_type v, vector_type w)
225    {
226       return MAX2(INT16_MIN, MIN2(INT16_MAX, int(v) + w));
227    }
228 
229    /**
230     * Subtract two vectors with saturation.
231     */
232    vector_type
subs(vector_type v,vector_type w)233    subs(vector_type v, vector_type w)
234    {
235       return MAX2(INT16_MIN, MIN2(INT16_MAX, int(v) - w));
236    }
237 
238    /**
239     * Compute the bitwise conjunction of two vectors.
240     */
241    vector_type
mask(vector_type v,vector_type w)242    mask(vector_type v, vector_type w)
243    {
244       return v & w;
245    }
246 
247    /**
248     * Reduce the components of a vector using saturating addition.
249     */
250    scalar_type
sums(vector_type v)251    sums(vector_type v)
252    {
253       return v;
254    }
255 }
256 
257 #endif
258 
259 /**
260  * Swap \p x and \p y.
261  */
262 #define SWAP(x, y) do {                          \
263       __typeof(y) _swap_tmp = y;                 \
264       y = x;                                     \
265       x = _swap_tmp;                             \
266    } while (0)
267 
268 namespace {
269    /**
270     * Variable-length vector type intended to represent cycle-count costs for
271     * arbitrary atom-to-bank assignments.  It's indexed by a pair of integers
272     * (i, p), where i is an atom index and p in {0, 1} indicates the parity of
273     * the conflict (respectively, whether the cost is incurred whenever the
274     * atoms are assigned the same bank b or opposite-parity banks b and b^1).
275     * \sa shader_conflict_weight_matrix()
276     */
277    struct weight_vector_type {
weight_vector_type__anon9146e7c90311::weight_vector_type278       weight_vector_type() : v(NULL), size(0) {}
279 
weight_vector_type__anon9146e7c90311::weight_vector_type280       weight_vector_type(unsigned n) : v(alloc(n)), size(n) {}
281 
weight_vector_type__anon9146e7c90311::weight_vector_type282       weight_vector_type(const weight_vector_type &u) :
283          v(alloc(u.size)), size(u.size)
284       {
285          memcpy(v, u.v,
286                 DIV_ROUND_UP(u.size, vector_width) * sizeof(vector_type));
287       }
288 
~weight_vector_type__anon9146e7c90311::weight_vector_type289       ~weight_vector_type()
290       {
291          free(v);
292       }
293 
294       weight_vector_type &
operator =__anon9146e7c90311::weight_vector_type295       operator=(weight_vector_type u)
296       {
297          SWAP(v, u.v);
298          SWAP(size, u.size);
299          return *this;
300       }
301 
302       vector_type *v;
303       unsigned size;
304 
305    private:
306       static vector_type *
alloc__anon9146e7c90311::weight_vector_type307       alloc(unsigned n)
308       {
309          const unsigned align = MAX2(sizeof(void *), __alignof__(vector_type));
310          const unsigned size = DIV_ROUND_UP(n, vector_width) * sizeof(vector_type);
311          void *p;
312          if (posix_memalign(&p, align, size))
313             return NULL;
314          memset(p, 0, size);
315          return reinterpret_cast<vector_type *>(p);
316       }
317    };
318 
319    /**
320     * Set the (i, p)-th component of weight vector \p v to \p x.
321     */
322    void
set(weight_vector_type & v,unsigned i,unsigned p,scalar_type x)323    set(weight_vector_type &v, unsigned i, unsigned p, scalar_type x)
324    {
325       set(v.v[(2 * i + p) / vector_width], (2 * i + p) % vector_width, x);
326    }
327 
328    /**
329     * Get the (i, p)-th component of weight vector \p v.
330     */
331    scalar_type
get(const weight_vector_type & v,unsigned i,unsigned p)332    get(const weight_vector_type &v, unsigned i, unsigned p)
333    {
334       return get(v.v[(2 * i + p) / vector_width], (2 * i + p) % vector_width);
335    }
336 
337    /**
338     * Swap the (i, p)-th and (j, q)-th components of weight vector \p v.
339     */
340    void
swap(weight_vector_type & v,unsigned i,unsigned p,unsigned j,unsigned q)341    swap(weight_vector_type &v,
342         unsigned i, unsigned p,
343         unsigned j, unsigned q)
344    {
345       const scalar_type tmp = get(v, i, p);
346       set(v, i, p, get(v, j, q));
347       set(v, j, q, tmp);
348    }
349 }
350 
351 namespace {
352    /**
353     * Object that represents the partitioning of an arbitrary register space
354     * into indivisible units (referred to as atoms below) that can potentially
355     * be rearranged independently from other registers.  The partitioning is
356     * inferred from a number of contiguity requirements specified using
357     * require_contiguous().  This allows efficient look-up of the atom index a
358     * given register address belongs to, or conversely the range of register
359     * addresses that belong to a given atom.
360     */
361    struct partitioning {
362       /**
363        * Create a (for the moment unrestricted) partitioning of a register
364        * file of size \p n.  The units are arbitrary.
365        */
partitioning__anon9146e7c90411::partitioning366       partitioning(unsigned n) :
367          max_reg(n),
368          offsets(new unsigned[n + num_terminator_atoms]),
369          atoms(new unsigned[n + num_terminator_atoms])
370       {
371          for (unsigned i = 0; i < n + num_terminator_atoms; i++) {
372             offsets[i] = i;
373             atoms[i] = i;
374          }
375       }
376 
partitioning__anon9146e7c90411::partitioning377       partitioning(const partitioning &p) :
378          max_reg(p.max_reg),
379          offsets(new unsigned[p.num_atoms() + num_terminator_atoms]),
380          atoms(new unsigned[p.max_reg + num_terminator_atoms])
381       {
382          memcpy(offsets, p.offsets,
383                 sizeof(unsigned) * (p.num_atoms() + num_terminator_atoms));
384          memcpy(atoms, p.atoms,
385                 sizeof(unsigned) * (p.max_reg + num_terminator_atoms));
386       }
387 
~partitioning__anon9146e7c90411::partitioning388       ~partitioning()
389       {
390          delete[] offsets;
391          delete[] atoms;
392       }
393 
394       partitioning &
operator =__anon9146e7c90411::partitioning395       operator=(partitioning p)
396       {
397          SWAP(max_reg, p.max_reg);
398          SWAP(offsets, p.offsets);
399          SWAP(atoms, p.atoms);
400          return *this;
401       }
402 
403       /**
404        * Require register range [reg, reg + n[ to be considered part of the
405        * same atom.
406        */
407       void
require_contiguous__anon9146e7c90411::partitioning408       require_contiguous(unsigned reg, unsigned n)
409       {
410          unsigned r = atoms[reg];
411 
412          /* Renumber atoms[reg...] = { r... } and their offsets[r...] for the
413           * case that the specified contiguity requirement leads to the fusion
414           * (yay) of one or more existing atoms.
415           */
416          for (unsigned reg1 = reg + 1; reg1 <= max_reg; reg1++) {
417             if (offsets[atoms[reg1]] < reg + n) {
418                atoms[reg1] = r;
419             } else {
420                if (offsets[atoms[reg1 - 1]] != offsets[atoms[reg1]])
421                   r++;
422 
423                offsets[r] = offsets[atoms[reg1]];
424                atoms[reg1] = r;
425             }
426          }
427       }
428 
429       /**
430        * Get the atom index register address \p reg belongs to.
431        */
432       unsigned
atom_of_reg__anon9146e7c90411::partitioning433       atom_of_reg(unsigned reg) const
434       {
435          return atoms[reg];
436       }
437 
438       /**
439        * Get the base register address that belongs to atom \p r.
440        */
441       unsigned
reg_of_atom__anon9146e7c90411::partitioning442       reg_of_atom(unsigned r) const
443       {
444          return offsets[r];
445       }
446 
447       /**
448        * Get the size of atom \p r in register address units.
449        */
450       unsigned
size_of_atom__anon9146e7c90411::partitioning451       size_of_atom(unsigned r) const
452       {
453          assert(r < num_atoms());
454          return reg_of_atom(r + 1) - reg_of_atom(r);
455       }
456 
457       /**
458        * Get the number of atoms the whole register space is partitioned into.
459        */
460       unsigned
num_atoms__anon9146e7c90411::partitioning461       num_atoms() const
462       {
463          return atoms[max_reg];
464       }
465 
466    private:
467       /**
468        * Number of trailing atoms inserted for convenience so among other
469        * things we don't need to special-case the last element in
470        * size_of_atom().
471        */
472       static const unsigned num_terminator_atoms = 1;
473       unsigned max_reg;
474       unsigned *offsets;
475       unsigned *atoms;
476    };
477 
478    /**
479     * Only GRF sources (whether they have been register-allocated or not) can
480     * possibly incur bank conflicts.
481     */
482    bool
is_grf(const brw_reg & r)483    is_grf(const brw_reg &r)
484    {
485       return r.file == VGRF || r.file == FIXED_GRF;
486    }
487 
488    /**
489     * Register offset of \p r in GRF units.  Useful because the representation
490     * of GRFs post-register allocation is somewhat inconsistent and depends on
491     * whether the register already had a fixed GRF offset prior to register
492     * allocation or whether it was part of a VGRF allocation.
493     */
494    unsigned
reg_of(const brw_reg & r)495    reg_of(const brw_reg &r)
496    {
497       assert(is_grf(r));
498       if (r.file == VGRF)
499          return r.nr + r.offset / REG_SIZE;
500       else
501          return reg_offset(r) / REG_SIZE;
502    }
503 
504    /**
505     * Calculate the finest partitioning of the GRF space compatible with the
506     * register contiguity requirements derived from all instructions part of
507     * the program.
508     */
509    partitioning
shader_reg_partitioning(const fs_visitor * v)510    shader_reg_partitioning(const fs_visitor *v)
511    {
512       partitioning p(BRW_MAX_GRF);
513 
514       foreach_block_and_inst(block, fs_inst, inst, v->cfg) {
515          if (is_grf(inst->dst))
516             p.require_contiguous(reg_of(inst->dst), regs_written(inst));
517 
518          for (int i = 0; i < inst->sources; i++) {
519             if (is_grf(inst->src[i]))
520                p.require_contiguous(reg_of(inst->src[i]),
521                                     regs_read(v->devinfo, inst, i));
522          }
523       }
524 
525       return p;
526    }
527 
528    /**
529     * Return the set of GRF atoms that should be left untouched at their
530     * original location to avoid violating hardware or software assumptions.
531     */
532    bool *
shader_reg_constraints(const fs_visitor * v,const partitioning & p)533    shader_reg_constraints(const fs_visitor *v, const partitioning &p)
534    {
535       bool *constrained = new bool[p.num_atoms()]();
536 
537       /* These are read implicitly by some send-message instructions without
538        * any indication at the IR level.  Assume they are unsafe to move
539        * around.
540        */
541       for (unsigned reg = 0; reg < 2; reg++)
542          constrained[p.atom_of_reg(reg)] = true;
543 
544       /* At Intel Broadwell PRM, vol 07, section "Instruction Set Reference",
545        * subsection "EUISA Instructions", Send Message (page 990):
546        *
547        * "r127 must not be used for return address when there is a src and
548        * dest overlap in send instruction."
549        *
550        * Register allocation ensures that, so don't move 127 around to avoid
551        * breaking that property.
552        */
553       constrained[p.atom_of_reg(127)] = true;
554 
555       foreach_block_and_inst(block, fs_inst, inst, v->cfg) {
556          /* Assume that anything referenced via fixed GRFs is baked into the
557           * hardware's fixed-function logic and may be unsafe to move around.
558           * Also take into account the source GRF restrictions of EOT
559           * send-message instructions.
560           */
561          if (inst->dst.file == FIXED_GRF)
562             constrained[p.atom_of_reg(reg_of(inst->dst))] = true;
563 
564          for (int i = 0; i < inst->sources; i++) {
565             if (inst->src[i].file == FIXED_GRF ||
566                 (is_grf(inst->src[i]) && inst->eot))
567                constrained[p.atom_of_reg(reg_of(inst->src[i]))] = true;
568          }
569       }
570 
571       return constrained;
572    }
573 
574    /**
575     * Return whether the hardware will be able to prevent a bank conflict by
576     * optimizing out the read cycle of a source register.  The formula was
577     * found experimentally.
578     */
579    bool
is_conflict_optimized_out(const intel_device_info * devinfo,const fs_inst * inst)580    is_conflict_optimized_out(const intel_device_info *devinfo,
581                              const fs_inst *inst)
582    {
583       return
584          (is_grf(inst->src[0]) && (reg_of(inst->src[0]) == reg_of(inst->src[1]) ||
585                                    reg_of(inst->src[0]) == reg_of(inst->src[2]))) ||
586           reg_of(inst->src[1]) == reg_of(inst->src[2]);
587    }
588 
589    /**
590     * Return a matrix that allows reasonably efficient computation of the
591     * cycle-count cost of bank conflicts incurred throughout the whole program
592     * for any given atom-to-bank assignment.
593     *
594     * More precisely, if C_r_s_p is the result of this function, the total
595     * cost of all bank conflicts involving any given atom r can be readily
596     * recovered as follows:
597     *
598     *  S(B) = Sum_s_p(d_(p^B_r)_(B_s) * C_r_s_p)
599     *
600     * where d_i_j is the Kronecker delta, and B_r indicates the bank
601     * assignment of r.  \sa delta_conflicts() for a vectorized implementation
602     * of the expression above.
603     *
604     * FINISHME: Teach this about the Gfx10+ bank conflict rules, which are
605     *           somewhat more relaxed than on previous generations.  In the
606     *           meantime optimizing based on Gfx9 weights is likely to be more
607     *           helpful than not optimizing at all.
608     */
609    weight_vector_type *
shader_conflict_weight_matrix(const fs_visitor * v,const partitioning & p)610    shader_conflict_weight_matrix(const fs_visitor *v, const partitioning &p)
611    {
612       weight_vector_type *conflicts = new weight_vector_type[p.num_atoms()];
613       for (unsigned r = 0; r < p.num_atoms(); r++)
614          conflicts[r] = weight_vector_type(2 * p.num_atoms());
615 
616       /* Crude approximation of the number of times the current basic block
617        * will be executed at run-time.
618        */
619       unsigned block_scale = 1;
620 
621       foreach_block_and_inst(block, fs_inst, inst, v->cfg) {
622          if (inst->opcode == BRW_OPCODE_DO) {
623             block_scale *= 10;
624 
625          } else if (inst->opcode == BRW_OPCODE_WHILE) {
626             block_scale /= 10;
627 
628          } else if (inst->is_3src(v->compiler) &&
629                     is_grf(inst->src[1]) && is_grf(inst->src[2])) {
630             const unsigned r = p.atom_of_reg(reg_of(inst->src[1]));
631             const unsigned s = p.atom_of_reg(reg_of(inst->src[2]));
632 
633             /* Estimate of the cycle-count cost of incurring a bank conflict
634              * for this instruction.  This is only true on the average, for a
635              * sequence of back-to-back ternary instructions, since the EU
636              * front-end only seems to be able to issue a new instruction at
637              * an even cycle.  The cost of a bank conflict incurred by an
638              * isolated ternary instruction may be higher.
639              */
640             const unsigned exec_size = inst->dst.component_size(inst->exec_size);
641             const unsigned cycle_scale = block_scale * DIV_ROUND_UP(exec_size,
642                                                                     REG_SIZE);
643 
644             /* Neglect same-atom conflicts (since they're either trivial or
645              * impossible to avoid without splitting the atom), and conflicts
646              * known to be optimized out by the hardware.
647              */
648             if (r != s && !is_conflict_optimized_out(v->devinfo, inst)) {
649                /* Calculate the parity of the sources relative to the start of
650                 * their respective atoms.  If their parity is the same (and
651                 * none of the atoms straddle the 2KB mark), the instruction
652                 * will incur a conflict iff both atoms are assigned the same
653                 * bank b.  If their parity is opposite, the instruction will
654                 * incur a conflict iff they are assigned opposite banks (b and
655                 * b^1).
656                 */
657                const bool p_r = 1 & (reg_of(inst->src[1]) - p.reg_of_atom(r));
658                const bool p_s = 1 & (reg_of(inst->src[2]) - p.reg_of_atom(s));
659                const unsigned p = p_r ^ p_s;
660 
661                /* Calculate the updated cost of a hypothetical conflict
662                 * between atoms r and s.  Note that the weight matrix is
663                 * symmetric with respect to indices r and s by construction.
664                 */
665                const scalar_type w = MIN2(unsigned(max_scalar),
666                                           get(conflicts[r], s, p) + cycle_scale);
667                set(conflicts[r], s, p, w);
668                set(conflicts[s], r, p, w);
669             }
670          }
671       }
672 
673       return conflicts;
674    }
675 
676    /**
677     * Return the set of GRF atoms that could potentially lead to bank
678     * conflicts if laid out unfavorably in the GRF space according to
679     * the specified \p conflicts matrix (\sa
680     * shader_conflict_weight_matrix()).
681     */
682    bool *
have_any_conflicts(const partitioning & p,const weight_vector_type * conflicts)683    have_any_conflicts(const partitioning &p,
684                       const weight_vector_type *conflicts)
685    {
686       bool *any_conflicts = new bool[p.num_atoms()]();
687 
688       for (unsigned r = 0; r < p.num_atoms(); r++) {
689          const unsigned m = DIV_ROUND_UP(conflicts[r].size, vector_width);
690          for (unsigned s = 0; s < m; s++)
691             any_conflicts[r] |= sums(conflicts[r].v[s]);
692       }
693 
694       return any_conflicts;
695    }
696 
697    /**
698     * Calculate the difference between two S(B) cost estimates as defined
699     * above (\sa shader_conflict_weight_matrix()).  This represents the
700     * (partial) cycle-count benefit from moving an atom r from bank p to n.
701     * The respective bank assignments Bp and Bn are encoded as the \p
702     * bank_mask_p and \p bank_mask_n bitmasks for efficient computation,
703     * according to the formula:
704     *
705     *  bank_mask(B)_s_p = -d_(p^B_r)_(B_s)
706     *
707     * Notice the similarity with the delta function in the S(B) expression
708     * above, and how bank_mask(B) can be precomputed for every possible
709     * selection of r since bank_mask(B) only depends on it via B_r that may
710     * only assume one of four different values, so the caller can keep every
711     * possible bank_mask(B) vector in memory without much hassle (\sa
712     * bank_characteristics()).
713     */
714    int
delta_conflicts(const weight_vector_type & bank_mask_p,const weight_vector_type & bank_mask_n,const weight_vector_type & conflicts)715    delta_conflicts(const weight_vector_type &bank_mask_p,
716                    const weight_vector_type &bank_mask_n,
717                    const weight_vector_type &conflicts)
718    {
719       const unsigned m = DIV_ROUND_UP(conflicts.size, vector_width);
720       vector_type s_p = {}, s_n = {};
721 
722       for (unsigned r = 0; r < m; r++) {
723          s_p = adds(s_p, mask(bank_mask_p.v[r], conflicts.v[r]));
724          s_n = adds(s_n, mask(bank_mask_n.v[r], conflicts.v[r]));
725       }
726 
727       return sums(subs(s_p, s_n));
728    }
729 
730    /**
731     * Register atom permutation, represented as the start GRF offset each atom
732     * is mapped into.
733     */
734    struct permutation {
permutation__anon9146e7c90411::permutation735       permutation() : v(NULL), size(0) {}
736 
permutation__anon9146e7c90411::permutation737       permutation(unsigned n) :
738          v(new unsigned[n]()), size(n) {}
739 
permutation__anon9146e7c90411::permutation740       permutation(const permutation &p) :
741          v(new unsigned[p.size]), size(p.size)
742       {
743          memcpy(v, p.v, p.size * sizeof(unsigned));
744       }
745 
~permutation__anon9146e7c90411::permutation746       ~permutation()
747       {
748          delete[] v;
749       }
750 
751       permutation &
operator =__anon9146e7c90411::permutation752       operator=(permutation p)
753       {
754          SWAP(v, p.v);
755          SWAP(size, p.size);
756          return *this;
757       }
758 
759       unsigned *v;
760       unsigned size;
761    };
762 
763    /**
764     * Return an identity permutation of GRF atoms.
765     */
766    permutation
identity_reg_permutation(const partitioning & p)767    identity_reg_permutation(const partitioning &p)
768    {
769       permutation map(p.num_atoms());
770 
771       for (unsigned r = 0; r < map.size; r++)
772          map.v[r] = p.reg_of_atom(r);
773 
774       return map;
775    }
776 
777    /**
778     * Return the bank index of GRF address \p reg, numbered according to the
779     * table:
780     *        Even Odd
781     *    Lo    0   1
782     *    Hi    2   3
783     */
784    unsigned
bank_of(unsigned reg)785    bank_of(unsigned reg)
786    {
787       return (reg & 0x40) >> 5 | (reg & 1);
788    }
789 
790    /**
791     * Return bitmasks suitable for use as bank mask arguments for the
792     * delta_conflicts() computation.  Note that this is just the (negative)
793     * characteristic function of each bank, if you regard it as a set
794     * containing all atoms assigned to it according to the \p map array.
795     */
796    weight_vector_type *
bank_characteristics(const permutation & map)797    bank_characteristics(const permutation &map)
798    {
799       weight_vector_type *banks = new weight_vector_type[4];
800 
801       for (unsigned b = 0; b < 4; b++) {
802          banks[b] = weight_vector_type(2 * map.size);
803 
804          for (unsigned j = 0; j < map.size; j++) {
805             for (unsigned p = 0; p < 2; p++)
806                set(banks[b], j, p,
807                    (b ^ p) == bank_of(map.v[j]) ? -1 : 0);
808          }
809       }
810 
811       return banks;
812    }
813 
814    /**
815     * Return an improved permutation of GRF atoms based on \p map attempting
816     * to reduce the total cycle-count cost of bank conflicts greedily.
817     *
818     * Note that this doesn't attempt to merge multiple atoms into one, which
819     * may allow it to do a better job in some cases -- It simply reorders
820     * existing atoms in the GRF space without affecting their identity.
821     */
822    permutation
optimize_reg_permutation(const partitioning & p,const bool * constrained,const weight_vector_type * conflicts,permutation map)823    optimize_reg_permutation(const partitioning &p,
824                             const bool *constrained,
825                             const weight_vector_type *conflicts,
826                             permutation map)
827    {
828       const bool *any_conflicts = have_any_conflicts(p, conflicts);
829       weight_vector_type *banks = bank_characteristics(map);
830 
831       for (unsigned r = 0; r < map.size; r++) {
832          const unsigned bank_r = bank_of(map.v[r]);
833 
834          if (!constrained[r]) {
835             unsigned best_s = r;
836             int best_benefit = 0;
837 
838             for (unsigned s = 0; s < map.size; s++) {
839                const unsigned bank_s = bank_of(map.v[s]);
840 
841                if (bank_r != bank_s && !constrained[s] &&
842                    p.size_of_atom(r) == p.size_of_atom(s) &&
843                    (any_conflicts[r] || any_conflicts[s])) {
844                   const int benefit =
845                      delta_conflicts(banks[bank_r], banks[bank_s], conflicts[r]) +
846                      delta_conflicts(banks[bank_s], banks[bank_r], conflicts[s]);
847 
848                   if (benefit > best_benefit) {
849                      best_s = s;
850                      best_benefit = benefit;
851                   }
852                }
853             }
854 
855             if (best_s != r) {
856                for (unsigned b = 0; b < 4; b++) {
857                   for (unsigned p = 0; p < 2; p++)
858                      swap(banks[b], r, p, best_s, p);
859                }
860 
861                SWAP(map.v[r], map.v[best_s]);
862             }
863          }
864       }
865 
866       delete[] banks;
867       delete[] any_conflicts;
868       return map;
869    }
870 
871    /**
872     * Apply the GRF atom permutation given by \p map to register \p r and
873     * return the result.
874     */
875    brw_reg
transform(const partitioning & p,const permutation & map,brw_reg r)876    transform(const partitioning &p, const permutation &map, brw_reg r)
877    {
878       if (r.file == VGRF) {
879          const unsigned reg = reg_of(r);
880          const unsigned s = p.atom_of_reg(reg);
881          r.nr = map.v[s] + reg - p.reg_of_atom(s);
882          r.offset = r.offset % REG_SIZE;
883       }
884 
885       return r;
886    }
887 }
888 
889 bool
brw_opt_bank_conflicts(fs_visitor & s)890 brw_opt_bank_conflicts(fs_visitor &s)
891 {
892    assert(s.grf_used || !"Must be called after register allocation");
893 
894    /* TODO: Re-work this pass for Gfx20+. */
895    if (s.devinfo->ver >= 20)
896       return false;
897 
898    const partitioning p = shader_reg_partitioning(&s);
899    const bool *constrained = shader_reg_constraints(&s, p);
900    const weight_vector_type *conflicts =
901       shader_conflict_weight_matrix(&s, p);
902    const permutation map =
903       optimize_reg_permutation(p, constrained, conflicts,
904                                identity_reg_permutation(p));
905 
906    foreach_block_and_inst(block, fs_inst, inst, s.cfg) {
907       inst->dst = transform(p, map, inst->dst);
908 
909       for (int i = 0; i < inst->sources; i++)
910          inst->src[i] = transform(p, map, inst->src[i]);
911    }
912 
913    delete[] conflicts;
914    delete[] constrained;
915    return true;
916 }
917 
918 /**
919  * Return whether the instruction incurs GRF bank conflict cycles.
920  *
921  * Note that this is only accurate after register allocation because otherwise
922  * we don't know which bank each VGRF is going to end up aligned to.
923  */
924 bool
has_bank_conflict(const struct brw_isa_info * isa,const fs_inst * inst)925 has_bank_conflict(const struct brw_isa_info *isa, const fs_inst *inst)
926 {
927    return is_3src(isa, inst->opcode) &&
928           is_grf(inst->src[1]) && is_grf(inst->src[2]) &&
929           bank_of(reg_of(inst->src[1])) == bank_of(reg_of(inst->src[2])) &&
930           !is_conflict_optimized_out(isa->devinfo, inst);
931 }
932