remove Quot node (just use Div instead)
[libfirm] / ir / be / arm / arm_nodes_attr.h
1 /*
2  * Copyright (C) 1995-2008 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   declarations for ARM node attributes
23  * @author  Oliver Richter, Tobias Gneist, Michael Beck
24  * @version $Id$
25  */
26 #ifndef FIRM_BE_ARM_ARM_NODES_ATTR_H
27 #define FIRM_BE_ARM_ARM_NODES_ATTR_H
28
29 #include "firm_types.h"
30 #include "irnode_t.h"
31 #include "../bearch.h"
32
33 /**
34  * Possible ARM "shifter operand" addressing mode types.
35  */
36 typedef enum arm_shift_modifier_t {
37         ARM_SHF_INVALID,   /**< invalid shift */
38         ARM_SHF_REG,       /**< simple register operand */
39         ARM_SHF_IMM,       /**< immediate operand with implicit ROR */
40         ARM_SHF_ASR_IMM,   /**< arithmetic shift right */
41         ARM_SHF_ASR_REG,   /**< arithmetic shift right */
42         ARM_SHF_LSL_IMM,   /**< logical shift left */
43         ARM_SHF_LSL_REG,   /**< logical shift left */
44         ARM_SHF_LSR_IMM,   /**< logical shift right */
45         ARM_SHF_LSR_REG,   /**< logical shift right */
46         ARM_SHF_ROR_IMM,   /**< rotate right */
47         ARM_SHF_ROR_REG,   /**< rotate right */
48         ARM_SHF_RRX,       /**< rotate right through carry bits */
49 } arm_shift_modifier_t;
50
51 /** Encoding for fpa immediates */
52 enum fpa_immediates {
53         fpa_null = 0,
54         fpa_one,
55         fpa_two,
56         fpa_three,
57         fpa_four,
58         fpa_five,
59         fpa_ten,
60         fpa_half,
61         fpa_max
62 };
63
64 /** Generic ARM node attributes. */
65 typedef struct arm_attr_t {
66         except_attr                 exc;                /**< the exception attribute. MUST be the first one. */
67         bool                        is_load_store : 1;  /**< if set, this is a load or store instruction */
68 } arm_attr_t;
69
70 /**
71  * This struct holds information needed to produce the arm
72  * "data processing operands" also called "shifter operand" addressing modes
73  */
74 typedef struct arm_shifter_operand_t {
75         arm_attr_t            base;
76         arm_shift_modifier_t  shift_modifier;
77         unsigned char         immediate_value;
78         unsigned char         shift_immediate;
79 } arm_shifter_operand_t;
80
81 typedef struct arm_cmp_attr_t {
82         arm_shifter_operand_t  base;
83         bool                   ins_permuted : 1;
84         bool                   is_unsigned  : 1;
85 } arm_cmp_attr_t;
86
87 /**
88  * this struct holds information needed to produce the arm addressing modes
89  * for "Load and Store Word or Unsigned Byte", "Miscellaneous Loads and Stores"
90  * and "Load and Store Multiple" */
91 typedef struct arm_load_store_attr_t {
92         arm_attr_t  base;
93         ir_mode    *load_store_mode;
94         ir_entity  *entity;
95         long        offset;
96         bool        is_frame_entity : 1;
97         bool        entity_sign     : 1;
98 } arm_load_store_attr_t;
99
100 /** Attributes for a SymConst */
101 typedef struct arm_SymConst_attr_t {
102         arm_attr_t  base;
103         ir_entity  *entity;
104         int         fp_offset;
105 } arm_SymConst_attr_t;
106
107 /** Attributes for a CondJmp */
108 typedef struct arm_CondJmp_attr_t {
109         arm_attr_t  base;
110         pn_Cmp      pnc;
111 } arm_CondJmp_attr_t;
112
113 /** Attributes for a SwitchJmp */
114 typedef struct arm_SwitchJmp_attr_t {
115         arm_attr_t  base;
116         int         n_projs;
117         long        default_proj_num;
118 } arm_SwitchJmp_attr_t;
119
120 /** CopyB attributes */
121 typedef struct arm_CopyB_attr_t {
122         arm_attr_t  base;
123         unsigned    size;
124 } arm_CopyB_attr_t;
125
126 /** Attributes for a fConst */
127 typedef struct arm_fConst_attr_t {
128         arm_attr_t  base;
129         ir_tarval  *tv;              /**< the tarval representing the FP const */
130 } arm_fConst_attr_t;
131
132 /** attributes for floatingpoint arithmetic operations */
133 typedef struct arm_farith_attr_t {
134         arm_attr_t  base;
135         ir_mode    *mode; /* operation mode */
136 } arm_farith_attr_t;
137
138 /**
139  * Return the fpa immediate from the encoding.
140  */
141 const char *arm_get_fpa_imm_name(long imm_value);
142
143 #define CAST_ARM_ATTR(type,ptr)        ((type *)(ptr))
144 #define CONST_CAST_ARM_ATTR(type,ptr)  ((const type *)(ptr))
145
146 #endif