not needed
[libfirm] / ir / be / beverify.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  * Author:    Matthias Braun
22  * Date:      05.05.2006
23  * Copyright: (c) Universitaet Karlsruhe
24  * License:   This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
25  * CVS-Id:    $Id$
26  */
27
28 /**
29  * @file beverify.h
30  *
31  * Various verify routines that check a scheduled graph for correctness
32  *
33  * @author Matthias Braun
34  */
35 #ifndef BEVERIFY_H_
36 #define BEVERIFY_H_
37
38 #include "irgraph.h"
39
40 #include "beirg.h"
41 #include "bearch.h"
42
43 /**
44  * Verifies, that the register pressure for a given register class doesn't exceed the limit
45  * of available registers.
46  *
47  * @param birg       The backend IRG.
48  * @param cls        The register class to check.
49  * @param irg        The irg to check.
50  * @return                       1 if the pressure is valid, 0 otherwise.
51  */
52 int be_verify_register_pressure(const be_irg_t *birg, const arch_register_class_t* cls, ir_graph *irg);
53
54 /**
55  * Does some sanity checks on the schedule.
56  *
57  * @param irg   The irg to check
58  * @return              1 if the schedule is valid, 0 otherwise
59  */
60 int be_verify_schedule(const be_irg_t *birg);
61
62 /**
63  * Verify spillslots
64  *
65  * @param irg   The irg to check
66  * @return      1 if spillslots are valid, 0 otherwise
67  */
68 int be_verify_spillslots(const arch_env_t *arch_env, ir_graph *irg);
69
70 /**
71  * Verify register allocation: Checks that no 2 live nodes have the same
72  * register assigned, also checks that each scheduled node has a register
73  * assigned.
74  *
75  * @param irg  The irg to check
76  * @return     1 if verify succeeded, 0 otherwise
77  */
78 int be_verify_register_allocation(const arch_env_t *arch_env, ir_graph *irg);
79
80 /**
81  * Verify that out edges are valid
82  *
83  * @param irg  The irg to check
84  * @param          1 if verify succeeded, 0 otherwise
85  */
86 int be_verify_out_edges(ir_graph *irg);
87
88 #endif /* BEVERIFY_H_ */