Home
last modified time | relevance | path

Searched refs:offset_map (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dipa-predicate.c511 vec<int> offset_map, in remap_after_inlining() argument
552 && offset_map[c->operand_num] > 0) in remap_after_inlining()
554 && offset_map[c->operand_num] < 0)) in remap_after_inlining()
559 HOST_WIDE_INT offset_delta = offset_map[c->operand_num]; in remap_after_inlining()
H A Dipa-fnsummary.c3809 vec<int> offset_map, in remap_edge_summaries() argument
3829 offset_map, possible_truths, in remap_edge_summaries()
3839 operand_map, offset_map, possible_truths, in remap_edge_summaries()
3853 callee_info, operand_map, offset_map, in remap_edge_summaries()
3870 vec<int> offset_map, in remap_hint_predicate() argument
3880 operand_map, offset_map, in remap_hint_predicate()
3903 auto_vec<int, 8> offset_map; in ipa_merge_fn_summary_after_inlining() local
3933 offset_map.safe_grow_cleared (count); in ipa_merge_fn_summary_after_inlining()
3946 offset_map[i] = -1; in ipa_merge_fn_summary_after_inlining()
3956 offset_map[i] = offset; in ipa_merge_fn_summary_after_inlining()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dipa-predicate.cc511 const vec<HOST_WIDE_INT> &offset_map, in remap_after_inlining() argument
551 && offset_map[c->operand_num] > 0) in remap_after_inlining()
553 && offset_map[c->operand_num] < 0)) in remap_after_inlining()
558 HOST_WIDE_INT offset_delta = offset_map[c->operand_num]; in remap_after_inlining()
H A Dipa-fnsummary.cc4033 const vec<HOST_WIDE_INT> &offset_map, in remap_edge_summaries() argument
4053 offset_map, possible_truths, in remap_edge_summaries()
4063 operand_map, offset_map, possible_truths, in remap_edge_summaries()
4077 callee_info, operand_map, offset_map, in remap_edge_summaries()
4094 const vec<HOST_WIDE_INT> &offset_map, in remap_freqcounting_predicate() argument
4105 offset_map, possible_truths, in remap_freqcounting_predicate()
4124 auto_vec<HOST_WIDE_INT, 8> offset_map; in ipa_merge_fn_summary_after_inlining() local
4153 offset_map.safe_grow_cleared (count, true); in ipa_merge_fn_summary_after_inlining()
4166 offset_map[i] = -1; in ipa_merge_fn_summary_after_inlining()
4176 offset_map[i] = offset; in ipa_merge_fn_summary_after_inlining()
[all …]
H A DChangeLog-201212304 * ipa-inline-analysis.c (remap_predicate): Fix the offset_map
14919 (remap_predicate): New parameter offset_map, use it to remap aggregate
14921 (remap_edge_summaries): New parameter offset_map, pass it recursively
14923 (inline_merge_summary): Also create and populate vector offset_map.
H A DChangeLog-20209411 * ipa-fnsummary.c (remap_edge_summaries): Make offset_map HOST_WIDE_INT.