Lines Matching defs:inst
1322 * \param inst IR tree that is to be processed.
1329 remap_variables(ir_instruction *inst, struct gl_linked_shader *target,
1377 inst->accept(&v);
1411 foreach_in_list_safe(ir_instruction, inst, instructions) {
1412 if (inst->as_function())
1415 ir_variable *var = inst->as_variable();
1419 assert(inst->as_assignment()
1420 || inst->as_call()
1421 || inst->as_if() /* for initializers with the ?: operator */
1425 inst = inst->clone(target, NULL);
1428 _mesa_hash_table_insert(temps, var, inst);
1430 remap_variables(inst, target, temps);
1432 inst->remove();
1435 last->insert_after(inst);
1436 last = inst;