| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | tree-inline.cc | 167 tree new_tree, var; in remap_ssa_name() local 238 new_tree = make_ssa_name (remap_type (TREE_TYPE (name), id)); in remap_ssa_name() 240 SET_SSA_NAME_VAR_OR_IDENTIFIER (new_tree, SSA_NAME_IDENTIFIER (name)); in remap_ssa_name() 241 insert_decl_map (id, name, new_tree); in remap_ssa_name() 242 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_tree) in remap_ssa_name() 251 struct ptr_info_def *new_pi = get_ptr_info (new_tree); in remap_ssa_name() 257 duplicate_ssa_name_range_info (new_tree, SSA_NAME_RANGE_TYPE (name), in remap_ssa_name() 259 return new_tree; in remap_ssa_name() 264 new_tree = remap_decl (var, id); in remap_ssa_name() 272 if ((VAR_P (new_tree) || TREE_CODE (new_tree) == PARM_DECL) in remap_ssa_name() [all …]
|
| D | attribs.cc | 1741 merge_dllimport_decl_attributes (tree old, tree new_tree) in merge_dllimport_decl_attributes() argument 1752 if (!VAR_OR_FUNCTION_DECL_P (new_tree)) in merge_dllimport_decl_attributes() 1754 else if (DECL_DLLIMPORT_P (new_tree) in merge_dllimport_decl_attributes() 1757 DECL_DLLIMPORT_P (new_tree) = 0; in merge_dllimport_decl_attributes() 1759 "attribute: dllimport ignored", new_tree); in merge_dllimport_decl_attributes() 1761 else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new_tree)) in merge_dllimport_decl_attributes() 1771 "after being referenced with dll linkage", new_tree); in merge_dllimport_decl_attributes() 1778 DECL_DLLIMPORT_P (new_tree) = 1; in merge_dllimport_decl_attributes() 1783 else if (VAR_P (new_tree) || !DECL_DECLARED_INLINE_P (new_tree)) in merge_dllimport_decl_attributes() 1785 "attribute: previous dllimport ignored", new_tree); in merge_dllimport_decl_attributes() [all …]
|
| D | tree-into-ssa.cc | 573 names_replaced_by (tree new_tree) in names_replaced_by() argument 575 return get_ssa_name_ann (new_tree)->repl_set; in names_replaced_by() 582 add_to_repl_tbl (tree new_tree, tree old) in add_to_repl_tbl() argument 584 bitmap *set = &get_ssa_name_ann (new_tree)->repl_set; in add_to_repl_tbl() 597 add_new_name_mapping (tree new_tree, tree old) in add_new_name_mapping() argument 600 gcc_checking_assert (new_tree != old in add_new_name_mapping() 601 && SSA_NAME_VAR (new_tree) == SSA_NAME_VAR (old)); in add_new_name_mapping() 613 add_to_repl_tbl (new_tree, old); in add_new_name_mapping() 618 bitmap_ior_into (names_replaced_by (new_tree), names_replaced_by (old)); in add_new_name_mapping() 622 bitmap_set_bit (new_ssa_names, SSA_NAME_VERSION (new_tree)); in add_new_name_mapping()
|
| D | tree.cc | 4335 tree new_tree; in substitute_in_expr() local 4372 new_tree in substitute_in_expr() 4408 new_tree = fold_build1 (code, TREE_TYPE (exp), op0); in substitute_in_expr() 4418 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1); in substitute_in_expr() 4430 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2); in substitute_in_expr() 4444 new_tree in substitute_in_expr() 4457 new_tree = NULL_TREE; in substitute_in_expr() 4490 if (!new_tree) in substitute_in_expr() 4491 new_tree = copy_node (exp); in substitute_in_expr() 4492 TREE_OPERAND (new_tree, i) = new_op; in substitute_in_expr() [all …]
|
| D | tree-vect-loop.cc | 8940 tree new_tree; in vectorizable_live_operation() local 8957 new_tree = gimple_convert (&stmts, lhs_type, scalar_res); in vectorizable_live_operation() 8964 new_tree = build3 (BIT_FIELD_REF, bftype, in vectorizable_live_operation() 8966 new_tree = force_gimple_operand (fold_convert (lhs_type, new_tree), in vectorizable_live_operation() 8986 gimple *copy = gimple_build_assign (lhs_phi, new_tree); in vectorizable_live_operation() 9004 replace_uses_by (gimple_phi_result (use_stmt), new_tree); in vectorizable_live_operation() 9009 SET_USE (use_p, new_tree); in vectorizable_live_operation() 9020 tree new_tree = build3 (BIT_FIELD_REF, bftype, in vectorizable_live_operation() local 9023 new_tree = force_gimple_operand (fold_convert (lhs_type, new_tree), in vectorizable_live_operation() 9025 if (TREE_CODE (new_tree) == SSA_NAME in vectorizable_live_operation() [all …]
|
| D | tree-ssa-phiopt.cc | 389 edge e, gphi *phi, tree new_tree) in replace_phi_edge_with_variable() argument 412 if (TREE_CODE (new_tree) == SSA_NAME in replace_phi_edge_with_variable() 415 && !SSA_NAME_RANGE_INFO (new_tree) in replace_phi_edge_with_variable() 417 && gimple_bb (SSA_NAME_DEF_STMT (new_tree)) == cond_block in replace_phi_edge_with_variable() 419 duplicate_ssa_name_range_info (new_tree, in replace_phi_edge_with_variable() 424 SET_USE (PHI_ARG_DEF_PTR (phi, e->dest_idx), new_tree); in replace_phi_edge_with_variable()
|
| D | cgraphclones.cc | 649 tree repl = map->new_tree; in create_virtual_clone() 1144 replace_info->new_tree); in materialize_clone()
|
| D | tree-predcom.cc | 1620 replace_ref_with (gimple *stmt, tree new_tree, bool set, bool in_lhs) in replace_ref_with() argument 1636 new_stmt = gimple_build_assign (val, new_tree); in replace_ref_with() 1651 gimple_assign_set_rhs_from_tree (&bsi, new_tree); in replace_ref_with() 1684 val = get_or_create_ssa_default_def (cfun, SSA_NAME_VAR (new_tree)); in replace_ref_with() 1701 new_stmt = gimple_build_assign (new_tree, unshare_expr (val)); in replace_ref_with()
|
| D | vr-values.cc | 3583 tree new_tree = test_for_singularity (cond_code, op0, op1, vr); in simplify_cond_using_ranges_1() local 3584 if (new_tree) in simplify_cond_using_ranges_1() 3595 gimple_cond_set_rhs (stmt, new_tree); in simplify_cond_using_ranges_1() 3611 new_tree = test_for_singularity in simplify_cond_using_ranges_1() 3614 if (new_tree) in simplify_cond_using_ranges_1() 3625 gimple_cond_set_rhs (stmt, new_tree); in simplify_cond_using_ranges_1()
|
| D | tree-ssa-loop-niter.cc | 2041 simplify_replace_tree (tree expr, tree old, tree new_tree, in simplify_replace_tree() argument 2059 new_tree = valueize (expr, context); in simplify_replace_tree() 2060 if (new_tree != expr) in simplify_replace_tree() 2061 return new_tree; in simplify_replace_tree() 2066 return unshare_expr (new_tree); in simplify_replace_tree() 2075 se = simplify_replace_tree (e, old, new_tree, valueize, context, do_fold); in simplify_replace_tree()
|
| D | lto-cgraph.cc | 1900 gcc_assert (EXPR_LOCATION (map->new_tree) == UNKNOWN_LOCATION); in output_node_opt_summary() 1901 stream_write_tree (ob, map->new_tree, true); in output_node_opt_summary() 2018 map->new_tree = stream_read_tree (ib_main, data_in); in input_node_opt_summary()
|
| D | gimplify.cc | 3638 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value); in gimplify_call_expr() local 3639 if (new_tree && new_tree != *expr_p) in gimplify_call_expr() 3644 *expr_p = new_tree; in gimplify_call_expr() 3775 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value); in gimplify_call_expr() local 3777 if (new_tree && new_tree != *expr_p) in gimplify_call_expr() 3782 *expr_p = new_tree; in gimplify_call_expr()
|
| D | cgraph.h | 708 tree new_tree; member
|
| D | ipa-fnsummary.cc | 845 avals.m_known_vals[i] = r->new_tree; in duplicate()
|
| D | ipa-cp.cc | 4476 replace_map->new_tree = value; in get_replacement_map()
|
| /netbsd/src/external/gpl3/gdb/dist/sim/ppc/ |
| D | gen-icache.c | 380 icache_tree *new_tree; in icache_tree_insert() local 398 new_tree = ZALLOC(icache_tree); in icache_tree_insert() 399 new_tree->name = name; in icache_tree_insert() 400 new_tree->next = cur_tree; in icache_tree_insert() 401 *ptr_to_cur_tree = new_tree; in icache_tree_insert() 402 return new_tree; in icache_tree_insert()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/i386/ |
| D | i386-options.cc | 3012 tree new_tree = target_option_current_node; in ix86_reset_previous_fndecl() local 3014 TREE_TARGET_OPTION (new_tree)); in ix86_reset_previous_fndecl() 3015 if (TREE_TARGET_GLOBALS (new_tree)) in ix86_reset_previous_fndecl() 3016 restore_target_globals (TREE_TARGET_GLOBALS (new_tree)); in ix86_reset_previous_fndecl() 3017 else if (new_tree == target_option_default_node) in ix86_reset_previous_fndecl() 3020 TREE_TARGET_GLOBALS (new_tree) = save_target_globals_default_opts (); in ix86_reset_previous_fndecl() 3267 tree new_tree = DECL_FUNCTION_SPECIFIC_TARGET (fndecl); in ix86_set_current_function() local 3268 if (new_tree == NULL_TREE) in ix86_set_current_function() 3269 new_tree = target_option_default_node; in ix86_set_current_function() 3273 != TREE_TARGET_OPTION (new_tree)->x_ix86_unsafe_math_optimizations in ix86_set_current_function() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libobjc/ |
| D | init.c | 310 objc_class_tree *new_tree in __objc_tree_insert_class() local 312 tree->subclasses = list_cons (new_tree, tree->subclasses); in __objc_tree_insert_class()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/s390/ |
| D | s390-protos.h | 60 extern void s390_activate_target_options (tree new_tree);
|
| D | s390.cc | 16286 s390_activate_target_options (tree new_tree) in s390_activate_target_options() argument 16289 TREE_TARGET_OPTION (new_tree)); in s390_activate_target_options() 16290 if (TREE_TARGET_GLOBALS (new_tree)) in s390_activate_target_options() 16291 restore_target_globals (TREE_TARGET_GLOBALS (new_tree)); in s390_activate_target_options() 16292 else if (new_tree == target_option_default_node) in s390_activate_target_options() 16295 TREE_TARGET_GLOBALS (new_tree) = save_target_globals_default_opts (); in s390_activate_target_options() 16331 tree new_tree = DECL_FUNCTION_SPECIFIC_TARGET (fndecl); in s390_set_current_function() local 16332 if (new_tree == NULL_TREE) in s390_set_current_function() 16333 new_tree = target_option_default_node; in s390_set_current_function() 16335 if (old_tree != new_tree) in s390_set_current_function() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| D | rs6000-protos.h | 322 extern void rs6000_activate_target_options (tree new_tree);
|
| D | rs6000.cc | 24486 rs6000_activate_target_options (tree new_tree) in rs6000_activate_target_options() argument 24489 TREE_TARGET_OPTION (new_tree)); in rs6000_activate_target_options() 24490 if (TREE_TARGET_GLOBALS (new_tree)) in rs6000_activate_target_options() 24491 restore_target_globals (TREE_TARGET_GLOBALS (new_tree)); in rs6000_activate_target_options() 24492 else if (new_tree == target_option_default_node) in rs6000_activate_target_options() 24495 TREE_TARGET_GLOBALS (new_tree) = save_target_globals_default_opts (); in rs6000_activate_target_options() 24535 tree new_tree; in rs6000_set_current_function() local 24539 new_tree = target_option_current_node; in rs6000_set_current_function() 24541 new_tree = NULL_TREE; in rs6000_set_current_function() 24545 new_tree = DECL_FUNCTION_SPECIFIC_TARGET (fndecl); in rs6000_set_current_function() [all …]
|
| /netbsd/src/external/bsd/libarchive/dist/libarchive/ |
| D | archive_read_support_format_rar.c | 2781 void *new_tree; in new_node() local 2787 new_tree = realloc(code->tree, new_num_entries * sizeof(*code->tree)); in new_node() 2788 if (new_tree == NULL) in new_node() 2790 code->tree = (struct huffman_tree_node *)new_tree; in new_node()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/arm/ |
| D | arm.cc | 33149 save_restore_target_globals (tree new_tree) in save_restore_target_globals() argument 33152 if (TREE_TARGET_GLOBALS (new_tree)) in save_restore_target_globals() 33153 restore_target_globals (TREE_TARGET_GLOBALS (new_tree)); in save_restore_target_globals() 33154 else if (new_tree == target_option_default_node) in save_restore_target_globals() 33159 TREE_TARGET_GLOBALS (new_tree) = save_target_globals_default_opts (); in save_restore_target_globals() 33187 tree new_tree = DECL_FUNCTION_SPECIFIC_TARGET (fndecl); in arm_set_current_function() local 33191 if (! new_tree && old_tree) in arm_set_current_function() 33192 new_tree = target_option_default_node; in arm_set_current_function() 33197 if (old_tree == new_tree) in arm_set_current_function() 33204 TREE_TARGET_OPTION (new_tree)); in arm_set_current_function() [all …]
|