blob: f67bacc87ec79dd5dfff1b61c2f26e16721f3f48 [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"
David Blaikieb3bde2e2017-11-17 01:07:10 +000013#include "llvm/CodeGen/CostTable.h"
14#include "llvm/CodeGen/TargetLowering.h"
Hal Finkel0192cba2014-04-13 23:02:40 +000015#include "llvm/Support/CommandLine.h"
Hal Finkel4e5ca9e2013-01-25 23:05:59 +000016#include "llvm/Support/Debug.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
Zaara Syeda1f59ae32018-01-30 16:17:22 +000030static cl::opt<bool>
31EnablePPCColdCC("ppc-enable-coldcc", cl::Hidden, cl::init(false),
32 cl::desc("Enable using coldcc calling conv for cold "
33 "internal functions"));
34
Hal Finkel4e5ca9e2013-01-25 23:05:59 +000035//===----------------------------------------------------------------------===//
36//
37// PPC cost model.
38//
39//===----------------------------------------------------------------------===//
40
Chandler Carruth705b1852015-01-31 03:43:40 +000041TargetTransformInfo::PopcntSupportKind
42PPCTTIImpl::getPopcntSupport(unsigned TyWidth) {
Hal Finkel4e5ca9e2013-01-25 23:05:59 +000043 assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
Hal Finkelfa7057a2016-03-29 01:36:01 +000044 if (ST->hasPOPCNTD() != PPCSubtarget::POPCNTD_Unavailable && TyWidth <= 64)
45 return ST->hasPOPCNTD() == PPCSubtarget::POPCNTD_Slow ?
46 TTI::PSK_SlowHardware : TTI::PSK_FastHardware;
Chandler Carruth705b1852015-01-31 03:43:40 +000047 return TTI::PSK_Software;
Hal Finkel4e5ca9e2013-01-25 23:05:59 +000048}
49
Chandler Carruth93205eb2015-08-05 18:08:10 +000050int PPCTTIImpl::getIntImmCost(const APInt &Imm, Type *Ty) {
Hal Finkel0192cba2014-04-13 23:02:40 +000051 if (DisablePPCConstHoist)
Chandler Carruth705b1852015-01-31 03:43:40 +000052 return BaseT::getIntImmCost(Imm, Ty);
Hal Finkel0192cba2014-04-13 23:02:40 +000053
54 assert(Ty->isIntegerTy());
55
56 unsigned BitSize = Ty->getPrimitiveSizeInBits();
57 if (BitSize == 0)
58 return ~0U;
59
60 if (Imm == 0)
Chandler Carruth705b1852015-01-31 03:43:40 +000061 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +000062
63 if (Imm.getBitWidth() <= 64) {
64 if (isInt<16>(Imm.getSExtValue()))
Chandler Carruth705b1852015-01-31 03:43:40 +000065 return TTI::TCC_Basic;
Hal Finkel0192cba2014-04-13 23:02:40 +000066
67 if (isInt<32>(Imm.getSExtValue())) {
68 // A constant that can be materialized using lis.
69 if ((Imm.getZExtValue() & 0xFFFF) == 0)
Chandler Carruth705b1852015-01-31 03:43:40 +000070 return TTI::TCC_Basic;
Hal Finkel0192cba2014-04-13 23:02:40 +000071
Chandler Carruth705b1852015-01-31 03:43:40 +000072 return 2 * TTI::TCC_Basic;
Hal Finkel0192cba2014-04-13 23:02:40 +000073 }
74 }
75
Chandler Carruth705b1852015-01-31 03:43:40 +000076 return 4 * TTI::TCC_Basic;
Hal Finkel0192cba2014-04-13 23:02:40 +000077}
78
Chandler Carruth93205eb2015-08-05 18:08:10 +000079int PPCTTIImpl::getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
80 Type *Ty) {
Hal Finkel0192cba2014-04-13 23:02:40 +000081 if (DisablePPCConstHoist)
Chandler Carruth705b1852015-01-31 03:43:40 +000082 return BaseT::getIntImmCost(IID, Idx, Imm, Ty);
Hal Finkel0192cba2014-04-13 23:02:40 +000083
84 assert(Ty->isIntegerTy());
85
86 unsigned BitSize = Ty->getPrimitiveSizeInBits();
87 if (BitSize == 0)
88 return ~0U;
89
90 switch (IID) {
Chandler Carruth705b1852015-01-31 03:43:40 +000091 default:
92 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +000093 case Intrinsic::sadd_with_overflow:
94 case Intrinsic::uadd_with_overflow:
95 case Intrinsic::ssub_with_overflow:
96 case Intrinsic::usub_with_overflow:
97 if ((Idx == 1) && Imm.getBitWidth() <= 64 && isInt<16>(Imm.getSExtValue()))
Chandler Carruth705b1852015-01-31 03:43:40 +000098 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +000099 break;
Hal Finkel934361a2015-01-14 01:07:51 +0000100 case Intrinsic::experimental_stackmap:
101 if ((Idx < 2) || (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;
104 case Intrinsic::experimental_patchpoint_void:
105 case Intrinsic::experimental_patchpoint_i64:
106 if ((Idx < 4) || (Imm.getBitWidth() <= 64 && isInt<64>(Imm.getSExtValue())))
Chandler Carruth705b1852015-01-31 03:43:40 +0000107 return TTI::TCC_Free;
Hal Finkel934361a2015-01-14 01:07:51 +0000108 break;
Hal Finkel0192cba2014-04-13 23:02:40 +0000109 }
Chandler Carruth705b1852015-01-31 03:43:40 +0000110 return PPCTTIImpl::getIntImmCost(Imm, Ty);
Hal Finkel0192cba2014-04-13 23:02:40 +0000111}
112
Chandler Carruth93205eb2015-08-05 18:08:10 +0000113int PPCTTIImpl::getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
114 Type *Ty) {
Hal Finkel0192cba2014-04-13 23:02:40 +0000115 if (DisablePPCConstHoist)
Chandler Carruth705b1852015-01-31 03:43:40 +0000116 return BaseT::getIntImmCost(Opcode, Idx, Imm, Ty);
Hal Finkel0192cba2014-04-13 23:02:40 +0000117
118 assert(Ty->isIntegerTy());
119
120 unsigned BitSize = Ty->getPrimitiveSizeInBits();
121 if (BitSize == 0)
122 return ~0U;
123
124 unsigned ImmIdx = ~0U;
125 bool ShiftedFree = false, RunFree = false, UnsignedFree = false,
126 ZeroFree = false;
127 switch (Opcode) {
Chandler Carruth705b1852015-01-31 03:43:40 +0000128 default:
129 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000130 case Instruction::GetElementPtr:
131 // Always hoist the base address of a GetElementPtr. This prevents the
132 // creation of new constants for every base constant that gets constant
133 // folded with the offset.
134 if (Idx == 0)
Chandler Carruth705b1852015-01-31 03:43:40 +0000135 return 2 * TTI::TCC_Basic;
136 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000137 case Instruction::And:
138 RunFree = true; // (for the rotate-and-mask instructions)
Justin Bognerb03fd122016-08-17 05:10:15 +0000139 LLVM_FALLTHROUGH;
Hal Finkel0192cba2014-04-13 23:02:40 +0000140 case Instruction::Add:
141 case Instruction::Or:
142 case Instruction::Xor:
143 ShiftedFree = true;
Justin Bognerb03fd122016-08-17 05:10:15 +0000144 LLVM_FALLTHROUGH;
Hal Finkel0192cba2014-04-13 23:02:40 +0000145 case Instruction::Sub:
146 case Instruction::Mul:
147 case Instruction::Shl:
148 case Instruction::LShr:
149 case Instruction::AShr:
150 ImmIdx = 1;
151 break;
152 case Instruction::ICmp:
153 UnsignedFree = true;
154 ImmIdx = 1;
Justin Bognerb03fd122016-08-17 05:10:15 +0000155 // Zero comparisons can use record-form instructions.
156 LLVM_FALLTHROUGH;
Hal Finkel0192cba2014-04-13 23:02:40 +0000157 case Instruction::Select:
158 ZeroFree = true;
159 break;
160 case Instruction::PHI:
161 case Instruction::Call:
162 case Instruction::Ret:
163 case Instruction::Load:
164 case Instruction::Store:
165 break;
166 }
167
168 if (ZeroFree && Imm == 0)
Chandler Carruth705b1852015-01-31 03:43:40 +0000169 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000170
171 if (Idx == ImmIdx && Imm.getBitWidth() <= 64) {
172 if (isInt<16>(Imm.getSExtValue()))
Chandler Carruth705b1852015-01-31 03:43:40 +0000173 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000174
175 if (RunFree) {
176 if (Imm.getBitWidth() <= 32 &&
177 (isShiftedMask_32(Imm.getZExtValue()) ||
178 isShiftedMask_32(~Imm.getZExtValue())))
Chandler Carruth705b1852015-01-31 03:43:40 +0000179 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000180
181 if (ST->isPPC64() &&
182 (isShiftedMask_64(Imm.getZExtValue()) ||
183 isShiftedMask_64(~Imm.getZExtValue())))
Chandler Carruth705b1852015-01-31 03:43:40 +0000184 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000185 }
186
187 if (UnsignedFree && isUInt<16>(Imm.getZExtValue()))
Chandler Carruth705b1852015-01-31 03:43:40 +0000188 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000189
190 if (ShiftedFree && (Imm.getZExtValue() & 0xFFFF) == 0)
Chandler Carruth705b1852015-01-31 03:43:40 +0000191 return TTI::TCC_Free;
Hal Finkel0192cba2014-04-13 23:02:40 +0000192 }
193
Chandler Carruth705b1852015-01-31 03:43:40 +0000194 return PPCTTIImpl::getIntImmCost(Imm, Ty);
Hal Finkel0192cba2014-04-13 23:02:40 +0000195}
196
Graham Yiu488782e2017-10-19 18:16:31 +0000197unsigned PPCTTIImpl::getUserCost(const User *U,
198 ArrayRef<const Value *> Operands) {
199 if (U->getType()->isVectorTy()) {
200 // Instructions that need to be split should cost more.
201 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, U->getType());
202 return LT.first * BaseT::getUserCost(U, Operands);
203 }
Fangrui Songf78650a2018-07-30 19:41:25 +0000204
Graham Yiu488782e2017-10-19 18:16:31 +0000205 return BaseT::getUserCost(U, Operands);
206}
207
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000208void PPCTTIImpl::getUnrollingPreferences(Loop *L, ScalarEvolution &SE,
Chandler Carruth705b1852015-01-31 03:43:40 +0000209 TTI::UnrollingPreferences &UP) {
Chandler Carruthc956ab662015-02-01 14:22:17 +0000210 if (ST->getDarwinDirective() == PPC::DIR_A2) {
Hal Finkel71780ec2013-09-11 21:20:40 +0000211 // The A2 is in-order with a deep pipeline, and concatenation unrolling
212 // helps expose latency-hiding opportunities to the instruction scheduler.
213 UP.Partial = UP.Runtime = true;
Hal Finkel3b3c9c32015-05-21 20:30:23 +0000214
215 // We unroll a lot on the A2 (hundreds of instructions), and the benefits
216 // often outweigh the cost of a division to compute the trip count.
217 UP.AllowExpensiveTripCount = true;
Hal Finkel71780ec2013-09-11 21:20:40 +0000218 }
Hal Finkelb359b732015-01-09 15:51:16 +0000219
Geoff Berry66d9bdb2017-06-28 15:53:17 +0000220 BaseT::getUnrollingPreferences(L, SE, UP);
Hal Finkel71780ec2013-09-11 21:20:40 +0000221}
222
Zaara Syeda1f59ae32018-01-30 16:17:22 +0000223// This function returns true to allow using coldcc calling convention.
224// Returning true results in coldcc being used for functions which are cold at
225// all call sites when the callers of the functions are not calling any other
226// non coldcc functions.
227bool PPCTTIImpl::useColdCCForColdCall(Function &F) {
228 return EnablePPCColdCC;
229}
230
Olivier Sallenave049d8032015-03-06 23:12:04 +0000231bool PPCTTIImpl::enableAggressiveInterleaving(bool LoopHasReductions) {
Hal Finkel75afa2b2015-09-03 23:23:00 +0000232 // On the A2, always unroll aggressively. For QPX unaligned loads, we depend
233 // on combining the loads generated for consecutive accesses, and failure to
234 // do so is particularly expensive. This makes it much more likely (compared
235 // to only using concatenation unrolling).
236 if (ST->getDarwinDirective() == PPC::DIR_A2)
237 return true;
238
Olivier Sallenave049d8032015-03-06 23:12:04 +0000239 return LoopHasReductions;
240}
241
Clement Courbetb2c3eb82017-10-30 14:19:33 +0000242const PPCTTIImpl::TTI::MemCmpExpansionOptions *
243PPCTTIImpl::enableMemCmpExpansion(bool IsZeroCmp) const {
244 static const auto Options = []() {
245 TTI::MemCmpExpansionOptions Options;
246 Options.LoadSizes.push_back(8);
247 Options.LoadSizes.push_back(4);
248 Options.LoadSizes.push_back(2);
249 Options.LoadSizes.push_back(1);
250 return Options;
251 }();
252 return &Options;
Zaara Syeda3a7578c2017-05-31 17:12:38 +0000253}
254
Hal Finkel4a7be232015-09-04 00:10:41 +0000255bool PPCTTIImpl::enableInterleavedAccessVectorization() {
256 return true;
257}
258
Chandler Carruth705b1852015-01-31 03:43:40 +0000259unsigned PPCTTIImpl::getNumberOfRegisters(bool Vector) {
Hal Finkelc93a9a22015-02-25 01:06:45 +0000260 if (Vector && !ST->hasAltivec() && !ST->hasQPX())
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000261 return 0;
Hal Finkel27774d92014-03-13 07:58:58 +0000262 return ST->hasVSX() ? 64 : 32;
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000263}
264
Daniel Neilsonc0112ae2017-06-12 14:22:21 +0000265unsigned PPCTTIImpl::getRegisterBitWidth(bool Vector) const {
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000266 if (Vector) {
Hal Finkelc93a9a22015-02-25 01:06:45 +0000267 if (ST->hasQPX()) return 256;
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000268 if (ST->hasAltivec()) return 128;
269 return 0;
270 }
271
272 if (ST->isPPC64())
273 return 64;
274 return 32;
275
276}
277
Adam Nemetaf761102016-01-21 18:28:36 +0000278unsigned PPCTTIImpl::getCacheLineSize() {
Sean Fertile457ddd32017-05-31 18:20:17 +0000279 // Check first if the user specified a custom line size.
280 if (CacheLineSize.getNumOccurrences() > 0)
281 return CacheLineSize;
282
283 // On P7, P8 or P9 we have a cache line size of 128.
284 unsigned Directive = ST->getDarwinDirective();
285 if (Directive == PPC::DIR_PWR7 || Directive == PPC::DIR_PWR8 ||
286 Directive == PPC::DIR_PWR9)
287 return 128;
288
289 // On other processors return a default of 64 bytes.
290 return 64;
Adam Nemetaf761102016-01-21 18:28:36 +0000291}
292
Adam Nemetb81f1e02016-03-29 23:45:56 +0000293unsigned PPCTTIImpl::getPrefetchDistance() {
294 // This seems like a reasonable default for the BG/Q (this pass is enabled, by
295 // default, only on the BG/Q).
296 return 300;
297}
Adam Nemetdadfbb52016-01-27 22:21:25 +0000298
Wei Mi062c7442015-05-06 17:12:25 +0000299unsigned PPCTTIImpl::getMaxInterleaveFactor(unsigned VF) {
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000300 unsigned Directive = ST->getDarwinDirective();
301 // The 440 has no SIMD support, but floating-point instructions
302 // have a 5-cycle latency, so unroll by 5x for latency hiding.
303 if (Directive == PPC::DIR_440)
304 return 5;
305
306 // The A2 has no SIMD support, but floating-point instructions
307 // have a 6-cycle latency, so unroll by 6x for latency hiding.
308 if (Directive == PPC::DIR_A2)
309 return 6;
310
311 // FIXME: For lack of any better information, do no harm...
312 if (Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500)
313 return 1;
314
Olivier Sallenave05e69152015-02-12 22:57:58 +0000315 // For P7 and P8, floating-point instructions have a 6-cycle latency and
316 // there are two execution units, so unroll by 12x for latency hiding.
Nemanja Ivanovic6e29baf2016-05-09 18:54:58 +0000317 // FIXME: the same for P9 as previous gen until POWER9 scheduling is ready
318 if (Directive == PPC::DIR_PWR7 || Directive == PPC::DIR_PWR8 ||
319 Directive == PPC::DIR_PWR9)
Olivier Sallenave05e69152015-02-12 22:57:58 +0000320 return 12;
321
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000322 // For most things, modern systems have two execution units (and
323 // out-of-order execution).
324 return 2;
325}
326
Chandler Carruth93205eb2015-08-05 18:08:10 +0000327int PPCTTIImpl::getArithmeticInstrCost(
Chandler Carruth705b1852015-01-31 03:43:40 +0000328 unsigned Opcode, Type *Ty, TTI::OperandValueKind Op1Info,
329 TTI::OperandValueKind Op2Info, TTI::OperandValueProperties Opd1PropInfo,
Mohammed Agabaria2c96c432017-01-11 08:23:37 +0000330 TTI::OperandValueProperties Opd2PropInfo, ArrayRef<const Value *> Args) {
Dmitri Gribenkoc451bdf2013-01-25 23:17:21 +0000331 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode");
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000332
333 // Fallback to the default implementation.
Chandler Carruth705b1852015-01-31 03:43:40 +0000334 return BaseT::getArithmeticInstrCost(Opcode, Ty, Op1Info, Op2Info,
335 Opd1PropInfo, Opd2PropInfo);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000336}
337
Chandler Carruth93205eb2015-08-05 18:08:10 +0000338int PPCTTIImpl::getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index,
339 Type *SubTp) {
Hal Finkel4a7be232015-09-04 00:10:41 +0000340 // Legalize the type.
341 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp);
342
343 // PPC, for both Altivec/VSX and QPX, support cheap arbitrary permutations
344 // (at least in the sense that there need only be one non-loop-invariant
345 // instruction). We need one such shuffle instruction for each actual
346 // register (this is not true for arbitrary shuffles, but is true for the
347 // structured types of shuffles covered by TTI::ShuffleKind).
348 return LT.first;
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000349}
350
Jonas Paulssonfccc7d62017-04-12 11:49:08 +0000351int PPCTTIImpl::getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
352 const Instruction *I) {
Dmitri Gribenkoc451bdf2013-01-25 23:17:21 +0000353 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode");
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000354
Chandler Carruth705b1852015-01-31 03:43:40 +0000355 return BaseT::getCastInstrCost(Opcode, Dst, Src);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000356}
357
Jonas Paulssonfccc7d62017-04-12 11:49:08 +0000358int PPCTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
359 const Instruction *I) {
360 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy, I);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000361}
362
Chandler Carruth93205eb2015-08-05 18:08:10 +0000363int PPCTTIImpl::getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) {
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000364 assert(Val->isVectorTy() && "This must be a vector type");
365
Bill Schmidt62fe7a5b2013-02-08 18:19:17 +0000366 int ISD = TLI->InstructionOpcodeToISD(Opcode);
367 assert(ISD && "Invalid opcode");
Bill Schmidtb3cece12013-02-07 20:33:57 +0000368
Hal Finkel27774d92014-03-13 07:58:58 +0000369 if (ST->hasVSX() && Val->getScalarType()->isDoubleTy()) {
370 // Double-precision scalars are already located in index #0.
371 if (Index == 0)
372 return 0;
373
Chandler Carruth705b1852015-01-31 03:43:40 +0000374 return BaseT::getVectorInstrCost(Opcode, Val, Index);
Hal Finkelc93a9a22015-02-25 01:06:45 +0000375 } else if (ST->hasQPX() && Val->getScalarType()->isFloatingPointTy()) {
376 // Floating point scalars are already located in index #0.
377 if (Index == 0)
378 return 0;
379
380 return BaseT::getVectorInstrCost(Opcode, Val, Index);
Hal Finkel27774d92014-03-13 07:58:58 +0000381 }
382
Bill Schmidt62fe7a5b2013-02-08 18:19:17 +0000383 // Estimated cost of a load-hit-store delay. This was obtained
384 // experimentally as a minimum needed to prevent unprofitable
385 // vectorization for the paq8p benchmark. It may need to be
386 // raised further if other unprofitable cases remain.
Hal Finkelde0b4132014-04-04 23:51:18 +0000387 unsigned LHSPenalty = 2;
388 if (ISD == ISD::INSERT_VECTOR_ELT)
389 LHSPenalty += 7;
Bill Schmidtb3cece12013-02-07 20:33:57 +0000390
Bill Schmidt62fe7a5b2013-02-08 18:19:17 +0000391 // Vector element insert/extract with Altivec is very expensive,
392 // because they require store and reload with the attendant
393 // processor stall for load-hit-store. Until VSX is available,
394 // these need to be estimated as very costly.
395 if (ISD == ISD::EXTRACT_VECTOR_ELT ||
396 ISD == ISD::INSERT_VECTOR_ELT)
Chandler Carruth705b1852015-01-31 03:43:40 +0000397 return LHSPenalty + BaseT::getVectorInstrCost(Opcode, Val, Index);
Bill Schmidtb3cece12013-02-07 20:33:57 +0000398
Chandler Carruth705b1852015-01-31 03:43:40 +0000399 return BaseT::getVectorInstrCost(Opcode, Val, Index);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000400}
401
Chandler Carruth93205eb2015-08-05 18:08:10 +0000402int PPCTTIImpl::getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
Jonas Paulssonfccc7d62017-04-12 11:49:08 +0000403 unsigned AddressSpace, const Instruction *I) {
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000404 // Legalize the type.
Chandler Carruth93205eb2015-08-05 18:08:10 +0000405 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Src);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000406 assert((Opcode == Instruction::Load || Opcode == Instruction::Store) &&
407 "Invalid Opcode");
408
Chandler Carruth93205eb2015-08-05 18:08:10 +0000409 int Cost = BaseT::getMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000410
Hal Finkel79dbf5b2015-09-02 21:03:28 +0000411 bool IsAltivecType = ST->hasAltivec() &&
412 (LT.second == MVT::v16i8 || LT.second == MVT::v8i16 ||
413 LT.second == MVT::v4i32 || LT.second == MVT::v4f32);
414 bool IsVSXType = ST->hasVSX() &&
415 (LT.second == MVT::v2f64 || LT.second == MVT::v2i64);
416 bool IsQPXType = ST->hasQPX() &&
417 (LT.second == MVT::v4f64 || LT.second == MVT::v4f32);
418
Guozhi Wei835de1f2016-12-03 00:41:43 +0000419 // VSX has 32b/64b load instructions. Legalization can handle loading of
420 // 32b/64b to VSR correctly and cheaply. But BaseT::getMemoryOpCost and
421 // PPCTargetLowering can't compute the cost appropriately. So here we
422 // explicitly check this case.
423 unsigned MemBytes = Src->getPrimitiveSizeInBits();
424 if (Opcode == Instruction::Load && ST->hasVSX() && IsAltivecType &&
425 (MemBytes == 64 || (ST->hasP8Vector() && MemBytes == 32)))
426 return 1;
427
428 // Aligned loads and stores are easy.
429 unsigned SrcBytes = LT.second.getStoreSize();
430 if (!SrcBytes || !Alignment || Alignment >= SrcBytes)
431 return Cost;
432
Hal Finkelf11bc762015-09-03 21:23:18 +0000433 // If we can use the permutation-based load sequence, then this is also
434 // relatively cheap (not counting loop-invariant instructions): one load plus
435 // one permute (the last load in a series has extra cost, but we're
Hal Finkel69ada2f2016-03-28 22:39:35 +0000436 // neglecting that here). Note that on the P7, we could do unaligned loads
Hal Finkelf11bc762015-09-03 21:23:18 +0000437 // for Altivec types using the VSX instructions, but that's more expensive
438 // than using the permutation-based load sequence. On the P8, that's no
439 // longer true.
440 if (Opcode == Instruction::Load &&
441 ((!ST->hasP8Vector() && IsAltivecType) || IsQPXType) &&
442 Alignment >= LT.second.getScalarType().getStoreSize())
443 return Cost + LT.first; // Add the cost of the permutations.
444
Hal Finkel79dbf5b2015-09-02 21:03:28 +0000445 // For VSX, we can do unaligned loads and stores on Altivec/VSX types. On the
446 // P7, unaligned vector loads are more expensive than the permutation-based
447 // load sequence, so that might be used instead, but regardless, the net cost
448 // is about the same (not counting loop-invariant instructions).
449 if (IsVSXType || (ST->hasVSX() && IsAltivecType))
450 return Cost;
451
Guozhi Wei7ec2c722017-02-17 22:29:39 +0000452 // Newer PPC supports unaligned memory access.
453 if (TLI->allowsMisalignedMemoryAccesses(LT.second, 0))
454 return Cost;
455
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000456 // PPC in general does not support unaligned loads and stores. They'll need
457 // to be decomposed based on the alignment factor.
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000458
Hal Finkel79dbf5b2015-09-02 21:03:28 +0000459 // Add the cost of each scalar load or store.
460 Cost += LT.first*(SrcBytes/Alignment-1);
461
462 // For a vector type, there is also scalarization overhead (only for
463 // stores, loads are expanded using the vector-load + permutation sequence,
464 // which is much less expensive).
465 if (Src->isVectorTy() && Opcode == Instruction::Store)
466 for (int i = 0, e = Src->getVectorNumElements(); i < e; ++i)
467 Cost += getVectorInstrCost(Instruction::ExtractElement, Src, i);
Hal Finkelde0b4132014-04-04 23:51:18 +0000468
Hal Finkel4e5ca9e2013-01-25 23:05:59 +0000469 return Cost;
470}
471
Hal Finkel4a7be232015-09-04 00:10:41 +0000472int PPCTTIImpl::getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy,
473 unsigned Factor,
474 ArrayRef<unsigned> Indices,
475 unsigned Alignment,
Dorit Nuzman38bbf812018-10-14 08:50:06 +0000476 unsigned AddressSpace,
477 bool IsMasked) {
478 if (IsMasked)
479 return BaseT::getInterleavedMemoryOpCost(Opcode, VecTy, Factor, Indices,
480 Alignment, AddressSpace, IsMasked);
481
Hal Finkel4a7be232015-09-04 00:10:41 +0000482 assert(isa<VectorType>(VecTy) &&
483 "Expect a vector type for interleaved memory op");
484
485 // Legalize the type.
486 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, VecTy);
487
488 // Firstly, the cost of load/store operation.
489 int Cost = getMemoryOpCost(Opcode, VecTy, Alignment, AddressSpace);
490
491 // PPC, for both Altivec/VSX and QPX, support cheap arbitrary permutations
492 // (at least in the sense that there need only be one non-loop-invariant
493 // instruction). For each result vector, we need one shuffle per incoming
494 // vector (except that the first shuffle can take two incoming vectors
495 // because it does not need to take itself).
496 Cost += Factor*(LT.first-1);
497
498 return Cost;
499}
500