Minor changes
[libfirm] / ir / be / benode_t.h
1 /**
2  * @file   benode_t.h
3  * @date   17.05.2005
4  * @author Sebastian Hack
5  *
6  * Backend node support.
7  *
8  * Copyright (C) 2005 Universitaet Karlsruhe
9  * Released under the GPL
10  */
11
12 #ifndef _BENODE_T_H
13 #define _BENODE_T_H
14
15 #include "firm_config.h"
16 #include "pmap.h"
17
18 #include "irmode.h"
19 #include "irnode.h"
20
21 #include "be_t.h"
22 #include "bearch.h"
23
24 #define BE_SPILL_NO_OFFSET ((unsigned) -1)
25
26 typedef enum {
27         beo_NoBeOp = 0,
28         beo_Spill,
29         beo_Reload,
30         beo_Perm,
31         beo_Copy,
32         beo_Keep,
33         beo_Last
34 } be_opcode_t;
35
36 void be_node_init(void);
37
38 const arch_irn_handler_t be_node_irn_handler;
39
40 ir_node *be_new_Spill(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *node_to_spill, ir_node *ctx);
41 ir_node *be_new_Reload(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_mode *mode, ir_node *spill_node);
42 ir_node *be_new_Copy(const arch_register_class_t *cls, ir_graph *irg, ir_node *block, ir_node *in);
43 ir_node *be_new_Perm(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, int arity, ir_node *in[]);
44 ir_node *be_new_Keep(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, int arity, ir_node *in[]);
45
46 ir_node *be_spill(const arch_env_t *arch_env, ir_node *irn,ir_node *spill_ctx);
47 ir_node *be_reload(const arch_env_t *arch_env, const arch_register_class_t *cls, ir_node *irn, int pos, ir_mode *mode, ir_node *spill);
48
49 int be_is_Spill(const ir_node *irn);
50 int be_is_Reload(const ir_node *irn);
51 int be_is_Copy(const ir_node *irn);
52 int be_is_Perm(const ir_node *irn);
53 int be_is_Keep(const ir_node *irn);
54
55 void     be_set_Spill_offset(ir_node *irn, unsigned offset);
56 unsigned be_get_spill_offset(ir_node *irn);
57
58 ir_node *be_get_Spill_context(const ir_node *irn);
59
60
61 /**
62  * Modify the output register requirements of a Perm.
63  * This function incur register constraints to an output value of a Perm.
64  * This is used when handling register constraints in general,
65  * see beconstrperm.c
66  */
67 void be_set_Perm_out_req(ir_node *irn, int pos, const arch_register_req_t *req);
68
69 /**
70  * Insert a Perm node after a specific node in the schedule.
71  * The Perm permutes over all values live at the given node.
72  * This means that all liveness intervals are cut apart at this
73  * location in the program.
74  */
75 ir_node *insert_Perm_after(const arch_env_t *env,
76                                                    const arch_register_class_t *cls,
77                                                    dom_front_info_t *dom_front,
78                                                    ir_node *pos);
79
80 #endif /* _BENODE_T_H */