Handle TestJmp with Immediate
[libfirm] / ir / be / ia32 / ia32_optimize.h
1 #ifndef _IA32_OPTIMIZE_H_
2 #define _IA32_OPTIMIZE_H_
3
4 /**
5  * Transforms a Firm Const into an ia32 Const and places it
6  * in the Block where it's used.
7  * Additionally all mode_P nodes are changed into mode_Is nodes.
8  * This function is called by a walker.
9  */
10 void ia32_place_consts_set_modes(ir_node *irn, void *env);
11
12 /**
13  * Checks for address mode patterns and performs the
14  * necessary transformations.
15  * This function is called by a walker.
16  */
17 void ia32_optimize_am(ir_node *irn, void *env);
18
19 #endif /* _IA32_OPTIMIZE_H_ */