wrapped debugging modules with DEBUG_ONLY
[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 "set.h"
12 #include "pset.h"
13 #include "irnode.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 typedef int(*decide_irn_t)(const ir_node*, void*);
23
24
25 spill_env_t *be_new_spill_env(const be_chordal_env_t *chordal, decide_irn_t is_mem_phi, void *data);
26
27 void be_delete_spill_env(spill_env_t *senv);
28
29 void be_add_reload(spill_env_t *senv, ir_node *to_spill, ir_node *before);
30
31 void be_add_reload_on_edge(spill_env_t *senv, ir_node *to_spill, ir_node *bl, int pos);
32
33 void be_insert_spills_reloads(spill_env_t *senv, pset *reload_set);
34
35 /**
36  * Computes the spill offsets for all spill nodes in the irg
37  */
38 void be_compute_spill_offsets(be_chordal_env_t *cenv);
39
40 #endif /*BESPILL_H_*/