blob: 8e9524ef1e39e23006766dc946f2bb5e5e62b23d [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 Lattner310968c2005-01-07 07:44:53 +000035}
36
Chris Lattnercba82f92005-01-16 07:28:11 +000037TargetLowering::~TargetLowering() {}
38
Chris Lattnerbb97d812005-01-16 01:10:58 +000039/// setValueTypeAction - Set the action for a particular value type. This
40/// assumes an action has not already been set for this value type.
Chris Lattnercba82f92005-01-16 07:28:11 +000041static void SetValueTypeAction(MVT::ValueType VT,
42 TargetLowering::LegalizeAction Action,
Chris Lattnerbb97d812005-01-16 01:10:58 +000043 TargetLowering &TLI,
44 MVT::ValueType *TransformToType,
Nate Begeman6a648612005-11-29 05:45:29 +000045 unsigned long long &ValueTypeActions) {
46 ValueTypeActions |= (unsigned long long)Action << (VT*2);
Chris Lattnercba82f92005-01-16 07:28:11 +000047 if (Action == TargetLowering::Promote) {
Chris Lattnerbb97d812005-01-16 01:10:58 +000048 MVT::ValueType PromoteTo;
49 if (VT == MVT::f32)
50 PromoteTo = MVT::f64;
51 else {
52 unsigned LargerReg = VT+1;
Chris Lattner9ed62c12005-08-24 16:34:12 +000053 while (!TLI.isTypeLegal((MVT::ValueType)LargerReg)) {
Chris Lattnerbb97d812005-01-16 01:10:58 +000054 ++LargerReg;
55 assert(MVT::isInteger((MVT::ValueType)LargerReg) &&
56 "Nothing to promote to??");
57 }
58 PromoteTo = (MVT::ValueType)LargerReg;
59 }
60
61 assert(MVT::isInteger(VT) == MVT::isInteger(PromoteTo) &&
62 MVT::isFloatingPoint(VT) == MVT::isFloatingPoint(PromoteTo) &&
63 "Can only promote from int->int or fp->fp!");
64 assert(VT < PromoteTo && "Must promote to a larger type!");
65 TransformToType[VT] = PromoteTo;
Chris Lattnercba82f92005-01-16 07:28:11 +000066 } else if (Action == TargetLowering::Expand) {
Nate Begeman4ef3b812005-11-22 01:29:36 +000067 assert((VT == MVT::Vector || MVT::isInteger(VT)) && VT > MVT::i8 &&
Chris Lattnerbb97d812005-01-16 01:10:58 +000068 "Cannot expand this type: target must support SOME integer reg!");
69 // Expand to the next smaller integer type!
70 TransformToType[VT] = (MVT::ValueType)(VT-1);
71 }
72}
73
74
Chris Lattner310968c2005-01-07 07:44:53 +000075/// computeRegisterProperties - Once all of the register classes are added,
76/// this allows us to compute derived properties we expose.
77void TargetLowering::computeRegisterProperties() {
Nate Begeman6a648612005-11-29 05:45:29 +000078 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattnerbb97d812005-01-16 01:10:58 +000079 "Too many value types for ValueTypeActions to hold!");
80
Chris Lattner310968c2005-01-07 07:44:53 +000081 // Everything defaults to one.
82 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i)
83 NumElementsForVT[i] = 1;
Misha Brukmanf976c852005-04-21 22:55:34 +000084
Chris Lattner310968c2005-01-07 07:44:53 +000085 // Find the largest integer register class.
86 unsigned LargestIntReg = MVT::i128;
87 for (; RegClassForVT[LargestIntReg] == 0; --LargestIntReg)
88 assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
89
90 // Every integer value type larger than this largest register takes twice as
91 // many registers to represent as the previous ValueType.
92 unsigned ExpandedReg = LargestIntReg; ++LargestIntReg;
93 for (++ExpandedReg; MVT::isInteger((MVT::ValueType)ExpandedReg);++ExpandedReg)
94 NumElementsForVT[ExpandedReg] = 2*NumElementsForVT[ExpandedReg-1];
Chris Lattner310968c2005-01-07 07:44:53 +000095
Chris Lattnerbb97d812005-01-16 01:10:58 +000096 // Inspect all of the ValueType's possible, deciding how to process them.
97 for (unsigned IntReg = MVT::i1; IntReg <= MVT::i128; ++IntReg)
98 // If we are expanding this type, expand it!
99 if (getNumElements((MVT::ValueType)IntReg) != 1)
Chris Lattnercba82f92005-01-16 07:28:11 +0000100 SetValueTypeAction((MVT::ValueType)IntReg, Expand, *this, TransformToType,
Chris Lattnerbb97d812005-01-16 01:10:58 +0000101 ValueTypeActions);
Chris Lattner9ed62c12005-08-24 16:34:12 +0000102 else if (!isTypeLegal((MVT::ValueType)IntReg))
Chris Lattnerbb97d812005-01-16 01:10:58 +0000103 // Otherwise, if we don't have native support, we must promote to a
104 // larger type.
Chris Lattnercba82f92005-01-16 07:28:11 +0000105 SetValueTypeAction((MVT::ValueType)IntReg, Promote, *this,
106 TransformToType, ValueTypeActions);
Chris Lattnercfdfe4c2005-01-16 01:20:18 +0000107 else
108 TransformToType[(MVT::ValueType)IntReg] = (MVT::ValueType)IntReg;
Misha Brukmanf976c852005-04-21 22:55:34 +0000109
Chris Lattnerbb97d812005-01-16 01:10:58 +0000110 // If the target does not have native support for F32, promote it to F64.
Chris Lattner9ed62c12005-08-24 16:34:12 +0000111 if (!isTypeLegal(MVT::f32))
Chris Lattnercba82f92005-01-16 07:28:11 +0000112 SetValueTypeAction(MVT::f32, Promote, *this,
113 TransformToType, ValueTypeActions);
Chris Lattnercfdfe4c2005-01-16 01:20:18 +0000114 else
115 TransformToType[MVT::f32] = MVT::f32;
Nate Begeman4ef3b812005-11-22 01:29:36 +0000116
117 // Set MVT::Vector to always be Expanded
118 SetValueTypeAction(MVT::Vector, Expand, *this, TransformToType,
119 ValueTypeActions);
Chris Lattnercfdfe4c2005-01-16 01:20:18 +0000120
Chris Lattner9ed62c12005-08-24 16:34:12 +0000121 assert(isTypeLegal(MVT::f64) && "Target does not support FP?");
Chris Lattnercfdfe4c2005-01-16 01:20:18 +0000122 TransformToType[MVT::f64] = MVT::f64;
Chris Lattnerbb97d812005-01-16 01:10:58 +0000123}
Chris Lattnercba82f92005-01-16 07:28:11 +0000124
Evan Cheng72261582005-12-20 06:22:03 +0000125const char *TargetLowering::getTargetNodeName(unsigned Opcode) const {
126 return NULL;
127}