blob: d3295a9d22e847401716f4c72d24870040342f0f [file] [log] [blame]
Chandler Carruth93dcdc42015-01-31 11:17:59 +00001//===-- PPCTargetTransformInfo.cpp - PPC specific TTI ---------------------===//
Hal Finkel4e5ca9e2013-01-25 23:05:59 +00002//
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//===----------------------------------------------------------------------===//
Hal Finkel4e5ca9e2013-01-25 23:05:59 +00009
Chandler Carruth93dcdc42015-01-31 11:17:59 +000010#include "PPCTargetTransformInfo.h"
Hal Finkel4e5ca9e2013-01-25 23:05:59 +000011#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth705b1852015-01-31 03:43:40 +000012#include "llvm/CodeGen/BasicTTIImpl.h"
Hal Finkel0192cba2014-04-13 23:02:40 +000013#include "llvm/Support/CommandLine.h"
Hal Finkel4e5ca9e2013-01-25 23:05:59 +000014#include "llvm/Support/Debug.h"
Hal Finkel4e5ca9e2013-01-25 23:05:59 +000015#include "llvm/Target/CostTable.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000016#include "llvm/Target/TargetLowering.h"
Hal Finkel4e5ca9e2013-01-25 23:05:59 +000017using namespace llvm;
18
Chandler Carruth84e68b22014-04-22 02:41:26 +000019#define DEBUG_TYPE "ppctti"
20
Hal Finkel0192cba2014-04-13 23:02:40 +000021static cl::opt<bool> DisablePPCConstHoist("disable-ppc-constant-hoisting",
22cl::desc("disable constant hoisting on PPC"), cl::init(false), cl::Hidden);
23
Adam Nemetaf761102016-01-21 18:28:36 +000024// This is currently only used for the data prefetch pass which is only enabled
25// for BG/Q by default.
26static cl::opt<unsigned>
27CacheLineSize("ppc-loop-prefetch-cache-line", cl::Hidden, cl::init(64),
28 cl::desc("The loop prefetch cache line size"));
29
Hal Finkel4e5ca9e2013-01-25 23:05:59 +000030//===----------------------------------------------------------------------===//
31//
32// PPC cost model.
33//
34//===----------------------------------------------------------------------===//
35
Chandler Carruth705b1852015-01-31 03:43:40 +000036TargetTransformInfo::PopcntSupportKind
37PPCTTIImpl::getPopcntSupport(unsigned TyWidth) {
Hal Finkel4e5ca9e2013-01-25 23:05:59 +000038 assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
Hal Finkelfa7057a2016-03-29 01:36:01 +000039 if (ST->hasPOPCNTD() != PPCSubtarget::POPCNTD_Unavailable && TyWidth <= 64)
40 return ST->hasPOPCNTD() == PPCSubtarget::POPCNTD_Slow ?
41 TTI::PSK_SlowHardware : TTI::PSK_FastHardware;
Chandler Carruth705b1852015-01-31 03:43:40 +000042 return TTI::PSK_Software;
Hal Finkel4e5ca9e2013-01-25 23:05:59 +000043}
44
Chandler Carruth93205eb2015-08-05 18:08:10 +000045int PPCTTIImpl::getIntImmCost(const APInt &Imm, Type *Ty) {
Hal Finkel0192cba2014-04-13 23:02:40 +000046 if (DisablePPCConstHoist)
Chandler Carruth705b1852015-01-31 03:43:40 +000047 return BaseT::getIntImmCost(Imm, Ty);
Hal Finkel0192cba2014-04-13 23:02:40 +000048
49 assert(Ty->isIntegerTy());
50
51 unsigned BitSize = Ty->getPrimitiveSizeInBits();
52 if (BitSize == 0)
53 return ~0U;
54
55 if (Imm == 0)
Chandler Carruth705b1852015-01-31 03:43:40 +000056 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +000057
58 if (Imm.getBitWidth() <= 64) {
59 if (isInt<16>(Imm.getSExtValue()))
Chandler Carruth705b1852015-01-31 03:43:40 +000060 return TTI::TCC_Basic;
Hal Finkel0192cba2014-04-13 23:02:40 +000061
62 if (isInt<32>(Imm.getSExtValue())) {
63 // A constant that can be materialized using lis.
64 if ((Imm.getZExtValue() & 0xFFFF) == 0)
Chandler Carruth705b1852015-01-31 03:43:40 +000065 return TTI::TCC_Basic;
Hal Finkel0192cba2014-04-13 23:02:40 +000066
Chandler Carruth705b1852015-01-31 03:43:40 +000067 return 2 * TTI::TCC_Basic;
Hal Finkel0192cba2014-04-13 23:02:40 +000068 }
69 }
70
Chandler Carruth705b1852015-01-31 03:43:40 +000071 return 4 * TTI::TCC_Basic;
Hal Finkel0192cba2014-04-13 23:02:40 +000072}
73
Chandler Carruth93205eb2015-08-05 18:08:10 +000074int PPCTTIImpl::getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
75 Type *Ty) {
Hal Finkel0192cba2014-04-13 23:02:40 +000076 if (DisablePPCConstHoist)
Chandler Carruth705b1852015-01-31 03:43:40 +000077 return BaseT::getIntImmCost(IID, Idx, Imm, Ty);
Hal Finkel0192cba2014-04-13 23:02:40 +000078
79 assert(Ty->isIntegerTy());
80
81 unsigned BitSize = Ty->getPrimitiveSizeInBits();
82 if (BitSize == 0)
83 return ~0U;
84
85 switch (IID) {
Chandler Carruth705b1852015-01-31 03:43:40 +000086 default:
87 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +000088 case Intrinsic::sadd_with_overflow:
89 case Intrinsic::uadd_with_overflow:
90 case Intrinsic::ssub_with_overflow:
91 case Intrinsic::usub_with_overflow:
92 if ((Idx == 1) && Imm.getBitWidth() <= 64 && isInt<16>(Imm.getSExtValue()))
Chandler Carruth705b1852015-01-31 03:43:40 +000093 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +000094 break;
Hal Finkel934361a2015-01-14 01:07:51 +000095 case Intrinsic::experimental_stackmap:
96 if ((Idx < 2) || (Imm.getBitWidth() <= 64 && isInt<64>(Imm.getSExtValue())))
Chandler Carruth705b1852015-01-31 03:43:40 +000097 return TTI::TCC_Free;
Hal Finkel934361a2015-01-14 01:07:51 +000098 break;
99 case Intrinsic::experimental_patchpoint_void:
100 case Intrinsic::experimental_patchpoint_i64:
101 if ((Idx < 4) || (Imm.getBitWidth() <= 64 && isInt<64>(Imm.getSExtValue())))
Chandler Carruth705b1852015-01-31 03:43:40 +0000102 return TTI::TCC_Free;
Hal Finkel934361a2015-01-14 01:07:51 +0000103 break;
Hal Finkel0192cba2014-04-13 23:02:40 +0000104 }
Chandler Carruth705b1852015-01-31 03:43:40 +0000105 return PPCTTIImpl::getIntImmCost(Imm, Ty);
Hal Finkel0192cba2014-04-13 23:02:40 +0000106}
107
Chandler Carruth93205eb2015-08-05 18:08:10 +0000108int PPCTTIImpl::getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
109 Type *Ty) {
Hal Finkel0192cba2014-04-13 23:02:40 +0000110 if (DisablePPCConstHoist)
Chandler Carruth705b1852015-01-31 03:43:40 +0000111 return BaseT::getIntImmCost(Opcode, Idx, Imm, Ty);
Hal Finkel0192cba2014-04-13 23:02:40 +0000112
113 assert(Ty->isIntegerTy());
114
115 unsigned BitSize = Ty->getPrimitiveSizeInBits();
116 if (BitSize == 0)
117 return ~0U;
118
119 unsigned ImmIdx = ~0U;
120 bool ShiftedFree = false, RunFree = false, UnsignedFree = false,
121 ZeroFree = false;
122 switch (Opcode) {
Chandler Carruth705b1852015-01-31 03:43:40 +0000123 default:
124 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000125 case Instruction::GetElementPtr:
126 // Always hoist the base address of a GetElementPtr. This prevents the
127 // creation of new constants for every base constant that gets constant
128 // folded with the offset.
129 if (Idx == 0)
Chandler Carruth705b1852015-01-31 03:43:40 +0000130 return 2 * TTI::TCC_Basic;
131 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000132 case Instruction::And:
133 RunFree = true; // (for the rotate-and-mask instructions)
Justin Bognerb03fd122016-08-17 05:10:15 +0000134 LLVM_FALLTHROUGH;
Hal Finkel0192cba2014-04-13 23:02:40 +0000135 case Instruction::Add:
136 case Instruction::Or:
137 case Instruction::Xor:
138 ShiftedFree = true;
Justin Bognerb03fd122016-08-17 05:10:15 +0000139 LLVM_FALLTHROUGH;
Hal Finkel0192cba2014-04-13 23:02:40 +0000140 case Instruction::Sub:
141 case Instruction::Mul:
142 case Instruction::Shl:
143 case Instruction::LShr:
144 case Instruction::AShr:
145 ImmIdx = 1;
146 break;
147 case Instruction::ICmp:
148 UnsignedFree = true;
149 ImmIdx = 1;
Justin Bognerb03fd122016-08-17 05:10:15 +0000150 // Zero comparisons can use record-form instructions.
151 LLVM_FALLTHROUGH;
Hal Finkel0192cba2014-04-13 23:02:40 +0000152 case Instruction::Select:
153 ZeroFree = true;
154 break;
155 case Instruction::PHI:
156 case Instruction::Call:
157 case Instruction::Ret:
158 case Instruction::Load:
159 case Instruction::Store:
160 break;
161 }
162
163 if (ZeroFree && Imm == 0)
Chandler Carruth705b1852015-01-31 03:43:40 +0000164 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000165
166 if (Idx == ImmIdx && Imm.getBitWidth() <= 64) {
167 if (isInt<16>(Imm.getSExtValue()))
Chandler Carruth705b1852015-01-31 03:43:40 +0000168 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000169
170 if (RunFree) {
171 if (Imm.getBitWidth() <= 32 &&
172 (isShiftedMask_32(Imm.getZExtValue()) ||
173 isShiftedMask_32(~Imm.getZExtValue())))
Chandler Carruth705b1852015-01-31 03:43:40 +0000174 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000175
176 if (ST->isPPC64() &&
177 (isShiftedMask_64(Imm.getZExtValue()) ||
178 isShiftedMask_64(~Imm.getZExtValue())))
Chandler Carruth705b1852015-01-31 03:43:40 +0000179 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000180 }
181
182 if (UnsignedFree && isUInt<16>(Imm.getZExtValue()))
Chandler Carruth705b1852015-01-31 03:43:40 +0000183 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000184
185 if (ShiftedFree && (Imm.getZExtValue() & 0xFFFF) == 0)
Chandler Carruth705b1852015-01-31 03:43:40 +0000186 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000187 }
188
Chandler Carruth705b1852015-01-31 03:43:40 +0000189 return PPCTTIImpl::getIntImmCost(Imm, Ty);
Hal Finkel0192cba2014-04-13 23:02:40 +0000190}
191
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000192void PPCTTIImpl::getUnrollingPreferences(Loop *L, ScalarEvolution &SE,
Chandler Carruth705b1852015-01-31 03:43:40 +0000193 TTI::UnrollingPreferences &UP) {
Chandler Carruthc956ab662015-02-01 14:22:17 +0000194 if (ST->getDarwinDirective() == PPC::DIR_A2) {
Hal Finkel71780ec2013-09-11 21:20:40 +0000195 // The A2 is in-order with a deep pipeline, and concatenation unrolling
196 // helps expose latency-hiding opportunities to the instruction scheduler.
197 UP.Partial = UP.Runtime = true;
Hal Finkel3b3c9c32015-05-21 20:30:23 +0000198
199 // We unroll a lot on the A2 (hundreds of instructions), and the benefits
200 // often outweigh the cost of a division to compute the trip count.
201 UP.AllowExpensiveTripCount = true;
Hal Finkel71780ec2013-09-11 21:20:40 +0000202 }
Hal Finkelb359b732015-01-09 15:51:16 +0000203
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000204 BaseT::getUnrollingPreferences(L, SE, UP);
Hal Finkel71780ec2013-09-11 21:20:40 +0000205}
206
Olivier Sallenave049d8032015-03-06 23:12:04 +0000207bool PPCTTIImpl::enableAggressiveInterleaving(bool LoopHasReductions) {
Hal Finkel75afa2b2015-09-03 23:23:00 +0000208 // On the A2, always unroll aggressively. For QPX unaligned loads, we depend
209 // on combining the loads generated for consecutive accesses, and failure to
210 // do so is particularly expensive. This makes it much more likely (compared
211 // to only using concatenation unrolling).
212 if (ST->getDarwinDirective() == PPC::DIR_A2)
213 return true;
214
Olivier Sallenave049d8032015-03-06 23:12:04 +0000215 return LoopHasReductions;
216}
217
Clement Courbet2807c0a2017-09-25 06:35:16 +0000218bool PPCTTIImpl::enableMemCmpExpansion(unsigned &MaxLoadSize) {
Zaara Syeda3a7578c2017-05-31 17:12:38 +0000219 MaxLoadSize = 8;
220 return true;
221}
222
Hal Finkel4a7be232015-09-04 00:10:41 +0000223bool PPCTTIImpl::enableInterleavedAccessVectorization() {
224 return true;
225}
226
Chandler Carruth705b1852015-01-31 03:43:40 +0000227unsigned PPCTTIImpl::getNumberOfRegisters(bool Vector) {
Hal Finkelc93a9a22015-02-25 01:06:45 +0000228 if (Vector && !ST->hasAltivec() && !ST->hasQPX())
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000229 return 0;
Hal Finkel27774d92014-03-13 07:58:58 +0000230 return ST->hasVSX() ? 64 : 32;
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000231}
232
Daniel Neilsonc0112ae2017-06-12 14:22:21 +0000233unsigned PPCTTIImpl::getRegisterBitWidth(bool Vector) const {
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000234 if (Vector) {
Hal Finkelc93a9a22015-02-25 01:06:45 +0000235 if (ST->hasQPX()) return 256;
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000236 if (ST->hasAltivec()) return 128;
237 return 0;
238 }
239
240 if (ST->isPPC64())
241 return 64;
242 return 32;
243
244}
245
Adam Nemetaf761102016-01-21 18:28:36 +0000246unsigned PPCTTIImpl::getCacheLineSize() {
Sean Fertile457ddd32017-05-31 18:20:17 +0000247 // Check first if the user specified a custom line size.
248 if (CacheLineSize.getNumOccurrences() > 0)
249 return CacheLineSize;
250
251 // On P7, P8 or P9 we have a cache line size of 128.
252 unsigned Directive = ST->getDarwinDirective();
253 if (Directive == PPC::DIR_PWR7 || Directive == PPC::DIR_PWR8 ||
254 Directive == PPC::DIR_PWR9)
255 return 128;
256
257 // On other processors return a default of 64 bytes.
258 return 64;
Adam Nemetaf761102016-01-21 18:28:36 +0000259}
260
Adam Nemetb81f1e02016-03-29 23:45:56 +0000261unsigned PPCTTIImpl::getPrefetchDistance() {
262 // This seems like a reasonable default for the BG/Q (this pass is enabled, by
263 // default, only on the BG/Q).
264 return 300;
265}
Adam Nemetdadfbb52016-01-27 22:21:25 +0000266
Wei Mi062c7442015-05-06 17:12:25 +0000267unsigned PPCTTIImpl::getMaxInterleaveFactor(unsigned VF) {
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000268 unsigned Directive = ST->getDarwinDirective();
269 // The 440 has no SIMD support, but floating-point instructions
270 // have a 5-cycle latency, so unroll by 5x for latency hiding.
271 if (Directive == PPC::DIR_440)
272 return 5;
273
274 // The A2 has no SIMD support, but floating-point instructions
275 // have a 6-cycle latency, so unroll by 6x for latency hiding.
276 if (Directive == PPC::DIR_A2)
277 return 6;
278
279 // FIXME: For lack of any better information, do no harm...
280 if (Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500)
281 return 1;
282
Olivier Sallenave05e69152015-02-12 22:57:58 +0000283 // For P7 and P8, floating-point instructions have a 6-cycle latency and
284 // there are two execution units, so unroll by 12x for latency hiding.
Nemanja Ivanovic6e29baf2016-05-09 18:54:58 +0000285 // FIXME: the same for P9 as previous gen until POWER9 scheduling is ready
286 if (Directive == PPC::DIR_PWR7 || Directive == PPC::DIR_PWR8 ||
287 Directive == PPC::DIR_PWR9)
Olivier Sallenave05e69152015-02-12 22:57:58 +0000288 return 12;
289
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000290 // For most things, modern systems have two execution units (and
291 // out-of-order execution).
292 return 2;
293}
294
Chandler Carruth93205eb2015-08-05 18:08:10 +0000295int PPCTTIImpl::getArithmeticInstrCost(
Chandler Carruth705b1852015-01-31 03:43:40 +0000296 unsigned Opcode, Type *Ty, TTI::OperandValueKind Op1Info,
297 TTI::OperandValueKind Op2Info, TTI::OperandValueProperties Opd1PropInfo,
Mohammed Agabaria2c96c432017-01-11 08:23:37 +0000298 TTI::OperandValueProperties Opd2PropInfo, ArrayRef<const Value *> Args) {
Dmitri Gribenkoc451bdf2013-01-25 23:17:21 +0000299 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode");
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000300
301 // Fallback to the default implementation.
Chandler Carruth705b1852015-01-31 03:43:40 +0000302 return BaseT::getArithmeticInstrCost(Opcode, Ty, Op1Info, Op2Info,
303 Opd1PropInfo, Opd2PropInfo);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000304}
305
Chandler Carruth93205eb2015-08-05 18:08:10 +0000306int PPCTTIImpl::getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index,
307 Type *SubTp) {
Hal Finkel4a7be232015-09-04 00:10:41 +0000308 // Legalize the type.
309 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp);
310
311 // PPC, for both Altivec/VSX and QPX, support cheap arbitrary permutations
312 // (at least in the sense that there need only be one non-loop-invariant
313 // instruction). We need one such shuffle instruction for each actual
314 // register (this is not true for arbitrary shuffles, but is true for the
315 // structured types of shuffles covered by TTI::ShuffleKind).
316 return LT.first;
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000317}
318
Jonas Paulssonfccc7d62017-04-12 11:49:08 +0000319int PPCTTIImpl::getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
320 const Instruction *I) {
Dmitri Gribenkoc451bdf2013-01-25 23:17:21 +0000321 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode");
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000322
Chandler Carruth705b1852015-01-31 03:43:40 +0000323 return BaseT::getCastInstrCost(Opcode, Dst, Src);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000324}
325
Jonas Paulssonfccc7d62017-04-12 11:49:08 +0000326int PPCTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
327 const Instruction *I) {
328 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy, I);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000329}
330
Chandler Carruth93205eb2015-08-05 18:08:10 +0000331int PPCTTIImpl::getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) {
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000332 assert(Val->isVectorTy() && "This must be a vector type");
333
Bill Schmidt62fe7a5b2013-02-08 18:19:17 +0000334 int ISD = TLI->InstructionOpcodeToISD(Opcode);
335 assert(ISD && "Invalid opcode");
Bill Schmidtb3cece12013-02-07 20:33:57 +0000336
Hal Finkel27774d92014-03-13 07:58:58 +0000337 if (ST->hasVSX() && Val->getScalarType()->isDoubleTy()) {
338 // Double-precision scalars are already located in index #0.
339 if (Index == 0)
340 return 0;
341
Chandler Carruth705b1852015-01-31 03:43:40 +0000342 return BaseT::getVectorInstrCost(Opcode, Val, Index);
Hal Finkelc93a9a22015-02-25 01:06:45 +0000343 } else if (ST->hasQPX() && Val->getScalarType()->isFloatingPointTy()) {
344 // Floating point scalars are already located in index #0.
345 if (Index == 0)
346 return 0;
347
348 return BaseT::getVectorInstrCost(Opcode, Val, Index);
Hal Finkel27774d92014-03-13 07:58:58 +0000349 }
350
Bill Schmidt62fe7a5b2013-02-08 18:19:17 +0000351 // Estimated cost of a load-hit-store delay. This was obtained
352 // experimentally as a minimum needed to prevent unprofitable
353 // vectorization for the paq8p benchmark. It may need to be
354 // raised further if other unprofitable cases remain.
Hal Finkelde0b4132014-04-04 23:51:18 +0000355 unsigned LHSPenalty = 2;
356 if (ISD == ISD::INSERT_VECTOR_ELT)
357 LHSPenalty += 7;
Bill Schmidtb3cece12013-02-07 20:33:57 +0000358
Bill Schmidt62fe7a5b2013-02-08 18:19:17 +0000359 // Vector element insert/extract with Altivec is very expensive,
360 // because they require store and reload with the attendant
361 // processor stall for load-hit-store. Until VSX is available,
362 // these need to be estimated as very costly.
363 if (ISD == ISD::EXTRACT_VECTOR_ELT ||
364 ISD == ISD::INSERT_VECTOR_ELT)
Chandler Carruth705b1852015-01-31 03:43:40 +0000365 return LHSPenalty + BaseT::getVectorInstrCost(Opcode, Val, Index);
Bill Schmidtb3cece12013-02-07 20:33:57 +0000366
Chandler Carruth705b1852015-01-31 03:43:40 +0000367 return BaseT::getVectorInstrCost(Opcode, Val, Index);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000368}
369
Chandler Carruth93205eb2015-08-05 18:08:10 +0000370int PPCTTIImpl::getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
Jonas Paulssonfccc7d62017-04-12 11:49:08 +0000371 unsigned AddressSpace, const Instruction *I) {
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000372 // Legalize the type.
Chandler Carruth93205eb2015-08-05 18:08:10 +0000373 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Src);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000374 assert((Opcode == Instruction::Load || Opcode == Instruction::Store) &&
375 "Invalid Opcode");
376
Chandler Carruth93205eb2015-08-05 18:08:10 +0000377 int Cost = BaseT::getMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000378
Hal Finkel79dbf5b2015-09-02 21:03:28 +0000379 bool IsAltivecType = ST->hasAltivec() &&
380 (LT.second == MVT::v16i8 || LT.second == MVT::v8i16 ||
381 LT.second == MVT::v4i32 || LT.second == MVT::v4f32);
382 bool IsVSXType = ST->hasVSX() &&
383 (LT.second == MVT::v2f64 || LT.second == MVT::v2i64);
384 bool IsQPXType = ST->hasQPX() &&
385 (LT.second == MVT::v4f64 || LT.second == MVT::v4f32);
386
Guozhi Wei835de1f2016-12-03 00:41:43 +0000387 // VSX has 32b/64b load instructions. Legalization can handle loading of
388 // 32b/64b to VSR correctly and cheaply. But BaseT::getMemoryOpCost and
389 // PPCTargetLowering can't compute the cost appropriately. So here we
390 // explicitly check this case.
391 unsigned MemBytes = Src->getPrimitiveSizeInBits();
392 if (Opcode == Instruction::Load && ST->hasVSX() && IsAltivecType &&
393 (MemBytes == 64 || (ST->hasP8Vector() && MemBytes == 32)))
394 return 1;
395
396 // Aligned loads and stores are easy.
397 unsigned SrcBytes = LT.second.getStoreSize();
398 if (!SrcBytes || !Alignment || Alignment >= SrcBytes)
399 return Cost;
400
Hal Finkelf11bc762015-09-03 21:23:18 +0000401 // If we can use the permutation-based load sequence, then this is also
402 // relatively cheap (not counting loop-invariant instructions): one load plus
403 // one permute (the last load in a series has extra cost, but we're
Hal Finkel69ada2f2016-03-28 22:39:35 +0000404 // neglecting that here). Note that on the P7, we could do unaligned loads
Hal Finkelf11bc762015-09-03 21:23:18 +0000405 // for Altivec types using the VSX instructions, but that's more expensive
406 // than using the permutation-based load sequence. On the P8, that's no
407 // longer true.
408 if (Opcode == Instruction::Load &&
409 ((!ST->hasP8Vector() && IsAltivecType) || IsQPXType) &&
410 Alignment >= LT.second.getScalarType().getStoreSize())
411 return Cost + LT.first; // Add the cost of the permutations.
412
Hal Finkel79dbf5b2015-09-02 21:03:28 +0000413 // For VSX, we can do unaligned loads and stores on Altivec/VSX types. On the
414 // P7, unaligned vector loads are more expensive than the permutation-based
415 // load sequence, so that might be used instead, but regardless, the net cost
416 // is about the same (not counting loop-invariant instructions).
417 if (IsVSXType || (ST->hasVSX() && IsAltivecType))
418 return Cost;
419
Guozhi Wei7ec2c722017-02-17 22:29:39 +0000420 // Newer PPC supports unaligned memory access.
421 if (TLI->allowsMisalignedMemoryAccesses(LT.second, 0))
422 return Cost;
423
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000424 // PPC in general does not support unaligned loads and stores. They'll need
425 // to be decomposed based on the alignment factor.
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000426
Hal Finkel79dbf5b2015-09-02 21:03:28 +0000427 // Add the cost of each scalar load or store.
428 Cost += LT.first*(SrcBytes/Alignment-1);
429
430 // For a vector type, there is also scalarization overhead (only for
431 // stores, loads are expanded using the vector-load + permutation sequence,
432 // which is much less expensive).
433 if (Src->isVectorTy() && Opcode == Instruction::Store)
434 for (int i = 0, e = Src->getVectorNumElements(); i < e; ++i)
435 Cost += getVectorInstrCost(Instruction::ExtractElement, Src, i);
Hal Finkelde0b4132014-04-04 23:51:18 +0000436
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000437 return Cost;
438}
439
Hal Finkel4a7be232015-09-04 00:10:41 +0000440int PPCTTIImpl::getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy,
441 unsigned Factor,
442 ArrayRef<unsigned> Indices,
443 unsigned Alignment,
444 unsigned AddressSpace) {
445 assert(isa<VectorType>(VecTy) &&
446 "Expect a vector type for interleaved memory op");
447
448 // Legalize the type.
449 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, VecTy);
450
451 // Firstly, the cost of load/store operation.
452 int Cost = getMemoryOpCost(Opcode, VecTy, Alignment, AddressSpace);
453
454 // PPC, for both Altivec/VSX and QPX, support cheap arbitrary permutations
455 // (at least in the sense that there need only be one non-loop-invariant
456 // instruction). For each result vector, we need one shuffle per incoming
457 // vector (except that the first shuffle can take two incoming vectors
458 // because it does not need to take itself).
459 Cost += Factor*(LT.first-1);
460
461 return Cost;
462}
463