blob: 1128f74fa65abcd8fa8db0519092b9561ed7f2cc [file] [log] [blame]
Chris Lattner3a4d1b22005-01-07 07:44:53 +00001//===-- TargetLowering.cpp - Implement the TargetLowering class -----------===//
Misha Brukman10468d82005-04-21 22:55:34 +00002//
Chris Lattner3a4d1b22005-01-07 07:44:53 +00003// 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.
Misha Brukman10468d82005-04-21 22:55:34 +00007//
Chris Lattner3a4d1b22005-01-07 07:44:53 +00008//===----------------------------------------------------------------------===//
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"
17using namespace llvm;
18
19TargetLowering::TargetLowering(TargetMachine &tm)
Chris Lattner1bc93ba2005-01-16 01:10:58 +000020 : TM(tm), TD(TM.getTargetData()), ValueTypeActions(0) {
Chris Lattner3a4d1b22005-01-07 07:44:53 +000021 assert(ISD::BUILTIN_OP_END <= 128 &&
22 "Fixed size array in TargetLowering is not large enough!");
Chris Lattner6f809792005-01-16 07:28:11 +000023 // All operations default to being supported.
24 memset(OpActions, 0, sizeof(OpActions));
Chris Lattner3a4d1b22005-01-07 07:44:53 +000025
26 IsLittleEndian = TD.isLittleEndian();
Chris Lattner5f180e42005-01-16 23:59:48 +000027 ShiftAmountTy = SetCCResultTy = PointerTy = getValueType(TD.getIntPtrType());
Chris Lattnera05cd832005-01-19 03:36:14 +000028 ShiftAmtHandling = Undefined;
Chris Lattner3a4d1b22005-01-07 07:44:53 +000029 memset(RegClassForVT, 0,MVT::LAST_VALUETYPE*sizeof(TargetRegisterClass*));
Reid Spencer85d93a32005-08-27 19:09:02 +000030 maxStoresPerMemSet = maxStoresPerMemCpy = maxStoresPerMemMove = 8;
31 allowUnalignedMemoryAccesses = false;
Chris Lattner59dc1e02005-09-27 22:13:56 +000032 UseUnderscoreSetJmpLongJmp = false;
Nate Begeman4dd38312005-10-21 00:02:42 +000033 IntDivIsCheap = false;
34 Pow2DivIsCheap = false;
Evan Cheng030e0022006-01-25 18:52:42 +000035 SchedPreferenceInfo = SchedulingForLatency;
Chris Lattner3a4d1b22005-01-07 07:44:53 +000036}
37
Chris Lattner6f809792005-01-16 07:28:11 +000038TargetLowering::~TargetLowering() {}
39
Chris Lattner1bc93ba2005-01-16 01:10:58 +000040/// setValueTypeAction - Set the action for a particular value type. This
41/// assumes an action has not already been set for this value type.
Chris Lattner6f809792005-01-16 07:28:11 +000042static void SetValueTypeAction(MVT::ValueType VT,
43 TargetLowering::LegalizeAction Action,
Chris Lattner1bc93ba2005-01-16 01:10:58 +000044 TargetLowering &TLI,
45 MVT::ValueType *TransformToType,
Nate Begeman89b049a2005-11-29 05:45:29 +000046 unsigned long long &ValueTypeActions) {
47 ValueTypeActions |= (unsigned long long)Action << (VT*2);
Chris Lattner6f809792005-01-16 07:28:11 +000048 if (Action == TargetLowering::Promote) {
Chris Lattner1bc93ba2005-01-16 01:10:58 +000049 MVT::ValueType PromoteTo;
50 if (VT == MVT::f32)
51 PromoteTo = MVT::f64;
52 else {
53 unsigned LargerReg = VT+1;
Chris Lattnerade52542005-08-24 16:34:12 +000054 while (!TLI.isTypeLegal((MVT::ValueType)LargerReg)) {
Chris Lattner1bc93ba2005-01-16 01:10:58 +000055 ++LargerReg;
56 assert(MVT::isInteger((MVT::ValueType)LargerReg) &&
57 "Nothing to promote to??");
58 }
59 PromoteTo = (MVT::ValueType)LargerReg;
60 }
61
62 assert(MVT::isInteger(VT) == MVT::isInteger(PromoteTo) &&
63 MVT::isFloatingPoint(VT) == MVT::isFloatingPoint(PromoteTo) &&
64 "Can only promote from int->int or fp->fp!");
65 assert(VT < PromoteTo && "Must promote to a larger type!");
66 TransformToType[VT] = PromoteTo;
Chris Lattner6f809792005-01-16 07:28:11 +000067 } else if (Action == TargetLowering::Expand) {
Nate Begeman07890bb2005-11-22 01:29:36 +000068 assert((VT == MVT::Vector || MVT::isInteger(VT)) && VT > MVT::i8 &&
Chris Lattner1bc93ba2005-01-16 01:10:58 +000069 "Cannot expand this type: target must support SOME integer reg!");
70 // Expand to the next smaller integer type!
71 TransformToType[VT] = (MVT::ValueType)(VT-1);
72 }
73}
74
75
Chris Lattner3a4d1b22005-01-07 07:44:53 +000076/// computeRegisterProperties - Once all of the register classes are added,
77/// this allows us to compute derived properties we expose.
78void TargetLowering::computeRegisterProperties() {
Nate Begeman89b049a2005-11-29 05:45:29 +000079 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner1bc93ba2005-01-16 01:10:58 +000080 "Too many value types for ValueTypeActions to hold!");
81
Chris Lattner3a4d1b22005-01-07 07:44:53 +000082 // Everything defaults to one.
83 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i)
84 NumElementsForVT[i] = 1;
Misha Brukman10468d82005-04-21 22:55:34 +000085
Chris Lattner3a4d1b22005-01-07 07:44:53 +000086 // Find the largest integer register class.
87 unsigned LargestIntReg = MVT::i128;
88 for (; RegClassForVT[LargestIntReg] == 0; --LargestIntReg)
89 assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
90
91 // Every integer value type larger than this largest register takes twice as
92 // many registers to represent as the previous ValueType.
93 unsigned ExpandedReg = LargestIntReg; ++LargestIntReg;
94 for (++ExpandedReg; MVT::isInteger((MVT::ValueType)ExpandedReg);++ExpandedReg)
95 NumElementsForVT[ExpandedReg] = 2*NumElementsForVT[ExpandedReg-1];
Chris Lattner3a4d1b22005-01-07 07:44:53 +000096
Chris Lattner1bc93ba2005-01-16 01:10:58 +000097 // Inspect all of the ValueType's possible, deciding how to process them.
98 for (unsigned IntReg = MVT::i1; IntReg <= MVT::i128; ++IntReg)
99 // If we are expanding this type, expand it!
100 if (getNumElements((MVT::ValueType)IntReg) != 1)
Chris Lattner6f809792005-01-16 07:28:11 +0000101 SetValueTypeAction((MVT::ValueType)IntReg, Expand, *this, TransformToType,
Chris Lattner1bc93ba2005-01-16 01:10:58 +0000102 ValueTypeActions);
Chris Lattnerade52542005-08-24 16:34:12 +0000103 else if (!isTypeLegal((MVT::ValueType)IntReg))
Chris Lattner1bc93ba2005-01-16 01:10:58 +0000104 // Otherwise, if we don't have native support, we must promote to a
105 // larger type.
Chris Lattner6f809792005-01-16 07:28:11 +0000106 SetValueTypeAction((MVT::ValueType)IntReg, Promote, *this,
107 TransformToType, ValueTypeActions);
Chris Lattner8ec1dc52005-01-16 01:20:18 +0000108 else
109 TransformToType[(MVT::ValueType)IntReg] = (MVT::ValueType)IntReg;
Misha Brukman10468d82005-04-21 22:55:34 +0000110
Chris Lattner1bc93ba2005-01-16 01:10:58 +0000111 // If the target does not have native support for F32, promote it to F64.
Chris Lattnerade52542005-08-24 16:34:12 +0000112 if (!isTypeLegal(MVT::f32))
Chris Lattner6f809792005-01-16 07:28:11 +0000113 SetValueTypeAction(MVT::f32, Promote, *this,
114 TransformToType, ValueTypeActions);
Chris Lattner8ec1dc52005-01-16 01:20:18 +0000115 else
116 TransformToType[MVT::f32] = MVT::f32;
Nate Begeman07890bb2005-11-22 01:29:36 +0000117
118 // Set MVT::Vector to always be Expanded
119 SetValueTypeAction(MVT::Vector, Expand, *this, TransformToType,
120 ValueTypeActions);
Chris Lattner8ec1dc52005-01-16 01:20:18 +0000121
Chris Lattnerade52542005-08-24 16:34:12 +0000122 assert(isTypeLegal(MVT::f64) && "Target does not support FP?");
Chris Lattner8ec1dc52005-01-16 01:20:18 +0000123 TransformToType[MVT::f64] = MVT::f64;
Chris Lattner1bc93ba2005-01-16 01:10:58 +0000124}
Chris Lattner6f809792005-01-16 07:28:11 +0000125
Evan Cheng6af02632005-12-20 06:22:03 +0000126const char *TargetLowering::getTargetNodeName(unsigned Opcode) const {
127 return NULL;
128}
Evan Cheng9cdc16c2005-12-21 23:05:39 +0000129
Evan Cheng18729082005-12-21 23:14:54 +0000130bool TargetLowering::isMaskedValueZeroForTargetNode(const SDOperand &Op,
131 uint64_t Mask) const {
Evan Cheng9cdc16c2005-12-21 23:05:39 +0000132 return false;
133}