Lines Matching full:actual
67 * formal (\c ir_variable) or actual (\c ir_rvalue)
97 * Verify that 'out' and 'inout' actual parameters are lvalues. Also, verify
99 * ir_constant actual parameters.
116 const ir_rvalue *const actual = (ir_rvalue *) actual_ir_node;
127 actual->ir_type != ir_type_constant) {
134 /* Verify that 'out' and 'inout' actual parameters are lvalues. */
144 * is_lvalue() is insufficient because the actual parameter at the
155 ir_variable *var = actual->variable_referenced();
164 actual->variable_referenced()->name);
166 } else if (!actual->is_lvalue()) {
204 ir_rvalue *actual = (ir_rvalue *) actual_iter.get();
207 assert(actual != NULL);
215 = convert_component(actual, formal->type);
216 actual->replace_with(converted);
220 if (actual->type != formal->type) {
250 = convert_component(deref_tmp_1, actual->type);
252 = new(ctx) ir_assignment(actual, converted_tmp);
254 actual->replace_with(deref_tmp_2);
263 assert (actual->type == formal->type);