1 //===-- PPCTargetTransformInfo.cpp - PPC specific TTI ---------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 #include "PPCTargetTransformInfo.h"
10 #include "llvm/Analysis/CodeMetrics.h"
11 #include "llvm/Analysis/TargetLibraryInfo.h"
12 #include "llvm/Analysis/TargetTransformInfo.h"
13 #include "llvm/CodeGen/BasicTTIImpl.h"
14 #include "llvm/CodeGen/CostTable.h"
15 #include "llvm/CodeGen/TargetLowering.h"
16 #include "llvm/CodeGen/TargetSchedule.h"
17 #include "llvm/IR/IntrinsicsPowerPC.h"
18 #include "llvm/IR/ProfDataUtils.h"
19 #include "llvm/Support/CommandLine.h"
20 #include "llvm/Support/Debug.h"
21 #include "llvm/Transforms/InstCombine/InstCombiner.h"
22 #include "llvm/Transforms/Utils/Local.h"
23 #include <optional>
24
25 using namespace llvm;
26
27 #define DEBUG_TYPE "ppctti"
28
29 static cl::opt<bool> VecMaskCost("ppc-vec-mask-cost",
30 cl::desc("add masking cost for i1 vectors"), cl::init(true), cl::Hidden);
31
32 static cl::opt<bool> DisablePPCConstHoist("disable-ppc-constant-hoisting",
33 cl::desc("disable constant hoisting on PPC"), cl::init(false), cl::Hidden);
34
35 static cl::opt<bool>
36 EnablePPCColdCC("ppc-enable-coldcc", cl::Hidden, cl::init(false),
37 cl::desc("Enable using coldcc calling conv for cold "
38 "internal functions"));
39
40 static cl::opt<bool>
41 LsrNoInsnsCost("ppc-lsr-no-insns-cost", cl::Hidden, cl::init(false),
42 cl::desc("Do not add instruction count to lsr cost model"));
43
44 // The latency of mtctr is only justified if there are more than 4
45 // comparisons that will be removed as a result.
46 static cl::opt<unsigned>
47 SmallCTRLoopThreshold("min-ctr-loop-threshold", cl::init(4), cl::Hidden,
48 cl::desc("Loops with a constant trip count smaller than "
49 "this value will not use the count register."));
50
51 //===----------------------------------------------------------------------===//
52 //
53 // PPC cost model.
54 //
55 //===----------------------------------------------------------------------===//
56
57 TargetTransformInfo::PopcntSupportKind
getPopcntSupport(unsigned TyWidth)58 PPCTTIImpl::getPopcntSupport(unsigned TyWidth) {
59 assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
60 if (ST->hasPOPCNTD() != PPCSubtarget::POPCNTD_Unavailable && TyWidth <= 64)
61 return ST->hasPOPCNTD() == PPCSubtarget::POPCNTD_Slow ?
62 TTI::PSK_SlowHardware : TTI::PSK_FastHardware;
63 return TTI::PSK_Software;
64 }
65
66 std::optional<Instruction *>
instCombineIntrinsic(InstCombiner & IC,IntrinsicInst & II) const67 PPCTTIImpl::instCombineIntrinsic(InstCombiner &IC, IntrinsicInst &II) const {
68 Intrinsic::ID IID = II.getIntrinsicID();
69 switch (IID) {
70 default:
71 break;
72 case Intrinsic::ppc_altivec_lvx:
73 case Intrinsic::ppc_altivec_lvxl:
74 // Turn PPC lvx -> load if the pointer is known aligned.
75 if (getOrEnforceKnownAlignment(
76 II.getArgOperand(0), Align(16), IC.getDataLayout(), &II,
77 &IC.getAssumptionCache(), &IC.getDominatorTree()) >= 16) {
78 Value *Ptr = II.getArgOperand(0);
79 return new LoadInst(II.getType(), Ptr, "", false, Align(16));
80 }
81 break;
82 case Intrinsic::ppc_vsx_lxvw4x:
83 case Intrinsic::ppc_vsx_lxvd2x: {
84 // Turn PPC VSX loads into normal loads.
85 Value *Ptr = II.getArgOperand(0);
86 return new LoadInst(II.getType(), Ptr, Twine(""), false, Align(1));
87 }
88 case Intrinsic::ppc_altivec_stvx:
89 case Intrinsic::ppc_altivec_stvxl:
90 // Turn stvx -> store if the pointer is known aligned.
91 if (getOrEnforceKnownAlignment(
92 II.getArgOperand(1), Align(16), IC.getDataLayout(), &II,
93 &IC.getAssumptionCache(), &IC.getDominatorTree()) >= 16) {
94 Value *Ptr = II.getArgOperand(1);
95 return new StoreInst(II.getArgOperand(0), Ptr, false, Align(16));
96 }
97 break;
98 case Intrinsic::ppc_vsx_stxvw4x:
99 case Intrinsic::ppc_vsx_stxvd2x: {
100 // Turn PPC VSX stores into normal stores.
101 Value *Ptr = II.getArgOperand(1);
102 return new StoreInst(II.getArgOperand(0), Ptr, false, Align(1));
103 }
104 case Intrinsic::ppc_altivec_vperm:
105 // Turn vperm(V1,V2,mask) -> shuffle(V1,V2,mask) if mask is a constant.
106 // Note that ppc_altivec_vperm has a big-endian bias, so when creating
107 // a vectorshuffle for little endian, we must undo the transformation
108 // performed on vec_perm in altivec.h. That is, we must complement
109 // the permutation mask with respect to 31 and reverse the order of
110 // V1 and V2.
111 if (Constant *Mask = dyn_cast<Constant>(II.getArgOperand(2))) {
112 assert(cast<FixedVectorType>(Mask->getType())->getNumElements() == 16 &&
113 "Bad type for intrinsic!");
114
115 // Check that all of the elements are integer constants or undefs.
116 bool AllEltsOk = true;
117 for (unsigned i = 0; i != 16; ++i) {
118 Constant *Elt = Mask->getAggregateElement(i);
119 if (!Elt || !(isa<ConstantInt>(Elt) || isa<UndefValue>(Elt))) {
120 AllEltsOk = false;
121 break;
122 }
123 }
124
125 if (AllEltsOk) {
126 // Cast the input vectors to byte vectors.
127 Value *Op0 =
128 IC.Builder.CreateBitCast(II.getArgOperand(0), Mask->getType());
129 Value *Op1 =
130 IC.Builder.CreateBitCast(II.getArgOperand(1), Mask->getType());
131 Value *Result = UndefValue::get(Op0->getType());
132
133 // Only extract each element once.
134 Value *ExtractedElts[32];
135 memset(ExtractedElts, 0, sizeof(ExtractedElts));
136
137 for (unsigned i = 0; i != 16; ++i) {
138 if (isa<UndefValue>(Mask->getAggregateElement(i)))
139 continue;
140 unsigned Idx =
141 cast<ConstantInt>(Mask->getAggregateElement(i))->getZExtValue();
142 Idx &= 31; // Match the hardware behavior.
143 if (DL.isLittleEndian())
144 Idx = 31 - Idx;
145
146 if (!ExtractedElts[Idx]) {
147 Value *Op0ToUse = (DL.isLittleEndian()) ? Op1 : Op0;
148 Value *Op1ToUse = (DL.isLittleEndian()) ? Op0 : Op1;
149 ExtractedElts[Idx] = IC.Builder.CreateExtractElement(
150 Idx < 16 ? Op0ToUse : Op1ToUse, IC.Builder.getInt32(Idx & 15));
151 }
152
153 // Insert this value into the result vector.
154 Result = IC.Builder.CreateInsertElement(Result, ExtractedElts[Idx],
155 IC.Builder.getInt32(i));
156 }
157 return CastInst::Create(Instruction::BitCast, Result, II.getType());
158 }
159 }
160 break;
161 }
162 return std::nullopt;
163 }
164
getIntImmCost(const APInt & Imm,Type * Ty,TTI::TargetCostKind CostKind)165 InstructionCost PPCTTIImpl::getIntImmCost(const APInt &Imm, Type *Ty,
166 TTI::TargetCostKind CostKind) {
167 if (DisablePPCConstHoist)
168 return BaseT::getIntImmCost(Imm, Ty, CostKind);
169
170 assert(Ty->isIntegerTy());
171
172 unsigned BitSize = Ty->getPrimitiveSizeInBits();
173 if (BitSize == 0)
174 return ~0U;
175
176 if (Imm == 0)
177 return TTI::TCC_Free;
178
179 if (Imm.getBitWidth() <= 64) {
180 if (isInt<16>(Imm.getSExtValue()))
181 return TTI::TCC_Basic;
182
183 if (isInt<32>(Imm.getSExtValue())) {
184 // A constant that can be materialized using lis.
185 if ((Imm.getZExtValue() & 0xFFFF) == 0)
186 return TTI::TCC_Basic;
187
188 return 2 * TTI::TCC_Basic;
189 }
190 }
191
192 return 4 * TTI::TCC_Basic;
193 }
194
getIntImmCostIntrin(Intrinsic::ID IID,unsigned Idx,const APInt & Imm,Type * Ty,TTI::TargetCostKind CostKind)195 InstructionCost PPCTTIImpl::getIntImmCostIntrin(Intrinsic::ID IID, unsigned Idx,
196 const APInt &Imm, Type *Ty,
197 TTI::TargetCostKind CostKind) {
198 if (DisablePPCConstHoist)
199 return BaseT::getIntImmCostIntrin(IID, Idx, Imm, Ty, CostKind);
200
201 assert(Ty->isIntegerTy());
202
203 unsigned BitSize = Ty->getPrimitiveSizeInBits();
204 if (BitSize == 0)
205 return ~0U;
206
207 switch (IID) {
208 default:
209 return TTI::TCC_Free;
210 case Intrinsic::sadd_with_overflow:
211 case Intrinsic::uadd_with_overflow:
212 case Intrinsic::ssub_with_overflow:
213 case Intrinsic::usub_with_overflow:
214 if ((Idx == 1) && Imm.getBitWidth() <= 64 && isInt<16>(Imm.getSExtValue()))
215 return TTI::TCC_Free;
216 break;
217 case Intrinsic::experimental_stackmap:
218 if ((Idx < 2) || (Imm.getBitWidth() <= 64 && isInt<64>(Imm.getSExtValue())))
219 return TTI::TCC_Free;
220 break;
221 case Intrinsic::experimental_patchpoint_void:
222 case Intrinsic::experimental_patchpoint_i64:
223 if ((Idx < 4) || (Imm.getBitWidth() <= 64 && isInt<64>(Imm.getSExtValue())))
224 return TTI::TCC_Free;
225 break;
226 }
227 return PPCTTIImpl::getIntImmCost(Imm, Ty, CostKind);
228 }
229
getIntImmCostInst(unsigned Opcode,unsigned Idx,const APInt & Imm,Type * Ty,TTI::TargetCostKind CostKind,Instruction * Inst)230 InstructionCost PPCTTIImpl::getIntImmCostInst(unsigned Opcode, unsigned Idx,
231 const APInt &Imm, Type *Ty,
232 TTI::TargetCostKind CostKind,
233 Instruction *Inst) {
234 if (DisablePPCConstHoist)
235 return BaseT::getIntImmCostInst(Opcode, Idx, Imm, Ty, CostKind, Inst);
236
237 assert(Ty->isIntegerTy());
238
239 unsigned BitSize = Ty->getPrimitiveSizeInBits();
240 if (BitSize == 0)
241 return ~0U;
242
243 unsigned ImmIdx = ~0U;
244 bool ShiftedFree = false, RunFree = false, UnsignedFree = false,
245 ZeroFree = false;
246 switch (Opcode) {
247 default:
248 return TTI::TCC_Free;
249 case Instruction::GetElementPtr:
250 // Always hoist the base address of a GetElementPtr. This prevents the
251 // creation of new constants for every base constant that gets constant
252 // folded with the offset.
253 if (Idx == 0)
254 return 2 * TTI::TCC_Basic;
255 return TTI::TCC_Free;
256 case Instruction::And:
257 RunFree = true; // (for the rotate-and-mask instructions)
258 [[fallthrough]];
259 case Instruction::Add:
260 case Instruction::Or:
261 case Instruction::Xor:
262 ShiftedFree = true;
263 [[fallthrough]];
264 case Instruction::Sub:
265 case Instruction::Mul:
266 case Instruction::Shl:
267 case Instruction::LShr:
268 case Instruction::AShr:
269 ImmIdx = 1;
270 break;
271 case Instruction::ICmp:
272 UnsignedFree = true;
273 ImmIdx = 1;
274 // Zero comparisons can use record-form instructions.
275 [[fallthrough]];
276 case Instruction::Select:
277 ZeroFree = true;
278 break;
279 case Instruction::PHI:
280 case Instruction::Call:
281 case Instruction::Ret:
282 case Instruction::Load:
283 case Instruction::Store:
284 break;
285 }
286
287 if (ZeroFree && Imm == 0)
288 return TTI::TCC_Free;
289
290 if (Idx == ImmIdx && Imm.getBitWidth() <= 64) {
291 if (isInt<16>(Imm.getSExtValue()))
292 return TTI::TCC_Free;
293
294 if (RunFree) {
295 if (Imm.getBitWidth() <= 32 &&
296 (isShiftedMask_32(Imm.getZExtValue()) ||
297 isShiftedMask_32(~Imm.getZExtValue())))
298 return TTI::TCC_Free;
299
300 if (ST->isPPC64() &&
301 (isShiftedMask_64(Imm.getZExtValue()) ||
302 isShiftedMask_64(~Imm.getZExtValue())))
303 return TTI::TCC_Free;
304 }
305
306 if (UnsignedFree && isUInt<16>(Imm.getZExtValue()))
307 return TTI::TCC_Free;
308
309 if (ShiftedFree && (Imm.getZExtValue() & 0xFFFF) == 0)
310 return TTI::TCC_Free;
311 }
312
313 return PPCTTIImpl::getIntImmCost(Imm, Ty, CostKind);
314 }
315
316 // Check if the current Type is an MMA vector type. Valid MMA types are
317 // v256i1 and v512i1 respectively.
isMMAType(Type * Ty)318 static bool isMMAType(Type *Ty) {
319 return Ty->isVectorTy() && (Ty->getScalarSizeInBits() == 1) &&
320 (Ty->getPrimitiveSizeInBits() > 128);
321 }
322
getInstructionCost(const User * U,ArrayRef<const Value * > Operands,TTI::TargetCostKind CostKind)323 InstructionCost PPCTTIImpl::getInstructionCost(const User *U,
324 ArrayRef<const Value *> Operands,
325 TTI::TargetCostKind CostKind) {
326 // We already implement getCastInstrCost and getMemoryOpCost where we perform
327 // the vector adjustment there.
328 if (isa<CastInst>(U) || isa<LoadInst>(U) || isa<StoreInst>(U))
329 return BaseT::getInstructionCost(U, Operands, CostKind);
330
331 if (U->getType()->isVectorTy()) {
332 // Instructions that need to be split should cost more.
333 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(U->getType());
334 return LT.first * BaseT::getInstructionCost(U, Operands, CostKind);
335 }
336
337 return BaseT::getInstructionCost(U, Operands, CostKind);
338 }
339
isHardwareLoopProfitable(Loop * L,ScalarEvolution & SE,AssumptionCache & AC,TargetLibraryInfo * LibInfo,HardwareLoopInfo & HWLoopInfo)340 bool PPCTTIImpl::isHardwareLoopProfitable(Loop *L, ScalarEvolution &SE,
341 AssumptionCache &AC,
342 TargetLibraryInfo *LibInfo,
343 HardwareLoopInfo &HWLoopInfo) {
344 const PPCTargetMachine &TM = ST->getTargetMachine();
345 TargetSchedModel SchedModel;
346 SchedModel.init(ST);
347
348 // Do not convert small short loops to CTR loop.
349 unsigned ConstTripCount = SE.getSmallConstantTripCount(L);
350 if (ConstTripCount && ConstTripCount < SmallCTRLoopThreshold) {
351 SmallPtrSet<const Value *, 32> EphValues;
352 CodeMetrics::collectEphemeralValues(L, &AC, EphValues);
353 CodeMetrics Metrics;
354 for (BasicBlock *BB : L->blocks())
355 Metrics.analyzeBasicBlock(BB, *this, EphValues);
356 // 6 is an approximate latency for the mtctr instruction.
357 if (Metrics.NumInsts <= (6 * SchedModel.getIssueWidth()))
358 return false;
359 }
360
361 // Check that there is no hardware loop related intrinsics in the loop.
362 for (auto *BB : L->getBlocks())
363 for (auto &I : *BB)
364 if (auto *Call = dyn_cast<IntrinsicInst>(&I))
365 if (Call->getIntrinsicID() == Intrinsic::set_loop_iterations ||
366 Call->getIntrinsicID() == Intrinsic::loop_decrement)
367 return false;
368
369 SmallVector<BasicBlock*, 4> ExitingBlocks;
370 L->getExitingBlocks(ExitingBlocks);
371
372 // If there is an exit edge known to be frequently taken,
373 // we should not transform this loop.
374 for (auto &BB : ExitingBlocks) {
375 Instruction *TI = BB->getTerminator();
376 if (!TI) continue;
377
378 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
379 uint64_t TrueWeight = 0, FalseWeight = 0;
380 if (!BI->isConditional() ||
381 !extractBranchWeights(*BI, TrueWeight, FalseWeight))
382 continue;
383
384 // If the exit path is more frequent than the loop path,
385 // we return here without further analysis for this loop.
386 bool TrueIsExit = !L->contains(BI->getSuccessor(0));
387 if (( TrueIsExit && FalseWeight < TrueWeight) ||
388 (!TrueIsExit && FalseWeight > TrueWeight))
389 return false;
390 }
391 }
392
393 LLVMContext &C = L->getHeader()->getContext();
394 HWLoopInfo.CountType = TM.isPPC64() ?
395 Type::getInt64Ty(C) : Type::getInt32Ty(C);
396 HWLoopInfo.LoopDecrement = ConstantInt::get(HWLoopInfo.CountType, 1);
397 return true;
398 }
399
getUnrollingPreferences(Loop * L,ScalarEvolution & SE,TTI::UnrollingPreferences & UP,OptimizationRemarkEmitter * ORE)400 void PPCTTIImpl::getUnrollingPreferences(Loop *L, ScalarEvolution &SE,
401 TTI::UnrollingPreferences &UP,
402 OptimizationRemarkEmitter *ORE) {
403 if (ST->getCPUDirective() == PPC::DIR_A2) {
404 // The A2 is in-order with a deep pipeline, and concatenation unrolling
405 // helps expose latency-hiding opportunities to the instruction scheduler.
406 UP.Partial = UP.Runtime = true;
407
408 // We unroll a lot on the A2 (hundreds of instructions), and the benefits
409 // often outweigh the cost of a division to compute the trip count.
410 UP.AllowExpensiveTripCount = true;
411 }
412
413 BaseT::getUnrollingPreferences(L, SE, UP, ORE);
414 }
415
getPeelingPreferences(Loop * L,ScalarEvolution & SE,TTI::PeelingPreferences & PP)416 void PPCTTIImpl::getPeelingPreferences(Loop *L, ScalarEvolution &SE,
417 TTI::PeelingPreferences &PP) {
418 BaseT::getPeelingPreferences(L, SE, PP);
419 }
420 // This function returns true to allow using coldcc calling convention.
421 // Returning true results in coldcc being used for functions which are cold at
422 // all call sites when the callers of the functions are not calling any other
423 // non coldcc functions.
useColdCCForColdCall(Function & F)424 bool PPCTTIImpl::useColdCCForColdCall(Function &F) {
425 return EnablePPCColdCC;
426 }
427
enableAggressiveInterleaving(bool LoopHasReductions)428 bool PPCTTIImpl::enableAggressiveInterleaving(bool LoopHasReductions) {
429 // On the A2, always unroll aggressively.
430 if (ST->getCPUDirective() == PPC::DIR_A2)
431 return true;
432
433 return LoopHasReductions;
434 }
435
436 PPCTTIImpl::TTI::MemCmpExpansionOptions
enableMemCmpExpansion(bool OptSize,bool IsZeroCmp) const437 PPCTTIImpl::enableMemCmpExpansion(bool OptSize, bool IsZeroCmp) const {
438 TTI::MemCmpExpansionOptions Options;
439 Options.LoadSizes = {8, 4, 2, 1};
440 Options.MaxNumLoads = TLI->getMaxExpandSizeMemcmp(OptSize);
441 return Options;
442 }
443
enableInterleavedAccessVectorization()444 bool PPCTTIImpl::enableInterleavedAccessVectorization() {
445 return true;
446 }
447
getNumberOfRegisters(unsigned ClassID) const448 unsigned PPCTTIImpl::getNumberOfRegisters(unsigned ClassID) const {
449 assert(ClassID == GPRRC || ClassID == FPRRC ||
450 ClassID == VRRC || ClassID == VSXRC);
451 if (ST->hasVSX()) {
452 assert(ClassID == GPRRC || ClassID == VSXRC || ClassID == VRRC);
453 return ClassID == VSXRC ? 64 : 32;
454 }
455 assert(ClassID == GPRRC || ClassID == FPRRC || ClassID == VRRC);
456 return 32;
457 }
458
getRegisterClassForType(bool Vector,Type * Ty) const459 unsigned PPCTTIImpl::getRegisterClassForType(bool Vector, Type *Ty) const {
460 if (Vector)
461 return ST->hasVSX() ? VSXRC : VRRC;
462 else if (Ty && (Ty->getScalarType()->isFloatTy() ||
463 Ty->getScalarType()->isDoubleTy()))
464 return ST->hasVSX() ? VSXRC : FPRRC;
465 else if (Ty && (Ty->getScalarType()->isFP128Ty() ||
466 Ty->getScalarType()->isPPC_FP128Ty()))
467 return VRRC;
468 else if (Ty && Ty->getScalarType()->isHalfTy())
469 return VSXRC;
470 else
471 return GPRRC;
472 }
473
getRegisterClassName(unsigned ClassID) const474 const char* PPCTTIImpl::getRegisterClassName(unsigned ClassID) const {
475
476 switch (ClassID) {
477 default:
478 llvm_unreachable("unknown register class");
479 return "PPC::unknown register class";
480 case GPRRC: return "PPC::GPRRC";
481 case FPRRC: return "PPC::FPRRC";
482 case VRRC: return "PPC::VRRC";
483 case VSXRC: return "PPC::VSXRC";
484 }
485 }
486
487 TypeSize
getRegisterBitWidth(TargetTransformInfo::RegisterKind K) const488 PPCTTIImpl::getRegisterBitWidth(TargetTransformInfo::RegisterKind K) const {
489 switch (K) {
490 case TargetTransformInfo::RGK_Scalar:
491 return TypeSize::getFixed(ST->isPPC64() ? 64 : 32);
492 case TargetTransformInfo::RGK_FixedWidthVector:
493 return TypeSize::getFixed(ST->hasAltivec() ? 128 : 0);
494 case TargetTransformInfo::RGK_ScalableVector:
495 return TypeSize::getScalable(0);
496 }
497
498 llvm_unreachable("Unsupported register kind");
499 }
500
getCacheLineSize() const501 unsigned PPCTTIImpl::getCacheLineSize() const {
502 // Starting with P7 we have a cache line size of 128.
503 unsigned Directive = ST->getCPUDirective();
504 // Assume that Future CPU has the same cache line size as the others.
505 if (Directive == PPC::DIR_PWR7 || Directive == PPC::DIR_PWR8 ||
506 Directive == PPC::DIR_PWR9 || Directive == PPC::DIR_PWR10 ||
507 Directive == PPC::DIR_PWR_FUTURE)
508 return 128;
509
510 // On other processors return a default of 64 bytes.
511 return 64;
512 }
513
getPrefetchDistance() const514 unsigned PPCTTIImpl::getPrefetchDistance() const {
515 return 300;
516 }
517
getMaxInterleaveFactor(ElementCount VF)518 unsigned PPCTTIImpl::getMaxInterleaveFactor(ElementCount VF) {
519 unsigned Directive = ST->getCPUDirective();
520 // The 440 has no SIMD support, but floating-point instructions
521 // have a 5-cycle latency, so unroll by 5x for latency hiding.
522 if (Directive == PPC::DIR_440)
523 return 5;
524
525 // The A2 has no SIMD support, but floating-point instructions
526 // have a 6-cycle latency, so unroll by 6x for latency hiding.
527 if (Directive == PPC::DIR_A2)
528 return 6;
529
530 // FIXME: For lack of any better information, do no harm...
531 if (Directive == PPC::DIR_E500mc || Directive == PPC::DIR_E5500)
532 return 1;
533
534 // For P7 and P8, floating-point instructions have a 6-cycle latency and
535 // there are two execution units, so unroll by 12x for latency hiding.
536 // FIXME: the same for P9 as previous gen until POWER9 scheduling is ready
537 // FIXME: the same for P10 as previous gen until POWER10 scheduling is ready
538 // Assume that future is the same as the others.
539 if (Directive == PPC::DIR_PWR7 || Directive == PPC::DIR_PWR8 ||
540 Directive == PPC::DIR_PWR9 || Directive == PPC::DIR_PWR10 ||
541 Directive == PPC::DIR_PWR_FUTURE)
542 return 12;
543
544 // For most things, modern systems have two execution units (and
545 // out-of-order execution).
546 return 2;
547 }
548
549 // Returns a cost adjustment factor to adjust the cost of vector instructions
550 // on targets which there is overlap between the vector and scalar units,
551 // thereby reducing the overall throughput of vector code wrt. scalar code.
552 // An invalid instruction cost is returned if the type is an MMA vector type.
vectorCostAdjustmentFactor(unsigned Opcode,Type * Ty1,Type * Ty2)553 InstructionCost PPCTTIImpl::vectorCostAdjustmentFactor(unsigned Opcode,
554 Type *Ty1, Type *Ty2) {
555 // If the vector type is of an MMA type (v256i1, v512i1), an invalid
556 // instruction cost is returned. This is to signify to other cost computing
557 // functions to return the maximum instruction cost in order to prevent any
558 // opportunities for the optimizer to produce MMA types within the IR.
559 if (isMMAType(Ty1))
560 return InstructionCost::getInvalid();
561
562 if (!ST->vectorsUseTwoUnits() || !Ty1->isVectorTy())
563 return InstructionCost(1);
564
565 std::pair<InstructionCost, MVT> LT1 = getTypeLegalizationCost(Ty1);
566 // If type legalization involves splitting the vector, we don't want to
567 // double the cost at every step - only the last step.
568 if (LT1.first != 1 || !LT1.second.isVector())
569 return InstructionCost(1);
570
571 int ISD = TLI->InstructionOpcodeToISD(Opcode);
572 if (TLI->isOperationExpand(ISD, LT1.second))
573 return InstructionCost(1);
574
575 if (Ty2) {
576 std::pair<InstructionCost, MVT> LT2 = getTypeLegalizationCost(Ty2);
577 if (LT2.first != 1 || !LT2.second.isVector())
578 return InstructionCost(1);
579 }
580
581 return InstructionCost(2);
582 }
583
getArithmeticInstrCost(unsigned Opcode,Type * Ty,TTI::TargetCostKind CostKind,TTI::OperandValueInfo Op1Info,TTI::OperandValueInfo Op2Info,ArrayRef<const Value * > Args,const Instruction * CxtI)584 InstructionCost PPCTTIImpl::getArithmeticInstrCost(
585 unsigned Opcode, Type *Ty, TTI::TargetCostKind CostKind,
586 TTI::OperandValueInfo Op1Info, TTI::OperandValueInfo Op2Info,
587 ArrayRef<const Value *> Args,
588 const Instruction *CxtI) {
589 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode");
590
591 InstructionCost CostFactor = vectorCostAdjustmentFactor(Opcode, Ty, nullptr);
592 if (!CostFactor.isValid())
593 return InstructionCost::getMax();
594
595 // TODO: Handle more cost kinds.
596 if (CostKind != TTI::TCK_RecipThroughput)
597 return BaseT::getArithmeticInstrCost(Opcode, Ty, CostKind, Op1Info,
598 Op2Info, Args, CxtI);
599
600 // Fallback to the default implementation.
601 InstructionCost Cost = BaseT::getArithmeticInstrCost(
602 Opcode, Ty, CostKind, Op1Info, Op2Info);
603 return Cost * CostFactor;
604 }
605
getShuffleCost(TTI::ShuffleKind Kind,Type * Tp,ArrayRef<int> Mask,TTI::TargetCostKind CostKind,int Index,Type * SubTp,ArrayRef<const Value * > Args)606 InstructionCost PPCTTIImpl::getShuffleCost(TTI::ShuffleKind Kind, Type *Tp,
607 ArrayRef<int> Mask,
608 TTI::TargetCostKind CostKind,
609 int Index, Type *SubTp,
610 ArrayRef<const Value *> Args) {
611
612 InstructionCost CostFactor =
613 vectorCostAdjustmentFactor(Instruction::ShuffleVector, Tp, nullptr);
614 if (!CostFactor.isValid())
615 return InstructionCost::getMax();
616
617 // Legalize the type.
618 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Tp);
619
620 // PPC, for both Altivec/VSX, support cheap arbitrary permutations
621 // (at least in the sense that there need only be one non-loop-invariant
622 // instruction). We need one such shuffle instruction for each actual
623 // register (this is not true for arbitrary shuffles, but is true for the
624 // structured types of shuffles covered by TTI::ShuffleKind).
625 return LT.first * CostFactor;
626 }
627
getCFInstrCost(unsigned Opcode,TTI::TargetCostKind CostKind,const Instruction * I)628 InstructionCost PPCTTIImpl::getCFInstrCost(unsigned Opcode,
629 TTI::TargetCostKind CostKind,
630 const Instruction *I) {
631 if (CostKind != TTI::TCK_RecipThroughput)
632 return Opcode == Instruction::PHI ? 0 : 1;
633 // Branches are assumed to be predicted.
634 return 0;
635 }
636
getCastInstrCost(unsigned Opcode,Type * Dst,Type * Src,TTI::CastContextHint CCH,TTI::TargetCostKind CostKind,const Instruction * I)637 InstructionCost PPCTTIImpl::getCastInstrCost(unsigned Opcode, Type *Dst,
638 Type *Src,
639 TTI::CastContextHint CCH,
640 TTI::TargetCostKind CostKind,
641 const Instruction *I) {
642 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode");
643
644 InstructionCost CostFactor = vectorCostAdjustmentFactor(Opcode, Dst, Src);
645 if (!CostFactor.isValid())
646 return InstructionCost::getMax();
647
648 InstructionCost Cost =
649 BaseT::getCastInstrCost(Opcode, Dst, Src, CCH, CostKind, I);
650 Cost *= CostFactor;
651 // TODO: Allow non-throughput costs that aren't binary.
652 if (CostKind != TTI::TCK_RecipThroughput)
653 return Cost == 0 ? 0 : 1;
654 return Cost;
655 }
656
getCmpSelInstrCost(unsigned Opcode,Type * ValTy,Type * CondTy,CmpInst::Predicate VecPred,TTI::TargetCostKind CostKind,const Instruction * I)657 InstructionCost PPCTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
658 Type *CondTy,
659 CmpInst::Predicate VecPred,
660 TTI::TargetCostKind CostKind,
661 const Instruction *I) {
662 InstructionCost CostFactor =
663 vectorCostAdjustmentFactor(Opcode, ValTy, nullptr);
664 if (!CostFactor.isValid())
665 return InstructionCost::getMax();
666
667 InstructionCost Cost =
668 BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy, VecPred, CostKind, I);
669 // TODO: Handle other cost kinds.
670 if (CostKind != TTI::TCK_RecipThroughput)
671 return Cost;
672 return Cost * CostFactor;
673 }
674
getVectorInstrCost(unsigned Opcode,Type * Val,TTI::TargetCostKind CostKind,unsigned Index,Value * Op0,Value * Op1)675 InstructionCost PPCTTIImpl::getVectorInstrCost(unsigned Opcode, Type *Val,
676 TTI::TargetCostKind CostKind,
677 unsigned Index, Value *Op0,
678 Value *Op1) {
679 assert(Val->isVectorTy() && "This must be a vector type");
680
681 int ISD = TLI->InstructionOpcodeToISD(Opcode);
682 assert(ISD && "Invalid opcode");
683
684 InstructionCost CostFactor = vectorCostAdjustmentFactor(Opcode, Val, nullptr);
685 if (!CostFactor.isValid())
686 return InstructionCost::getMax();
687
688 InstructionCost Cost =
689 BaseT::getVectorInstrCost(Opcode, Val, CostKind, Index, Op0, Op1);
690 Cost *= CostFactor;
691
692 if (ST->hasVSX() && Val->getScalarType()->isDoubleTy()) {
693 // Double-precision scalars are already located in index #0 (or #1 if LE).
694 if (ISD == ISD::EXTRACT_VECTOR_ELT &&
695 Index == (ST->isLittleEndian() ? 1 : 0))
696 return 0;
697
698 return Cost;
699
700 } else if (Val->getScalarType()->isIntegerTy() && Index != -1U) {
701 unsigned EltSize = Val->getScalarSizeInBits();
702 // Computing on 1 bit values requires extra mask or compare operations.
703 unsigned MaskCost = VecMaskCost && EltSize == 1 ? 1 : 0;
704 if (ST->hasP9Altivec()) {
705 if (ISD == ISD::INSERT_VECTOR_ELT)
706 // A move-to VSR and a permute/insert. Assume vector operation cost
707 // for both (cost will be 2x on P9).
708 return 2 * CostFactor;
709
710 // It's an extract. Maybe we can do a cheap move-from VSR.
711 unsigned EltSize = Val->getScalarSizeInBits();
712 if (EltSize == 64) {
713 unsigned MfvsrdIndex = ST->isLittleEndian() ? 1 : 0;
714 if (Index == MfvsrdIndex)
715 return 1;
716 } else if (EltSize == 32) {
717 unsigned MfvsrwzIndex = ST->isLittleEndian() ? 2 : 1;
718 if (Index == MfvsrwzIndex)
719 return 1;
720 }
721
722 // We need a vector extract (or mfvsrld). Assume vector operation cost.
723 // The cost of the load constant for a vector extract is disregarded
724 // (invariant, easily schedulable).
725 return CostFactor + MaskCost;
726
727 } else if (ST->hasDirectMove()) {
728 // Assume permute has standard cost.
729 // Assume move-to/move-from VSR have 2x standard cost.
730 if (ISD == ISD::INSERT_VECTOR_ELT)
731 return 3;
732 return 3 + MaskCost;
733 }
734 }
735
736 // Estimated cost of a load-hit-store delay. This was obtained
737 // experimentally as a minimum needed to prevent unprofitable
738 // vectorization for the paq8p benchmark. It may need to be
739 // raised further if other unprofitable cases remain.
740 unsigned LHSPenalty = 2;
741 if (ISD == ISD::INSERT_VECTOR_ELT)
742 LHSPenalty += 7;
743
744 // Vector element insert/extract with Altivec is very expensive,
745 // because they require store and reload with the attendant
746 // processor stall for load-hit-store. Until VSX is available,
747 // these need to be estimated as very costly.
748 if (ISD == ISD::EXTRACT_VECTOR_ELT ||
749 ISD == ISD::INSERT_VECTOR_ELT)
750 return LHSPenalty + Cost;
751
752 return Cost;
753 }
754
getMemoryOpCost(unsigned Opcode,Type * Src,MaybeAlign Alignment,unsigned AddressSpace,TTI::TargetCostKind CostKind,TTI::OperandValueInfo OpInfo,const Instruction * I)755 InstructionCost PPCTTIImpl::getMemoryOpCost(unsigned Opcode, Type *Src,
756 MaybeAlign Alignment,
757 unsigned AddressSpace,
758 TTI::TargetCostKind CostKind,
759 TTI::OperandValueInfo OpInfo,
760 const Instruction *I) {
761
762 InstructionCost CostFactor = vectorCostAdjustmentFactor(Opcode, Src, nullptr);
763 if (!CostFactor.isValid())
764 return InstructionCost::getMax();
765
766 if (TLI->getValueType(DL, Src, true) == MVT::Other)
767 return BaseT::getMemoryOpCost(Opcode, Src, Alignment, AddressSpace,
768 CostKind);
769 // Legalize the type.
770 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Src);
771 assert((Opcode == Instruction::Load || Opcode == Instruction::Store) &&
772 "Invalid Opcode");
773
774 InstructionCost Cost =
775 BaseT::getMemoryOpCost(Opcode, Src, Alignment, AddressSpace, CostKind);
776 // TODO: Handle other cost kinds.
777 if (CostKind != TTI::TCK_RecipThroughput)
778 return Cost;
779
780 Cost *= CostFactor;
781
782 bool IsAltivecType = ST->hasAltivec() &&
783 (LT.second == MVT::v16i8 || LT.second == MVT::v8i16 ||
784 LT.second == MVT::v4i32 || LT.second == MVT::v4f32);
785 bool IsVSXType = ST->hasVSX() &&
786 (LT.second == MVT::v2f64 || LT.second == MVT::v2i64);
787
788 // VSX has 32b/64b load instructions. Legalization can handle loading of
789 // 32b/64b to VSR correctly and cheaply. But BaseT::getMemoryOpCost and
790 // PPCTargetLowering can't compute the cost appropriately. So here we
791 // explicitly check this case. There are also corresponding store
792 // instructions.
793 unsigned MemBytes = Src->getPrimitiveSizeInBits();
794 if (ST->hasVSX() && IsAltivecType &&
795 (MemBytes == 64 || (ST->hasP8Vector() && MemBytes == 32)))
796 return 1;
797
798 // Aligned loads and stores are easy.
799 unsigned SrcBytes = LT.second.getStoreSize();
800 if (!SrcBytes || !Alignment || *Alignment >= SrcBytes)
801 return Cost;
802
803 // If we can use the permutation-based load sequence, then this is also
804 // relatively cheap (not counting loop-invariant instructions): one load plus
805 // one permute (the last load in a series has extra cost, but we're
806 // neglecting that here). Note that on the P7, we could do unaligned loads
807 // for Altivec types using the VSX instructions, but that's more expensive
808 // than using the permutation-based load sequence. On the P8, that's no
809 // longer true.
810 if (Opcode == Instruction::Load && (!ST->hasP8Vector() && IsAltivecType) &&
811 *Alignment >= LT.second.getScalarType().getStoreSize())
812 return Cost + LT.first; // Add the cost of the permutations.
813
814 // For VSX, we can do unaligned loads and stores on Altivec/VSX types. On the
815 // P7, unaligned vector loads are more expensive than the permutation-based
816 // load sequence, so that might be used instead, but regardless, the net cost
817 // is about the same (not counting loop-invariant instructions).
818 if (IsVSXType || (ST->hasVSX() && IsAltivecType))
819 return Cost;
820
821 // Newer PPC supports unaligned memory access.
822 if (TLI->allowsMisalignedMemoryAccesses(LT.second, 0))
823 return Cost;
824
825 // PPC in general does not support unaligned loads and stores. They'll need
826 // to be decomposed based on the alignment factor.
827
828 // Add the cost of each scalar load or store.
829 assert(Alignment);
830 Cost += LT.first * ((SrcBytes / Alignment->value()) - 1);
831
832 // For a vector type, there is also scalarization overhead (only for
833 // stores, loads are expanded using the vector-load + permutation sequence,
834 // which is much less expensive).
835 if (Src->isVectorTy() && Opcode == Instruction::Store)
836 for (int i = 0, e = cast<FixedVectorType>(Src)->getNumElements(); i < e;
837 ++i)
838 Cost += getVectorInstrCost(Instruction::ExtractElement, Src, CostKind, i,
839 nullptr, nullptr);
840
841 return Cost;
842 }
843
getInterleavedMemoryOpCost(unsigned Opcode,Type * VecTy,unsigned Factor,ArrayRef<unsigned> Indices,Align Alignment,unsigned AddressSpace,TTI::TargetCostKind CostKind,bool UseMaskForCond,bool UseMaskForGaps)844 InstructionCost PPCTTIImpl::getInterleavedMemoryOpCost(
845 unsigned Opcode, Type *VecTy, unsigned Factor, ArrayRef<unsigned> Indices,
846 Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind,
847 bool UseMaskForCond, bool UseMaskForGaps) {
848 InstructionCost CostFactor =
849 vectorCostAdjustmentFactor(Opcode, VecTy, nullptr);
850 if (!CostFactor.isValid())
851 return InstructionCost::getMax();
852
853 if (UseMaskForCond || UseMaskForGaps)
854 return BaseT::getInterleavedMemoryOpCost(Opcode, VecTy, Factor, Indices,
855 Alignment, AddressSpace, CostKind,
856 UseMaskForCond, UseMaskForGaps);
857
858 assert(isa<VectorType>(VecTy) &&
859 "Expect a vector type for interleaved memory op");
860
861 // Legalize the type.
862 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(VecTy);
863
864 // Firstly, the cost of load/store operation.
865 InstructionCost Cost = getMemoryOpCost(Opcode, VecTy, MaybeAlign(Alignment),
866 AddressSpace, CostKind);
867
868 // PPC, for both Altivec/VSX, support cheap arbitrary permutations
869 // (at least in the sense that there need only be one non-loop-invariant
870 // instruction). For each result vector, we need one shuffle per incoming
871 // vector (except that the first shuffle can take two incoming vectors
872 // because it does not need to take itself).
873 Cost += Factor*(LT.first-1);
874
875 return Cost;
876 }
877
878 InstructionCost
getIntrinsicInstrCost(const IntrinsicCostAttributes & ICA,TTI::TargetCostKind CostKind)879 PPCTTIImpl::getIntrinsicInstrCost(const IntrinsicCostAttributes &ICA,
880 TTI::TargetCostKind CostKind) {
881 return BaseT::getIntrinsicInstrCost(ICA, CostKind);
882 }
883
areTypesABICompatible(const Function * Caller,const Function * Callee,const ArrayRef<Type * > & Types) const884 bool PPCTTIImpl::areTypesABICompatible(const Function *Caller,
885 const Function *Callee,
886 const ArrayRef<Type *> &Types) const {
887
888 // We need to ensure that argument promotion does not
889 // attempt to promote pointers to MMA types (__vector_pair
890 // and __vector_quad) since these types explicitly cannot be
891 // passed as arguments. Both of these types are larger than
892 // the 128-bit Altivec vectors and have a scalar size of 1 bit.
893 if (!BaseT::areTypesABICompatible(Caller, Callee, Types))
894 return false;
895
896 return llvm::none_of(Types, [](Type *Ty) {
897 if (Ty->isSized())
898 return Ty->isIntOrIntVectorTy(1) && Ty->getPrimitiveSizeInBits() > 128;
899 return false;
900 });
901 }
902
canSaveCmp(Loop * L,BranchInst ** BI,ScalarEvolution * SE,LoopInfo * LI,DominatorTree * DT,AssumptionCache * AC,TargetLibraryInfo * LibInfo)903 bool PPCTTIImpl::canSaveCmp(Loop *L, BranchInst **BI, ScalarEvolution *SE,
904 LoopInfo *LI, DominatorTree *DT,
905 AssumptionCache *AC, TargetLibraryInfo *LibInfo) {
906 // Process nested loops first.
907 for (Loop *I : *L)
908 if (canSaveCmp(I, BI, SE, LI, DT, AC, LibInfo))
909 return false; // Stop search.
910
911 HardwareLoopInfo HWLoopInfo(L);
912
913 if (!HWLoopInfo.canAnalyze(*LI))
914 return false;
915
916 if (!isHardwareLoopProfitable(L, *SE, *AC, LibInfo, HWLoopInfo))
917 return false;
918
919 if (!HWLoopInfo.isHardwareLoopCandidate(*SE, *LI, *DT))
920 return false;
921
922 *BI = HWLoopInfo.ExitBranch;
923 return true;
924 }
925
isLSRCostLess(const TargetTransformInfo::LSRCost & C1,const TargetTransformInfo::LSRCost & C2)926 bool PPCTTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
927 const TargetTransformInfo::LSRCost &C2) {
928 // PowerPC default behaviour here is "instruction number 1st priority".
929 // If LsrNoInsnsCost is set, call default implementation.
930 if (!LsrNoInsnsCost)
931 return std::tie(C1.Insns, C1.NumRegs, C1.AddRecCost, C1.NumIVMuls,
932 C1.NumBaseAdds, C1.ScaleCost, C1.ImmCost, C1.SetupCost) <
933 std::tie(C2.Insns, C2.NumRegs, C2.AddRecCost, C2.NumIVMuls,
934 C2.NumBaseAdds, C2.ScaleCost, C2.ImmCost, C2.SetupCost);
935 else
936 return TargetTransformInfoImplBase::isLSRCostLess(C1, C2);
937 }
938
isNumRegsMajorCostOfLSR()939 bool PPCTTIImpl::isNumRegsMajorCostOfLSR() {
940 return false;
941 }
942
shouldBuildRelLookupTables() const943 bool PPCTTIImpl::shouldBuildRelLookupTables() const {
944 const PPCTargetMachine &TM = ST->getTargetMachine();
945 // XCOFF hasn't implemented lowerRelativeReference, disable non-ELF for now.
946 if (!TM.isELFv2ABI())
947 return false;
948 return BaseT::shouldBuildRelLookupTables();
949 }
950
getTgtMemIntrinsic(IntrinsicInst * Inst,MemIntrinsicInfo & Info)951 bool PPCTTIImpl::getTgtMemIntrinsic(IntrinsicInst *Inst,
952 MemIntrinsicInfo &Info) {
953 switch (Inst->getIntrinsicID()) {
954 case Intrinsic::ppc_altivec_lvx:
955 case Intrinsic::ppc_altivec_lvxl:
956 case Intrinsic::ppc_altivec_lvebx:
957 case Intrinsic::ppc_altivec_lvehx:
958 case Intrinsic::ppc_altivec_lvewx:
959 case Intrinsic::ppc_vsx_lxvd2x:
960 case Intrinsic::ppc_vsx_lxvw4x:
961 case Intrinsic::ppc_vsx_lxvd2x_be:
962 case Intrinsic::ppc_vsx_lxvw4x_be:
963 case Intrinsic::ppc_vsx_lxvl:
964 case Intrinsic::ppc_vsx_lxvll:
965 case Intrinsic::ppc_vsx_lxvp: {
966 Info.PtrVal = Inst->getArgOperand(0);
967 Info.ReadMem = true;
968 Info.WriteMem = false;
969 return true;
970 }
971 case Intrinsic::ppc_altivec_stvx:
972 case Intrinsic::ppc_altivec_stvxl:
973 case Intrinsic::ppc_altivec_stvebx:
974 case Intrinsic::ppc_altivec_stvehx:
975 case Intrinsic::ppc_altivec_stvewx:
976 case Intrinsic::ppc_vsx_stxvd2x:
977 case Intrinsic::ppc_vsx_stxvw4x:
978 case Intrinsic::ppc_vsx_stxvd2x_be:
979 case Intrinsic::ppc_vsx_stxvw4x_be:
980 case Intrinsic::ppc_vsx_stxvl:
981 case Intrinsic::ppc_vsx_stxvll:
982 case Intrinsic::ppc_vsx_stxvp: {
983 Info.PtrVal = Inst->getArgOperand(1);
984 Info.ReadMem = false;
985 Info.WriteMem = true;
986 return true;
987 }
988 case Intrinsic::ppc_stbcx:
989 case Intrinsic::ppc_sthcx:
990 case Intrinsic::ppc_stdcx:
991 case Intrinsic::ppc_stwcx: {
992 Info.PtrVal = Inst->getArgOperand(0);
993 Info.ReadMem = false;
994 Info.WriteMem = true;
995 return true;
996 }
997 default:
998 break;
999 }
1000
1001 return false;
1002 }
1003
hasActiveVectorLength(unsigned Opcode,Type * DataType,Align Alignment) const1004 bool PPCTTIImpl::hasActiveVectorLength(unsigned Opcode, Type *DataType,
1005 Align Alignment) const {
1006 // Only load and stores instructions can have variable vector length on Power.
1007 if (Opcode != Instruction::Load && Opcode != Instruction::Store)
1008 return false;
1009 // Loads/stores with length instructions use bits 0-7 of the GPR operand and
1010 // therefore cannot be used in 32-bit mode.
1011 if ((!ST->hasP9Vector() && !ST->hasP10Vector()) || !ST->isPPC64())
1012 return false;
1013 if (isa<FixedVectorType>(DataType)) {
1014 unsigned VecWidth = DataType->getPrimitiveSizeInBits();
1015 return VecWidth == 128;
1016 }
1017 Type *ScalarTy = DataType->getScalarType();
1018
1019 if (ScalarTy->isPointerTy())
1020 return true;
1021
1022 if (ScalarTy->isFloatTy() || ScalarTy->isDoubleTy())
1023 return true;
1024
1025 if (!ScalarTy->isIntegerTy())
1026 return false;
1027
1028 unsigned IntWidth = ScalarTy->getIntegerBitWidth();
1029 return IntWidth == 8 || IntWidth == 16 || IntWidth == 32 || IntWidth == 64;
1030 }
1031
getVPMemoryOpCost(unsigned Opcode,Type * Src,Align Alignment,unsigned AddressSpace,TTI::TargetCostKind CostKind,const Instruction * I)1032 InstructionCost PPCTTIImpl::getVPMemoryOpCost(unsigned Opcode, Type *Src,
1033 Align Alignment,
1034 unsigned AddressSpace,
1035 TTI::TargetCostKind CostKind,
1036 const Instruction *I) {
1037 InstructionCost Cost = BaseT::getVPMemoryOpCost(Opcode, Src, Alignment,
1038 AddressSpace, CostKind, I);
1039 if (TLI->getValueType(DL, Src, true) == MVT::Other)
1040 return Cost;
1041 // TODO: Handle other cost kinds.
1042 if (CostKind != TTI::TCK_RecipThroughput)
1043 return Cost;
1044
1045 assert((Opcode == Instruction::Load || Opcode == Instruction::Store) &&
1046 "Invalid Opcode");
1047
1048 auto *SrcVTy = dyn_cast<FixedVectorType>(Src);
1049 assert(SrcVTy && "Expected a vector type for VP memory operations");
1050
1051 if (hasActiveVectorLength(Opcode, Src, Alignment)) {
1052 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(SrcVTy);
1053
1054 InstructionCost CostFactor =
1055 vectorCostAdjustmentFactor(Opcode, Src, nullptr);
1056 if (!CostFactor.isValid())
1057 return InstructionCost::getMax();
1058
1059 InstructionCost Cost = LT.first * CostFactor;
1060 assert(Cost.isValid() && "Expected valid cost");
1061
1062 // On P9 but not on P10, if the op is misaligned then it will cause a
1063 // pipeline flush. Otherwise the VSX masked memops cost the same as unmasked
1064 // ones.
1065 const Align DesiredAlignment(16);
1066 if (Alignment >= DesiredAlignment || ST->getCPUDirective() != PPC::DIR_PWR9)
1067 return Cost;
1068
1069 // Since alignment may be under estimated, we try to compute the probability
1070 // that the actual address is aligned to the desired boundary. For example
1071 // an 8-byte aligned load is assumed to be actually 16-byte aligned half the
1072 // time, while a 4-byte aligned load has a 25% chance of being 16-byte
1073 // aligned.
1074 float AlignmentProb = ((float)Alignment.value()) / DesiredAlignment.value();
1075 float MisalignmentProb = 1.0 - AlignmentProb;
1076 return (MisalignmentProb * P9PipelineFlushEstimate) +
1077 (AlignmentProb * *Cost.getValue());
1078 }
1079
1080 // Usually we should not get to this point, but the following is an attempt to
1081 // model the cost of legalization. Currently we can only lower intrinsics with
1082 // evl but no mask, on Power 9/10. Otherwise, we must scalarize.
1083 return getMaskedMemoryOpCost(Opcode, Src, Alignment, AddressSpace, CostKind);
1084 }
1085
supportsTailCallFor(const CallBase * CB) const1086 bool PPCTTIImpl::supportsTailCallFor(const CallBase *CB) const {
1087 return TLI->supportsTailCallFor(CB);
1088 }
1089