added new flag to indicate if node already consumed a lea
[libfirm] / ir / be / ia32 / ia32_transform.h
1 #ifndef _IA32_TRANSFORM_H_
2 #define _IA32_TRANSFORM_H_
3
4 #include "firm_config.h"
5 #include "bearch_ia32_t.h"
6
7 /**
8  * Enters all transform functions into the generic pointer
9  */
10 void ia32_register_transformers(void);
11
12 /**
13  * Transforms the given Firm node into one or more appropriate ia32 nodes.
14  */
15 void ia32_transform_node(ir_node *node, void *env);
16
17 /**
18  * Transforms a Sub or fSub into Neg--Add iff OUT_REG == SRC2_REG.
19  * THIS FUNCTIONS MUST BE CALLED AFTER REGISTER ALLOCATION.
20  */
21 void ia32_transform_sub_to_neg_add(ir_node *irn, ia32_code_gen_t *cg);
22
23 /**
24  * Transforms a LEA into an Add if possible
25  * THIS FUNCTIONS MUST BE CALLED AFTER REGISTER ALLOCATION.
26  */
27 void ia32_transform_lea_to_add(ir_node *irn, ia32_code_gen_t *cg);
28
29 #ifndef NDEBUG
30 /**
31  * Prints the old node name on cg obst and returns a pointer to it.
32  */
33 const char *ia32_get_old_node_name(ia32_code_gen_t *cg, ir_node *irn);
34 #endif /* NDEBUG */
35
36 #endif /* _IA32_TRANSFORM_H_ */