Home | History | Annotate | Download | only in glsl

Lines Matching full:linked_sig

109       ir_function_signature *linked_sig =
111 if (linked_sig == NULL) {
112 linked_sig = new(linked) ir_function_signature(callee->return_type);
113 f->add_signature(linked_sig);
116 /* At this point linked_sig and called may be the same. If ir is an
117 * ir_call from linked then linked_sig and callee will be
120 assert(!linked_sig->is_defined);
121 assert(linked_sig->body.is_empty());
146 linked_sig->replace_parameters(&formal_parameters);
152 linked_sig->body.push_tail(copy);
155 linked_sig->is_defined = true;
161 linked_sig->accept(this);
163 ir->set_callee(linked_sig);