blob: 8f177c901d2081a03529af6fc118dd9f4afb904b [file] [log] [blame]
Chris Lattner310968c2005-01-07 07:44:53 +00001//===-- TargetLowering.cpp - Implement the TargetLowering class -----------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
Chris Lattner310968c2005-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 Brukmanf976c852005-04-21 22:55:34 +00007//
Chris Lattner310968c2005-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 Lattnerbb97d812005-01-16 01:10:58 +000020 : TM(tm), TD(TM.getTargetData()), ValueTypeActions(0) {
Chris Lattner310968c2005-01-07 07:44:53 +000021 assert(ISD::BUILTIN_OP_END <= 128 &&
22 "Fixed size array in TargetLowering is not large enough!");
Chris Lattnercba82f92005-01-16 07:28:11 +000023 // All operations default to being supported.
24 memset(OpActions, 0, sizeof(OpActions));
Chris Lattner310968c2005-01-07 07:44:53 +000025
26 IsLittleEndian = TD.isLittleEndian();
Chris Lattner714b69d2005-01-16 23:59:48 +000027 ShiftAmountTy = SetCCResultTy = PointerTy = getValueType(TD.getIntPtrType());
Chris Lattnerd6e49672005-01-19 03:36:14 +000028 ShiftAmtHandling = Undefined;
Chris Lattner310968c2005-01-07 07:44:53 +000029 memset(RegClassForVT, 0,MVT::LAST_VALUETYPE*sizeof(TargetRegisterClass*));
Reid Spencer0f9beca2005-08-27 19:09:02 +000030 maxStoresPerMemSet = maxStoresPerMemCpy = maxStoresPerMemMove = 8;
31 allowUnalignedMemoryAccesses = false;
Chris Lattner8e6be8b2005-09-27 22:13:56 +000032 UseUnderscoreSetJmpLongJmp = false;
Nate Begeman405e3ec2005-10-21 00:02:42 +000033 IntDivIsCheap = false;
34 Pow2DivIsCheap = false;
Chris Lattneree4a7652006-01-25 18:57:15 +000035 StackPointerRegisterToSaveRestore = 0;
Evan Cheng0577a222006-01-25 18:52:42 +000036 SchedPreferenceInfo = SchedulingForLatency;
Chris Lattner310968c2005-01-07 07:44:53 +000037}
38
Chris Lattnercba82f92005-01-16 07:28:11 +000039TargetLowering::~TargetLowering() {}
40
Chris Lattnerbb97d812005-01-16 01:10:58 +000041/// setValueTypeAction - Set the action for a particular value type. This
42/// assumes an action has not already been set for this value type.
Chris Lattnercba82f92005-01-16 07:28:11 +000043static void SetValueTypeAction(MVT::ValueType VT,
44 TargetLowering::LegalizeAction Action,
Chris Lattnerbb97d812005-01-16 01:10:58 +000045 TargetLowering &TLI,
46 MVT::ValueType *TransformToType,
Nate Begeman6a648612005-11-29 05:45:29 +000047 unsigned long long &ValueTypeActions) {
48 ValueTypeActions |= (unsigned long long)Action << (VT*2);
Chris Lattnercba82f92005-01-16 07:28:11 +000049 if (Action == TargetLowering::Promote) {
Chris Lattnerbb97d812005-01-16 01:10:58 +000050 MVT::ValueType PromoteTo;
51 if (VT == MVT::f32)
52 PromoteTo = MVT::f64;
53 else {
54 unsigned LargerReg = VT+1;
Chris Lattner9ed62c12005-08-24 16:34:12 +000055 while (!TLI.isTypeLegal((MVT::ValueType)LargerReg)) {
Chris Lattnerbb97d812005-01-16 01:10:58 +000056 ++LargerReg;
57 assert(MVT::isInteger((MVT::ValueType)LargerReg) &&
58 "Nothing to promote to??");
59 }
60 PromoteTo = (MVT::ValueType)LargerReg;
61 }
62
63 assert(MVT::isInteger(VT) == MVT::isInteger(PromoteTo) &&
64 MVT::isFloatingPoint(VT) == MVT::isFloatingPoint(PromoteTo) &&
65 "Can only promote from int->int or fp->fp!");
66 assert(VT < PromoteTo && "Must promote to a larger type!");
67 TransformToType[VT] = PromoteTo;
Chris Lattnercba82f92005-01-16 07:28:11 +000068 } else if (Action == TargetLowering::Expand) {
Nate Begeman4ef3b812005-11-22 01:29:36 +000069 assert((VT == MVT::Vector || MVT::isInteger(VT)) && VT > MVT::i8 &&
Chris Lattnerbb97d812005-01-16 01:10:58 +000070 "Cannot expand this type: target must support SOME integer reg!");
71 // Expand to the next smaller integer type!
72 TransformToType[VT] = (MVT::ValueType)(VT-1);
73 }
74}
75
76
Chris Lattner310968c2005-01-07 07:44:53 +000077/// computeRegisterProperties - Once all of the register classes are added,
78/// this allows us to compute derived properties we expose.
79void TargetLowering::computeRegisterProperties() {
Nate Begeman6a648612005-11-29 05:45:29 +000080 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattnerbb97d812005-01-16 01:10:58 +000081 "Too many value types for ValueTypeActions to hold!");
82
Chris Lattner310968c2005-01-07 07:44:53 +000083 // Everything defaults to one.
84 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i)
85 NumElementsForVT[i] = 1;
Misha Brukmanf976c852005-04-21 22:55:34 +000086
Chris Lattner310968c2005-01-07 07:44:53 +000087 // Find the largest integer register class.
88 unsigned LargestIntReg = MVT::i128;
89 for (; RegClassForVT[LargestIntReg] == 0; --LargestIntReg)
90 assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
91
92 // Every integer value type larger than this largest register takes twice as
93 // many registers to represent as the previous ValueType.
94 unsigned ExpandedReg = LargestIntReg; ++LargestIntReg;
95 for (++ExpandedReg; MVT::isInteger((MVT::ValueType)ExpandedReg);++ExpandedReg)
96 NumElementsForVT[ExpandedReg] = 2*NumElementsForVT[ExpandedReg-1];
Chris Lattner310968c2005-01-07 07:44:53 +000097
Chris Lattnerbb97d812005-01-16 01:10:58 +000098 // Inspect all of the ValueType's possible, deciding how to process them.
99 for (unsigned IntReg = MVT::i1; IntReg <= MVT::i128; ++IntReg)
100 // If we are expanding this type, expand it!
101 if (getNumElements((MVT::ValueType)IntReg) != 1)
Chris Lattnercba82f92005-01-16 07:28:11 +0000102 SetValueTypeAction((MVT::ValueType)IntReg, Expand, *this, TransformToType,
Chris Lattnerbb97d812005-01-16 01:10:58 +0000103 ValueTypeActions);
Chris Lattner9ed62c12005-08-24 16:34:12 +0000104 else if (!isTypeLegal((MVT::ValueType)IntReg))
Chris Lattnerbb97d812005-01-16 01:10:58 +0000105 // Otherwise, if we don't have native support, we must promote to a
106 // larger type.
Chris Lattnercba82f92005-01-16 07:28:11 +0000107 SetValueTypeAction((MVT::ValueType)IntReg, Promote, *this,
108 TransformToType, ValueTypeActions);
Chris Lattnercfdfe4c2005-01-16 01:20:18 +0000109 else
110 TransformToType[(MVT::ValueType)IntReg] = (MVT::ValueType)IntReg;
Misha Brukmanf976c852005-04-21 22:55:34 +0000111
Chris Lattnerbb97d812005-01-16 01:10:58 +0000112 // If the target does not have native support for F32, promote it to F64.
Chris Lattner9ed62c12005-08-24 16:34:12 +0000113 if (!isTypeLegal(MVT::f32))
Chris Lattnercba82f92005-01-16 07:28:11 +0000114 SetValueTypeAction(MVT::f32, Promote, *this,
115 TransformToType, ValueTypeActions);
Chris Lattnercfdfe4c2005-01-16 01:20:18 +0000116 else
117 TransformToType[MVT::f32] = MVT::f32;
Nate Begeman4ef3b812005-11-22 01:29:36 +0000118
119 // Set MVT::Vector to always be Expanded
120 SetValueTypeAction(MVT::Vector, Expand, *this, TransformToType,
121 ValueTypeActions);
Chris Lattnercfdfe4c2005-01-16 01:20:18 +0000122
Chris Lattner9ed62c12005-08-24 16:34:12 +0000123 assert(isTypeLegal(MVT::f64) && "Target does not support FP?");
Chris Lattnercfdfe4c2005-01-16 01:20:18 +0000124 TransformToType[MVT::f64] = MVT::f64;
Chris Lattnerbb97d812005-01-16 01:10:58 +0000125}
Chris Lattnercba82f92005-01-16 07:28:11 +0000126
Evan Cheng72261582005-12-20 06:22:03 +0000127const char *TargetLowering::getTargetNodeName(unsigned Opcode) const {
128 return NULL;
129}
Evan Cheng3a03ebb2005-12-21 23:05:39 +0000130
Evan Chengff9be112005-12-21 23:14:54 +0000131bool TargetLowering::isMaskedValueZeroForTargetNode(const SDOperand &Op,
132 uint64_t Mask) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +0000133 return false;
134}