blob: 40184ed78d3e86598e4a3437252d52e2e46a82ec [file] [log] [blame]
Nadav Rotemcbd9a192012-10-18 23:22:48 +00001// llvm/Target/TargetTransformImpl.cpp - Target Loop Trans Info ---*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/Target/TargetTransformImpl.h"
11#include "llvm/Target/TargetLowering.h"
Nadav Rotem2652c502012-10-24 23:47:38 +000012#include <utility>
Nadav Rotemcbd9a192012-10-18 23:22:48 +000013
14using namespace llvm;
15
Nadav Rotem27048342012-10-24 17:22:41 +000016//===----------------------------------------------------------------------===//
17//
18// Calls used by scalar transformations.
19//
20//===----------------------------------------------------------------------===//
21
Nadav Rotemcbd9a192012-10-18 23:22:48 +000022bool ScalarTargetTransformImpl::isLegalAddImmediate(int64_t imm) const {
23 return TLI->isLegalAddImmediate(imm);
24}
25
26bool ScalarTargetTransformImpl::isLegalICmpImmediate(int64_t imm) const {
27 return TLI->isLegalICmpImmediate(imm);
28}
29
30bool ScalarTargetTransformImpl::isLegalAddressingMode(const AddrMode &AM,
31 Type *Ty) const {
32 return TLI->isLegalAddressingMode(AM, Ty);
33}
34
35bool ScalarTargetTransformImpl::isTruncateFree(Type *Ty1, Type *Ty2) const {
36 return TLI->isTruncateFree(Ty1, Ty2);
37}
38
39bool ScalarTargetTransformImpl::isTypeLegal(Type *Ty) const {
40 EVT T = TLI->getValueType(Ty);
41 return TLI->isTypeLegal(T);
42}
43
44unsigned ScalarTargetTransformImpl::getJumpBufAlignment() const {
45 return TLI->getJumpBufAlignment();
46}
47
48unsigned ScalarTargetTransformImpl::getJumpBufSize() const {
49 return TLI->getJumpBufSize();
50}
Nadav Rotem27048342012-10-24 17:22:41 +000051
52//===----------------------------------------------------------------------===//
53//
54// Calls used by the vectorizers.
55//
56//===----------------------------------------------------------------------===//
Renato Goline5372d62012-10-26 12:24:52 +000057static int InstructionOpcodeToISD(unsigned Opcode) {
58 enum InstructionOpcodes {
59#define HANDLE_INST(NUM, OPCODE, CLASS) OPCODE = NUM,
60#define LAST_OTHER_INST(NUM) InstructionOpcodesCount = NUM
61#include "llvm/Instruction.def"
62 };
63 switch (static_cast<InstructionOpcodes>(Opcode)) {
64 case Ret: return 0;
65 case Br: return 0;
66 case Switch: return 0;
67 case IndirectBr: return 0;
68 case Invoke: return 0;
69 case Resume: return 0;
70 case Unreachable: return 0;
71 case Add: return ISD::ADD;
72 case FAdd: return ISD::FADD;
73 case Sub: return ISD::SUB;
74 case FSub: return ISD::FSUB;
75 case Mul: return ISD::MUL;
76 case FMul: return ISD::FMUL;
77 case UDiv: return ISD::UDIV;
78 case SDiv: return ISD::UDIV;
79 case FDiv: return ISD::FDIV;
80 case URem: return ISD::UREM;
81 case SRem: return ISD::SREM;
82 case FRem: return ISD::FREM;
83 case Shl: return ISD::SHL;
84 case LShr: return ISD::SRL;
85 case AShr: return ISD::SRA;
86 case And: return ISD::AND;
87 case Or: return ISD::OR;
88 case Xor: return ISD::XOR;
89 case Alloca: return 0;
90 case Load: return ISD::LOAD;
91 case Store: return ISD::STORE;
92 case GetElementPtr: return 0;
93 case Fence: return 0;
94 case AtomicCmpXchg: return 0;
95 case AtomicRMW: return 0;
96 case Trunc: return ISD::TRUNCATE;
97 case ZExt: return ISD::ZERO_EXTEND;
98 case SExt: return ISD::SEXTLOAD;
99 case FPToUI: return ISD::FP_TO_UINT;
100 case FPToSI: return ISD::FP_TO_SINT;
101 case UIToFP: return ISD::UINT_TO_FP;
102 case SIToFP: return ISD::SINT_TO_FP;
103 case FPTrunc: return ISD::FP_ROUND;
104 case FPExt: return ISD::FP_EXTEND;
105 case PtrToInt: return ISD::BITCAST;
106 case IntToPtr: return ISD::BITCAST;
107 case BitCast: return ISD::BITCAST;
108 case ICmp: return ISD::SETCC;
109 case FCmp: return ISD::SETCC;
110 case PHI: return 0;
111 case Call: return 0;
112 case Select: return ISD::SELECT;
113 case UserOp1: return 0;
114 case UserOp2: return 0;
115 case VAArg: return 0;
116 case ExtractElement: return ISD::EXTRACT_VECTOR_ELT;
117 case InsertElement: return ISD::INSERT_VECTOR_ELT;
118 case ShuffleVector: return ISD::VECTOR_SHUFFLE;
119 case ExtractValue: return ISD::MERGE_VALUES;
120 case InsertValue: return ISD::MERGE_VALUES;
121 case LandingPad: return 0;
122 }
Nadav Rotem2652c502012-10-24 23:47:38 +0000123
Renato Goline5372d62012-10-26 12:24:52 +0000124 llvm_unreachable("Unknown instruction type encountered!");
Nadav Rotem2652c502012-10-24 23:47:38 +0000125}
126
Nadav Rotem1e19e462012-10-25 18:17:48 +0000127std::pair<unsigned, EVT>
Nadav Rotem2652c502012-10-24 23:47:38 +0000128VectorTargetTransformImpl::getTypeLegalizationCost(LLVMContext &C,
129 EVT Ty) const {
130 unsigned Cost = 1;
131 // We keep legalizing the type until we find a legal kind. We assume that
132 // the only operation that costs anything is the split. After splitting
133 // we need to handle two types.
134 while (true) {
135 TargetLowering::LegalizeKind LK = TLI->getTypeConversion(C, Ty);
136
137 if (LK.first == TargetLowering::TypeLegal)
138 return std::make_pair(Cost, LK.second);
139
140 if (LK.first == TargetLowering::TypeSplitVector)
141 Cost *= 2;
142
143 // Keep legalizing the type.
144 Ty = LK.second;
145 }
146}
Nadav Rotem27048342012-10-24 17:22:41 +0000147
148unsigned
149VectorTargetTransformImpl::getInstrCost(unsigned Opcode, Type *Ty1,
150 Type *Ty2) const {
Nadav Rotem2652c502012-10-24 23:47:38 +0000151 // Check if any of the operands are vector operands.
152 int ISD = InstructionOpcodeToISD(Opcode);
153
Nadav Rotem2652c502012-10-24 23:47:38 +0000154 // If we don't have any information about this instruction assume it costs 1.
155 if (ISD == 0)
156 return 1;
157
Nadav Rotem1e19e462012-10-25 18:17:48 +0000158 // Selects on vectors are actually vector selects.
159 if (ISD == ISD::SELECT) {
160 assert(Ty2 && "Ty2 must hold the condition type");
161 if (Ty2->isVectorTy())
162 ISD = ISD::VSELECT;
163 }
164
Nadav Rotem2652c502012-10-24 23:47:38 +0000165 assert(Ty1 && "We need to have at least one type");
166
167 // From this stage we look at the legalized type.
168 std::pair<unsigned, EVT> LT =
169 getTypeLegalizationCost(Ty1->getContext(), TLI->getValueType(Ty1));
170
171 if (TLI->isOperationLegalOrCustom(ISD, LT.second)) {
172 // The operation is legal. Assume it costs 1. Multiply
173 // by the type-legalization overhead.
174 return LT.first * 1;
175 }
176
177 unsigned NumElem =
Nadav Rotem1e19e462012-10-25 18:17:48 +0000178 (LT.second.isVector() ? LT.second.getVectorNumElements() : 1);
Nadav Rotem2652c502012-10-24 23:47:38 +0000179
180 // We will probably scalarize this instruction. Assume that the cost is the
181 // number of the vector elements.
182 return LT.first * NumElem * 1;
Nadav Rotem27048342012-10-24 17:22:41 +0000183}
184
185unsigned
186VectorTargetTransformImpl::getBroadcastCost(Type *Tp) const {
187 return 1;
188}
189
190unsigned
191VectorTargetTransformImpl::getMemoryOpCost(unsigned Opcode, Type *Src,
192 unsigned Alignment,
193 unsigned AddressSpace) const {
Nadav Rotem2652c502012-10-24 23:47:38 +0000194 // From this stage we look at the legalized type.
195 std::pair<unsigned, EVT> LT =
196 getTypeLegalizationCost(Src->getContext(), TLI->getValueType(Src));
197 // Assume that all loads of legal types cost 1.
198 return LT.first;
Nadav Rotem27048342012-10-24 17:22:41 +0000199}
Hal Finkel102a7c02012-10-26 04:28:02 +0000200
201unsigned
202VectorTargetTransformImpl::getNumberOfParts(Type *Tp) const {
203 std::pair<unsigned, EVT> LT =
204 getTypeLegalizationCost(Tp->getContext(), TLI->getValueType(Tp));
205 return LT.first;
206}
207