]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/predict.h
2017-05-23 Jan Hubicka <hubicka@ucw.cz>
[thirdparty/gcc.git] / gcc / predict.h
CommitLineData
148bd232 1/* Definitions for branch prediction routines in the GNU compiler.
aad93da1 2 Copyright (C) 2001-2017 Free Software Foundation, Inc.
13488c51 3
f12b58b3 4This file is part of GCC.
13488c51 5
f12b58b3 6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8c4c00c1 8Software Foundation; either version 3, or (at your option) any later
f12b58b3 9version.
13488c51 10
f12b58b3 11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
13488c51 15
16You should have received a copy of the GNU General Public License
8c4c00c1 17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
13488c51 19
4ee9c684 20#ifndef GCC_PREDICT_H
21#define GCC_PREDICT_H
22
db9cef39 23#include "profile-count.h"
24
137559b2 25/* Random guesstimation given names.
26 PROB_VERY_UNLIKELY should be small enough so basic block predicted
27 by it gets below HOT_BB_FREQUENCY_FRACTION. */
28#define PROB_VERY_UNLIKELY (REG_BR_PROB_BASE / 2000 - 1)
29#define PROB_EVEN (REG_BR_PROB_BASE / 2)
30#define PROB_VERY_LIKELY (REG_BR_PROB_BASE - PROB_VERY_UNLIKELY)
31#define PROB_ALWAYS (REG_BR_PROB_BASE)
32#define PROB_UNLIKELY (REG_BR_PROB_BASE / 5 - 1)
1ee16627 33#define PROB_LIKELY (REG_BR_PROB_BASE - PROB_UNLIKELY)
137559b2 34
eb429644 35#define DEF_PREDICTOR(ENUM, NAME, HITRATE, FLAGS) ENUM,
13488c51 36enum br_predictor
37{
38#include "predict.def"
39
88b5b080 40 /* Upper bound on non-language-specific builtins. */
13488c51 41 END_PREDICTORS
42};
43#undef DEF_PREDICTOR
44enum prediction
45{
46 NOT_TAKEN,
47 TAKEN
48};
49
e5a23585 50extern gcov_type get_hot_bb_threshold (void);
51extern void set_hot_bb_threshold (gcov_type);
db9cef39 52extern bool maybe_hot_count_p (struct function *, profile_count);
e5a23585 53extern bool maybe_hot_bb_p (struct function *, const_basic_block);
54extern bool maybe_hot_edge_p (edge);
55extern bool probably_never_executed_bb_p (struct function *, const_basic_block);
56extern bool probably_never_executed_edge_p (struct function *, edge);
57extern bool optimize_function_for_size_p (struct function *);
58extern bool optimize_function_for_speed_p (struct function *);
acdfe9e0 59extern optimization_type function_optimization_type (struct function *);
e5a23585 60extern bool optimize_bb_for_size_p (const_basic_block);
61extern bool optimize_bb_for_speed_p (const_basic_block);
acdfe9e0 62extern optimization_type bb_optimization_type (const_basic_block);
e5a23585 63extern bool optimize_edge_for_size_p (edge);
64extern bool optimize_edge_for_speed_p (edge);
65extern bool optimize_insn_for_size_p (void);
66extern bool optimize_insn_for_speed_p (void);
67extern bool optimize_loop_for_size_p (struct loop *);
68extern bool optimize_loop_for_speed_p (struct loop *);
69extern bool optimize_loop_nest_for_speed_p (struct loop *);
70extern bool optimize_loop_nest_for_size_p (struct loop *);
71extern bool predictable_edge_p (edge);
72extern void rtl_profile_for_bb (basic_block);
73extern void rtl_profile_for_edge (edge);
74extern void default_rtl_profile (void);
75extern bool rtl_predicted_by_p (const_basic_block, enum br_predictor);
76extern bool gimple_predicted_by_p (const_basic_block, enum br_predictor);
77extern bool edge_probability_reliable_p (const_edge);
78extern bool br_prob_note_reliable_p (const_rtx);
ee5f6585 79extern void predict_insn_def (rtx_insn *, enum br_predictor, enum prediction);
e5a23585 80extern void rtl_predict_edge (edge, enum br_predictor, int);
81extern void gimple_predict_edge (edge, enum br_predictor, int);
82extern void remove_predictions_associated_with_edge (edge);
83extern void predict_edge_def (edge, enum br_predictor, enum prediction);
84extern void invert_br_probabilities (rtx);
85extern void guess_outgoing_edge_probabilities (basic_block);
852c0bf0 86extern void tree_estimate_probability (bool);
38a65d4e 87extern void handle_missing_profiles (void);
db9cef39 88extern bool counts_to_freqs (void);
e5a23585 89extern bool expensive_function_p (int);
5327650f 90extern void estimate_bb_frequencies (bool);
63aab97d 91extern void compute_function_frequency (void);
e5a23585 92extern tree build_predict_expr (enum br_predictor, enum prediction);
93extern const char *predictor_name (enum br_predictor);
555e8b05 94extern void rebuild_frequencies (void);
5a5f50e9 95extern void report_predictor_hitrates (void);
eedd711b 96extern void force_edge_cold (edge, bool);
13488c51 97
4ee9c684 98#endif /* GCC_PREDICT_H */