]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/predict.h
passes.c (ipa_write_summaries): Call renumber_gimple_stmt_uids on all nodes we write...
[thirdparty/gcc.git] / gcc / predict.h
CommitLineData
21f1c577 1/* Definitions for branch prediction routines in the GNU compiler.
66647d44 2 Copyright (C) 2001, 2003, 2004, 2007, 2008 Free Software Foundation, Inc.
4db384c9 3
1322177d 4This file is part of GCC.
4db384c9 5
1322177d
LB
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
9dcd6f09 8Software Foundation; either version 3, or (at your option) any later
1322177d 9version.
4db384c9 10
1322177d
LB
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.
4db384c9
JH
15
16You should have received a copy of the GNU General Public License
9dcd6f09
NC
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
4db384c9 19
6de9cd9a
DN
20#ifndef GCC_PREDICT_H
21#define GCC_PREDICT_H
22
134d3a2e 23#define DEF_PREDICTOR(ENUM, NAME, HITRATE, FLAGS) ENUM,
4db384c9
JH
24enum br_predictor
25{
26#include "predict.def"
27
2ba84f36 28 /* Upper bound on non-language-specific builtins. */
4db384c9
JH
29 END_PREDICTORS
30};
31#undef DEF_PREDICTOR
32enum prediction
33{
34 NOT_TAKEN,
35 TAKEN
36};
37
79a490a9 38extern void predict_insn_def (rtx, enum br_predictor, enum prediction);
bbd236a1 39extern int counts_to_freqs (void);
45a80bb9 40extern void estimate_bb_frequencies (void);
2e28e797
JH
41extern const char *predictor_name (enum br_predictor);
42extern tree build_predict_expr (enum br_predictor, enum prediction);
8e88f9fd 43extern void tree_estimate_probability (void);
4db384c9 44
6de9cd9a 45#endif /* GCC_PREDICT_H */