Home
last modified time | relevance | path

Searched refs:new_tree (Results 1 – 25 of 37) sorted by relevance

12

/dragonfly/contrib/gcc-8.0/gcc/
H A Dtree-inline.c270 if ((VAR_P (new_tree) || TREE_CODE (new_tree) == PARM_DECL) in remap_ssa_name()
276 new_tree = make_ssa_name (new_tree); in remap_ssa_name()
425 new_tree = build_type_attribute_qual_variant (new_tree, in remap_type_1()
437 new_tree = build_type_attribute_qual_variant (new_tree, in remap_type_1()
460 TYPE_MAIN_VARIANT (new_tree) = new_tree; in remap_type_1()
480 if (TYPE_MAIN_VARIANT (new_tree) != new_tree) in remap_type_1()
501 if (TYPE_MAIN_VARIANT (new_tree) != new_tree in remap_type_1()
506 if (TYPE_MAIN_VARIANT (new_tree) != new_tree in remap_type_1()
514 if (TYPE_MAIN_VARIANT (new_tree) != new_tree in remap_type_1()
520 if (TYPE_MAIN_VARIANT (new_tree) != new_tree) in remap_type_1()
[all …]
H A Dattribs.c1536 merge_dllimport_decl_attributes (tree old, tree new_tree) in merge_dllimport_decl_attributes() argument
1547 if (!VAR_OR_FUNCTION_DECL_P (new_tree)) in merge_dllimport_decl_attributes()
1549 else if (DECL_DLLIMPORT_P (new_tree) in merge_dllimport_decl_attributes()
1552 DECL_DLLIMPORT_P (new_tree) = 0; in merge_dllimport_decl_attributes()
1554 "attribute: dllimport ignored", new_tree); in merge_dllimport_decl_attributes()
1556 else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new_tree)) in merge_dllimport_decl_attributes()
1566 "after being referenced with dll linkage", new_tree); in merge_dllimport_decl_attributes()
1573 DECL_DLLIMPORT_P (new_tree) = 1; in merge_dllimport_decl_attributes()
1578 else if (VAR_P (new_tree) || !DECL_DECLARED_INLINE_P (new_tree)) in merge_dllimport_decl_attributes()
1580 "attribute: previous dllimport ignored", new_tree); in merge_dllimport_decl_attributes()
[all …]
H A Dtree-into-ssa.c572 names_replaced_by (tree new_tree) in names_replaced_by() argument
574 return get_ssa_name_ann (new_tree)->repl_set; in names_replaced_by()
581 add_to_repl_tbl (tree new_tree, tree old) in add_to_repl_tbl() argument
583 bitmap *set = &get_ssa_name_ann (new_tree)->repl_set; in add_to_repl_tbl()
596 add_new_name_mapping (tree new_tree, tree old) in add_new_name_mapping() argument
599 gcc_checking_assert (new_tree != old in add_new_name_mapping()
600 && SSA_NAME_VAR (new_tree) == SSA_NAME_VAR (old)); in add_new_name_mapping()
612 add_to_repl_tbl (new_tree, old); in add_new_name_mapping()
617 bitmap_ior_into (names_replaced_by (new_tree), names_replaced_by (old)); in add_new_name_mapping()
621 bitmap_set_bit (new_ssa_names, SSA_NAME_VERSION (new_tree)); in add_new_name_mapping()
H A Dtree.c3951 tree new_tree; in substitute_in_expr() local
3988 new_tree in substitute_in_expr()
4060 new_tree in substitute_in_expr()
4106 if (!new_tree) in substitute_in_expr()
4112 if (new_tree) in substitute_in_expr()
4114 new_tree = fold (new_tree); in substitute_in_expr()
4132 return new_tree; in substitute_in_expr()
4143 tree new_tree; in substitute_placeholder_in_expr() local
4256 new_tree in substitute_placeholder_in_expr()
4283 if (new_tree) in substitute_placeholder_in_expr()
[all …]
H A Dtree-predcom.c1452 replace_ref_with (gimple *stmt, tree new_tree, bool set, bool in_lhs) in replace_ref_with() argument
1468 new_stmt = gimple_build_assign (val, new_tree); in replace_ref_with()
1483 gimple_assign_set_rhs_from_tree (&bsi, new_tree); in replace_ref_with()
1516 val = get_or_create_ssa_default_def (cfun, SSA_NAME_VAR (new_tree)); in replace_ref_with()
1533 new_stmt = gimple_build_assign (new_tree, unshare_expr (val)); in replace_ref_with()
H A Dcgraphclones.c612 new_node->maybe_create_reference (map->new_tree, NULL); in create_virtual_clone()
1124 replace_info->new_tree); in materialize_all_clones()
H A Dvr-values.c3490 tree new_tree = test_for_singularity (cond_code, op0, op1, vr); in simplify_cond_using_ranges_1() local
3491 if (new_tree) in simplify_cond_using_ranges_1()
3502 gimple_cond_set_rhs (stmt, new_tree); in simplify_cond_using_ranges_1()
3518 new_tree = test_for_singularity in simplify_cond_using_ranges_1()
3521 if (new_tree) in simplify_cond_using_ranges_1()
3532 gimple_cond_set_rhs (stmt, new_tree); in simplify_cond_using_ranges_1()
H A Dlto-cgraph.c2017 gcc_assert (EXPR_LOCATION (map->new_tree) == UNKNOWN_LOCATION); in output_node_opt_summary()
2018 stream_write_tree (ob, map->new_tree, true); in output_node_opt_summary()
2115 map->new_tree = stream_read_tree (ib_main, data_in); in input_node_opt_summary()
H A Dtree-vect-loop.c8352 tree new_tree; in vectorizable_live_operation() local
8372 new_tree = gimple_convert (&stmts, lhs_type, scalar_res); in vectorizable_live_operation()
8379 new_tree = build3 (BIT_FIELD_REF, bftype, vec_lhs, bitsize, bitstart); in vectorizable_live_operation()
8380 new_tree = force_gimple_operand (fold_convert (lhs_type, new_tree), in vectorizable_live_operation()
8398 replace_uses_by (gimple_phi_result (use_stmt), new_tree); in vectorizable_live_operation()
8403 SET_USE (use_p, new_tree); in vectorizable_live_operation()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dtree-inline.c180 tree new_tree; in remap_ssa_name() local
237 new_tree = make_ssa_name (new_tree, NULL); in remap_ssa_name()
241 TREE_TYPE (new_tree) = TREE_TYPE (SSA_NAME_VAR (new_tree)); in remap_ssa_name()
282 set_default_def (SSA_NAME_VAR (new_tree), new_tree); in remap_ssa_name()
288 return new_tree; in remap_ssa_name()
376 new_tree = build_type_attribute_qual_variant (new_tree, in remap_type_1()
388 new_tree = build_type_attribute_qual_variant (new_tree, in remap_type_1()
411 TYPE_MAIN_VARIANT (new_tree) = new_tree; in remap_type_1()
681 tree new_tree; in copy_statement_list() local
687 *tp = new_tree; in copy_statement_list()
[all …]
H A Dtree-into-ssa.c616 names_replaced_by (tree new_tree) in names_replaced_by() argument
621 m.name = new_tree; in names_replaced_by()
635 add_to_repl_tbl (tree new_tree, tree old) in add_to_repl_tbl() argument
640 m.name = new_tree; in add_to_repl_tbl()
645 mp->name = new_tree; in add_to_repl_tbl()
662 add_new_name_mapping (tree new_tree, tree old) in add_new_name_mapping() argument
667 gcc_assert (new_tree != old && SSA_NAME_VAR (new_tree) == SSA_NAME_VAR (old)); in add_new_name_mapping()
672 if (!is_gimple_reg (new_tree)) in add_new_name_mapping()
685 sym = SSA_NAME_VAR (new_tree); in add_new_name_mapping()
699 add_to_repl_tbl (new_tree, old); in add_new_name_mapping()
[all …]
H A Dtree.c3089 tree new_tree; in substitute_in_expr() local
3126 new_tree in substitute_in_expr()
3198 new_tree in substitute_in_expr()
3230 if (!new_tree) in substitute_in_expr()
3236 if (new_tree) in substitute_in_expr()
3238 new_tree = fold (new_tree); in substitute_in_expr()
3256 return new_tree; in substitute_in_expr()
3267 tree new_tree; in substitute_placeholder_in_expr() local
3380 new_tree in substitute_placeholder_in_expr()
3407 if (new_tree) in substitute_placeholder_in_expr()
[all …]
H A Dtree-predcom.c1248 replace_ref_with (gimple stmt, tree new_tree, bool set, bool in_lhs) in replace_ref_with() argument
1264 new_stmt = gimple_build_assign (val, new_tree); in replace_ref_with()
1279 gimple_assign_set_rhs_from_tree (&bsi, new_tree); in replace_ref_with()
1313 val = gimple_default_def (cfun, SSA_NAME_VAR (new_tree)); in replace_ref_with()
1316 val = make_ssa_name (SSA_NAME_VAR (new_tree), in replace_ref_with()
1318 set_default_def (SSA_NAME_VAR (new_tree), val); in replace_ref_with()
1337 new_stmt = gimple_build_assign (new_tree, unshare_expr (val)); in replace_ref_with()
H A Dmatrix-reorg.c1743 tree result1, ratio, log, orig_tree, new_tree; in compute_offset() local
1765 new_tree = build_int_cst (TREE_TYPE (result), new_val); in compute_offset()
1767 result1 = fold_build2 (MULT_EXPR, TREE_TYPE (result), ratio, new_tree); in compute_offset()
H A Dtree-ssa-phiopt.c447 edge e, gimple phi, tree new_tree) in replace_phi_edge_with_variable() argument
454 SET_USE (PHI_ARG_DEF_PTR (phi, e->dest_idx), new_tree); in replace_phi_edge_with_variable()
H A Dgimplify.c2412 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value); in gimplify_call_expr() local
2414 if (new_tree && new_tree != *expr_p) in gimplify_call_expr()
2419 *expr_p = new_tree; in gimplify_call_expr()
2540 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value); in gimplify_call_expr() local
2542 if (new_tree && new_tree != *expr_p) in gimplify_call_expr()
2547 *expr_p = new_tree; in gimplify_call_expr()
H A Dlto-cgraph.c1573 stream_write_tree (ob, map->new_tree, true); in output_node_opt_summary()
1672 map->new_tree = stream_read_tree (ib_main, data_in); in input_node_opt_summary()
H A Dcgraph.h129 tree new_tree; member
H A Dtree-ssa-loop-niter.c1398 simplify_replace_tree (tree expr, tree old, tree new_tree) in simplify_replace_tree() argument
1412 return unshare_expr (new_tree); in simplify_replace_tree()
1421 se = simplify_replace_tree (e, old, new_tree); in simplify_replace_tree()
H A Dtree-vrp.c7142 tree new_tree = test_for_singularity (cond_code, op0, op1, vr); in simplify_cond_using_ranges() local
7144 if (new_tree) in simplify_cond_using_ranges()
7155 gimple_cond_set_rhs (stmt, new_tree); in simplify_cond_using_ranges()
7172 new_tree = test_for_singularity (cond_code, op0, op1, vr); in simplify_cond_using_ranges()
7174 if (new_tree) in simplify_cond_using_ranges()
7185 gimple_cond_set_rhs (stmt, new_tree); in simplify_cond_using_ranges()
/dragonfly/contrib/ldns/ldns/
H A Ddnssec_verify.h250 ldns_dnssec_trust_tree *new_tree,
263 ldns_dnssec_trust_tree *new_tree,
277 ldns_dnssec_trust_tree *new_tree,
292 ldns_dnssec_trust_tree *new_tree,
305 ldns_dnssec_trust_tree *new_tree,
318 ldns_dnssec_trust_tree *new_tree,
330 ldns_dnssec_trust_tree *new_tree,
342 ldns_dnssec_trust_tree *new_tree,
/dragonfly/contrib/ldns/
H A Ddnssec_verify.c450 new_tree->rr = NULL; in ldns_dnssec_trust_tree_new()
451 new_tree->rrset = NULL; in ldns_dnssec_trust_tree_new()
452 new_tree->parent_count = 0; in ldns_dnssec_trust_tree_new()
454 return new_tree; in ldns_dnssec_trust_tree_new()
698 if(!new_tree) in ldns_dnssec_derive_trust_tree_time()
715 new_tree->rr = cur_rr; in ldns_dnssec_derive_trust_tree_time()
754 new_tree, in ldns_dnssec_derive_trust_tree_time()
762 new_tree, in ldns_dnssec_derive_trust_tree_time()
782 return new_tree; in ldns_dnssec_derive_trust_tree_time()
1001 new_tree->rr, in ldns_dnssec_derive_trust_tree_no_sig_time()
[all …]
H A Drbtree.c623 ldns_rbtree_t *new_tree; in ldns_rbtree_split() local
628 new_tree = ldns_rbtree_create(tree->cmp); in ldns_rbtree_split()
633 (void)ldns_rbtree_insert(new_tree, move_node); in ldns_rbtree_split()
638 return new_tree; in ldns_rbtree_split()
/dragonfly/contrib/gcc-4.7/libobjc/
H A Dinit.c311 objc_class_tree *new_tree in __objc_tree_insert_class() local
313 tree->subclasses = list_cons (new_tree, tree->subclasses); in __objc_tree_insert_class()
/dragonfly/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar.c2739 void *new_tree; in new_node() local
2745 new_tree = realloc(code->tree, new_num_entries * sizeof(*code->tree)); in new_node()
2746 if (new_tree == NULL) in new_node()
2748 code->tree = (struct huffman_tree_node *)new_tree; in new_node()

12