even more warning fixes
[libfirm] / ir / opt / ifconv.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/opt/ifconv.h
4  * Purpose:     If conversion.
5  * Author:      Sebastian Hack.
6  * Created:
7  * CVS-ID:      $Id$
8  * Copyright:   (c) 1998-2005 Universität Karlsruhe
9  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
10  */
11 #ifndef _FIRM_IF_CONV_H
12 #define _FIRM_IF_CONV_H
13
14 /**
15  * @file ifconv.h
16  *
17  * If conversion.
18  * @author Sebastian Hack
19  * @date 10.2.2005
20  */
21 #include "irnode.h"
22
23 /**
24  * This function is called to evaluate, if a mux can build
25  * of the current architecture.
26  * If it returns non-zero, a mux is created, else the code
27  * is not modified.
28  */
29 typedef int (*arch_allow_mux_func)(ir_node *sel, ir_node *false_res, ir_node *true_res);
30
31 /**
32  * The parameters structure.
33  */
34 typedef struct _opt_if_conv_info_t {
35   int                 max_depth;    /**< The maximum depth up to which expressions
36                                          are examined when it has to be decided if they
37                                          can be placed into another block. */
38   arch_allow_mux_func allow_mux;    /**< Evaluator function, if not set all possible Mux
39                                          nodes will be created. */
40 } opt_if_conv_info_t;
41
42 /**
43  * Perform If conversion on a graph.
44  *
45  * @param irg The graph.
46  * @param params The parameters for the if conversion.
47  *
48  * Cannot handle blocks with Bad control predecessors, so call it after control
49  * flow optimization.
50  */
51 void opt_if_conv(ir_graph *irg, const opt_if_conv_info_t *params);
52
53 #endif /* _FIRM_IF_CONV_H */