| /freebsd-10-stable/contrib/gcc/ |
| D | tree-dfa.c | 139 var_ann_t ann; in create_var_ann() local 143 gcc_assert (!t->common.ann || t->common.ann->common.type == VAR_ANN); in create_var_ann() 145 ann = GGC_CNEW (struct var_ann_d); in create_var_ann() 147 ann->common.type = VAR_ANN; in create_var_ann() 149 t->common.ann = (tree_ann_t) ann; in create_var_ann() 151 return ann; in create_var_ann() 159 function_ann_t ann; in create_function_ann() local 163 gcc_assert (!t->common.ann || t->common.ann->common.type == FUNCTION_ANN); in create_function_ann() 165 ann = ggc_alloc (sizeof (*ann)); in create_function_ann() 166 memset ((void *) ann, 0, sizeof (*ann)); in create_function_ann() [all …]
|
| D | tree-flow-inline.h | 130 gcc_assert (!t->common.ann || t->common.ann->common.type == VAR_ANN); in var_ann() 132 return (var_ann_t) t->common.ann; in var_ann() 140 var_ann_t ann = var_ann (var); in get_var_ann() local 141 return (ann) ? ann : create_var_ann (var); in get_var_ann() 151 gcc_assert (!t->common.ann || t->common.ann->common.type == FUNCTION_ANN); in function_ann() 153 return (function_ann_t) t->common.ann; in function_ann() 161 function_ann_t ann = function_ann (var); in get_function_ann() local 162 gcc_assert (!var->common.ann || var->common.ann->common.type == FUNCTION_ANN); in get_function_ann() 163 return (ann) ? ann : create_function_ann (var); in get_function_ann() 174 gcc_assert (!t->common.ann || t->common.ann->common.type == STMT_ANN); in stmt_ann() [all …]
|
| D | tree-vectorizer.h | 245 static inline void set_stmt_info (stmt_ann_t ann, stmt_vec_info stmt_info); 249 set_stmt_info (stmt_ann_t ann, stmt_vec_info stmt_info) in set_stmt_info() argument 251 if (ann) in set_stmt_info() 252 ann->common.aux = (char *) stmt_info; in set_stmt_info() 258 stmt_ann_t ann = stmt_ann (stmt); in vinfo_for_stmt() local 259 return ann ? (stmt_vec_info) ann->common.aux : NULL; in vinfo_for_stmt()
|
| D | tree-ssa.c | 383 var_ann_t ann; in verify_flow_insensitive_alias_info() local 387 ann = var_ann (var); in verify_flow_insensitive_alias_info() 388 may_aliases = ann->may_aliases; in verify_flow_insensitive_alias_info() 405 var_ann_t ann; in verify_flow_insensitive_alias_info() local 406 ann = var_ann (var); in verify_flow_insensitive_alias_info() 409 && ann->is_aliased in verify_flow_insensitive_alias_info() 435 var_ann_t ann; in verify_flow_sensitive_alias_info() local 461 ann = var_ann (var); in verify_flow_sensitive_alias_info() 462 if (pi->is_dereferenced && !pi->name_mem_tag && !ann->symbol_mem_tag) in verify_flow_sensitive_alias_info() 875 stmt_ann_t ann = get_stmt_ann (stmt); in delete_tree_ssa() local [all …]
|
| D | tree-ssa-operands.c | 702 var_ann_t ann = var_ann (t); in cleanup_v_may_defs() local 703 ann->in_v_may_def_list = 0; in cleanup_v_may_defs() 814 var_ann_t ann = var_ann (vuse); in finalize_ssa_vuses() local 815 ann->in_vuse_list = 0; in finalize_ssa_vuses() 816 if (ann->in_v_may_def_list) in finalize_ssa_vuses() 835 var_ann_t ann = var_ann (t); in finalize_ssa_vuses() local 836 ann->in_vuse_list = 0; in finalize_ssa_vuses() 990 var_ann_t ann = get_var_ann (var); in append_v_may_def() local 993 if (ann->in_v_may_def_list) in append_v_may_def() 995 ann->in_v_may_def_list = 1; in append_v_may_def() [all …]
|
| D | tree-ssa-live.h | 52 #define VAR_ANN_PARTITION(ann) (ann->partition) argument 53 #define VAR_ANN_ROOT_INDEX(ann) (ann->root_index) argument 138 var_ann_t ann; in var_to_partition() local 149 ann = var_ann (var); in var_to_partition() 150 if (ann->out_of_ssa_tag) in var_to_partition() 151 part = VAR_ANN_PARTITION (ann); in var_to_partition()
|
| D | value-prof.c | 119 stmt_ann_t ann = get_stmt_ann (stmt); in tree_value_profile_transformations() local 120 histogram_value th = ann->histograms; in tree_value_profile_transformations() 157 ann->histograms = 0; in tree_value_profile_transformations() 262 stmt_ann_t ann = get_stmt_ann (stmt); in tree_divmod_fixed_value_transform() local 286 if (!ann->histograms) in tree_divmod_fixed_value_transform() 289 for (histogram = ann->histograms; histogram; histogram = histogram->hvalue.next) in tree_divmod_fixed_value_transform() 429 stmt_ann_t ann = get_stmt_ann (stmt); in tree_mod_pow2_value_transform() local 453 if (!ann->histograms) in tree_mod_pow2_value_transform() 456 for (histogram = ann->histograms; histogram; histogram = histogram->hvalue.next) in tree_mod_pow2_value_transform() 611 stmt_ann_t ann = get_stmt_ann (stmt); in tree_mod_subtract_transform() local [all …]
|
| D | tree-vn.c | 88 gcc_assert (!expr->common.ann in vn_compute() 89 || expr->common.ann->common.type != STMT_ANN); in vn_compute() 441 tree_ann_common_t ann = tree_common_ann (expr); in get_value_handle() local 442 return ((ann) ? ann->value_handle : NULL_TREE); in get_value_handle()
|
| D | tree-ssa-alias.c | 902 var_ann_t ann = var_ann (var); in init_alias_info() local 904 ann->is_aliased = 0; in init_alias_info() 905 ann->may_aliases = NULL; in init_alias_info() 906 NUM_REFERENCES_CLEAR (ann); in init_alias_info() 975 var_ann_t ann = var_ann (var); in delete_alias_info() local 976 NUM_REFERENCES_CLEAR (ann); in delete_alias_info() 1414 var_ann_t ann = var_ann (var); in group_aliases_into() local 1417 ann->is_aliased = 0; in group_aliases_into() 1418 ann->may_aliases = NULL; in group_aliases_into() 1588 var_ann_t ann = var_ann (alias); in group_aliases() local [all …]
|
| D | tree-ssa-dse.c | 233 stmt_ann_t ann = stmt_ann (stmt); in dse_optimize_stmt() local 245 if (ann->has_volatile_ops) in dse_optimize_stmt() 297 record_voperand_set (dse_gd->stores, &bd->stores, ann->uid); in dse_optimize_stmt() 359 record_voperand_set (dse_gd->stores, &bd->stores, ann->uid); in dse_optimize_stmt()
|
| D | tree-ssa-live.c | 279 var_ann_t ann; in change_partition_var() local 283 ann = var_ann (var); in change_partition_var() 284 ann->out_of_ssa_tag = 1; in change_partition_var() 285 VAR_ANN_PARTITION (ann) = part; in change_partition_var() 386 var_ann_t ann; in remove_unused_locals() local 389 && (!(ann = var_ann (var)) in remove_unused_locals() 390 || !ann->used)) in remove_unused_locals() 1013 var_ann_t ann; in root_var_init() local 1043 ann = var_ann (t); in root_var_init() 1044 if (ann->root_var_processed) in root_var_init() [all …]
|
| D | tree-ssa-sink.c | 277 stmt_ann_t ann; in statement_sink_location() local 319 ann = stmt_ann (stmt); in statement_sink_location() 325 || ann->has_volatile_ops in statement_sink_location()
|
| D | tree-outof-ssa.c | 888 var_ann_t ann = var_ann (var); in coalesce_ssa_name() local 894 gcc_assert (!ann->out_of_ssa_tag); in coalesce_ssa_name() 941 var_ann_t ann; in assign_vars() local 960 ann = var_ann (var); in assign_vars() 961 ann->out_of_ssa_tag = 1; in assign_vars() 976 ann = var_ann (var); in assign_vars() 988 if (!ann->out_of_ssa_tag) in assign_vars() 1002 ann = var_ann (var); in assign_vars() 1729 stmt_ann_t ann; in find_replaceable_in_bb() local 1738 ann = stmt_ann (stmt); in find_replaceable_in_bb() [all …]
|
| D | tree-vectorizer.c | 1404 stmt_ann_t ann = get_stmt_ann (phi); in new_loop_vec_info() local 1405 set_stmt_info (ann, new_stmt_vec_info (phi, res)); in new_loop_vec_info() 1411 stmt_ann_t ann; in new_loop_vec_info() local 1413 ann = stmt_ann (stmt); in new_loop_vec_info() 1414 set_stmt_info (ann, new_stmt_vec_info (stmt, res)); in new_loop_vec_info() 1465 stmt_ann_t ann = stmt_ann (phi); in destroy_loop_vec_info() local 1469 set_stmt_info (ann, NULL); in destroy_loop_vec_info() 1475 stmt_ann_t ann = stmt_ann (stmt); in destroy_loop_vec_info() local 1495 set_stmt_info (ann, NULL); in destroy_loop_vec_info()
|
| D | tree-vect-patterns.c | 476 stmt_ann_t ann; in vect_pattern_recog_1() local 525 ann = stmt_ann (pattern_expr); in vect_pattern_recog_1() 526 set_stmt_info (ann, new_stmt_vec_info (pattern_expr, loop_vinfo)); in vect_pattern_recog_1()
|
| D | tree-optimize.c | 209 ggc_free (stmt->common.ann); in execute_free_cfg_annotations() 210 stmt->common.ann = NULL; in execute_free_cfg_annotations()
|
| D | tree-ssa-dom.c | 1560 stmt_ann_t ann) in record_equivalences_from_stmt() argument 1588 if (!ann->has_volatile_ops in record_equivalences_from_stmt() 1780 stmt_ann_t ann; in optimize_stmt() local 1791 ann = stmt_ann (stmt); in optimize_stmt() 1806 if (ann->modified) in optimize_stmt() 1815 ann = stmt_ann (stmt); in optimize_stmt() 1838 may_optimize_p = (!ann->has_volatile_ops in optimize_stmt() 1856 ann); in optimize_stmt() 1884 if (ann->modified) in optimize_stmt()
|
| D | tree-tailcall.c | 384 stmt_ann_t ann; in find_tail_calls() local 415 ann = stmt_ann (stmt); in find_tail_calls() 417 || ann->has_volatile_ops) in find_tail_calls() 630 ret_var->common.ann = (tree_ann_t) stmt_ann (ret_stmt); in adjust_return_value()
|
| D | tree-ssa-propagate.c | 585 stmt_ann_t ann; in set_rhs() local 655 ann = stmt_ann (stmt); in set_rhs() 657 (*stmt_p)->common.ann = (tree_ann_t) ann; in set_rhs()
|
| D | tree-ssa-dce.c | 282 stmt_ann_t ann; in mark_stmt_if_obviously_necessary() local 358 ann = stmt_ann (stmt); in mark_stmt_if_obviously_necessary() 363 if (ann->has_volatile_ops || is_ctrl_altering_stmt (stmt)) in mark_stmt_if_obviously_necessary()
|
| D | tree-ssa-copy.c | 368 stmt_ann_t ann; in stmt_may_generate_copy() local 378 ann = stmt_ann (stmt); in stmt_may_generate_copy() 382 if (ann->has_volatile_ops) in stmt_may_generate_copy()
|
| D | profile.c | 651 stmt_ann_t ann = get_stmt_ann (stmt); in compute_value_histograms() local 658 hist->hvalue.next = ann->histograms; in compute_value_histograms() 659 ann->histograms = hist; in compute_value_histograms()
|
| D | tree-ssa-pre.c | 1171 newexpr->common.ann = NULL; in phi_translate() 1280 newexpr->common.ann = NULL; in phi_translate() 1322 newexpr->common.ann = NULL; in phi_translate() 1355 newexpr->common.ann = NULL; in phi_translate() 3459 stmt_ann_t ann; in compute_avail() local 3464 ann = stmt_ann (stmt); in compute_avail() 3466 ann->uid = stmt_uid++; in compute_avail() 3473 && !ann->has_volatile_ops in compute_avail()
|
| D | tree-ssa-ccp.c | 472 stmt_ann_t ann; in likely_value() local 476 ann = stmt_ann (stmt); in likely_value() 480 if (ann->has_volatile_ops) in likely_value()
|
| D | tree-vect-analyze.c | 1616 stmt_ann_t ann; in vect_mark_stmts_to_be_vectorized() local 1685 ann = stmt_ann (stmt); in vect_mark_stmts_to_be_vectorized()
|