Lines Matching refs:repl

2177   tree repl;  variable
2185 repl = create_tmp_var_raw (access->type);
2186 DECL_CONTEXT (repl) = current_function_decl;
2191 repl = create_tmp_var (build_qualified_type (TYPE_MAIN_VARIANT (type),
2197 DECL_GIMPLE_REG_P (repl) = 1;
2201 TREE_ADDRESSABLE (repl) = 1;
2203 DECL_SOURCE_LOCATION (repl) = DECL_SOURCE_LOCATION (access->base);
2204 DECL_ARTIFICIAL (repl) = 1;
2205 DECL_IGNORED_P (repl) = DECL_IGNORED_P (access->base);
2215 DECL_NAME (repl) = get_identifier (pretty_name);
2216 DECL_NAMELESS (repl) = 1;
2256 SET_DECL_DEBUG_EXPR (repl, debug_expr);
2257 DECL_HAS_DEBUG_EXPR_P (repl) = 1;
2260 TREE_NO_WARNING (repl) = 1;
2262 TREE_NO_WARNING (repl) = TREE_NO_WARNING (access->base);
2265 TREE_NO_WARNING (repl) = 1;
2282 print_generic_expr (dump_file, repl, TDF_UID);
2288 return repl;
3555 tree expr, repl = get_access_replacement (access); in generate_subtree_copies() local
3568 stmt = gimple_build_assign (repl, expr); in generate_subtree_copies()
3572 TREE_NO_WARNING (repl) = 1; in generate_subtree_copies()
3574 repl = force_gimple_operand_gsi (gsi, repl, true, NULL_TREE, in generate_subtree_copies()
3578 stmt = gimple_build_assign (expr, repl); in generate_subtree_copies()
3771 tree repl = get_access_replacement (access); in sra_modify_expr() local
3795 tree t = build1 (VIEW_CONVERT_EXPR, type, repl); in sra_modify_expr()
3814 stmt = gimple_build_assign (repl, ref); in sra_modify_expr()
3823 repl = force_gimple_operand_gsi (gsi, repl, true, NULL_TREE, in sra_modify_expr()
3825 stmt = gimple_build_assign (ref, repl); in sra_modify_expr()
3831 *expr = repl; in sra_modify_expr()