31#include "llvm/IR/IntrinsicsAMDGPU.h"
36#define DEBUG_TYPE "amdgpu-atomic-optimizer"
43struct ReplacementInfo {
67class AMDGPUAtomicOptimizerImpl
80 Value *
const Identity)
const;
82 Value *
const Identity)
const;
85 std::pair<Value *, Value *>
91 bool ValDivergent,
bool IsLDS)
const;
94 AMDGPUAtomicOptimizerImpl() =
delete;
99 :
F(
F), UA(UA),
DL(
F.getDataLayout()), DTU(DTU), ST(ST),
101 ScanImpl(ScanImpl) {}
111char AMDGPUAtomicOptimizer::ID = 0;
115bool AMDGPUAtomicOptimizer::runOnFunction(
Function &
F) {
116 if (skipFunction(
F)) {
121 getAnalysis<UniformityInfoWrapperPass>().getUniformityInfo();
124 getAnalysisIfAvailable<DominatorTreeWrapperPass>();
126 DomTreeUpdater::UpdateStrategy::Lazy);
132 return AMDGPUAtomicOptimizerImpl(
F, UA, DTU, ST, ScanImpl).run();
140 DomTreeUpdater::UpdateStrategy::Lazy);
143 bool IsChanged = AMDGPUAtomicOptimizerImpl(
F, UA, DTU, ST, ScanImpl).run();
154bool AMDGPUAtomicOptimizerImpl::run() {
162 if (ToReplace.empty())
165 for (
auto &[
I,
Op, ValIdx, ValDivergent, IsLDS] : ToReplace)
166 optimizeAtomic(*
I,
Op, ValIdx, ValDivergent, IsLDS);
172 switch (Ty->getTypeID()) {
177 unsigned Size = Ty->getIntegerBitWidth();
185void AMDGPUAtomicOptimizerImpl::visitAtomicRMWInst(AtomicRMWInst &
I) {
187 switch (
I.getPointerAddressSpace()) {
218 !(
I.getType()->isFloatTy() ||
I.getType()->isDoubleTy())) {
222 const unsigned PtrIdx = 0;
223 const unsigned ValIdx = 1;
238 if (ScanImpl == ScanOptions::DPP && !ST.hasDPP())
250 ToReplace.push_back({&
I,
Op, ValIdx, ValDivergent, IsLDS});
253void AMDGPUAtomicOptimizerImpl::visitIntrinsicInst(IntrinsicInst &
I) {
256 switch (
I.getIntrinsicID()) {
259 case Intrinsic::amdgcn_struct_buffer_atomic_add:
260 case Intrinsic::amdgcn_struct_ptr_buffer_atomic_add:
261 case Intrinsic::amdgcn_raw_buffer_atomic_add:
262 case Intrinsic::amdgcn_raw_ptr_buffer_atomic_add:
265 case Intrinsic::amdgcn_struct_buffer_atomic_sub:
266 case Intrinsic::amdgcn_struct_ptr_buffer_atomic_sub:
267 case Intrinsic::amdgcn_raw_buffer_atomic_sub:
268 case Intrinsic::amdgcn_raw_ptr_buffer_atomic_sub:
271 case Intrinsic::amdgcn_struct_buffer_atomic_and:
272 case Intrinsic::amdgcn_struct_ptr_buffer_atomic_and:
273 case Intrinsic::amdgcn_raw_buffer_atomic_and:
274 case Intrinsic::amdgcn_raw_ptr_buffer_atomic_and:
277 case Intrinsic::amdgcn_struct_buffer_atomic_or:
278 case Intrinsic::amdgcn_struct_ptr_buffer_atomic_or:
279 case Intrinsic::amdgcn_raw_buffer_atomic_or:
280 case Intrinsic::amdgcn_raw_ptr_buffer_atomic_or:
283 case Intrinsic::amdgcn_struct_buffer_atomic_xor:
284 case Intrinsic::amdgcn_struct_ptr_buffer_atomic_xor:
285 case Intrinsic::amdgcn_raw_buffer_atomic_xor:
286 case Intrinsic::amdgcn_raw_ptr_buffer_atomic_xor:
289 case Intrinsic::amdgcn_struct_buffer_atomic_smin:
290 case Intrinsic::amdgcn_struct_ptr_buffer_atomic_smin:
291 case Intrinsic::amdgcn_raw_buffer_atomic_smin:
292 case Intrinsic::amdgcn_raw_ptr_buffer_atomic_smin:
295 case Intrinsic::amdgcn_struct_buffer_atomic_umin:
296 case Intrinsic::amdgcn_struct_ptr_buffer_atomic_umin:
297 case Intrinsic::amdgcn_raw_buffer_atomic_umin:
298 case Intrinsic::amdgcn_raw_ptr_buffer_atomic_umin:
301 case Intrinsic::amdgcn_struct_buffer_atomic_smax:
302 case Intrinsic::amdgcn_struct_ptr_buffer_atomic_smax:
303 case Intrinsic::amdgcn_raw_buffer_atomic_smax:
304 case Intrinsic::amdgcn_raw_ptr_buffer_atomic_smax:
307 case Intrinsic::amdgcn_struct_buffer_atomic_umax:
308 case Intrinsic::amdgcn_struct_ptr_buffer_atomic_umax:
309 case Intrinsic::amdgcn_raw_buffer_atomic_umax:
310 case Intrinsic::amdgcn_raw_ptr_buffer_atomic_umax:
315 const unsigned ValIdx = 0;
324 if (ScanImpl == ScanOptions::DPP && !ST.hasDPP())
333 for (
unsigned Idx = 1; Idx <
I.getNumOperands(); Idx++) {
342 ToReplace.push_back({&
I,
Op, ValIdx, ValDivergent,
false});
355 return B.CreateBinOp(Instruction::Add,
LHS,
RHS);
359 return B.CreateBinOp(Instruction::Sub,
LHS,
RHS);
363 return B.CreateBinOp(Instruction::And,
LHS,
RHS);
365 return B.CreateBinOp(Instruction::Or,
LHS,
RHS);
367 return B.CreateBinOp(Instruction::Xor,
LHS,
RHS);
382 return B.CreateMaxNum(
LHS,
RHS);
384 return B.CreateMinNum(
LHS,
RHS);
395 Value *
const Identity)
const {
396 Type *AtomicTy =
V->getType();
397 Module *
M =
B.GetInsertBlock()->getModule();
400 for (
unsigned Idx = 0; Idx < 4; Idx++) {
403 B.CreateIntrinsic(Intrinsic::amdgcn_update_dpp, AtomicTy,
404 {Identity, V, B.getInt32(DPP::ROW_XMASK0 | 1 << Idx),
405 B.getInt32(0xf), B.getInt32(0xf), B.getFalse()}));
409 assert(ST.hasPermlane16Insts());
410 Value *Permlanex16Call =
411 B.CreateIntrinsic(AtomicTy, Intrinsic::amdgcn_permlanex16,
413 B.getInt32(0),
B.getFalse(),
B.getFalse()});
421 Value *Permlane64Call =
422 B.CreateIntrinsic(AtomicTy, Intrinsic::amdgcn_permlane64, V);
429 M, Intrinsic::amdgcn_readlane, AtomicTy);
430 Value *Lane0 =
B.CreateCall(ReadLane, {
V,
B.getInt32(0)});
431 Value *Lane32 =
B.CreateCall(ReadLane, {
V,
B.getInt32(32)});
439 Value *Identity)
const {
440 Type *AtomicTy =
V->getType();
441 Module *
M =
B.GetInsertBlock()->getModule();
443 M, Intrinsic::amdgcn_update_dpp, AtomicTy);
445 for (
unsigned Idx = 0; Idx < 4; Idx++) {
448 B.CreateCall(UpdateDPP,
449 {Identity, V, B.getInt32(DPP::ROW_SHR0 | 1 << Idx),
450 B.getInt32(0xf), B.getInt32(0xf), B.getFalse()}));
452 if (ST.hasDPPBroadcasts()) {
456 B.CreateCall(UpdateDPP,
457 {Identity, V, B.getInt32(DPP::BCAST15), B.getInt32(0xa),
458 B.getInt32(0xf), B.getFalse()}));
461 B.CreateCall(UpdateDPP,
462 {Identity, V, B.getInt32(DPP::BCAST31), B.getInt32(0xc),
463 B.getInt32(0xf), B.getFalse()}));
470 assert(ST.hasPermlane16Insts());
472 B.CreateIntrinsic(AtomicTy, Intrinsic::amdgcn_permlanex16,
474 B.getInt32(-1),
B.getFalse(),
B.getFalse()});
476 Value *UpdateDPPCall =
B.CreateCall(
478 B.getInt32(0xa),
B.getInt32(0xf),
B.getFalse()});
483 Value *
const Lane31 =
B.CreateIntrinsic(
484 AtomicTy, Intrinsic::amdgcn_readlane, {
V,
B.getInt32(31)});
486 Value *UpdateDPPCall =
B.CreateCall(
488 B.getInt32(0xc),
B.getInt32(0xf),
B.getFalse()});
499 Value *Identity)
const {
500 Type *AtomicTy =
V->getType();
501 Module *
M =
B.GetInsertBlock()->getModule();
503 M, Intrinsic::amdgcn_update_dpp, AtomicTy);
504 if (ST.hasDPPWavefrontShifts()) {
506 V =
B.CreateCall(UpdateDPP,
508 B.getInt32(0xf),
B.getFalse()});
511 M, Intrinsic::amdgcn_readlane, AtomicTy);
513 M, Intrinsic::amdgcn_writelane, AtomicTy);
518 V =
B.CreateCall(UpdateDPP,
520 B.getInt32(0xf),
B.getInt32(0xf),
B.getFalse()});
523 V =
B.CreateCall(WriteLane, {
B.CreateCall(ReadLane, {Old,
B.getInt32(15)}),
530 {
B.CreateCall(ReadLane, {Old,
B.getInt32(31)}),
B.getInt32(32),
V});
535 {
B.CreateCall(ReadLane, {Old,
B.getInt32(47)}),
B.getInt32(48),
V});
547std::pair<Value *, Value *> AMDGPUAtomicOptimizerImpl::buildScanIteratively(
549 Instruction &
I, BasicBlock *ComputeLoop, BasicBlock *ComputeEnd)
const {
550 auto *Ty =
I.getType();
552 auto *EntryBB =
I.getParent();
553 auto NeedResult = !
I.use_empty();
556 B.CreateIntrinsic(Intrinsic::amdgcn_ballot, WaveTy,
B.getTrue());
559 B.SetInsertPoint(ComputeLoop);
563 PHINode *OldValuePhi =
nullptr;
565 OldValuePhi =
B.CreatePHI(Ty, 2,
"OldValuePhi");
568 auto *ActiveBits =
B.CreatePHI(WaveTy, 2,
"ActiveBits");
569 ActiveBits->addIncoming(Ballot, EntryBB);
573 B.CreateIntrinsic(Intrinsic::cttz, WaveTy, {ActiveBits,
B.getTrue()});
575 auto *LaneIdxInt =
B.CreateTrunc(FF1,
B.getInt32Ty());
578 Value *LaneValue =
B.CreateIntrinsic(
V->getType(), Intrinsic::amdgcn_readlane,
583 Value *OldValue =
nullptr;
585 OldValue =
B.CreateIntrinsic(
V->getType(), Intrinsic::amdgcn_writelane,
586 {Accumulator, LaneIdxInt, OldValuePhi});
592 Accumulator->addIncoming(NewAccumulator, ComputeLoop);
596 auto *
Mask =
B.CreateShl(ConstantInt::get(WaveTy, 1), FF1);
598 auto *InverseMask =
B.CreateXor(Mask, ConstantInt::getAllOnesValue(WaveTy));
599 auto *NewActiveBits =
B.CreateAnd(ActiveBits, InverseMask);
600 ActiveBits->addIncoming(NewActiveBits, ComputeLoop);
603 auto *IsEnd =
B.CreateICmpEQ(NewActiveBits, ConstantInt::get(WaveTy, 0));
604 B.CreateCondBr(IsEnd, ComputeEnd, ComputeLoop);
606 B.SetInsertPoint(ComputeEnd);
608 return {OldValue, NewAccumulator};
614 const unsigned BitWidth = Ty->getPrimitiveSizeInBits();
650void AMDGPUAtomicOptimizerImpl::optimizeAtomic(Instruction &
I,
661 if (IsLDS && ValDivergent && ScanImpl == ScanOptions::DPP) {
662 if (MDNode *MD =
I.getMetadata(
"amdgpu.expected.active.lanes")) {
664 constexpr unsigned ActiveLanesThreshold = 5;
665 if (CI->getValue().ule(ActiveLanesThreshold))
674 B.setIsFPConstrained(
I.getFunction()->hasFnAttribute(Attribute::StrictFP));
691 Value *
const Cond =
B.CreateIntrinsic(Intrinsic::amdgcn_ps_live, {});
699 B.SetInsertPoint(&
I);
702 Type *
const Ty =
I.getType();
703 Type *Int32Ty =
B.getInt32Ty();
705 [[maybe_unused]]
const unsigned TyBitWidth =
DL.getTypeSizeInBits(Ty);
709 Value *
V =
I.getOperand(ValIdx);
714 CallInst *
const Ballot =
B.CreateIntrinsicWithoutFolding(
715 Intrinsic::amdgcn_ballot, WaveTy,
B.getTrue());
724 B.CreateIntrinsic(Intrinsic::amdgcn_mbcnt_lo, {Ballot,
B.getInt32(0)});
726 Value *
const ExtractLo =
B.CreateTrunc(Ballot, Int32Ty);
727 Value *
const ExtractHi =
B.CreateTrunc(
B.CreateLShr(Ballot, 32), Int32Ty);
728 Mbcnt =
B.CreateIntrinsic(Intrinsic::amdgcn_mbcnt_lo,
729 {ExtractLo,
B.getInt32(0)});
730 Mbcnt =
B.CreateIntrinsic(Intrinsic::amdgcn_mbcnt_hi, {ExtractHi, Mbcnt});
734 LLVMContext &
C =
F->getContext();
746 Value *ExclScan =
nullptr;
747 Value *NewV =
nullptr;
749 const bool NeedResult = !
I.use_empty();
756 if (ScanImpl == ScanOptions::DPP) {
760 B.CreateIntrinsic(Intrinsic::amdgcn_set_inactive, Ty, {
V, Identity});
761 if (!NeedResult && ST.hasPermlane16Insts()) {
765 NewV = buildReduction(
B, ScanOp, NewV, Identity);
767 NewV = buildScan(
B, ScanOp, NewV, Identity);
769 ExclScan = buildShiftRight(
B, NewV, Identity);
774 NewV =
B.CreateIntrinsic(Ty, Intrinsic::amdgcn_readlane,
775 {NewV, LastLaneIdx});
778 NewV =
B.CreateIntrinsic(Intrinsic::amdgcn_strict_wwm, Ty, NewV);
779 }
else if (ScanImpl == ScanOptions::Iterative) {
783 std::tie(ExclScan, NewV) = buildScanIteratively(
B, ScanOp, Identity, V,
I,
784 ComputeLoop, ComputeEnd);
797 Value *
const Ctpop =
B.CreateIntCast(
798 B.CreateUnaryIntrinsic(Intrinsic::ctpop, Ballot), Ty,
false);
804 Value *
const Ctpop =
B.CreateIntCast(
805 B.CreateUnaryIntrinsic(Intrinsic::ctpop, Ballot), Int32Ty,
false);
806 Value *
const CtpopFP =
B.CreateUIToFP(Ctpop, Ty);
807 NewV =
B.CreateFMul(V, CtpopFP);
826 Value *
const Ctpop =
B.CreateIntCast(
827 B.CreateUnaryIntrinsic(Intrinsic::ctpop, Ballot), Ty,
false);
836 Value *
const Cond =
B.CreateICmpEQ(Mbcnt,
B.getInt32(0));
858 if (ValDivergent && ScanImpl == ScanOptions::Iterative) {
864 B.SetInsertPoint(ComputeEnd);
866 B.Insert(Terminator);
870 B.SetInsertPoint(OriginalBB);
871 B.CreateBr(ComputeLoop);
875 {{DominatorTree::Insert, OriginalBB, ComputeLoop},
876 {DominatorTree::Insert, ComputeLoop, ComputeEnd}});
881 DomTreeUpdates.push_back({DominatorTree::Insert, ComputeEnd, Succ});
882 DomTreeUpdates.push_back({DominatorTree::Delete, OriginalBB, Succ});
887 Predecessor = ComputeEnd;
889 Predecessor = OriginalBB;
892 B.SetInsertPoint(SingleLaneTerminator);
902 B.SetInsertPoint(&
I);
906 PHINode *
const PHI =
B.CreatePHI(Ty, 2);
908 PHI->addIncoming(NewI, SingleLaneTerminator->
getParent());
915 ReadlaneVal =
B.CreateZExt(
PHI,
B.getInt32Ty());
917 Value *BroadcastI =
B.CreateIntrinsic(
918 ReadlaneVal->
getType(), Intrinsic::amdgcn_readfirstlane, ReadlaneVal);
920 BroadcastI =
B.CreateTrunc(BroadcastI, Ty);
926 Value *LaneOffset =
nullptr;
928 if (ScanImpl == ScanOptions::DPP) {
930 B.CreateIntrinsic(Intrinsic::amdgcn_strict_wwm, Ty, ExclScan);
931 }
else if (ScanImpl == ScanOptions::Iterative) {
932 LaneOffset = ExclScan;
937 Mbcnt = isAtomicFloatingPointTy ?
B.CreateUIToFP(Mbcnt, Ty)
938 :
B.CreateIntCast(Mbcnt, Ty,
false);
954 LaneOffset =
B.CreateSelect(
Cond, Identity, V);
957 LaneOffset =
buildMul(
B, V,
B.CreateAnd(Mbcnt, 1));
961 LaneOffset =
B.CreateFMul(V, Mbcnt);
967 if (isAtomicFloatingPointTy) {
985 PHINode *
const PHI =
B.CreatePHI(Ty, 2);
987 PHI->addIncoming(Result,
I.getParent());
988 I.replaceAllUsesWith(
PHI);
991 I.replaceAllUsesWith(Result);
1000 "AMDGPU atomic optimizations",
false,
false)
1007 return new AMDGPUAtomicOptimizer(ScanStrategy);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static Constant * getIdentityValueForAtomicOp(Type *const Ty, AtomicRMWInst::BinOp Op)
static bool isLegalCrossLaneType(Type *Ty)
static Value * buildMul(IRBuilder<> &B, Value *LHS, Value *RHS)
static Value * buildNonAtomicBinOp(IRBuilder<> &B, AtomicRMWInst::BinOp Op, Value *LHS, Value *RHS)
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static bool runOnFunction(Function &F, bool PostInlining)
AMD GCN specific subclass of TargetSubtarget.
Machine Check Debug Module
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
const SmallVectorImpl< MachineOperand > & Cond
static void visit(BasicBlock &Start, std::function< bool(BasicBlock *)> op)
Target-Independent Code Generator Pass Configuration Options pass.
bool isSingleLaneExecution(const Function &Kernel) const
Return true if only a single workitem can be active in a wave.
unsigned getWavefrontSize() const
static APFloat getNaN(const fltSemantics &Sem, bool Negative=false, uint64_t payload=0)
Factory for NaN values.
static APFloat getZero(const fltSemantics &Sem, bool Negative=false)
Factory for Positive and Negative Zero.
static APInt getMaxValue(unsigned numBits)
Gets maximum unsigned value of APInt for specific bit width.
static APInt getSignedMaxValue(unsigned numBits)
Gets maximum signed value of APInt for a specific bit width.
static APInt getMinValue(unsigned numBits)
Gets minimum unsigned value of APInt for a specific bit width.
static APInt getSignedMinValue(unsigned numBits)
Gets minimum signed value of APInt for a specific bit width.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
an instruction that atomically reads a memory location, combines it with another value,...
static bool isFPOperation(BinOp Op)
BinOp
This enumeration lists the possible modifications atomicrmw can make.
@ Min
*p = old <signed v ? old : v
@ Max
*p = old >signed v ? old : v
@ UMin
*p = old <unsigned v ? old : v
@ FMin
*p = minnum(old, v) minnum matches the behavior of llvm.minnum.
@ UMax
*p = old >unsigned v ? old : v
@ FMax
*p = maxnum(old, v) maxnum matches the behavior of llvm.maxnum.
LLVM Basic Block Representation.
const Function * getParent() const
Return the enclosing method, or null if none.
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
@ ICMP_SLT
signed less than
@ ICMP_UGT
unsigned greater than
@ ICMP_SGT
signed greater than
@ ICMP_ULT
unsigned less than
This is the shared class of boolean and integer constants.
bool isOne() const
This is just a convenience method to make client code smaller for a common case.
This is an important base class in LLVM.
A parsed version of the target data layout string in and methods for querying it.
Analysis pass which computes a DominatorTree.
Legacy analysis pass which computes a DominatorTree.
DominatorTree & getDomTree()
FunctionPass class - This class is used to implement most global optimizations.
bool hasPermLane64() const
void applyUpdates(ArrayRef< UpdateT > Updates)
Submit updates to all available trees.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Base class for instruction visitors.
A wrapper class for inspecting calls to intrinsic functions.
This is an important class for using LLVM in a threaded context.
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalyses & preserve()
Mark an analysis as preserved.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Primary interface to the complete machine description for the target machine.
const STC & getSubtarget(const Function &F) const
This method returns a pointer to the specified type of TargetSubtargetInfo.
Target-Independent Code Generator Pass Configuration Options.
TMC & getTM() const
Get the right type of TargetMachine for this target.
The instances of the Type class are immutable: once they are created, they are never changed.
@ FloatTyID
32-bit floating point type
@ IntegerTyID
Arbitrary bit width integers.
@ DoubleTyID
64-bit floating point type
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
void setOperand(unsigned i, Value *Val)
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
const ParentTy * getParent() const
self_iterator getIterator()
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ LOCAL_ADDRESS
Address space for local memory.
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
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.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ AMDGPU_PS
Used for Mesa/AMDPAL pixel shaders.
@ C
The default llvm calling convention, compatible with C.
@ BasicBlock
Various leaf nodes.
LLVM_ABI Function * getOrInsertDeclaration(Module *M, ID id, ArrayRef< Type * > OverloadTys={})
Look up the Function declaration of the intrinsic id in the Module M.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
friend class Instruction
Iterator for Instructions in a `BasicBlock.
This is an optimization pass for GlobalISel generic memory operations.
GenericUniformityInfo< SSAContext > UniformityInfo
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
FunctionPass * createAMDGPUAtomicOptimizerPass(ScanOptions ScanStrategy)
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
IRBuilder(LLVMContext &, FolderTy, InserterTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy, InserterTy >
DWARFExpression::Operation Op
constexpr unsigned BitWidth
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
char & AMDGPUAtomicOptimizerID
LLVM_ABI Instruction * SplitBlockAndInsertIfThen(Value *Cond, BasicBlock::iterator SplitBefore, bool Unreachable, MDNode *BranchWeights=nullptr, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr, BasicBlock *ThenBlock=nullptr)
Split the containing block at the specified instruction - everything before SplitBefore stays in the ...
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)