Lines Matching refs:temp

109   tree temp;  /* Value */
496 I.E. given <temp> = &A, return A. */
555 elt_p->temp = ret = create_tmp_from_val (val);
561 ret = elt_p->temp;
957 voidify_wrapper_expr (tree wrapper, tree temp)
1010 temp = NULL_TREE;
1011 else if (temp)
1015 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1016 || TREE_CODE (temp) == MODIFY_EXPR);
1017 TREE_OPERAND (temp, 1) = *p;
1018 *p = temp;
1022 temp = create_tmp_var (type, "retval");
1023 *p = build2 (INIT_EXPR, type, temp, *p);
1026 return temp;
1060 tree temp = voidify_wrapper_expr (bind_expr, NULL);
1115 if (temp)
1117 *expr_p = temp;
3314 ??? What about code that pulls out the temp and uses it
3316 an initializer. If I'm wrong, we'll die because the temp won't
3407 /* Don't use the original target if it's a formal temp; we
3739 tree temp = voidify_wrapper_expr (*expr_p, NULL);
3761 if (temp)
3764 *expr_p = temp;
4114 tree temp = voidify_wrapper_expr (*expr_p, NULL);
4165 if (temp)
4167 *expr_p = temp;
4206 if (test) { A::A(temp); flag = 1; val = f(temp); }
4209 if (flag) A::~A(temp);
4246 tree temp = TARGET_EXPR_SLOT (targ);
4254 gimple_add_tmp_var (temp);
4262 init = build2 (INIT_EXPR, void_type_node, temp, init);
4274 /* If needed, push the cleanup for the temp. */
4278 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
4288 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
4290 *expr_p = temp;
5670 tree temp = NULL_TREE;
5676 append_to_statement_list (ce->value, &temp);
5678 *expr_p = temp;
6005 copy into a temp before adding the post-effects to the tree. */
6036 formal temp. FIXME do we care? */