added new environment for intrinsic lowering
[libfirm] / ir / be / ia32 / ia32_transform.h
1 /**
2  * Function prototypes for Firm into ia32-Firm transformations.
3  * @author Christian Wuerdig
4  * $Id$
5  */
6
7 #ifndef _IA32_TRANSFORM_H_
8 #define _IA32_TRANSFORM_H_
9
10 #include "firm_config.h"
11 #include "bearch_ia32_t.h"
12
13 /**
14  * Enters all transform functions into the generic pointer
15  */
16 void ia32_register_transformers(void);
17
18 /**
19  * Transforms the given Firm node into one or more appropriate ia32 nodes.
20  */
21 void ia32_transform_node(ir_node *node, void *env);
22
23 /**
24  * Transforms a Sub or fSub into Neg--Add iff OUT_REG == SRC2_REG.
25  * THIS FUNCTIONS MUST BE CALLED AFTER REGISTER ALLOCATION.
26  */
27 void ia32_transform_sub_to_neg_add(ir_node *irn, ia32_code_gen_t *cg);
28
29 /**
30  * Transforms a LEA into an Add if possible
31  * THIS FUNCTIONS MUST BE CALLED AFTER REGISTER ALLOCATION.
32  */
33 void ia32_transform_lea_to_add(ir_node *irn, ia32_code_gen_t *cg);
34
35 /**
36  * The Psi selector can be a tree of compares combined with "And"s and "Or"s.
37  * We create a Set node, respectively a xCmp in case the Psi is a float, for each
38  * compare, which causes the compare result to be stores in a register.  The
39  * "And"s and "Or"s are transformed later, we only adjust their mode.
40  */
41 void ia32_transform_psi_cond_tree(ir_node *node, void *env);
42
43 #ifndef NDEBUG
44 /**
45  * Prints the old node name on cg obst and returns a pointer to it.
46  */
47 const char *ia32_get_old_node_name(ia32_code_gen_t *cg, ir_node *irn);
48 #endif /* NDEBUG */
49
50 #endif /* _IA32_TRANSFORM_H_ */