Adjust to new interface
[oota-llvm.git] / lib / CodeGen / SelectionDAG / TargetLowering.cpp
1 //===-- TargetLowering.cpp - Implement the TargetLowering class -----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This implements the TargetLowering class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Target/TargetLowering.h"
15 #include "llvm/Target/TargetMachine.h"
16 #include "llvm/CodeGen/SelectionDAG.h"
17 using namespace llvm;
18
19 TargetLowering::TargetLowering(TargetMachine &tm)
20   : TM(tm), TD(TM.getTargetData()), ValueTypeActions(0) {
21   assert(ISD::BUILTIN_OP_END <= 128 &&
22          "Fixed size array in TargetLowering is not large enough!");
23   // All operations default to being supported.
24   memset(OpActions, 0, sizeof(OpActions));
25
26   IsLittleEndian = TD.isLittleEndian();
27   ShiftAmountTy = SetCCResultTy = PointerTy = getValueType(TD.getIntPtrType());
28   ShiftAmtHandling = Undefined;
29   memset(RegClassForVT, 0,MVT::LAST_VALUETYPE*sizeof(TargetRegisterClass*));
30   maxStoresPerMemSet = maxStoresPerMemCpy = maxStoresPerMemMove = 0;
31   allowUnalignedStores = false;
32 }
33
34 TargetLowering::~TargetLowering() {}
35
36 /// setValueTypeAction - Set the action for a particular value type.  This
37 /// assumes an action has not already been set for this value type.
38 static void SetValueTypeAction(MVT::ValueType VT,
39                                TargetLowering::LegalizeAction Action,
40                                TargetLowering &TLI,
41                                MVT::ValueType *TransformToType,
42                                unsigned &ValueTypeActions) {
43   ValueTypeActions |= Action << (VT*2);
44   if (Action == TargetLowering::Promote) {
45     MVT::ValueType PromoteTo;
46     if (VT == MVT::f32)
47       PromoteTo = MVT::f64;
48     else {
49       unsigned LargerReg = VT+1;
50       while (!TLI.isTypeLegal((MVT::ValueType)LargerReg)) {
51         ++LargerReg;
52         assert(MVT::isInteger((MVT::ValueType)LargerReg) &&
53                "Nothing to promote to??");
54       }
55       PromoteTo = (MVT::ValueType)LargerReg;
56     }
57
58     assert(MVT::isInteger(VT) == MVT::isInteger(PromoteTo) &&
59            MVT::isFloatingPoint(VT) == MVT::isFloatingPoint(PromoteTo) &&
60            "Can only promote from int->int or fp->fp!");
61     assert(VT < PromoteTo && "Must promote to a larger type!");
62     TransformToType[VT] = PromoteTo;
63   } else if (Action == TargetLowering::Expand) {
64     assert(MVT::isInteger(VT) && VT > MVT::i8 &&
65            "Cannot expand this type: target must support SOME integer reg!");
66     // Expand to the next smaller integer type!
67     TransformToType[VT] = (MVT::ValueType)(VT-1);
68   }
69 }
70
71
72 /// computeRegisterProperties - Once all of the register classes are added,
73 /// this allows us to compute derived properties we expose.
74 void TargetLowering::computeRegisterProperties() {
75   assert(MVT::LAST_VALUETYPE <= 16 &&
76          "Too many value types for ValueTypeActions to hold!");
77
78   // Everything defaults to one.
79   for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i)
80     NumElementsForVT[i] = 1;
81
82   // Find the largest integer register class.
83   unsigned LargestIntReg = MVT::i128;
84   for (; RegClassForVT[LargestIntReg] == 0; --LargestIntReg)
85     assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
86
87   // Every integer value type larger than this largest register takes twice as
88   // many registers to represent as the previous ValueType.
89   unsigned ExpandedReg = LargestIntReg; ++LargestIntReg;
90   for (++ExpandedReg; MVT::isInteger((MVT::ValueType)ExpandedReg);++ExpandedReg)
91     NumElementsForVT[ExpandedReg] = 2*NumElementsForVT[ExpandedReg-1];
92
93   // Inspect all of the ValueType's possible, deciding how to process them.
94   for (unsigned IntReg = MVT::i1; IntReg <= MVT::i128; ++IntReg)
95     // If we are expanding this type, expand it!
96     if (getNumElements((MVT::ValueType)IntReg) != 1)
97       SetValueTypeAction((MVT::ValueType)IntReg, Expand, *this, TransformToType,
98                          ValueTypeActions);
99     else if (!isTypeLegal((MVT::ValueType)IntReg))
100       // Otherwise, if we don't have native support, we must promote to a
101       // larger type.
102       SetValueTypeAction((MVT::ValueType)IntReg, Promote, *this,
103                          TransformToType, ValueTypeActions);
104     else
105       TransformToType[(MVT::ValueType)IntReg] = (MVT::ValueType)IntReg;
106
107   // If the target does not have native support for F32, promote it to F64.
108   if (!isTypeLegal(MVT::f32))
109     SetValueTypeAction(MVT::f32, Promote, *this,
110                        TransformToType, ValueTypeActions);
111   else
112     TransformToType[MVT::f32] = MVT::f32;
113
114   assert(isTypeLegal(MVT::f64) && "Target does not support FP?");
115   TransformToType[MVT::f64] = MVT::f64;
116 }
117