45#define DEBUG_TYPE "amdgpu-lower-enqueued-block"
52class AMDGPUOpenCLEnqueuedBlockLowering {
57class AMDGPUOpenCLEnqueuedBlockLoweringLegacy :
public ModulePass {
61 explicit AMDGPUOpenCLEnqueuedBlockLoweringLegacy() :
ModulePass(
ID) {}
69char AMDGPUOpenCLEnqueuedBlockLoweringLegacy::ID = 0;
72 AMDGPUOpenCLEnqueuedBlockLoweringLegacy::ID;
75 "Lower OpenCL enqueued blocks",
false,
false)
78 return new AMDGPUOpenCLEnqueuedBlockLoweringLegacy();
81bool AMDGPUOpenCLEnqueuedBlockLoweringLegacy::runOnModule(
Module &M) {
82 AMDGPUOpenCLEnqueuedBlockLowering Impl;
88 AMDGPUOpenCLEnqueuedBlockLowering Impl;
94bool AMDGPUOpenCLEnqueuedBlockLowering::run(
Module &M) {
96 auto &
C = M.getContext();
102 for (
auto &
F : M.functions()) {
103 if (
F.hasFnAttribute(
"enqueued-block")) {
110 LLVM_DEBUG(
dbgs() <<
"found enqueued kernel: " <<
F.getName() <<
'\n');
111 auto RuntimeHandle = (
F.getName() +
".runtime_handle").str();
116 "block.runtime.handle.t");
129 F.addFnAttr(
"runtime-handle", RuntimeHandle);
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file defines the DenseSet and SmallDenseSet classes.
Module.h This file contains the declarations for the Module class.
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
This file defines the SmallString class.
PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM)
A container for analyses that lazily runs them and caches their results.
static Constant * getAddrSpaceCast(Constant *C, Type *Ty, bool OnlyIfReduced=false)
static Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
Implements a dense probed hash-table based set.
@ ExternalLinkage
Externally visible function.
void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, bool CannotUsePrivateLabel) const
Print the appropriate prefix and the specified global variable's name.
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
virtual bool runOnModule(Module &M)=0
runOnModule - Virtual method overriden by subclasses to process the module being operated on.
A Module instance is used to store all the information related to an LLVM module.
static PointerType * getUnqual(Type *ElementType)
This constructs a pointer to an object of the specified type in the default address space (address sp...
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Class to represent struct types.
static StructType * create(LLVMContext &Context, StringRef Name)
This creates an identified struct.
The instances of the Type class are immutable: once they are created, they are never changed.
static IntegerType * getInt32Ty(LLVMContext &C)
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
@ C
The default llvm calling convention, compatible with C.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
This is an optimization pass for GlobalISel generic memory operations.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
ModulePass * createAMDGPUOpenCLEnqueuedBlockLoweringLegacyPass()
char & AMDGPUOpenCLEnqueuedBlockLoweringLegacyID