Lines Matching defs:linked_sig
124 ir_function_signature *linked_sig =
126 if (linked_sig == NULL) {
127 linked_sig = new(linked) ir_function_signature(callee->return_type);
128 f->add_signature(linked_sig);
131 /* At this point linked_sig and called may be the same. If ir is an
132 * ir_call from linked then linked_sig and callee will be
135 assert(!linked_sig->is_defined);
136 assert(linked_sig->body.is_empty());
160 linked_sig->replace_parameters(&formal_parameters);
162 linked_sig->intrinsic_id = sig->intrinsic_id;
167 linked_sig->body.push_tail(copy);
170 linked_sig->is_defined = true;
178 linked_sig->accept(this);
180 ir->callee = linked_sig;