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