Lines Matching defs:instr
1103 nir_ssa_dest_init(&split->instr, &split->dest,
1105 nir_builder_instr_insert(b, &split->instr);
1120 nir_ssa_dest_init(&vote->instr, &vote->dest, 1, 1, NULL);
1121 nir_builder_instr_insert(b, &vote->instr);
1144 nir_ssa_dest_init(&scan->instr, &scan->dest,
1146 nir_builder_instr_insert(b, &scan->instr);
1279 should_lower_int64_instr(const nir_instr *instr, const void *_options)
1281 switch (instr->type) {
1283 return should_lower_int64_alu_instr(nir_instr_as_alu(instr), _options);
1285 return should_lower_int64_intrinsic(nir_instr_as_intrinsic(instr),
1293 lower_int64_instr(nir_builder *b, nir_instr *instr, void *_options)
1295 switch (instr->type) {
1297 return lower_int64_alu_instr(b, nir_instr_as_alu(instr));
1299 return lower_int64_intrinsic(b, nir_instr_as_intrinsic(instr));