Home | History | Annotate | Download | only in AArch64

Lines Matching refs:setOperationAction

81   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
82 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
83 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
86 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
87 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
91 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
92 setOperationAction(ISD::BR_CC, MVT::i64, Custom);
93 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
94 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
96 setOperationAction(ISD::SELECT, MVT::i32, Custom);
97 setOperationAction(ISD::SELECT, MVT::i64, Custom);
98 setOperationAction(ISD::SELECT, MVT::f32, Custom);
99 setOperationAction(ISD::SELECT, MVT::f64, Custom);
101 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
102 setOperationAction(ISD::SELECT_CC, MVT::i64, Custom);
103 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
104 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
106 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
108 setOperationAction(ISD::SETCC, MVT::i32, Custom);
109 setOperationAction(ISD::SETCC, MVT::i64, Custom);
110 setOperationAction(ISD::SETCC, MVT::f32, Custom);
111 setOperationAction(ISD::SETCC, MVT::f64, Custom);
113 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
114 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
115 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
117 setOperationAction(ISD::VASTART, MVT::Other, Custom);
118 setOperationAction(ISD::VACOPY, MVT::Other, Custom);
119 setOperationAction(ISD::VAEND, MVT::Other, Expand);
120 setOperationAction(ISD::VAARG, MVT::Other, Expand);
122 setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
124 setOperationAction(ISD::ROTL, MVT::i32, Expand);
125 setOperationAction(ISD::ROTL, MVT::i64, Expand);
127 setOperationAction(ISD::UREM, MVT::i32, Expand);
128 setOperationAction(ISD::UREM, MVT::i64, Expand);
129 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
130 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
132 setOperationAction(ISD::SREM, MVT::i32, Expand);
133 setOperationAction(ISD::SREM, MVT::i64, Expand);
134 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
135 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
137 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
138 setOperationAction(ISD::CTPOP, MVT::i64, Expand);
141 setOperationAction(ISD::FABS, MVT::f32, Legal);
142 setOperationAction(ISD::FABS, MVT::f64, Legal);
144 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
145 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
147 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
148 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
150 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
151 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
153 setOperationAction(ISD::FNEG, MVT::f32, Legal);
154 setOperationAction(ISD::FNEG, MVT::f64, Legal);
156 setOperationAction(ISD::FRINT, MVT::f32, Legal);
157 setOperationAction(ISD::FRINT, MVT::f64, Legal);
159 setOperationAction(ISD::FSQRT, MVT::f32, Legal);
160 setOperationAction(ISD::FSQRT, MVT::f64, Legal);
162 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
163 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
165 setOperationAction(ISD::ConstantFP, MVT::f32, Legal);
166 setOperationAction(ISD::ConstantFP, MVT::f64, Legal);
167 setOperationAction(ISD::ConstantFP, MVT::f128, Legal);
170 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
171 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
173 setOperationAction(ISD::FCOS, MVT::f32, Expand);
174 setOperationAction(ISD::FCOS, MVT::f64, Expand);
176 setOperationAction(ISD::FEXP, MVT::f32, Expand);
177 setOperationAction(ISD::FEXP, MVT::f64, Expand);
179 setOperationAction(ISD::FEXP2, MVT::f32, Expand);
180 setOperationAction(ISD::FEXP2, MVT::f64, Expand);
182 setOperationAction(ISD::FLOG, MVT::f32, Expand);
183 setOperationAction(ISD::FLOG, MVT::f64, Expand);
185 setOperationAction(ISD::FLOG2, MVT::f32, Expand);
186 setOperationAction(ISD::FLOG2, MVT::f64, Expand);
188 setOperationAction(ISD::FLOG10, MVT::f32, Expand);
189 setOperationAction(ISD::FLOG10, MVT::f64, Expand);
191 setOperationAction(ISD::FPOW, MVT::f32, Expand);
192 setOperationAction(ISD::FPOW, MVT::f64, Expand);
194 setOperationAction(ISD::FPOWI, MVT::f32, Expand);
195 setOperationAction(ISD::FPOWI, MVT::f64, Expand);
197 setOperationAction(ISD::FREM, MVT::f32, Expand);
198 setOperationAction(ISD::FREM, MVT::f64, Expand);
200 setOperationAction(ISD::FSIN, MVT::f32, Expand);
201 setOperationAction(ISD::FSIN, MVT::f64, Expand);
203 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
204 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
208 setOperationAction(ISD::FABS, MVT::f128, Expand);
209 setOperationAction(ISD::FADD, MVT::f128, Custom);
210 setOperationAction(ISD::FCOPYSIGN, MVT::f128, Expand);
211 setOperationAction(ISD::FCOS, MVT::f128, Expand);
212 setOperationAction(ISD::FDIV, MVT::f128, Custom);
213 setOperationAction(ISD::FMA, MVT::f128, Expand);
214 setOperationAction(ISD::FMUL, MVT::f128, Custom);
215 setOperationAction(ISD::FNEG, MVT::f128, Expand);
216 setOperationAction(ISD::FP_EXTEND, MVT::f128, Expand);
217 setOperationAction(ISD::FP_ROUND, MVT::f128, Expand);
218 setOperationAction(ISD::FPOW, MVT::f128, Expand);
219 setOperationAction(ISD::FREM, MVT::f128, Expand);
220 setOperationAction(ISD::FRINT, MVT::f128, Expand);
221 setOperationAction(ISD::FSIN, MVT::f128, Expand);
222 setOperationAction(ISD::FSINCOS, MVT::f128, Expand);
223 setOperationAction(ISD::FSQRT, MVT::f128, Expand);
224 setOperationAction(ISD::FSUB, MVT::f128, Custom);
225 setOperationAction(ISD::FTRUNC, MVT::f128, Expand);
226 setOperationAction(ISD::SETCC, MVT::f128, Custom);
227 setOperationAction(ISD::BR_CC, MVT::f128, Custom);
228 setOperationAction(ISD::SELECT, MVT::f128, Expand);
229 setOperationAction(ISD::SELECT_CC, MVT::f128, Custom);
230 setOperationAction(ISD::FP_EXTEND, MVT::f128, Custom);
234 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
235 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
236 setOperationAction(ISD::FP_TO_SINT, MVT::i128, Custom);
237 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
238 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
239 setOperationAction(ISD::FP_TO_UINT, MVT::i128, Custom);
240 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
241 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
242 setOperationAction(ISD::SINT_TO_FP, MVT::i128, Custom);
243 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
244 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
245 setOperationAction(ISD::UINT_TO_FP, MVT::i128, Custom);
246 setOperationAction(ISD::FP_ROUND, MVT::f32, Custom);
247 setOperationAction(ISD::FP_ROUND, MVT::f64, Custom);
263 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
264 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);