Fix fehler38: meld_psi() did not memorize the next condition when the value operand...
[libfirm] / ir / opt / opt_confirms.h
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   Optimizations regarding Confirm nodes.
23  * @author  Michael Beck
24  * @version $Id$
25  *
26  * Optimizations regarding Confirm nodes.
27  * These optimizations are not means to be run from
28  * frontends, they are called from iropt.
29  */
30 #ifndef FIRM_OPT_CONFIRMS_H
31 #define FIRM_OPT_CONFIRMS_H
32
33 #include "firm_types.h"
34
35 /**
36  * Check, if the value of a node is != 0.
37  *
38  * This is a often needed case, so we handle here Confirm
39  * nodes too.
40  *
41  * @param n        a node representing the value
42  * @param confirm  if n is confirmed to be != 0, returns
43  *                 the the Confirm-node, else NULL
44  */
45 int value_not_zero(ir_node *n, ir_node **confirm);
46
47 /**
48  * Check, if the value of a node cannot represent a NULL pointer.
49  *
50  * - If option sel_based_null_check_elim is enabled, all
51  *   Sel nodes can be skipped.
52  * - A SymConst(entity) is NEVER a NULL pointer
53  * - A Const != NULL is NEVER a NULL pointer
54  * - Confirms are evaluated
55  *
56  * @param n        a node representing the value
57  * @param confirm  if n is confirmed to be != NULL, returns
58  *                 the the Confirm-node, else NULL
59  */
60 int value_not_null(ir_node *n, ir_node **confirm);
61
62 /**
63  * Possible return values of value_classify().
64  */
65 typedef enum _value_classify_sign {
66         value_classified_unknown  = 0,   /**< could not classify */
67         value_classified_positive = 1,   /**< value is positive, i.e. >= 0 */
68         value_classified_negative = -1   /**< value is negative, i.e. <= 0 if
69                                               no signed zero exists or < 0 else */
70 } value_classify_sign;
71
72 /**
73  * Check, if the value of a node can be confirmed >= 0 or <= 0,
74  * If the mode of the value did not honor signed zeros, else
75  * check for >= 0 or < 0.
76  *
77  * @param n  a node representing the value
78  */
79 value_classify_sign classify_value_sign(ir_node *n);
80
81 /**
82  * Return the value of a Cmp if one or both predecessors
83  * are Confirm nodes.
84  *
85  * @param cmp    the compare node that will be evaluated
86  * @param left   the left operand of the Cmp
87  * @param right  the right operand of the Cmp
88  * @param pnc    the compare relation
89  */
90 tarval *computed_value_Cmp_Confirm(ir_node *cmp, ir_node *left, ir_node *right, pn_Cmp pnc);
91
92 #endif /* FIRM_OPT_CONFIRMS_H */