adapted syntax for firmjni
[libfirm] / ir / ir / irvrfy.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irvrfy.h
4  * Purpose:     Check irnodes for correctness.
5  * Author:      Christian Schaefer
6  * Modified by: Goetz Lindenmaier. Till Riedel
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 /**
14 * @file irvrfy.h
15 *
16 * ir graph verification.
17 *
18 * @author Christian Schaefer
19 */
20
21 # ifndef _IRVRFY_H_
22 # define _IRVRFY_H_
23
24 # include "irnode.h"
25 # include "irgraph.h"
26
27 typedef enum _node_verification_t {
28   NODE_VERIFICATION_OFF        = 0,     /**< do not verify nodes at all */
29   NODE_VERIFICATION_ON         = 1,     /**< do node verification and assert on error in debug version */
30   NODE_VERIFICATION_REPORT     = 2,     /**< do node verification, but report to stderr only */
31   NODE_VERIFICATION_ERROR_ONLY = 3      /**< do node verification, but NEVER do assert nor report */
32 } node_verification_t;
33
34 /** Select verification of nodes.
35  *
36  *  Per default the  verification is in mode NODE_VERIFICATION_ASSERT.
37  *  Turn the verification off during development to check partial implementations.
38  */
39 void do_node_verification(node_verification_t mode);
40
41 /**
42  * Tests the modes of checknode and its predecessors.
43  * Checknode must be in current_ir_graph.
44  *
45  * \return
46  *      NON-zero on success
47  */
48 int irn_vrfy(struct ir_node *checknode);
49
50 /**
51  * Tests the modes of checknode and its predecessors.
52  * Checknode must be in given ir_graph.
53  *
54  * \return
55  *      NON-zero on success
56  */
57 int irn_vrfy_irg(struct ir_node *checknode, ir_graph *irg);
58
59 /**
60  * Same as irn_vrfy_irg, but temporary sets verification mode to
61  * NODE_VERIFICATION_ERROR_ONLY.
62  * \return
63  *      NON-zero on success
64  */
65 int irn_vrfy_irg_dump(struct ir_node *checknode, ir_graph *irg, const char **bad_string);
66
67 /**
68  * Calls irn_vrfy for each node in irg.
69  * Graph must be in state "pinned".
70  *
71  * \return
72  *      NON-zero on success.
73  */
74 int irg_vrfy(ir_graph *irg);
75
76 # endif /* _IRVRFY_H_ */