blob: c4ccbf5ef05992b3ab027c02da552eb359ed06d6 [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;
Chris Lattner310968c2005-01-07 07:44:53 +000033}
34
Chris Lattnercba82f92005-01-16 07:28:11 +000035TargetLowering::~TargetLowering() {}
36
Chris Lattnerbb97d812005-01-16 01:10:58 +000037/// setValueTypeAction - Set the action for a particular value type. This
38/// assumes an action has not already been set for this value type.
Chris Lattnercba82f92005-01-16 07:28:11 +000039static void SetValueTypeAction(MVT::ValueType VT,
40 TargetLowering::LegalizeAction Action,
Chris Lattnerbb97d812005-01-16 01:10:58 +000041 TargetLowering &TLI,
42 MVT::ValueType *TransformToType,
43 unsigned &ValueTypeActions) {
44 ValueTypeActions |= Action << (VT*2);
Chris Lattnercba82f92005-01-16 07:28:11 +000045 if (Action == TargetLowering::Promote) {
Chris Lattnerbb97d812005-01-16 01:10:58 +000046 MVT::ValueType PromoteTo;
47 if (VT == MVT::f32)
48 PromoteTo = MVT::f64;
49 else {
50 unsigned LargerReg = VT+1;
Chris Lattner9ed62c12005-08-24 16:34:12 +000051 while (!TLI.isTypeLegal((MVT::ValueType)LargerReg)) {
Chris Lattnerbb97d812005-01-16 01:10:58 +000052 ++LargerReg;
53 assert(MVT::isInteger((MVT::ValueType)LargerReg) &&
54 "Nothing to promote to??");
55 }
56 PromoteTo = (MVT::ValueType)LargerReg;
57 }
58
59 assert(MVT::isInteger(VT) == MVT::isInteger(PromoteTo) &&
60 MVT::isFloatingPoint(VT) == MVT::isFloatingPoint(PromoteTo) &&
61 "Can only promote from int->int or fp->fp!");
62 assert(VT < PromoteTo && "Must promote to a larger type!");
63 TransformToType[VT] = PromoteTo;
Chris Lattnercba82f92005-01-16 07:28:11 +000064 } else if (Action == TargetLowering::Expand) {
Chris Lattnerbb97d812005-01-16 01:10:58 +000065 assert(MVT::isInteger(VT) && VT > MVT::i8 &&
66 "Cannot expand this type: target must support SOME integer reg!");
67 // Expand to the next smaller integer type!
68 TransformToType[VT] = (MVT::ValueType)(VT-1);
69 }
70}
71
72
Chris Lattner310968c2005-01-07 07:44:53 +000073/// computeRegisterProperties - Once all of the register classes are added,
74/// this allows us to compute derived properties we expose.
75void TargetLowering::computeRegisterProperties() {
Chris Lattnerbb97d812005-01-16 01:10:58 +000076 assert(MVT::LAST_VALUETYPE <= 16 &&
77 "Too many value types for ValueTypeActions to hold!");
78
Chris Lattner310968c2005-01-07 07:44:53 +000079 // Everything defaults to one.
80 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i)
81 NumElementsForVT[i] = 1;
Misha Brukmanf976c852005-04-21 22:55:34 +000082
Chris Lattner310968c2005-01-07 07:44:53 +000083 // Find the largest integer register class.
84 unsigned LargestIntReg = MVT::i128;
85 for (; RegClassForVT[LargestIntReg] == 0; --LargestIntReg)
86 assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
87
88 // Every integer value type larger than this largest register takes twice as
89 // many registers to represent as the previous ValueType.
90 unsigned ExpandedReg = LargestIntReg; ++LargestIntReg;
91 for (++ExpandedReg; MVT::isInteger((MVT::ValueType)ExpandedReg);++ExpandedReg)
92 NumElementsForVT[ExpandedReg] = 2*NumElementsForVT[ExpandedReg-1];
Chris Lattner310968c2005-01-07 07:44:53 +000093
Chris Lattnerbb97d812005-01-16 01:10:58 +000094 // Inspect all of the ValueType's possible, deciding how to process them.
95 for (unsigned IntReg = MVT::i1; IntReg <= MVT::i128; ++IntReg)
96 // If we are expanding this type, expand it!
97 if (getNumElements((MVT::ValueType)IntReg) != 1)
Chris Lattnercba82f92005-01-16 07:28:11 +000098 SetValueTypeAction((MVT::ValueType)IntReg, Expand, *this, TransformToType,
Chris Lattnerbb97d812005-01-16 01:10:58 +000099 ValueTypeActions);
Chris Lattner9ed62c12005-08-24 16:34:12 +0000100 else if (!isTypeLegal((MVT::ValueType)IntReg))
Chris Lattnerbb97d812005-01-16 01:10:58 +0000101 // Otherwise, if we don't have native support, we must promote to a
102 // larger type.
Chris Lattnercba82f92005-01-16 07:28:11 +0000103 SetValueTypeAction((MVT::ValueType)IntReg, Promote, *this,
104 TransformToType, ValueTypeActions);
Chris Lattnercfdfe4c2005-01-16 01:20:18 +0000105 else
106 TransformToType[(MVT::ValueType)IntReg] = (MVT::ValueType)IntReg;
Misha Brukmanf976c852005-04-21 22:55:34 +0000107
Chris Lattnerbb97d812005-01-16 01:10:58 +0000108 // If the target does not have native support for F32, promote it to F64.
Chris Lattner9ed62c12005-08-24 16:34:12 +0000109 if (!isTypeLegal(MVT::f32))
Chris Lattnercba82f92005-01-16 07:28:11 +0000110 SetValueTypeAction(MVT::f32, Promote, *this,
111 TransformToType, ValueTypeActions);
Chris Lattnercfdfe4c2005-01-16 01:20:18 +0000112 else
113 TransformToType[MVT::f32] = MVT::f32;
114
Chris Lattner9ed62c12005-08-24 16:34:12 +0000115 assert(isTypeLegal(MVT::f64) && "Target does not support FP?");
Chris Lattnercfdfe4c2005-01-16 01:20:18 +0000116 TransformToType[MVT::f64] = MVT::f64;
Chris Lattnerbb97d812005-01-16 01:10:58 +0000117}
Chris Lattnercba82f92005-01-16 07:28:11 +0000118