79c82cec3fe791972e2c781e23cee39f0a317596
[libfirm] / ir / be / bespill.h
1 /**
2  * Author:      Daniel Grund, Sebastian Hack
3  * Date:                29.09.2005
4  * Copyright:   (c) Universitaet Karlsruhe
5  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
6  */
7
8 #ifndef BESPILL_H_
9 #define BESPILL_H_
10
11 #include "firm_types.h"
12 #include "set.h"
13 #include "pset.h"
14 #include "debug.h"
15
16 #include "bechordal.h"
17 #include "be_t.h"
18
19 #include "bearch.h"
20
21 typedef struct _spill_env_t spill_env_t;
22
23 /**
24  * Creates a new spill environment.
25  *
26  * @param chordal
27  */
28 spill_env_t *be_new_spill_env(const be_chordal_env_t *chordal);
29
30 /**
31  * Deletes a spill environment.
32  */
33 void be_delete_spill_env(spill_env_t *senv);
34
35 void be_add_reload(spill_env_t *senv, ir_node *to_spill, ir_node *before);
36
37 void be_add_reload_on_edge(spill_env_t *senv, ir_node *to_spill, ir_node *bl, int pos);
38
39 void be_insert_spills_reloads(spill_env_t *senv);
40
41 /**
42  * Marks a phi-node for spilling. So when reloading from this phi-node, not
43  * only its value but the whole phi will be spilled.
44  * This might place be_Copy nodes in predecessor blocks.
45  */
46 void be_spill_phi(spill_env_t *env, ir_node *node);
47
48 /**
49  * Places the necessary copies for the spilled phis in the graph
50  * This has to be done once before be_insert_spill_reloads, after
51  * all phis to spill have been marked with be_spill_phi.
52  */
53 void be_place_copies(spill_env_t *env);
54
55 /**
56  * Computes the spill offsets for all spill nodes in the irg
57  */
58 void be_compute_spill_offsets(be_chordal_env_t *cenv);
59
60 /**
61  * Sets the debug module of a spill environment.
62  */
63 DEBUG_ONLY(void be_set_spill_env_dbg_module(spill_env_t *env, firm_dbg_module_t *dbg));
64
65 #endif /* BESPILL_H_ */