6a003a00c685115efc923db522e9256a7f3ca9ac
[oota-llvm.git] / lib / CodeGen / SelectionDAG / LegalizeTypes.h
1 //===-- LegalizeTypes.h - Definition of the DAG Type Legalizer class ------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the DAGTypeLegalizer class.  This is a private interface
11 // shared between the code that implements the SelectionDAG::LegalizeTypes
12 // method.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef SELECTIONDAG_LEGALIZETYPES_H
17 #define SELECTIONDAG_LEGALIZETYPES_H
18
19 #define DEBUG_TYPE "legalize-types"
20 #include "llvm/CodeGen/SelectionDAG.h"
21 #include "llvm/Target/TargetLowering.h"
22 #include "llvm/ADT/DenseMap.h"
23 #include "llvm/Support/Compiler.h"
24 #include "llvm/Support/Debug.h"
25
26 namespace llvm {
27
28 //===----------------------------------------------------------------------===//
29 /// DAGTypeLegalizer - This takes an arbitrary SelectionDAG as input and hacks
30 /// on it until only value types the target machine can handle are left.  This
31 /// involves promoting small sizes to large sizes or splitting up large values
32 /// into small values.
33 ///
34 class VISIBILITY_HIDDEN DAGTypeLegalizer {
35   TargetLowering &TLI;
36   SelectionDAG &DAG;
37 public:
38   // NodeIdFlags - This pass uses the NodeId on the SDNodes to hold information
39   // about the state of the node.  The enum has all the values.
40   enum NodeIdFlags {
41     /// ReadyToProcess - All operands have been processed, so this node is ready
42     /// to be handled.
43     ReadyToProcess = 0,
44
45     /// NewNode - This is a new node that was created in the process of
46     /// legalizing some other node.
47     NewNode = -1,
48
49     /// Processed - This is a node that has already been processed.
50     Processed = -2
51
52     // 1+ - This is a node which has this many unlegalized operands.
53   };
54 private:
55   enum LegalizeAction {
56     Legal,           // The target natively supports this type.
57     PromoteInteger,  // Replace this integer type with a larger one.
58     ExpandInteger,   // Split this integer type into two of half the size.
59     SoftenFloat,     // Convert this float type to a same size integer type.
60     ExpandFloat,     // Split this float type into two of half the size.
61     ScalarizeVector, // Replace this one-element vector with its element type.
62     SplitVector      // This vector type should be split into smaller vectors.
63   };
64
65   /// ValueTypeActions - This is a bitvector that contains two bits for each
66   /// simple value type, where the two bits correspond to the LegalizeAction
67   /// enum from TargetLowering.  This can be queried with "getTypeAction(VT)".
68   TargetLowering::ValueTypeActionImpl ValueTypeActions;
69
70   /// getTypeAction - Return how we should legalize values of this type, either
71   /// it is already legal, or we need to promote it to a larger integer type, or
72   /// we need to expand it into multiple registers of a smaller integer type, or
73   /// we need to split a vector type into smaller vector types, or we need to
74   /// convert it to a different type of the same size.
75   LegalizeAction getTypeAction(MVT VT) const {
76     switch (ValueTypeActions.getTypeAction(VT)) {
77     default:
78       assert(false && "Unknown legalize action!");
79     case TargetLowering::Legal:
80       return Legal;
81     case TargetLowering::Promote:
82       // Promote can mean
83       //   1) For integers, use a larger integer type (e.g. i8 -> i32).
84       //   2) For vectors, use a wider vector type (e.g. v3i32 -> v4i32).
85       if (!VT.isVector())
86         return PromoteInteger;
87       else if (VT.getVectorNumElements() == 1)
88         return ScalarizeVector;
89       else
90         // TODO: move widen code to LegalizeTypes.
91         return SplitVector;
92     case TargetLowering::Expand:
93       // Expand can mean
94       // 1) split scalar in half, 2) convert a float to an integer,
95       // 3) scalarize a single-element vector, 4) split a vector in two.
96       if (!VT.isVector()) {
97         if (VT.isInteger())
98           return ExpandInteger;
99         else if (VT.getSizeInBits() ==
100                  TLI.getTypeToTransformTo(VT).getSizeInBits())
101           return SoftenFloat;
102         else
103           return ExpandFloat;
104       } else if (VT.getVectorNumElements() == 1) {
105         return ScalarizeVector;
106       } else {
107         return SplitVector;
108       }
109     }
110   }
111
112   /// isTypeLegal - Return true if this type is legal on this target.
113   bool isTypeLegal(MVT VT) const {
114     return ValueTypeActions.getTypeAction(VT) == TargetLowering::Legal;
115   }
116
117   /// IgnoreNodeResults - Pretend all of this node's results are legal.
118   bool IgnoreNodeResults(SDNode *N) const {
119     return N->getOpcode() == ISD::TargetConstant;
120   }
121
122   /// PromotedIntegers - For integer nodes that are below legal width, this map
123   /// indicates what promoted value to use.
124   DenseMap<SDValue, SDValue> PromotedIntegers;
125
126   /// ExpandedIntegers - For integer nodes that need to be expanded this map
127   /// indicates which operands are the expanded version of the input.
128   DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedIntegers;
129
130   /// SoftenedFloats - For floating point nodes converted to integers of
131   /// the same size, this map indicates the converted value to use.
132   DenseMap<SDValue, SDValue> SoftenedFloats;
133
134   /// ExpandedFloats - For float nodes that need to be expanded this map
135   /// indicates which operands are the expanded version of the input.
136   DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedFloats;
137
138   /// ScalarizedVectors - For nodes that are <1 x ty>, this map indicates the
139   /// scalar value of type 'ty' to use.
140   DenseMap<SDValue, SDValue> ScalarizedVectors;
141
142   /// SplitVectors - For nodes that need to be split this map indicates
143   /// which operands are the expanded version of the input.
144   DenseMap<SDValue, std::pair<SDValue, SDValue> > SplitVectors;
145
146   /// ReplacedValues - For values that have been replaced with another,
147   /// indicates the replacement value to use.
148   DenseMap<SDValue, SDValue> ReplacedValues;
149
150   /// Worklist - This defines a worklist of nodes to process.  In order to be
151   /// pushed onto this worklist, all operands of a node must have already been
152   /// processed.
153   SmallVector<SDNode*, 128> Worklist;
154
155 public:
156   explicit DAGTypeLegalizer(SelectionDAG &dag)
157     : TLI(dag.getTargetLoweringInfo()), DAG(dag),
158     ValueTypeActions(TLI.getValueTypeActions()) {
159     assert(MVT::LAST_VALUETYPE <= 32 &&
160            "Too many value types for ValueTypeActions to hold!");
161   }
162
163   /// run - This is the main entry point for the type legalizer.  This does a
164   /// top-down traversal of the dag, legalizing types as it goes.  Returns
165   /// "true" if it made any changes.
166   bool run();
167
168   /// ReanalyzeNode - Recompute the NodeId and correct processed operands
169   /// for the specified node, adding it to the worklist if ready.
170   void ReanalyzeNode(SDNode *N) {
171     N->setNodeId(NewNode);
172     AnalyzeNewNode(N);
173     // The node may have changed but we don't care.
174   }
175
176   void NoteDeletion(SDNode *Old, SDNode *New) {
177     ExpungeNode(Old);
178     ExpungeNode(New);
179     for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i)
180       ReplacedValues[SDValue(Old, i)] = SDValue(New, i);
181   }
182
183 private:
184   SDNode *AnalyzeNewNode(SDNode *N);
185   void AnalyzeNewValue(SDValue &Val);
186
187   void ReplaceValueWith(SDValue From, SDValue To);
188
189   void RemapValue(SDValue &N);
190   void ExpungeNode(SDNode *N);
191
192   // Common routines.
193   bool CustomLowerResults(SDNode *N, unsigned ResNo);
194
195   SDValue CreateStackStoreLoad(SDValue Op, MVT DestVT);
196   SDValue MakeLibCall(RTLIB::Libcall LC, MVT RetVT,
197                       const SDValue *Ops, unsigned NumOps, bool isSigned);
198   SDValue LibCallify(RTLIB::Libcall LC, SDNode *N, bool isSigned);
199
200   SDValue BitConvertToInteger(SDValue Op);
201   SDValue JoinIntegers(SDValue Lo, SDValue Hi);
202   void SplitInteger(SDValue Op, SDValue &Lo, SDValue &Hi);
203   void SplitInteger(SDValue Op, MVT LoVT, MVT HiVT,
204                     SDValue &Lo, SDValue &Hi);
205
206   SDValue GetVectorElementPointer(SDValue VecPtr, MVT EltVT, SDValue Index);
207
208   //===--------------------------------------------------------------------===//
209   // Integer Promotion Support: LegalizeIntegerTypes.cpp
210   //===--------------------------------------------------------------------===//
211
212   /// GetPromotedInteger - Given a processed operand Op which was promoted to a
213   /// larger integer type, this returns the promoted value.  The low bits of the
214   /// promoted value corresponding to the original type are exactly equal to Op.
215   /// The extra bits contain rubbish, so the promoted value may need to be zero-
216   /// or sign-extended from the original type before it is usable (the helpers
217   /// SExtPromotedInteger and ZExtPromotedInteger can do this for you).
218   /// For example, if Op is an i16 and was promoted to an i32, then this method
219   /// returns an i32, the lower 16 bits of which coincide with Op, and the upper
220   /// 16 bits of which contain rubbish.
221   SDValue GetPromotedInteger(SDValue Op) {
222     SDValue &PromotedOp = PromotedIntegers[Op];
223     RemapValue(PromotedOp);
224     assert(PromotedOp.getNode() && "Operand wasn't promoted?");
225     return PromotedOp;
226   }
227   void SetPromotedInteger(SDValue Op, SDValue Result);
228
229   /// SExtPromotedInteger - Get a promoted operand and sign extend it to the
230   /// final size.
231   SDValue SExtPromotedInteger(SDValue Op) {
232     MVT OldVT = Op.getValueType();
233     Op = GetPromotedInteger(Op);
234     return DAG.getNode(ISD::SIGN_EXTEND_INREG, Op.getValueType(), Op,
235                        DAG.getValueType(OldVT));
236   }
237
238   /// ZExtPromotedInteger - Get a promoted operand and zero extend it to the
239   /// final size.
240   SDValue ZExtPromotedInteger(SDValue Op) {
241     MVT OldVT = Op.getValueType();
242     Op = GetPromotedInteger(Op);
243     return DAG.getZeroExtendInReg(Op, OldVT);
244   }
245
246   // Integer Result Promotion.
247   void PromoteIntegerResult(SDNode *N, unsigned ResNo);
248   SDValue PromoteIntRes_AssertSext(SDNode *N);
249   SDValue PromoteIntRes_AssertZext(SDNode *N);
250   SDValue PromoteIntRes_Atomic1(AtomicSDNode *N);
251   SDValue PromoteIntRes_Atomic2(AtomicSDNode *N);
252   SDValue PromoteIntRes_BIT_CONVERT(SDNode *N);
253   SDValue PromoteIntRes_BSWAP(SDNode *N);
254   SDValue PromoteIntRes_BUILD_PAIR(SDNode *N);
255   SDValue PromoteIntRes_Constant(SDNode *N);
256   SDValue PromoteIntRes_CONVERT_RNDSAT(SDNode *N);
257   SDValue PromoteIntRes_CTLZ(SDNode *N);
258   SDValue PromoteIntRes_CTPOP(SDNode *N);
259   SDValue PromoteIntRes_CTTZ(SDNode *N);
260   SDValue PromoteIntRes_EXTRACT_VECTOR_ELT(SDNode *N);
261   SDValue PromoteIntRes_FP_TO_XINT(SDNode *N);
262   SDValue PromoteIntRes_INT_EXTEND(SDNode *N);
263   SDValue PromoteIntRes_LOAD(LoadSDNode *N);
264   SDValue PromoteIntRes_SDIV(SDNode *N);
265   SDValue PromoteIntRes_SELECT(SDNode *N);
266   SDValue PromoteIntRes_SELECT_CC(SDNode *N);
267   SDValue PromoteIntRes_SETCC(SDNode *N);
268   SDValue PromoteIntRes_SHL(SDNode *N);
269   SDValue PromoteIntRes_SimpleIntBinOp(SDNode *N);
270   SDValue PromoteIntRes_SIGN_EXTEND_INREG(SDNode *N);
271   SDValue PromoteIntRes_SRA(SDNode *N);
272   SDValue PromoteIntRes_SRL(SDNode *N);
273   SDValue PromoteIntRes_TRUNCATE(SDNode *N);
274   SDValue PromoteIntRes_UDIV(SDNode *N);
275   SDValue PromoteIntRes_UNDEF(SDNode *N);
276   SDValue PromoteIntRes_VAARG(SDNode *N);
277   SDValue PromoteIntRes_XADDO(SDNode *N, unsigned ResNo);
278
279   // Integer Operand Promotion.
280   bool PromoteIntegerOperand(SDNode *N, unsigned OperandNo);
281   SDValue PromoteIntOp_ANY_EXTEND(SDNode *N);
282   SDValue PromoteIntOp_BUILD_PAIR(SDNode *N);
283   SDValue PromoteIntOp_BR_CC(SDNode *N, unsigned OpNo);
284   SDValue PromoteIntOp_BRCOND(SDNode *N, unsigned OpNo);
285   SDValue PromoteIntOp_BUILD_VECTOR(SDNode *N);
286   SDValue PromoteIntOp_CONVERT_RNDSAT(SDNode *N);
287   SDValue PromoteIntOp_INSERT_VECTOR_ELT(SDNode *N, unsigned OpNo);
288   SDValue PromoteIntOp_MEMBARRIER(SDNode *N);
289   SDValue PromoteIntOp_SELECT(SDNode *N, unsigned OpNo);
290   SDValue PromoteIntOp_SELECT_CC(SDNode *N, unsigned OpNo);
291   SDValue PromoteIntOp_SETCC(SDNode *N, unsigned OpNo);
292   SDValue PromoteIntOp_SIGN_EXTEND(SDNode *N);
293   SDValue PromoteIntOp_SINT_TO_FP(SDNode *N);
294   SDValue PromoteIntOp_STORE(StoreSDNode *N, unsigned OpNo);
295   SDValue PromoteIntOp_TRUNCATE(SDNode *N);
296   SDValue PromoteIntOp_UINT_TO_FP(SDNode *N);
297   SDValue PromoteIntOp_ZERO_EXTEND(SDNode *N);
298
299   void PromoteSetCCOperands(SDValue &LHS,SDValue &RHS, ISD::CondCode Code);
300
301   //===--------------------------------------------------------------------===//
302   // Integer Expansion Support: LegalizeIntegerTypes.cpp
303   //===--------------------------------------------------------------------===//
304
305   /// GetExpandedInteger - Given a processed operand Op which was expanded into
306   /// two integers of half the size, this returns the two halves.  The low bits
307   /// of Op are exactly equal to the bits of Lo; the high bits exactly equal Hi.
308   /// For example, if Op is an i64 which was expanded into two i32's, then this
309   /// method returns the two i32's, with Lo being equal to the lower 32 bits of
310   /// Op, and Hi being equal to the upper 32 bits.
311   void GetExpandedInteger(SDValue Op, SDValue &Lo, SDValue &Hi);
312   void SetExpandedInteger(SDValue Op, SDValue Lo, SDValue Hi);
313
314   // Integer Result Expansion.
315   void ExpandIntegerResult(SDNode *N, unsigned ResNo);
316   void ExpandIntRes_ANY_EXTEND        (SDNode *N, SDValue &Lo, SDValue &Hi);
317   void ExpandIntRes_AssertSext        (SDNode *N, SDValue &Lo, SDValue &Hi);
318   void ExpandIntRes_AssertZext        (SDNode *N, SDValue &Lo, SDValue &Hi);
319   void ExpandIntRes_Constant          (SDNode *N, SDValue &Lo, SDValue &Hi);
320   void ExpandIntRes_CTLZ              (SDNode *N, SDValue &Lo, SDValue &Hi);
321   void ExpandIntRes_CTPOP             (SDNode *N, SDValue &Lo, SDValue &Hi);
322   void ExpandIntRes_CTTZ              (SDNode *N, SDValue &Lo, SDValue &Hi);
323   void ExpandIntRes_LOAD          (LoadSDNode *N, SDValue &Lo, SDValue &Hi);
324   void ExpandIntRes_SIGN_EXTEND       (SDNode *N, SDValue &Lo, SDValue &Hi);
325   void ExpandIntRes_SIGN_EXTEND_INREG (SDNode *N, SDValue &Lo, SDValue &Hi);
326   void ExpandIntRes_TRUNCATE          (SDNode *N, SDValue &Lo, SDValue &Hi);
327   void ExpandIntRes_ZERO_EXTEND       (SDNode *N, SDValue &Lo, SDValue &Hi);
328   void ExpandIntRes_FP_TO_SINT        (SDNode *N, SDValue &Lo, SDValue &Hi);
329   void ExpandIntRes_FP_TO_UINT        (SDNode *N, SDValue &Lo, SDValue &Hi);
330
331   void ExpandIntRes_Logical           (SDNode *N, SDValue &Lo, SDValue &Hi);
332   void ExpandIntRes_ADDSUB            (SDNode *N, SDValue &Lo, SDValue &Hi);
333   void ExpandIntRes_ADDSUBC           (SDNode *N, SDValue &Lo, SDValue &Hi);
334   void ExpandIntRes_ADDSUBE           (SDNode *N, SDValue &Lo, SDValue &Hi);
335   void ExpandIntRes_BSWAP             (SDNode *N, SDValue &Lo, SDValue &Hi);
336   void ExpandIntRes_MUL               (SDNode *N, SDValue &Lo, SDValue &Hi);
337   void ExpandIntRes_SDIV              (SDNode *N, SDValue &Lo, SDValue &Hi);
338   void ExpandIntRes_SREM              (SDNode *N, SDValue &Lo, SDValue &Hi);
339   void ExpandIntRes_UDIV              (SDNode *N, SDValue &Lo, SDValue &Hi);
340   void ExpandIntRes_UREM              (SDNode *N, SDValue &Lo, SDValue &Hi);
341   void ExpandIntRes_Shift             (SDNode *N, SDValue &Lo, SDValue &Hi);
342
343   void ExpandShiftByConstant(SDNode *N, unsigned Amt,
344                              SDValue &Lo, SDValue &Hi);
345   bool ExpandShiftWithKnownAmountBit(SDNode *N, SDValue &Lo, SDValue &Hi);
346
347   // Integer Operand Expansion.
348   bool ExpandIntegerOperand(SDNode *N, unsigned OperandNo);
349   SDValue ExpandIntOp_BIT_CONVERT(SDNode *N);
350   SDValue ExpandIntOp_BR_CC(SDNode *N);
351   SDValue ExpandIntOp_BUILD_VECTOR(SDNode *N);
352   SDValue ExpandIntOp_EXTRACT_ELEMENT(SDNode *N);
353   SDValue ExpandIntOp_SELECT_CC(SDNode *N);
354   SDValue ExpandIntOp_SETCC(SDNode *N);
355   SDValue ExpandIntOp_SINT_TO_FP(SDNode *N);
356   SDValue ExpandIntOp_STORE(StoreSDNode *N, unsigned OpNo);
357   SDValue ExpandIntOp_TRUNCATE(SDNode *N);
358   SDValue ExpandIntOp_UINT_TO_FP(SDNode *N);
359
360   void IntegerExpandSetCCOperands(SDValue &NewLHS, SDValue &NewRHS,
361                                   ISD::CondCode &CCCode);
362
363   //===--------------------------------------------------------------------===//
364   // Float to Integer Conversion Support: LegalizeFloatTypes.cpp
365   //===--------------------------------------------------------------------===//
366
367   /// GetSoftenedFloat - Given a processed operand Op which was converted to an
368   /// integer of the same size, this returns the integer.  The integer contains
369   /// exactly the same bits as Op - only the type changed.  For example, if Op
370   /// is an f32 which was softened to an i32, then this method returns an i32,
371   /// the bits of which coincide with those of Op.
372   SDValue GetSoftenedFloat(SDValue Op) {
373     SDValue &SoftenedOp = SoftenedFloats[Op];
374     RemapValue(SoftenedOp);
375     assert(SoftenedOp.getNode() && "Operand wasn't converted to integer?");
376     return SoftenedOp;
377   }
378   void SetSoftenedFloat(SDValue Op, SDValue Result);
379
380   // Result Float to Integer Conversion.
381   void SoftenFloatResult(SDNode *N, unsigned OpNo);
382   SDValue SoftenFloatRes_BIT_CONVERT(SDNode *N);
383   SDValue SoftenFloatRes_BUILD_PAIR(SDNode *N);
384   SDValue SoftenFloatRes_ConstantFP(ConstantFPSDNode *N);
385   SDValue SoftenFloatRes_FABS(SDNode *N);
386   SDValue SoftenFloatRes_FADD(SDNode *N);
387   SDValue SoftenFloatRes_FCEIL(SDNode *N);
388   SDValue SoftenFloatRes_FCOPYSIGN(SDNode *N);
389   SDValue SoftenFloatRes_FCOS(SDNode *N);
390   SDValue SoftenFloatRes_FDIV(SDNode *N);
391   SDValue SoftenFloatRes_FEXP(SDNode *N);
392   SDValue SoftenFloatRes_FEXP2(SDNode *N);
393   SDValue SoftenFloatRes_FFLOOR(SDNode *N);
394   SDValue SoftenFloatRes_FLOG(SDNode *N);
395   SDValue SoftenFloatRes_FLOG2(SDNode *N);
396   SDValue SoftenFloatRes_FLOG10(SDNode *N);
397   SDValue SoftenFloatRes_FMUL(SDNode *N);
398   SDValue SoftenFloatRes_FNEARBYINT(SDNode *N);
399   SDValue SoftenFloatRes_FNEG(SDNode *N);
400   SDValue SoftenFloatRes_FP_EXTEND(SDNode *N);
401   SDValue SoftenFloatRes_FP_ROUND(SDNode *N);
402   SDValue SoftenFloatRes_FPOW(SDNode *N);
403   SDValue SoftenFloatRes_FPOWI(SDNode *N);
404   SDValue SoftenFloatRes_FRINT(SDNode *N);
405   SDValue SoftenFloatRes_FSIN(SDNode *N);
406   SDValue SoftenFloatRes_FSQRT(SDNode *N);
407   SDValue SoftenFloatRes_FSUB(SDNode *N);
408   SDValue SoftenFloatRes_FTRUNC(SDNode *N);
409   SDValue SoftenFloatRes_LOAD(SDNode *N);
410   SDValue SoftenFloatRes_SELECT(SDNode *N);
411   SDValue SoftenFloatRes_SELECT_CC(SDNode *N);
412   SDValue SoftenFloatRes_XINT_TO_FP(SDNode *N);
413
414   // Operand Float to Integer Conversion.
415   bool SoftenFloatOperand(SDNode *N, unsigned OpNo);
416   SDValue SoftenFloatOp_BIT_CONVERT(SDNode *N);
417   SDValue SoftenFloatOp_BR_CC(SDNode *N);
418   SDValue SoftenFloatOp_FP_ROUND(SDNode *N);
419   SDValue SoftenFloatOp_FP_TO_SINT(SDNode *N);
420   SDValue SoftenFloatOp_FP_TO_UINT(SDNode *N);
421   SDValue SoftenFloatOp_SELECT_CC(SDNode *N);
422   SDValue SoftenFloatOp_SETCC(SDNode *N);
423   SDValue SoftenFloatOp_STORE(SDNode *N, unsigned OpNo);
424
425   void SoftenSetCCOperands(SDValue &NewLHS, SDValue &NewRHS,
426                            ISD::CondCode &CCCode);
427
428   //===--------------------------------------------------------------------===//
429   // Float Expansion Support: LegalizeFloatTypes.cpp
430   //===--------------------------------------------------------------------===//
431
432   /// GetExpandedFloat - Given a processed operand Op which was expanded into
433   /// two floating point values of half the size, this returns the two halves.
434   /// The low bits of Op are exactly equal to the bits of Lo; the high bits
435   /// exactly equal Hi.  For example, if Op is a ppcf128 which was expanded
436   /// into two f64's, then this method returns the two f64's, with Lo being
437   /// equal to the lower 64 bits of Op, and Hi to the upper 64 bits.
438   void GetExpandedFloat(SDValue Op, SDValue &Lo, SDValue &Hi);
439   void SetExpandedFloat(SDValue Op, SDValue Lo, SDValue Hi);
440
441   // Float Result Expansion.
442   void ExpandFloatResult(SDNode *N, unsigned ResNo);
443   void ExpandFloatRes_ConstantFP(SDNode *N, SDValue &Lo, SDValue &Hi);
444   void ExpandFloatRes_FABS      (SDNode *N, SDValue &Lo, SDValue &Hi);
445   void ExpandFloatRes_FADD      (SDNode *N, SDValue &Lo, SDValue &Hi);
446   void ExpandFloatRes_FCEIL     (SDNode *N, SDValue &Lo, SDValue &Hi);
447   void ExpandFloatRes_FCOS      (SDNode *N, SDValue &Lo, SDValue &Hi);
448   void ExpandFloatRes_FDIV      (SDNode *N, SDValue &Lo, SDValue &Hi);
449   void ExpandFloatRes_FEXP      (SDNode *N, SDValue &Lo, SDValue &Hi);
450   void ExpandFloatRes_FEXP2     (SDNode *N, SDValue &Lo, SDValue &Hi);
451   void ExpandFloatRes_FFLOOR    (SDNode *N, SDValue &Lo, SDValue &Hi);
452   void ExpandFloatRes_FLOG      (SDNode *N, SDValue &Lo, SDValue &Hi);
453   void ExpandFloatRes_FLOG2     (SDNode *N, SDValue &Lo, SDValue &Hi);
454   void ExpandFloatRes_FLOG10    (SDNode *N, SDValue &Lo, SDValue &Hi);
455   void ExpandFloatRes_FMUL      (SDNode *N, SDValue &Lo, SDValue &Hi);
456   void ExpandFloatRes_FNEARBYINT(SDNode *N, SDValue &Lo, SDValue &Hi);
457   void ExpandFloatRes_FNEG      (SDNode *N, SDValue &Lo, SDValue &Hi);
458   void ExpandFloatRes_FP_EXTEND (SDNode *N, SDValue &Lo, SDValue &Hi);
459   void ExpandFloatRes_FPOW      (SDNode *N, SDValue &Lo, SDValue &Hi);
460   void ExpandFloatRes_FPOWI     (SDNode *N, SDValue &Lo, SDValue &Hi);
461   void ExpandFloatRes_FRINT     (SDNode *N, SDValue &Lo, SDValue &Hi);
462   void ExpandFloatRes_FSIN      (SDNode *N, SDValue &Lo, SDValue &Hi);
463   void ExpandFloatRes_FSQRT     (SDNode *N, SDValue &Lo, SDValue &Hi);
464   void ExpandFloatRes_FSUB      (SDNode *N, SDValue &Lo, SDValue &Hi);
465   void ExpandFloatRes_FTRUNC    (SDNode *N, SDValue &Lo, SDValue &Hi);
466   void ExpandFloatRes_LOAD      (SDNode *N, SDValue &Lo, SDValue &Hi);
467   void ExpandFloatRes_XINT_TO_FP(SDNode *N, SDValue &Lo, SDValue &Hi);
468
469   // Float Operand Expansion.
470   bool ExpandFloatOperand(SDNode *N, unsigned OperandNo);
471   SDValue ExpandFloatOp_BR_CC(SDNode *N);
472   SDValue ExpandFloatOp_FP_ROUND(SDNode *N);
473   SDValue ExpandFloatOp_FP_TO_SINT(SDNode *N);
474   SDValue ExpandFloatOp_FP_TO_UINT(SDNode *N);
475   SDValue ExpandFloatOp_SELECT_CC(SDNode *N);
476   SDValue ExpandFloatOp_SETCC(SDNode *N);
477   SDValue ExpandFloatOp_STORE(SDNode *N, unsigned OpNo);
478
479   void FloatExpandSetCCOperands(SDValue &NewLHS, SDValue &NewRHS,
480                                 ISD::CondCode &CCCode);
481
482   //===--------------------------------------------------------------------===//
483   // Scalarization Support: LegalizeVectorTypes.cpp
484   //===--------------------------------------------------------------------===//
485
486   /// GetScalarizedVector - Given a processed one-element vector Op which was
487   /// scalarized to its element type, this returns the element.  For example,
488   /// if Op is a v1i32, Op = < i32 val >, this method returns val, an i32.
489   SDValue GetScalarizedVector(SDValue Op) {
490     SDValue &ScalarizedOp = ScalarizedVectors[Op];
491     RemapValue(ScalarizedOp);
492     assert(ScalarizedOp.getNode() && "Operand wasn't scalarized?");
493     return ScalarizedOp;
494   }
495   void SetScalarizedVector(SDValue Op, SDValue Result);
496
497   // Vector Result Scalarization: <1 x ty> -> ty.
498   void ScalarizeVectorResult(SDNode *N, unsigned OpNo);
499   SDValue ScalarizeVecRes_BinOp(SDNode *N);
500   SDValue ScalarizeVecRes_UnaryOp(SDNode *N);
501
502   SDValue ScalarizeVecRes_BIT_CONVERT(SDNode *N);
503   SDValue ScalarizeVecRes_CONVERT_RNDSAT(SDNode *N);
504   SDValue ScalarizeVecRes_EXTRACT_SUBVECTOR(SDNode *N);
505   SDValue ScalarizeVecRes_FPOWI(SDNode *N);
506   SDValue ScalarizeVecRes_INSERT_VECTOR_ELT(SDNode *N);
507   SDValue ScalarizeVecRes_LOAD(LoadSDNode *N);
508   SDValue ScalarizeVecRes_SCALAR_TO_VECTOR(SDNode *N);
509   SDValue ScalarizeVecRes_SELECT(SDNode *N);
510   SDValue ScalarizeVecRes_SELECT_CC(SDNode *N);
511   SDValue ScalarizeVecRes_UNDEF(SDNode *N);
512   SDValue ScalarizeVecRes_VECTOR_SHUFFLE(SDNode *N);
513   SDValue ScalarizeVecRes_VSETCC(SDNode *N);
514
515   // Vector Operand Scalarization: <1 x ty> -> ty.
516   bool ScalarizeVectorOperand(SDNode *N, unsigned OpNo);
517   SDValue ScalarizeVecOp_BIT_CONVERT(SDNode *N);
518   SDValue ScalarizeVecOp_CONCAT_VECTORS(SDNode *N);
519   SDValue ScalarizeVecOp_EXTRACT_VECTOR_ELT(SDNode *N);
520   SDValue ScalarizeVecOp_STORE(StoreSDNode *N, unsigned OpNo);
521
522   //===--------------------------------------------------------------------===//
523   // Vector Splitting Support: LegalizeVectorTypes.cpp
524   //===--------------------------------------------------------------------===//
525
526   /// GetSplitVector - Given a processed vector Op which was split into smaller
527   /// vectors, this method returns the smaller vectors.  The first elements of
528   /// Op coincide with the elements of Lo; the remaining elements of Op coincide
529   /// with the elements of Hi: Op is what you would get by concatenating Lo and
530   /// Hi.  For example, if Op is a v8i32 that was split into two v4i32's, then
531   /// this method returns the two v4i32's, with Lo corresponding to the first 4
532   /// elements of Op, and Hi to the last 4 elements.
533   void GetSplitVector(SDValue Op, SDValue &Lo, SDValue &Hi);
534   void SetSplitVector(SDValue Op, SDValue Lo, SDValue Hi);
535
536   // Vector Result Splitting: <128 x ty> -> 2 x <64 x ty>.
537   void SplitVectorResult(SDNode *N, unsigned OpNo);
538   void SplitVecRes_BinOp(SDNode *N, SDValue &Lo, SDValue &Hi);
539   void SplitVecRes_UnaryOp(SDNode *N, SDValue &Lo, SDValue &Hi);
540
541   void SplitVecRes_BIT_CONVERT(SDNode *N, SDValue &Lo, SDValue &Hi);
542   void SplitVecRes_BUILD_PAIR(SDNode *N, SDValue &Lo, SDValue &Hi);
543   void SplitVecRes_BUILD_VECTOR(SDNode *N, SDValue &Lo, SDValue &Hi);
544   void SplitVecRes_CONCAT_VECTORS(SDNode *N, SDValue &Lo, SDValue &Hi);
545   void SplitVecRes_CONVERT_RNDSAT(SDNode *N, SDValue &Lo, SDValue &Hi);
546   void SplitVecRes_EXTRACT_SUBVECTOR(SDNode *N, SDValue &Lo, SDValue &Hi);
547   void SplitVecRes_FPOWI(SDNode *N, SDValue &Lo, SDValue &Hi);
548   void SplitVecRes_INSERT_VECTOR_ELT(SDNode *N, SDValue &Lo, SDValue &Hi);
549   void SplitVecRes_LOAD(LoadSDNode *N, SDValue &Lo, SDValue &Hi);
550   void SplitVecRes_SCALAR_TO_VECTOR(SDNode *N, SDValue &Lo, SDValue &Hi);
551   void SplitVecRes_UNDEF(SDNode *N, SDValue &Lo, SDValue &Hi);
552   void SplitVecRes_VECTOR_SHUFFLE(SDNode *N, SDValue &Lo, SDValue &Hi);
553   void SplitVecRes_VSETCC(SDNode *N, SDValue &Lo, SDValue &Hi);
554
555   // Vector Operand Splitting: <128 x ty> -> 2 x <64 x ty>.
556   bool SplitVectorOperand(SDNode *N, unsigned OpNo);
557   SDValue SplitVecOp_UnaryOp(SDNode *N);
558
559   SDValue SplitVecOp_BIT_CONVERT(SDNode *N);
560   SDValue SplitVecOp_EXTRACT_SUBVECTOR(SDNode *N);
561   SDValue SplitVecOp_EXTRACT_VECTOR_ELT(SDNode *N);
562   SDValue SplitVecOp_STORE(StoreSDNode *N, unsigned OpNo);
563   SDValue SplitVecOp_VECTOR_SHUFFLE(SDNode *N, unsigned OpNo);
564
565   //===--------------------------------------------------------------------===//
566   // Generic Splitting: LegalizeTypesGeneric.cpp
567   //===--------------------------------------------------------------------===//
568
569   // Legalization methods which only use that the illegal type is split into two
570   // not necessarily identical types.  As such they can be used for splitting
571   // vectors and expanding integers and floats.
572
573   void GetSplitOp(SDValue Op, SDValue &Lo, SDValue &Hi) {
574     if (Op.getValueType().isVector())
575       GetSplitVector(Op, Lo, Hi);
576     else if (Op.getValueType().isInteger())
577       GetExpandedInteger(Op, Lo, Hi);
578     else
579       GetExpandedFloat(Op, Lo, Hi);
580   }
581
582   /// GetSplitDestVTs - Compute the VTs needed for the low/hi parts of a type
583   /// which is split (or expanded) into two not necessarily identical pieces.
584   void GetSplitDestVTs(MVT InVT, MVT &LoVT, MVT &HiVT);
585
586   // Generic Result Splitting.
587   void SplitRes_MERGE_VALUES(SDNode *N, SDValue &Lo, SDValue &Hi);
588   void SplitRes_SELECT      (SDNode *N, SDValue &Lo, SDValue &Hi);
589   void SplitRes_SELECT_CC   (SDNode *N, SDValue &Lo, SDValue &Hi);
590   void SplitRes_UNDEF       (SDNode *N, SDValue &Lo, SDValue &Hi);
591
592   //===--------------------------------------------------------------------===//
593   // Generic Expansion: LegalizeTypesGeneric.cpp
594   //===--------------------------------------------------------------------===//
595
596   // Legalization methods which only use that the illegal type is split into two
597   // identical types of half the size, and that the Lo/Hi part is stored first
598   // in memory on little/big-endian machines, followed by the Hi/Lo part.  As
599   // such they can be used for expanding integers and floats.
600
601   void GetExpandedOp(SDValue Op, SDValue &Lo, SDValue &Hi) {
602     if (Op.getValueType().isInteger())
603       GetExpandedInteger(Op, Lo, Hi);
604     else
605       GetExpandedFloat(Op, Lo, Hi);
606   }
607
608   // Generic Result Expansion.
609   void ExpandRes_BIT_CONVERT       (SDNode *N, SDValue &Lo, SDValue &Hi);
610   void ExpandRes_BUILD_PAIR        (SDNode *N, SDValue &Lo, SDValue &Hi);
611   void ExpandRes_EXTRACT_ELEMENT   (SDNode *N, SDValue &Lo, SDValue &Hi);
612   void ExpandRes_EXTRACT_VECTOR_ELT(SDNode *N, SDValue &Lo, SDValue &Hi);
613   void ExpandRes_NormalLoad        (SDNode *N, SDValue &Lo, SDValue &Hi);
614   void ExpandRes_VAARG             (SDNode *N, SDValue &Lo, SDValue &Hi);
615
616   // Generic Operand Expansion.
617   SDValue ExpandOp_BIT_CONVERT    (SDNode *N);
618   SDValue ExpandOp_BUILD_VECTOR   (SDNode *N);
619   SDValue ExpandOp_EXTRACT_ELEMENT(SDNode *N);
620   SDValue ExpandOp_NormalStore    (SDNode *N, unsigned OpNo);
621
622 };
623
624 } // end namespace llvm.
625
626 #endif