Lines Matching defs:lowered
34 * lowered code, it can get very verbose and cause a lot of work for CSE, so
45 nir_ssa_def *lowered = NULL;
69 lowered = nir_ssa_for_alu_src(b, instr, 0);
72 lowered = nir_ior(b,
73 nir_iand(b, nir_ushr(b, lowered, c1), c55555555),
74 nir_ishl(b, nir_iand(b, lowered, c55555555), c1));
77 lowered = nir_ior(b,
78 nir_iand(b, nir_ushr(b, lowered, c2), c33333333),
79 nir_ishl(b, nir_iand(b, lowered, c33333333), c2));
82 lowered = nir_ior(b,
83 nir_iand(b, nir_ushr(b, lowered, c4), c0f0f0f0f),
84 nir_ishl(b, nir_iand(b, lowered, c0f0f0f0f), c4));
87 lowered = nir_ior(b,
88 nir_iand(b, nir_ushr(b, lowered, c8), c00ff00ff),
89 nir_ishl(b, nir_iand(b, lowered, c00ff00ff), c8));
91 lowered = nir_ior(b,
92 nir_ushr(b, lowered, c16),
93 nir_ishl(b, lowered, c16));
112 lowered = nir_ssa_for_alu_src(b, instr, 0);
114 lowered = nir_isub(b, lowered,
115 nir_iand(b, nir_ushr(b, lowered, c1), c55555555));
117 lowered = nir_iadd(b,
118 nir_iand(b, lowered, c33333333),
119 nir_iand(b, nir_ushr(b, lowered, c2), c33333333));
121 lowered = nir_ushr(b,
125 lowered,
126 nir_ushr(b, lowered, c4)),
148 lowered = nir_build_alu(b, downscast_op, dest_shifted, NULL, NULL, NULL);
209 lowered = hi;
218 if (lowered) {
219 nir_ssa_def_rewrite_uses(&instr->dest.dest.ssa, lowered);