Remove ia32_l_Setcc and remove set creation callback from ir_lower_mode_b().
[libfirm] / ir / lower / lower_mode_b.h
1 /*
2  * Copyright (C) 1995-2011 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       lower mode_b operations to something the backend can handle
23  * @author      Matthias Braun, Christoph Mallon
24  * @version     $Id$
25  *
26  * Most machines can't really manipulate mode_b values (which are usually
27  * modeled as cpu flags). So you often have to convert them into machine words
28  * with the values 0/1 and operate on them instead.
29  *
30  * After this pass the following holds:
31  *   - The only inputs with mode_b are for the Cond node and the Sel input of
32  *     a Mux node.
33  *   - The only nodes producing mode_b are: Proj(Cmp)
34  */
35 #ifndef FIRM_LOWER_MODE_B_H
36 #define FIRM_LOWER_MODE_B_H
37
38 #include "firm_types.h"
39
40 /**
41  * Lowers mode_b operations to integer arithmetic. After the lowering the only
42  * operations with mode_b are the Projs of Cmps; the only nodes with mode_b
43  * inputs are Cond and Psi nodes.
44  *
45  * Example: Psi(a < 0, 1, 0) => a >> 31
46  *
47  * @param irg           the firm graph to lower
48  * @param lowered_mode  mode that is used to transport 0/1 values
49  */
50 void ir_lower_mode_b(ir_graph *irg, ir_mode *lowered_mode);
51
52 #endif