]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/predict.h
2014-10-16 Andrew MacLeod <amacleod@redhat.com>
[thirdparty/gcc.git] / gcc / predict.h
CommitLineData
148bd232 1/* Definitions for branch prediction routines in the GNU compiler.
3aea1f79 2 Copyright (C) 2001-2014 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
137559b2 23/* Random guesstimation given names.
24 PROB_VERY_UNLIKELY should be small enough so basic block predicted
25 by it gets below HOT_BB_FREQUENCY_FRACTION. */
26#define PROB_VERY_UNLIKELY (REG_BR_PROB_BASE / 2000 - 1)
27#define PROB_EVEN (REG_BR_PROB_BASE / 2)
28#define PROB_VERY_LIKELY (REG_BR_PROB_BASE - PROB_VERY_UNLIKELY)
29#define PROB_ALWAYS (REG_BR_PROB_BASE)
30#define PROB_UNLIKELY (REG_BR_PROB_BASE / 5 - 1)
1ee16627 31#define PROB_LIKELY (REG_BR_PROB_BASE - PROB_UNLIKELY)
137559b2 32
eb429644 33#define DEF_PREDICTOR(ENUM, NAME, HITRATE, FLAGS) ENUM,
13488c51 34enum br_predictor
35{
36#include "predict.def"
37
88b5b080 38 /* Upper bound on non-language-specific builtins. */
13488c51 39 END_PREDICTORS
40};
41#undef DEF_PREDICTOR
42enum prediction
43{
44 NOT_TAKEN,
45 TAKEN
46};
47
ee5f6585 48extern void predict_insn_def (rtx_insn *, enum br_predictor, enum prediction);
ffedd254 49extern int counts_to_freqs (void);
38a65d4e 50extern void handle_missing_profiles (void);
5327650f 51extern void estimate_bb_frequencies (bool);
4a1849e3 52extern const char *predictor_name (enum br_predictor);
53extern tree build_predict_expr (enum br_predictor, enum prediction);
675d86b2 54extern void tree_estimate_probability (void);
63aab97d 55extern void compute_function_frequency (void);
555e8b05 56extern void rebuild_frequencies (void);
13488c51 57
a3020f2f 58extern bool optimize_function_for_size_p (struct function *);
59extern bool optimize_function_for_speed_p (struct function *);
60
4ee9c684 61#endif /* GCC_PREDICT_H */