LLVM 24.0.0git
MVETailPredication.cpp
Go to the documentation of this file.
1//===- MVETailPredication.cpp - MVE Tail Predication ------------*- C++ -*-===//
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/// \file
10/// Armv8.1m introduced MVE, M-Profile Vector Extension, and low-overhead
11/// branches to help accelerate DSP applications. These two extensions,
12/// combined with a new form of predication called tail-predication, can be used
13/// to provide implicit vector predication within a low-overhead loop.
14/// This is implicit because the predicate of active/inactive lanes is
15/// calculated by hardware, and thus does not need to be explicitly passed
16/// to vector instructions. The instructions responsible for this are the
17/// DLSTP and WLSTP instructions, which setup a tail-predicated loop and the
18/// the total number of data elements processed by the loop. The loop-end
19/// LETP instruction is responsible for decrementing and setting the remaining
20/// elements to be processed and generating the mask of active lanes.
21///
22/// The HardwareLoops pass inserts intrinsics identifying loops that the
23/// backend will attempt to convert into a low-overhead loop. The vectorizer is
24/// responsible for generating a vectorized loop in which the lanes are
25/// predicated upon an get.active.lane.mask intrinsic. This pass looks at these
26/// get.active.lane.mask intrinsic and attempts to convert them to VCTP
27/// instructions. This will be picked up by the ARM Low-overhead loop pass later
28/// in the backend, which performs the final transformation to a DLSTP or WLSTP
29/// tail-predicated loop.
30//
31//===----------------------------------------------------------------------===//
32
33#include "ARM.h"
34#include "ARMSubtarget.h"
44#include "llvm/IR/IRBuilder.h"
46#include "llvm/IR/IntrinsicsARM.h"
47#include "llvm/Support/Debug.h"
52
53using namespace llvm;
54
55#define DEBUG_TYPE "mve-tail-predication"
56#define DESC "Transform predicated vector loops to use MVE tail predication"
57
59 "tail-predication", cl::desc("MVE tail-predication pass options"),
62 "Don't tail-predicate loops"),
64 "enabled-no-reductions",
65 "Enable tail-predication, but not for reduction loops"),
67 "enabled",
68 "Enable tail-predication, including reduction loops"),
70 "force-enabled-no-reductions",
71 "Enable tail-predication, but not for reduction loops, "
72 "and force this which might be unsafe"),
74 "force-enabled",
75 "Enable tail-predication, including reduction loops, "
76 "and force this which might be unsafe")));
77
78
79namespace {
80
81class MVETailPredication : public LoopPass {
83 Loop *L = nullptr;
84 ScalarEvolution *SE = nullptr;
85 TargetTransformInfo *TTI = nullptr;
86 const ARMSubtarget *ST = nullptr;
87
88public:
89 static char ID;
90
91 MVETailPredication() : LoopPass(ID) { }
92
93 void getAnalysisUsage(AnalysisUsage &AU) const override {
94 AU.addRequired<ScalarEvolutionWrapperPass>();
95 AU.addRequired<TargetPassConfig>();
96 AU.addRequired<TargetTransformInfoWrapperPass>();
97 AU.setPreservesCFG();
98 }
99
100 bool runOnLoop(Loop *L, LPPassManager&) override;
101
102private:
103 /// Perform the relevant checks on the loop and convert active lane masks if
104 /// possible.
105 bool TryConvertActiveLaneMask(Value *TripCount);
106
107 /// Perform several checks on the arguments of @llvm.get.active.lane.mask
108 /// intrinsic. E.g., check that the loop induction variable and the element
109 /// count are of the form we expect, and also perform overflow checks for
110 /// the new expressions that are created.
111 const SCEV *IsSafeActiveMask(IntrinsicInst *ActiveLaneMask, Value *TripCount);
112
113 /// Insert the intrinsic to represent the effect of tail predication.
114 void InsertVCTPIntrinsic(IntrinsicInst *ActiveLaneMask, Value *Start);
115};
116
117} // end namespace
118
119bool MVETailPredication::runOnLoop(Loop *L, LPPassManager&) {
120 if (skipLoop(L) || !EnableTailPredication)
121 return false;
122
123 MaskedInsts.clear();
124 Function &F = *L->getHeader()->getParent();
125 auto &TPC = getAnalysis<TargetPassConfig>();
126 auto &TM = TPC.getTM<TargetMachine>();
127 ST = &TM.getSubtarget<ARMSubtarget>(F);
128 TTI = &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
129 SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
130 this->L = L;
131
132 // The MVE and LOB extensions are combined to enable tail-predication, but
133 // there's nothing preventing us from generating VCTP instructions for v8.1m.
134 if (!ST->hasMVEIntegerOps() || !ST->hasV8_1MMainlineOps()) {
135 LLVM_DEBUG(dbgs() << "ARM TP: Not a v8.1m.main+mve target.\n");
136 return false;
137 }
138
139 BasicBlock *Preheader = L->getLoopPreheader();
140 if (!Preheader)
141 return false;
142
143 auto FindLoopIterations = [](BasicBlock *BB) -> IntrinsicInst* {
144 for (auto &I : *BB) {
146 if (!Call)
147 continue;
148
150 if (ID == Intrinsic::start_loop_iterations ||
151 ID == Intrinsic::test_start_loop_iterations)
152 return cast<IntrinsicInst>(&I);
153 }
154 return nullptr;
155 };
156
157 // Look for the hardware loop intrinsic that sets the iteration count.
158 IntrinsicInst *Setup = FindLoopIterations(Preheader);
159
160 // The test.set iteration could live in the pre-preheader.
161 if (!Setup) {
162 if (!Preheader->getSinglePredecessor())
163 return false;
164 Setup = FindLoopIterations(Preheader->getSinglePredecessor());
165 if (!Setup)
166 return false;
167 }
168
169 LLVM_DEBUG(dbgs() << "ARM TP: Running on Loop: " << *L << *Setup << "\n");
170
171 bool Changed = TryConvertActiveLaneMask(Setup->getArgOperand(0));
172
173 return Changed;
174}
175
176// The active lane intrinsic has this form:
177//
178// @llvm.get.active.lane.mask(IV, TC)
179//
180// Here we perform checks that this intrinsic behaves as expected,
181// which means:
182//
183// 1) Check that the TripCount (TC) belongs to this loop (originally).
184// 2) The element count (TC) needs to be sufficiently large that the decrement
185// of element counter doesn't overflow, which means that we need to prove:
186// ceil(ElementCount / VectorWidth) >= TripCount
187// by rounding up ElementCount up:
188// ((ElementCount + (VectorWidth - 1)) / VectorWidth
189// and evaluate if expression isKnownNonNegative:
190// (((ElementCount + (VectorWidth - 1)) / VectorWidth) - TripCount
191// 3) The IV must be an induction phi with an increment equal to the
192// vector width.
193const SCEV *MVETailPredication::IsSafeActiveMask(IntrinsicInst *ActiveLaneMask,
194 Value *TripCount) {
195 bool ForceTailPredication =
198
199 Value *ElemCount = ActiveLaneMask->getOperand(1);
200 bool Changed = false;
201 if (!L->makeLoopInvariant(ElemCount, Changed))
202 return nullptr;
203
204 const SCEV *EC = SE->getSCEV(ElemCount);
205 const SCEV *TC = SE->getSCEV(TripCount);
206 int VectorWidth =
207 cast<FixedVectorType>(ActiveLaneMask->getType())->getNumElements();
208 if (VectorWidth != 2 && VectorWidth != 4 && VectorWidth != 8 &&
209 VectorWidth != 16)
210 return nullptr;
211 ConstantInt *ConstElemCount = nullptr;
212
213 // 1) Smoke tests that the original scalar loop TripCount (TC) belongs to
214 // this loop. The scalar tripcount corresponds the number of elements
215 // processed by the loop, so we will refer to that from this point on.
216 if (!SE->isLoopInvariant(EC, L)) {
217 LLVM_DEBUG(dbgs() << "ARM TP: element count must be loop invariant.\n");
218 return nullptr;
219 }
220
221 // 2) Find out if IV is an induction phi. Note that we can't use Loop
222 // helpers here to get the induction variable, because the hardware loop is
223 // no longer in loopsimplify form, and also the hwloop intrinsic uses a
224 // different counter. Using SCEV, we check that the induction is of the
225 // form i = i + 4, where the increment must be equal to the VectorWidth.
226 auto *IV = ActiveLaneMask->getOperand(0);
227 const SCEV *IVExpr = SE->getSCEV(IV);
228 auto *AddExpr = dyn_cast<SCEVAddRecExpr>(IVExpr);
229
230 if (!AddExpr) {
231 LLVM_DEBUG(dbgs() << "ARM TP: induction not an add expr: "; IVExpr->dump());
232 return nullptr;
233 }
234 // Check that this AddRec is associated with this loop.
235 if (AddExpr->getLoop() != L) {
236 LLVM_DEBUG(dbgs() << "ARM TP: phi not part of this loop\n");
237 return nullptr;
238 }
239 auto *Step = dyn_cast<SCEVConstant>(AddExpr->getOperand(1));
240 if (!Step) {
241 LLVM_DEBUG(dbgs() << "ARM TP: induction step is not a constant: ";
242 AddExpr->getOperand(1)->dump());
243 return nullptr;
244 }
245 auto StepValue = Step->getValue()->getSExtValue();
246 if (VectorWidth != StepValue) {
247 LLVM_DEBUG(dbgs() << "ARM TP: Step value " << StepValue
248 << " doesn't match vector width " << VectorWidth << "\n");
249 return nullptr;
250 }
251
252 if ((ConstElemCount = dyn_cast<ConstantInt>(ElemCount))) {
253 ConstantInt *TC = dyn_cast<ConstantInt>(TripCount);
254 if (!TC) {
255 LLVM_DEBUG(dbgs() << "ARM TP: Constant tripcount expected in "
256 "set.loop.iterations\n");
257 return nullptr;
258 }
259
260 // Calculate 2 tripcount values and check that they are consistent with
261 // each other. The TripCount for a predicated vector loop body is
262 // ceil(ElementCount/Width), or floor((ElementCount+Width-1)/Width) as we
263 // work it out here.
264 uint64_t TC1 = TC->getZExtValue();
265 uint64_t TC2 =
266 (ConstElemCount->getZExtValue() + VectorWidth - 1) / VectorWidth;
267
268 // If the tripcount values are inconsistent, we can't insert the VCTP and
269 // trigger tail-predication; keep the intrinsic as a get.active.lane.mask
270 // and legalize this.
271 if (TC1 != TC2) {
272 LLVM_DEBUG(dbgs() << "ARM TP: inconsistent constant tripcount values: "
273 << TC1 << " from set.loop.iterations, and "
274 << TC2 << " from get.active.lane.mask\n");
275 return nullptr;
276 }
277 } else if (!ForceTailPredication) {
278 // 3) We need to prove that the sub expression that we create in the
279 // tail-predicated loop body, which calculates the remaining elements to be
280 // processed, is non-negative, i.e. it doesn't overflow:
281 //
282 // ((ElementCount + VectorWidth - 1) / VectorWidth) - TripCount >= 0
283 //
284 // This is true if:
285 //
286 // TripCount == (ElementCount + VectorWidth - 1) / VectorWidth
287 //
288 // which what we will be using here.
289 //
290 const SCEV *VW =
291 SE->getSCEV(ConstantInt::get(TripCount->getType(), VectorWidth));
292 // ElementCount + (VW-1):
293 const SCEV *Start = AddExpr->getStart();
294 const SCEV *ECPlusVWMinus1 = SE->getAddExpr(
295 EC,
296 SE->getSCEV(ConstantInt::get(TripCount->getType(), VectorWidth - 1)));
297
298 // Ceil = ElementCount + (VW-1) / VW
299 const SCEV *Ceil = SE->getUDivExpr(ECPlusVWMinus1, VW);
300
301 // Prevent unused variable warnings with TC
302 (void)TC;
303 LLVM_DEBUG({
304 dbgs() << "ARM TP: Analysing overflow behaviour for:\n";
305 dbgs() << "ARM TP: - TripCount = " << *TC << "\n";
306 dbgs() << "ARM TP: - ElemCount = " << *EC << "\n";
307 dbgs() << "ARM TP: - Start = " << *Start << "\n";
308 dbgs() << "ARM TP: - BETC = " << *SE->getBackedgeTakenCount(L) << "\n";
309 dbgs() << "ARM TP: - VecWidth = " << VectorWidth << "\n";
310 dbgs() << "ARM TP: - (ElemCount+VW-1) / VW = " << *Ceil << "\n";
311 });
312
313 // As an example, almost all the tripcount expressions (produced by the
314 // vectoriser) look like this:
315 //
316 // TC = ((-4 + (4 * ((3 + %N) /u 4))<nuw> - start) /u 4)
317 //
318 // and "ElementCount + (VW-1) / VW":
319 //
320 // Ceil = ((3 + %N) /u 4)
321 //
322 // Check for equality of TC and Ceil by calculating SCEV expression
323 // TC - Ceil and test it for zero.
324 //
325 const SCEV *Div = SE->getUDivExpr(
326 SE->getAddExpr(SE->getMulExpr(Ceil, VW), SE->getNegativeSCEV(VW),
327 SE->getNegativeSCEV(Start)),
328 VW);
329 const SCEV *Sub = SE->getMinusSCEV(SE->getBackedgeTakenCount(L), Div);
330 LLVM_DEBUG(dbgs() << "ARM TP: - Sub = "; Sub->dump());
331
332 // Use context sensitive facts about the path to the loop to refine. This
333 // comes up as the backedge taken count can incorporate context sensitive
334 // reasoning, and our RHS just above doesn't.
335 Sub = SE->applyLoopGuards(Sub, L);
336 LLVM_DEBUG(dbgs() << "ARM TP: - (Guarded) = "; Sub->dump());
337
338 if (!Sub->isZero()) {
339 LLVM_DEBUG(dbgs() << "ARM TP: possible overflow in sub expression.\n");
340 return nullptr;
341 }
342 }
343
344 // Check that the start value is a multiple of the VectorWidth.
345 // TODO: This could do with a method to check if the scev is a multiple of
346 // VectorWidth. For the moment we just check for constants, muls and unknowns
347 // (which use MaskedValueIsZero and seems to be the most common).
348 if (auto *BaseC = dyn_cast<SCEVConstant>(AddExpr->getStart())) {
349 if (BaseC->getAPInt().urem(VectorWidth) == 0)
350 return SE->getMinusSCEV(EC, BaseC);
351 } else if (auto *BaseV = dyn_cast<SCEVUnknown>(AddExpr->getStart())) {
352 Type *Ty = BaseV->getType();
354 Log2_64(VectorWidth));
355 if (MaskedValueIsZero(BaseV->getValue(), Mask,
356 L->getHeader()->getDataLayout()))
357 return SE->getMinusSCEV(EC, BaseV);
358 } else if (auto *BaseMul = dyn_cast<SCEVMulExpr>(AddExpr->getStart())) {
359 if (auto *BaseC = dyn_cast<SCEVConstant>(BaseMul->getOperand(0)))
360 if (BaseC->getAPInt().urem(VectorWidth) == 0)
361 return SE->getMinusSCEV(EC, BaseC);
362 if (auto *BaseC = dyn_cast<SCEVConstant>(BaseMul->getOperand(1)))
363 if (BaseC->getAPInt().urem(VectorWidth) == 0)
364 return SE->getMinusSCEV(EC, BaseC);
365 }
366
368 dbgs() << "ARM TP: induction base is not know to be a multiple of VF: "
369 << *AddExpr->getOperand(0) << "\n");
370 return nullptr;
371}
372
373void MVETailPredication::InsertVCTPIntrinsic(IntrinsicInst *ActiveLaneMask,
374 Value *Start) {
375 IRBuilder<> Builder(L->getLoopPreheader()->getTerminator());
376 Module *M = L->getHeader()->getModule();
377 Type *Ty = IntegerType::get(M->getContext(), 32);
378 unsigned VectorWidth =
379 cast<FixedVectorType>(ActiveLaneMask->getType())->getNumElements();
380
381 // Insert a phi to count the number of elements processed by the loop.
382 Builder.SetInsertPoint(L->getHeader(), L->getHeader()->getFirstNonPHIIt());
383 PHINode *Processed = Builder.CreatePHI(Ty, 2);
384 Processed->addIncoming(Start, L->getLoopPreheader());
385
386 // Replace @llvm.get.active.mask() with the ARM specific VCTP intrinsic, and
387 // thus represent the effect of tail predication.
388 Builder.SetInsertPoint(ActiveLaneMask);
389 ConstantInt *Factor = ConstantInt::get(cast<IntegerType>(Ty), VectorWidth);
390
391 Intrinsic::ID VCTPID;
392 switch (VectorWidth) {
393 default:
394 llvm_unreachable("unexpected number of lanes");
395 case 2: VCTPID = Intrinsic::arm_mve_vctp64; break;
396 case 4: VCTPID = Intrinsic::arm_mve_vctp32; break;
397 case 8: VCTPID = Intrinsic::arm_mve_vctp16; break;
398 case 16: VCTPID = Intrinsic::arm_mve_vctp8; break;
399 }
400 Value *VCTPCall = Builder.CreateIntrinsic(VCTPID, Processed);
401 ActiveLaneMask->replaceAllUsesWith(VCTPCall);
402
403 // Add the incoming value to the new phi.
404 // TODO: This add likely already exists in the loop.
405 Value *Remaining = Builder.CreateSub(Processed, Factor);
406 Processed->addIncoming(Remaining, L->getLoopLatch());
407 LLVM_DEBUG(dbgs() << "ARM TP: Insert processed elements phi: "
408 << *Processed << "\n"
409 << "ARM TP: Inserted VCTP: " << *VCTPCall << "\n");
410}
411
412bool MVETailPredication::TryConvertActiveLaneMask(Value *TripCount) {
413 SmallVector<IntrinsicInst *, 4> ActiveLaneMasks;
414 for (auto *BB : L->getBlocks())
415 for (auto &I : *BB)
416 if (auto *Int = dyn_cast<IntrinsicInst>(&I))
417 if (Int->getIntrinsicID() == Intrinsic::get_active_lane_mask)
418 ActiveLaneMasks.push_back(Int);
419
420 if (ActiveLaneMasks.empty())
421 return false;
422
423 LLVM_DEBUG(dbgs() << "ARM TP: Found predicated vector loop.\n");
424
425 for (auto *ActiveLaneMask : ActiveLaneMasks) {
426 LLVM_DEBUG(dbgs() << "ARM TP: Found active lane mask: "
427 << *ActiveLaneMask << "\n");
428
429 const SCEV *StartSCEV = IsSafeActiveMask(ActiveLaneMask, TripCount);
430 if (!StartSCEV) {
431 LLVM_DEBUG(dbgs() << "ARM TP: Not safe to insert VCTP.\n");
432 return false;
433 }
434 LLVM_DEBUG(dbgs() << "ARM TP: Safe to insert VCTP. Start is " << *StartSCEV
435 << "\n");
436 SCEVExpander Expander(*SE, "start");
437 Instruction *Ins = L->getLoopPreheader()->getTerminator();
438 Value *Start = Expander.expandCodeFor(StartSCEV, StartSCEV->getType(), Ins);
439 LLVM_DEBUG(dbgs() << "ARM TP: Created start value " << *Start << "\n");
440 InsertVCTPIntrinsic(ActiveLaneMask, Start);
441 }
442
443 // Remove dead instructions and now dead phis.
444 for (auto *II : ActiveLaneMasks)
446 for (auto *I : L->blocks())
448 return true;
449}
450
452 return new MVETailPredication();
453}
454
455char MVETailPredication::ID = 0;
456
457INITIALIZE_PASS(MVETailPredication, DEBUG_TYPE, DESC, false, false)
cl::opt< TailPredication::Mode > EnableTailPredication
This file a TargetTransformInfoImplBase conforming object specific to the ARM target machine.
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
#define DEBUG_TYPE
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
#define DESC
cl::opt< TailPredication::Mode > EnableTailPredication("tail-predication", cl::desc("MVE tail-predication pass options"), cl::init(TailPredication::Enabled), cl::values(clEnumValN(TailPredication::Disabled, "disabled", "Don't tail-predicate loops"), clEnumValN(TailPredication::EnabledNoReductions, "enabled-no-reductions", "Enable tail-predication, but not for reduction loops"), clEnumValN(TailPredication::Enabled, "enabled", "Enable tail-predication, including reduction loops"), clEnumValN(TailPredication::ForceEnabledNoReductions, "force-enabled-no-reductions", "Enable tail-predication, but not for reduction loops, " "and force this which might be unsafe"), clEnumValN(TailPredication::ForceEnabled, "force-enabled", "Enable tail-predication, including reduction loops, " "and force this which might be unsafe")))
Machine Check Debug Module
uint64_t IntrinsicInst * II
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
#define LLVM_DEBUG(...)
Definition Debug.h:119
Target-Independent Code Generator Pass Configuration Options pass.
This pass exposes codegen information to IR-level passes.
static const uint32_t IV[8]
Definition blake3_impl.h:83
static APInt getLowBitsSet(unsigned numBits, unsigned loBitsSet)
Constructs an APInt value that has the bottom loBitsSet bits set.
Definition APInt.h:307
AnalysisUsage & addRequired()
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition Pass.cpp:275
LLVM_ABI const BasicBlock * getSinglePredecessor() const
Return the predecessor of this block if it has a single predecessor block.
LLVM_ABI Intrinsic::ID getIntrinsicID() const
Returns the intrinsic ID of the intrinsic called or Intrinsic::not_intrinsic if the called function i...
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
Definition Constants.h:168
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
Definition Type.cpp:348
Represents a single loop in the control flow graph.
Definition LoopInfo.h:40
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
Pass interface - Implemented by all 'passes'.
Definition Pass.h:99
LLVM_ABI void dump() const
This method is used for debugging.
Type * getType() const
Return the LLVM type of this SCEV expression.
The main scalar evolution driver.
LLVM_ABI const SCEV * getUDivExpr(SCEVUse LHS, SCEVUse RHS)
Get a canonical unsigned division expression, or something simpler if possible.
LLVM_ABI const SCEV * getNegativeSCEV(const SCEV *V, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap)
Return the SCEV object corresponding to -V.
LLVM_ABI const SCEV * getBackedgeTakenCount(const Loop *L, ExitCountKind Kind=Exact)
If the specified loop has a predictable backedge-taken count, return it, otherwise return a SCEVCould...
LLVM_ABI const SCEV * getSCEV(Value *V)
Return a SCEV expression for the full generality of the specified expression.
LLVM_ABI const SCEV * getMinusSCEV(SCEVUse LHS, SCEVUse RHS, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Return LHS-RHS.
LLVM_ABI bool isLoopInvariant(const SCEV *S, const Loop *L)
Return true if the value of the given SCEV is unchanging in the specified loop.
LLVM_ABI const SCEV * getMulExpr(SmallVectorImpl< SCEVUse > &Ops, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Get a canonical multiply expression, or something simpler if possible.
LLVM_ABI const SCEV * getAddExpr(SmallVectorImpl< SCEVUse > &Ops, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Get a canonical add expression, or something simpler if possible.
LLVM_ABI const SCEV * applyLoopGuards(const SCEV *Expr, const Loop *L)
Try to apply information from loop guards for L to Expr.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
LLVM_ABI TypeSize getPrimitiveSizeInBits() const LLVM_READONLY
Return the basic size of this type if it is a primitive type.
Definition Type.cpp:197
Value * getOperand(unsigned i) const
Definition User.h:207
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:255
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
Definition Value.cpp:553
CallInst * Call
Changed
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
@ BasicBlock
Various leaf nodes.
Definition ISDOpcodes.h:81
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
initializer< Ty > init(const Ty &Val)
friend class Instruction
Iterator for Instructions in a `BasicBlock.
Definition BasicBlock.h:73
This is an optimization pass for GlobalISel generic memory operations.
void dump(const SparseBitVector< ElementSize > &LHS, raw_ostream &out)
LLVM_ABI bool RecursivelyDeleteTriviallyDeadInstructions(Value *V, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr, std::function< void(Value *)> AboutToDeleteCallback=std::function< void(Value *)>())
If the specified value is a trivially dead instruction, delete it.
Definition Local.cpp:535
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
LLVM_ABI bool DeleteDeadPHIs(BasicBlock *BB, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr, SmallPtrSetImpl< PHINode * > *KnownNonDeadPHIs=nullptr)
Examine each PHI in the given block and delete it if it is dead.
unsigned Log2_64(uint64_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
Definition MathExtras.h:338
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
Definition InstrProf.h:143
LLVM_ABI bool MaskedValueIsZero(const Value *V, const APInt &Mask, const SimplifyQuery &SQ, unsigned Depth=0)
Return true if 'V & Mask' is known to be zero.
Pass * createMVETailPredicationPass()
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
TargetTransformInfo TTI
IRBuilder(LLVMContext &, FolderTy, InserterTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy, InserterTy >
@ Sub
Subtraction of integers.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559