belive: Avoid duplicate map lookups when calculating the liveness of a node in a...
[libfirm] / ir / be / beverify.h
1 /*
2  * Copyright (C) 1995-2008 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       Various verify routines that check a scheduled graph for correctness.
23  * @author      Matthias Braun
24  * @date        05.05.2006
25  */
26 #ifndef FIRM_BE_BEVERIFY_H
27 #define FIRM_BE_BEVERIFY_H
28
29 #include <stdbool.h>
30 #include "irgraph.h"
31
32 #include "bearch.h"
33
34 /**
35  * Verifies, that the register pressure for a given register class doesn't
36  * exceed the limit of available registers.
37  *
38  * @param irg        The irg to check.
39  * @param cls        The register class to check.
40  * @return           true if the pressure is valid, false otherwise.
41  */
42 bool be_verify_register_pressure(ir_graph *irg,
43                                  const arch_register_class_t* cls);
44
45 /**
46  * Does some sanity checks on the schedule.
47  *
48  * @param irg   The irg to check
49  * @return      true if the schedule is valid, false otherwise
50  */
51 bool be_verify_schedule(ir_graph *irg);
52
53 /**
54  * Verify spillslots
55  *
56  * @param irg   The irg to check
57  * @return      true if spillslots are valid, false otherwise
58  */
59 bool be_verify_spillslots(ir_graph *irg);
60
61 /**
62  * Verify register allocation: Checks that no 2 live nodes have the same
63  * register assigned, also checks that each scheduled node has a register
64  * assigned.
65  *
66  * @param irg   The graph to check
67  * @return      true if verify succeeded, false otherwise
68  */
69 bool be_verify_register_allocation(ir_graph *irg);
70
71 /**
72  * Check the given liveness information against a freshly computed one.
73  */
74 void be_liveness_check(be_lv_t *lv);
75
76 #endif