1a5f9cda1SChristian Sigg //===- ConvertLaunchFuncToGpuRuntimeCalls.cpp - MLIR GPU lowering passes --===//
2a5f9cda1SChristian Sigg //
3a5f9cda1SChristian Sigg // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4a5f9cda1SChristian Sigg // See https://llvm.org/LICENSE.txt for license information.
5a5f9cda1SChristian Sigg // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6a5f9cda1SChristian Sigg //
7a5f9cda1SChristian Sigg //===----------------------------------------------------------------------===//
8a5f9cda1SChristian Sigg //
9a5f9cda1SChristian Sigg // This file implements a pass to convert gpu.launch_func op into a sequence of
10a5f9cda1SChristian Sigg // GPU runtime calls. As most of GPU runtimes does not have a stable published
11a5f9cda1SChristian Sigg // ABI, this pass uses a slim runtime layer that builds on top of the public
12a5f9cda1SChristian Sigg // API from GPU runtime headers.
13a5f9cda1SChristian Sigg //
14a5f9cda1SChristian Sigg //===----------------------------------------------------------------------===//
15a5f9cda1SChristian Sigg 
16a5f9cda1SChristian Sigg #include "mlir/Conversion/GPUCommon/GPUCommonPass.h"
17a5f9cda1SChristian Sigg 
18a5f9cda1SChristian Sigg #include "../PassDetail.h"
19*a54f4eaeSMogball #include "mlir/Conversion/ArithmeticToLLVM/ArithmeticToLLVM.h"
20a5f9cda1SChristian Sigg #include "mlir/Conversion/AsyncToLLVM/AsyncToLLVM.h"
2175e5f0aaSAlex Zinenko #include "mlir/Conversion/LLVMCommon/ConversionTarget.h"
22684dfe8aSAlex Zinenko #include "mlir/Conversion/LLVMCommon/Pattern.h"
2375e5f0aaSAlex Zinenko #include "mlir/Conversion/MemRefToLLVM/MemRefToLLVM.h"
24a5f9cda1SChristian Sigg #include "mlir/Conversion/StandardToLLVM/ConvertStandardToLLVM.h"
25684dfe8aSAlex Zinenko #include "mlir/Conversion/StandardToLLVM/ConvertStandardToLLVMPass.h"
26a5f9cda1SChristian Sigg #include "mlir/Conversion/VectorToLLVM/ConvertVectorToLLVM.h"
27a5f9cda1SChristian Sigg #include "mlir/Dialect/Async/IR/Async.h"
28a5f9cda1SChristian Sigg #include "mlir/Dialect/GPU/GPUDialect.h"
29a5f9cda1SChristian Sigg #include "mlir/Dialect/GPU/Passes.h"
30a5f9cda1SChristian Sigg #include "mlir/Dialect/LLVMIR/LLVMDialect.h"
31a5f9cda1SChristian Sigg #include "mlir/IR/Attributes.h"
32a5f9cda1SChristian Sigg #include "mlir/IR/Builders.h"
33a5f9cda1SChristian Sigg #include "mlir/IR/BuiltinOps.h"
34a5f9cda1SChristian Sigg #include "mlir/IR/BuiltinTypes.h"
35a5f9cda1SChristian Sigg 
36a5f9cda1SChristian Sigg #include "llvm/ADT/STLExtras.h"
37a5f9cda1SChristian Sigg #include "llvm/Support/Error.h"
38a5f9cda1SChristian Sigg #include "llvm/Support/FormatVariadic.h"
39a5f9cda1SChristian Sigg 
40a5f9cda1SChristian Sigg using namespace mlir;
41a5f9cda1SChristian Sigg 
42a5f9cda1SChristian Sigg static constexpr const char *kGpuBinaryStorageSuffix = "_gpubin_cst";
43a5f9cda1SChristian Sigg 
44a5f9cda1SChristian Sigg namespace {
45a5f9cda1SChristian Sigg 
46a5f9cda1SChristian Sigg class GpuToLLVMConversionPass
47a5f9cda1SChristian Sigg     : public GpuToLLVMConversionPassBase<GpuToLLVMConversionPass> {
48a5f9cda1SChristian Sigg public:
49a5f9cda1SChristian Sigg   GpuToLLVMConversionPass() = default;
50a5f9cda1SChristian Sigg 
51a5f9cda1SChristian Sigg   GpuToLLVMConversionPass(const GpuToLLVMConversionPass &other)
52a5f9cda1SChristian Sigg       : GpuToLLVMConversionPassBase(other) {}
53a5f9cda1SChristian Sigg 
54a5f9cda1SChristian Sigg   // Run the dialect converter on the module.
55a5f9cda1SChristian Sigg   void runOnOperation() override;
56a5f9cda1SChristian Sigg 
57a5f9cda1SChristian Sigg private:
58a5f9cda1SChristian Sigg   Option<std::string> gpuBinaryAnnotation{
59a5f9cda1SChristian Sigg       *this, "gpu-binary-annotation",
60a5f9cda1SChristian Sigg       llvm::cl::desc("Annotation attribute string for GPU binary"),
61a5f9cda1SChristian Sigg       llvm::cl::init(gpu::getDefaultGpuBinaryAnnotation())};
62a5f9cda1SChristian Sigg };
63a5f9cda1SChristian Sigg 
64a5f9cda1SChristian Sigg struct FunctionCallBuilder {
65a5f9cda1SChristian Sigg   FunctionCallBuilder(StringRef functionName, Type returnType,
66a5f9cda1SChristian Sigg                       ArrayRef<Type> argumentTypes)
67a5f9cda1SChristian Sigg       : functionName(functionName),
68a5f9cda1SChristian Sigg         functionType(LLVM::LLVMFunctionType::get(returnType, argumentTypes)) {}
69a5f9cda1SChristian Sigg   LLVM::CallOp create(Location loc, OpBuilder &builder,
70a5f9cda1SChristian Sigg                       ArrayRef<Value> arguments) const;
71a5f9cda1SChristian Sigg 
72a5f9cda1SChristian Sigg   StringRef functionName;
73a5f9cda1SChristian Sigg   LLVM::LLVMFunctionType functionType;
74a5f9cda1SChristian Sigg };
75a5f9cda1SChristian Sigg 
76a5f9cda1SChristian Sigg template <typename OpTy>
77a5f9cda1SChristian Sigg class ConvertOpToGpuRuntimeCallPattern : public ConvertOpToLLVMPattern<OpTy> {
78a5f9cda1SChristian Sigg public:
79a5f9cda1SChristian Sigg   explicit ConvertOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter)
80a5f9cda1SChristian Sigg       : ConvertOpToLLVMPattern<OpTy>(typeConverter) {}
81a5f9cda1SChristian Sigg 
82a5f9cda1SChristian Sigg protected:
83361458b1SLoren Maggiore   Value getNumElements(ConversionPatternRewriter &rewriter, Location loc,
84361458b1SLoren Maggiore                        MemRefType type, MemRefDescriptor desc) const {
85361458b1SLoren Maggiore     return type.hasStaticShape()
86361458b1SLoren Maggiore                ? ConvertToLLVMPattern::createIndexConstant(
87361458b1SLoren Maggiore                      rewriter, loc, type.getNumElements())
88361458b1SLoren Maggiore                // For identity maps (verified by caller), the number of
89361458b1SLoren Maggiore                // elements is stride[0] * size[0].
90361458b1SLoren Maggiore                : rewriter.create<LLVM::MulOp>(loc,
91361458b1SLoren Maggiore                                               desc.stride(rewriter, loc, 0),
92361458b1SLoren Maggiore                                               desc.size(rewriter, loc, 0));
93361458b1SLoren Maggiore   }
94361458b1SLoren Maggiore 
95a5f9cda1SChristian Sigg   MLIRContext *context = &this->getTypeConverter()->getContext();
96a5f9cda1SChristian Sigg 
97a5f9cda1SChristian Sigg   Type llvmVoidType = LLVM::LLVMVoidType::get(context);
98a5f9cda1SChristian Sigg   Type llvmPointerType =
99a5f9cda1SChristian Sigg       LLVM::LLVMPointerType::get(IntegerType::get(context, 8));
100a5f9cda1SChristian Sigg   Type llvmPointerPointerType = LLVM::LLVMPointerType::get(llvmPointerType);
101a5f9cda1SChristian Sigg   Type llvmInt8Type = IntegerType::get(context, 8);
102a5f9cda1SChristian Sigg   Type llvmInt32Type = IntegerType::get(context, 32);
103a5f9cda1SChristian Sigg   Type llvmInt64Type = IntegerType::get(context, 64);
104a5f9cda1SChristian Sigg   Type llvmIntPtrType = IntegerType::get(
105a5f9cda1SChristian Sigg       context, this->getTypeConverter()->getPointerBitwidth(0));
106a5f9cda1SChristian Sigg 
107a5f9cda1SChristian Sigg   FunctionCallBuilder moduleLoadCallBuilder = {
108a5f9cda1SChristian Sigg       "mgpuModuleLoad",
109a5f9cda1SChristian Sigg       llvmPointerType /* void *module */,
110a5f9cda1SChristian Sigg       {llvmPointerType /* void *cubin */}};
111a5f9cda1SChristian Sigg   FunctionCallBuilder moduleUnloadCallBuilder = {
112a5f9cda1SChristian Sigg       "mgpuModuleUnload", llvmVoidType, {llvmPointerType /* void *module */}};
113a5f9cda1SChristian Sigg   FunctionCallBuilder moduleGetFunctionCallBuilder = {
114a5f9cda1SChristian Sigg       "mgpuModuleGetFunction",
115a5f9cda1SChristian Sigg       llvmPointerType /* void *function */,
116a5f9cda1SChristian Sigg       {
117a5f9cda1SChristian Sigg           llvmPointerType, /* void *module */
118a5f9cda1SChristian Sigg           llvmPointerType  /* char *name   */
119a5f9cda1SChristian Sigg       }};
120a5f9cda1SChristian Sigg   FunctionCallBuilder launchKernelCallBuilder = {
121a5f9cda1SChristian Sigg       "mgpuLaunchKernel",
122a5f9cda1SChristian Sigg       llvmVoidType,
123a5f9cda1SChristian Sigg       {
124a5f9cda1SChristian Sigg           llvmPointerType,        /* void* f */
125a5f9cda1SChristian Sigg           llvmIntPtrType,         /* intptr_t gridXDim */
126a5f9cda1SChristian Sigg           llvmIntPtrType,         /* intptr_t gridyDim */
127a5f9cda1SChristian Sigg           llvmIntPtrType,         /* intptr_t gridZDim */
128a5f9cda1SChristian Sigg           llvmIntPtrType,         /* intptr_t blockXDim */
129a5f9cda1SChristian Sigg           llvmIntPtrType,         /* intptr_t blockYDim */
130a5f9cda1SChristian Sigg           llvmIntPtrType,         /* intptr_t blockZDim */
131a5f9cda1SChristian Sigg           llvmInt32Type,          /* unsigned int sharedMemBytes */
132a5f9cda1SChristian Sigg           llvmPointerType,        /* void *hstream */
133a5f9cda1SChristian Sigg           llvmPointerPointerType, /* void **kernelParams */
134a5f9cda1SChristian Sigg           llvmPointerPointerType  /* void **extra */
135a5f9cda1SChristian Sigg       }};
136a5f9cda1SChristian Sigg   FunctionCallBuilder streamCreateCallBuilder = {
137a5f9cda1SChristian Sigg       "mgpuStreamCreate", llvmPointerType /* void *stream */, {}};
138a5f9cda1SChristian Sigg   FunctionCallBuilder streamDestroyCallBuilder = {
139a5f9cda1SChristian Sigg       "mgpuStreamDestroy", llvmVoidType, {llvmPointerType /* void *stream */}};
140a5f9cda1SChristian Sigg   FunctionCallBuilder streamSynchronizeCallBuilder = {
141a5f9cda1SChristian Sigg       "mgpuStreamSynchronize",
142a5f9cda1SChristian Sigg       llvmVoidType,
143a5f9cda1SChristian Sigg       {llvmPointerType /* void *stream */}};
144a5f9cda1SChristian Sigg   FunctionCallBuilder streamWaitEventCallBuilder = {
145a5f9cda1SChristian Sigg       "mgpuStreamWaitEvent",
146a5f9cda1SChristian Sigg       llvmVoidType,
147a5f9cda1SChristian Sigg       {llvmPointerType /* void *stream */, llvmPointerType /* void *event */}};
148a5f9cda1SChristian Sigg   FunctionCallBuilder eventCreateCallBuilder = {
149a5f9cda1SChristian Sigg       "mgpuEventCreate", llvmPointerType /* void *event */, {}};
150a5f9cda1SChristian Sigg   FunctionCallBuilder eventDestroyCallBuilder = {
151a5f9cda1SChristian Sigg       "mgpuEventDestroy", llvmVoidType, {llvmPointerType /* void *event */}};
152a5f9cda1SChristian Sigg   FunctionCallBuilder eventSynchronizeCallBuilder = {
153a5f9cda1SChristian Sigg       "mgpuEventSynchronize",
154a5f9cda1SChristian Sigg       llvmVoidType,
155a5f9cda1SChristian Sigg       {llvmPointerType /* void *event */}};
156a5f9cda1SChristian Sigg   FunctionCallBuilder eventRecordCallBuilder = {
157a5f9cda1SChristian Sigg       "mgpuEventRecord",
158a5f9cda1SChristian Sigg       llvmVoidType,
159a5f9cda1SChristian Sigg       {llvmPointerType /* void *event */, llvmPointerType /* void *stream */}};
160a5f9cda1SChristian Sigg   FunctionCallBuilder hostRegisterCallBuilder = {
161a5f9cda1SChristian Sigg       "mgpuMemHostRegisterMemRef",
162a5f9cda1SChristian Sigg       llvmVoidType,
163a5f9cda1SChristian Sigg       {llvmIntPtrType /* intptr_t rank */,
164a5f9cda1SChristian Sigg        llvmPointerType /* void *memrefDesc */,
165a5f9cda1SChristian Sigg        llvmIntPtrType /* intptr_t elementSizeBytes */}};
166a5f9cda1SChristian Sigg   FunctionCallBuilder allocCallBuilder = {
167a5f9cda1SChristian Sigg       "mgpuMemAlloc",
168a5f9cda1SChristian Sigg       llvmPointerType /* void * */,
169a5f9cda1SChristian Sigg       {llvmIntPtrType /* intptr_t sizeBytes */,
170a5f9cda1SChristian Sigg        llvmPointerType /* void *stream */}};
171a5f9cda1SChristian Sigg   FunctionCallBuilder deallocCallBuilder = {
172a5f9cda1SChristian Sigg       "mgpuMemFree",
173a5f9cda1SChristian Sigg       llvmVoidType,
174a5f9cda1SChristian Sigg       {llvmPointerType /* void *ptr */, llvmPointerType /* void *stream */}};
175a5f9cda1SChristian Sigg   FunctionCallBuilder memcpyCallBuilder = {
176a5f9cda1SChristian Sigg       "mgpuMemcpy",
177a5f9cda1SChristian Sigg       llvmVoidType,
178a5f9cda1SChristian Sigg       {llvmPointerType /* void *dst */, llvmPointerType /* void *src */,
179a5f9cda1SChristian Sigg        llvmIntPtrType /* intptr_t sizeBytes */,
180a5f9cda1SChristian Sigg        llvmPointerType /* void *stream */}};
181361458b1SLoren Maggiore   FunctionCallBuilder memsetCallBuilder = {
182361458b1SLoren Maggiore       "mgpuMemset32",
183361458b1SLoren Maggiore       llvmVoidType,
184361458b1SLoren Maggiore       {llvmPointerType /* void *dst */, llvmInt32Type /* unsigned int value */,
185361458b1SLoren Maggiore        llvmIntPtrType /* intptr_t sizeBytes */,
186361458b1SLoren Maggiore        llvmPointerType /* void *stream */}};
187a5f9cda1SChristian Sigg };
188a5f9cda1SChristian Sigg 
189a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.host_register operations into a GPU runtime
190a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP).
191a5f9cda1SChristian Sigg class ConvertHostRegisterOpToGpuRuntimeCallPattern
192a5f9cda1SChristian Sigg     : public ConvertOpToGpuRuntimeCallPattern<gpu::HostRegisterOp> {
193a5f9cda1SChristian Sigg public:
194a5f9cda1SChristian Sigg   ConvertHostRegisterOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter)
195a5f9cda1SChristian Sigg       : ConvertOpToGpuRuntimeCallPattern<gpu::HostRegisterOp>(typeConverter) {}
196a5f9cda1SChristian Sigg 
197a5f9cda1SChristian Sigg private:
198a5f9cda1SChristian Sigg   LogicalResult
199ef976337SRiver Riddle   matchAndRewrite(gpu::HostRegisterOp hostRegisterOp, OpAdaptor adaptor,
200a5f9cda1SChristian Sigg                   ConversionPatternRewriter &rewriter) const override;
201a5f9cda1SChristian Sigg };
202a5f9cda1SChristian Sigg 
203a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.alloc operations into a GPU runtime
204a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP).
205a5f9cda1SChristian Sigg class ConvertAllocOpToGpuRuntimeCallPattern
206a5f9cda1SChristian Sigg     : public ConvertOpToGpuRuntimeCallPattern<gpu::AllocOp> {
207a5f9cda1SChristian Sigg public:
208a5f9cda1SChristian Sigg   ConvertAllocOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter)
209a5f9cda1SChristian Sigg       : ConvertOpToGpuRuntimeCallPattern<gpu::AllocOp>(typeConverter) {}
210a5f9cda1SChristian Sigg 
211a5f9cda1SChristian Sigg private:
212a5f9cda1SChristian Sigg   LogicalResult
213ef976337SRiver Riddle   matchAndRewrite(gpu::AllocOp allocOp, OpAdaptor adaptor,
214a5f9cda1SChristian Sigg                   ConversionPatternRewriter &rewriter) const override;
215a5f9cda1SChristian Sigg };
216a5f9cda1SChristian Sigg 
217a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.dealloc operations into a GPU runtime
218a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP).
219a5f9cda1SChristian Sigg class ConvertDeallocOpToGpuRuntimeCallPattern
220a5f9cda1SChristian Sigg     : public ConvertOpToGpuRuntimeCallPattern<gpu::DeallocOp> {
221a5f9cda1SChristian Sigg public:
222a5f9cda1SChristian Sigg   ConvertDeallocOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter)
223a5f9cda1SChristian Sigg       : ConvertOpToGpuRuntimeCallPattern<gpu::DeallocOp>(typeConverter) {}
224a5f9cda1SChristian Sigg 
225a5f9cda1SChristian Sigg private:
226a5f9cda1SChristian Sigg   LogicalResult
227ef976337SRiver Riddle   matchAndRewrite(gpu::DeallocOp deallocOp, OpAdaptor adaptor,
228a5f9cda1SChristian Sigg                   ConversionPatternRewriter &rewriter) const override;
229a5f9cda1SChristian Sigg };
230a5f9cda1SChristian Sigg 
231a5f9cda1SChristian Sigg class ConvertAsyncYieldToGpuRuntimeCallPattern
232a5f9cda1SChristian Sigg     : public ConvertOpToGpuRuntimeCallPattern<async::YieldOp> {
233a5f9cda1SChristian Sigg public:
234a5f9cda1SChristian Sigg   ConvertAsyncYieldToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter)
235a5f9cda1SChristian Sigg       : ConvertOpToGpuRuntimeCallPattern<async::YieldOp>(typeConverter) {}
236a5f9cda1SChristian Sigg 
237a5f9cda1SChristian Sigg private:
238a5f9cda1SChristian Sigg   LogicalResult
239ef976337SRiver Riddle   matchAndRewrite(async::YieldOp yieldOp, OpAdaptor adaptor,
240a5f9cda1SChristian Sigg                   ConversionPatternRewriter &rewriter) const override;
241a5f9cda1SChristian Sigg };
242a5f9cda1SChristian Sigg 
243a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.wait operations into a GPU runtime
244a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP).
245a5f9cda1SChristian Sigg class ConvertWaitOpToGpuRuntimeCallPattern
246a5f9cda1SChristian Sigg     : public ConvertOpToGpuRuntimeCallPattern<gpu::WaitOp> {
247a5f9cda1SChristian Sigg public:
248a5f9cda1SChristian Sigg   ConvertWaitOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter)
249a5f9cda1SChristian Sigg       : ConvertOpToGpuRuntimeCallPattern<gpu::WaitOp>(typeConverter) {}
250a5f9cda1SChristian Sigg 
251a5f9cda1SChristian Sigg private:
252a5f9cda1SChristian Sigg   LogicalResult
253ef976337SRiver Riddle   matchAndRewrite(gpu::WaitOp waitOp, OpAdaptor adaptor,
254a5f9cda1SChristian Sigg                   ConversionPatternRewriter &rewriter) const override;
255a5f9cda1SChristian Sigg };
256a5f9cda1SChristian Sigg 
257a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.wait async operations into a GPU runtime
258a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP).
259a5f9cda1SChristian Sigg class ConvertWaitAsyncOpToGpuRuntimeCallPattern
260a5f9cda1SChristian Sigg     : public ConvertOpToGpuRuntimeCallPattern<gpu::WaitOp> {
261a5f9cda1SChristian Sigg public:
262a5f9cda1SChristian Sigg   ConvertWaitAsyncOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter)
263a5f9cda1SChristian Sigg       : ConvertOpToGpuRuntimeCallPattern<gpu::WaitOp>(typeConverter) {}
264a5f9cda1SChristian Sigg 
265a5f9cda1SChristian Sigg private:
266a5f9cda1SChristian Sigg   LogicalResult
267ef976337SRiver Riddle   matchAndRewrite(gpu::WaitOp waitOp, OpAdaptor adaptor,
268a5f9cda1SChristian Sigg                   ConversionPatternRewriter &rewriter) const override;
269a5f9cda1SChristian Sigg };
270a5f9cda1SChristian Sigg 
271a5f9cda1SChristian Sigg /// A rewrite patter to convert gpu.launch_func operations into a sequence of
272a5f9cda1SChristian Sigg /// GPU runtime calls. Currently it supports CUDA and ROCm (HIP).
273a5f9cda1SChristian Sigg ///
274a5f9cda1SChristian Sigg /// In essence, a gpu.launch_func operations gets compiled into the following
275a5f9cda1SChristian Sigg /// sequence of runtime calls:
276a5f9cda1SChristian Sigg ///
277a5f9cda1SChristian Sigg /// * moduleLoad        -- loads the module given the cubin / hsaco data
278a5f9cda1SChristian Sigg /// * moduleGetFunction -- gets a handle to the actual kernel function
279a5f9cda1SChristian Sigg /// * getStreamHelper   -- initializes a new compute stream on GPU
280a5f9cda1SChristian Sigg /// * launchKernel      -- launches the kernel on a stream
281a5f9cda1SChristian Sigg /// * streamSynchronize -- waits for operations on the stream to finish
282a5f9cda1SChristian Sigg ///
283a5f9cda1SChristian Sigg /// Intermediate data structures are allocated on the stack.
284a5f9cda1SChristian Sigg class ConvertLaunchFuncOpToGpuRuntimeCallPattern
285a5f9cda1SChristian Sigg     : public ConvertOpToGpuRuntimeCallPattern<gpu::LaunchFuncOp> {
286a5f9cda1SChristian Sigg public:
287a5f9cda1SChristian Sigg   ConvertLaunchFuncOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter,
288a5f9cda1SChristian Sigg                                              StringRef gpuBinaryAnnotation)
289a5f9cda1SChristian Sigg       : ConvertOpToGpuRuntimeCallPattern<gpu::LaunchFuncOp>(typeConverter),
290a5f9cda1SChristian Sigg         gpuBinaryAnnotation(gpuBinaryAnnotation) {}
291a5f9cda1SChristian Sigg 
292a5f9cda1SChristian Sigg private:
293ef976337SRiver Riddle   Value generateParamsArray(gpu::LaunchFuncOp launchOp, OpAdaptor adaptor,
294ef976337SRiver Riddle                             OpBuilder &builder) const;
295a5f9cda1SChristian Sigg   Value generateKernelNameConstant(StringRef moduleName, StringRef name,
296a5f9cda1SChristian Sigg                                    Location loc, OpBuilder &builder) const;
297a5f9cda1SChristian Sigg 
298a5f9cda1SChristian Sigg   LogicalResult
299ef976337SRiver Riddle   matchAndRewrite(gpu::LaunchFuncOp launchOp, OpAdaptor adaptor,
300a5f9cda1SChristian Sigg                   ConversionPatternRewriter &rewriter) const override;
301a5f9cda1SChristian Sigg 
302a5f9cda1SChristian Sigg   llvm::SmallString<32> gpuBinaryAnnotation;
303a5f9cda1SChristian Sigg };
304a5f9cda1SChristian Sigg 
305a5f9cda1SChristian Sigg class EraseGpuModuleOpPattern : public OpRewritePattern<gpu::GPUModuleOp> {
306a5f9cda1SChristian Sigg   using OpRewritePattern<gpu::GPUModuleOp>::OpRewritePattern;
307a5f9cda1SChristian Sigg 
308a5f9cda1SChristian Sigg   LogicalResult matchAndRewrite(gpu::GPUModuleOp op,
309a5f9cda1SChristian Sigg                                 PatternRewriter &rewriter) const override {
310a5f9cda1SChristian Sigg     // GPU kernel modules are no longer necessary since we have a global
311a5f9cda1SChristian Sigg     // constant with the CUBIN, or HSACO data.
312a5f9cda1SChristian Sigg     rewriter.eraseOp(op);
313a5f9cda1SChristian Sigg     return success();
314a5f9cda1SChristian Sigg   }
315a5f9cda1SChristian Sigg };
316a5f9cda1SChristian Sigg 
317a5f9cda1SChristian Sigg /// A rewrite pattern to convert gpu.memcpy operations into a GPU runtime
318a5f9cda1SChristian Sigg /// call. Currently it supports CUDA and ROCm (HIP).
319a5f9cda1SChristian Sigg class ConvertMemcpyOpToGpuRuntimeCallPattern
320a5f9cda1SChristian Sigg     : public ConvertOpToGpuRuntimeCallPattern<gpu::MemcpyOp> {
321a5f9cda1SChristian Sigg public:
322a5f9cda1SChristian Sigg   ConvertMemcpyOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter)
323a5f9cda1SChristian Sigg       : ConvertOpToGpuRuntimeCallPattern<gpu::MemcpyOp>(typeConverter) {}
324a5f9cda1SChristian Sigg 
325a5f9cda1SChristian Sigg private:
326a5f9cda1SChristian Sigg   LogicalResult
327ef976337SRiver Riddle   matchAndRewrite(gpu::MemcpyOp memcpyOp, OpAdaptor adaptor,
328a5f9cda1SChristian Sigg                   ConversionPatternRewriter &rewriter) const override;
329a5f9cda1SChristian Sigg };
330361458b1SLoren Maggiore 
331361458b1SLoren Maggiore /// A rewrite pattern to convert gpu.memset operations into a GPU runtime
332361458b1SLoren Maggiore /// call. Currently it supports CUDA and ROCm (HIP).
333361458b1SLoren Maggiore class ConvertMemsetOpToGpuRuntimeCallPattern
334361458b1SLoren Maggiore     : public ConvertOpToGpuRuntimeCallPattern<gpu::MemsetOp> {
335361458b1SLoren Maggiore public:
336361458b1SLoren Maggiore   ConvertMemsetOpToGpuRuntimeCallPattern(LLVMTypeConverter &typeConverter)
337361458b1SLoren Maggiore       : ConvertOpToGpuRuntimeCallPattern<gpu::MemsetOp>(typeConverter) {}
338361458b1SLoren Maggiore 
339361458b1SLoren Maggiore private:
340361458b1SLoren Maggiore   LogicalResult
341ef976337SRiver Riddle   matchAndRewrite(gpu::MemsetOp memsetOp, OpAdaptor adaptor,
342361458b1SLoren Maggiore                   ConversionPatternRewriter &rewriter) const override;
343361458b1SLoren Maggiore };
344a5f9cda1SChristian Sigg } // namespace
345a5f9cda1SChristian Sigg 
346a5f9cda1SChristian Sigg void GpuToLLVMConversionPass::runOnOperation() {
347a5f9cda1SChristian Sigg   LLVMTypeConverter converter(&getContext());
348dc4e913bSChris Lattner   RewritePatternSet patterns(&getContext());
349a5f9cda1SChristian Sigg   LLVMConversionTarget target(getContext());
350a5f9cda1SChristian Sigg 
351abe501f2SChristian Sigg   target.addIllegalDialect<gpu::GPUDialect>();
352abe501f2SChristian Sigg 
353*a54f4eaeSMogball   mlir::arith::populateArithmeticToLLVMConversionPatterns(converter, patterns);
354a5f9cda1SChristian Sigg   populateVectorToLLVMConversionPatterns(converter, patterns);
35575e5f0aaSAlex Zinenko   populateMemRefToLLVMConversionPatterns(converter, patterns);
356a5f9cda1SChristian Sigg   populateStdToLLVMConversionPatterns(converter, patterns);
3573a506b31SChris Lattner   populateAsyncStructuralTypeConversionsAndLegality(converter, patterns,
3583a506b31SChris Lattner                                                     target);
3597d855605SButygin   populateGpuToLLVMConversionPatterns(converter, patterns, gpuBinaryAnnotation);
360a5f9cda1SChristian Sigg 
361a5f9cda1SChristian Sigg   if (failed(
362a5f9cda1SChristian Sigg           applyPartialConversion(getOperation(), target, std::move(patterns))))
363a5f9cda1SChristian Sigg     signalPassFailure();
364a5f9cda1SChristian Sigg }
365a5f9cda1SChristian Sigg 
366a5f9cda1SChristian Sigg LLVM::CallOp FunctionCallBuilder::create(Location loc, OpBuilder &builder,
367a5f9cda1SChristian Sigg                                          ArrayRef<Value> arguments) const {
368a5f9cda1SChristian Sigg   auto module = builder.getBlock()->getParent()->getParentOfType<ModuleOp>();
369a5f9cda1SChristian Sigg   auto function = [&] {
370a5f9cda1SChristian Sigg     if (auto function = module.lookupSymbol<LLVM::LLVMFuncOp>(functionName))
371a5f9cda1SChristian Sigg       return function;
372973ddb7dSMehdi Amini     return OpBuilder::atBlockEnd(module.getBody())
373a5f9cda1SChristian Sigg         .create<LLVM::LLVMFuncOp>(loc, functionName, functionType);
374a5f9cda1SChristian Sigg   }();
375c1f719d1SAlex Zinenko   return builder.create<LLVM::CallOp>(loc, function, arguments);
376a5f9cda1SChristian Sigg }
377a5f9cda1SChristian Sigg 
378a5f9cda1SChristian Sigg // Returns whether all operands are of LLVM type.
379a5f9cda1SChristian Sigg static LogicalResult areAllLLVMTypes(Operation *op, ValueRange operands,
380a5f9cda1SChristian Sigg                                      ConversionPatternRewriter &rewriter) {
381a5f9cda1SChristian Sigg   if (!llvm::all_of(operands, [](Value value) {
382a5f9cda1SChristian Sigg         return LLVM::isCompatibleType(value.getType());
383a5f9cda1SChristian Sigg       }))
384a5f9cda1SChristian Sigg     return rewriter.notifyMatchFailure(
385a5f9cda1SChristian Sigg         op, "Cannot convert if operands aren't of LLVM type.");
386a5f9cda1SChristian Sigg   return success();
387a5f9cda1SChristian Sigg }
388a5f9cda1SChristian Sigg 
389a5f9cda1SChristian Sigg static LogicalResult
390a5f9cda1SChristian Sigg isAsyncWithOneDependency(ConversionPatternRewriter &rewriter,
391a5f9cda1SChristian Sigg                          gpu::AsyncOpInterface op) {
392a5f9cda1SChristian Sigg   if (op.getAsyncDependencies().size() != 1)
393a5f9cda1SChristian Sigg     return rewriter.notifyMatchFailure(
394a5f9cda1SChristian Sigg         op, "Can only convert with exactly one async dependency.");
395a5f9cda1SChristian Sigg 
396a5f9cda1SChristian Sigg   if (!op.getAsyncToken())
397a5f9cda1SChristian Sigg     return rewriter.notifyMatchFailure(op, "Can convert only async version.");
398a5f9cda1SChristian Sigg 
399a5f9cda1SChristian Sigg   return success();
400a5f9cda1SChristian Sigg }
401a5f9cda1SChristian Sigg 
402a5f9cda1SChristian Sigg LogicalResult ConvertHostRegisterOpToGpuRuntimeCallPattern::matchAndRewrite(
403ef976337SRiver Riddle     gpu::HostRegisterOp hostRegisterOp, OpAdaptor adaptor,
404a5f9cda1SChristian Sigg     ConversionPatternRewriter &rewriter) const {
405a5f9cda1SChristian Sigg   auto *op = hostRegisterOp.getOperation();
406ef976337SRiver Riddle   if (failed(areAllLLVMTypes(op, adaptor.getOperands(), rewriter)))
407a5f9cda1SChristian Sigg     return failure();
408a5f9cda1SChristian Sigg 
409a5f9cda1SChristian Sigg   Location loc = op->getLoc();
410a5f9cda1SChristian Sigg 
411a5f9cda1SChristian Sigg   auto memRefType = hostRegisterOp.value().getType();
412a5f9cda1SChristian Sigg   auto elementType = memRefType.cast<UnrankedMemRefType>().getElementType();
413a5f9cda1SChristian Sigg   auto elementSize = getSizeInBytes(loc, elementType, rewriter);
414a5f9cda1SChristian Sigg 
415ef976337SRiver Riddle   auto arguments = getTypeConverter()->promoteOperands(
416ef976337SRiver Riddle       loc, op->getOperands(), adaptor.getOperands(), rewriter);
417a5f9cda1SChristian Sigg   arguments.push_back(elementSize);
418a5f9cda1SChristian Sigg   hostRegisterCallBuilder.create(loc, rewriter, arguments);
419a5f9cda1SChristian Sigg 
420a5f9cda1SChristian Sigg   rewriter.eraseOp(op);
421a5f9cda1SChristian Sigg   return success();
422a5f9cda1SChristian Sigg }
423a5f9cda1SChristian Sigg 
424a5f9cda1SChristian Sigg LogicalResult ConvertAllocOpToGpuRuntimeCallPattern::matchAndRewrite(
425ef976337SRiver Riddle     gpu::AllocOp allocOp, OpAdaptor adaptor,
426a5f9cda1SChristian Sigg     ConversionPatternRewriter &rewriter) const {
427a5f9cda1SChristian Sigg   MemRefType memRefType = allocOp.getType();
428a5f9cda1SChristian Sigg 
429ef976337SRiver Riddle   if (failed(areAllLLVMTypes(allocOp, adaptor.getOperands(), rewriter)) ||
430a5f9cda1SChristian Sigg       !isConvertibleAndHasIdentityMaps(memRefType) ||
431a5f9cda1SChristian Sigg       failed(isAsyncWithOneDependency(rewriter, allocOp)))
432a5f9cda1SChristian Sigg     return failure();
433a5f9cda1SChristian Sigg 
434a5f9cda1SChristian Sigg   auto loc = allocOp.getLoc();
435a5f9cda1SChristian Sigg 
436a5f9cda1SChristian Sigg   // Get shape of the memref as values: static sizes are constant
437a5f9cda1SChristian Sigg   // values and dynamic sizes are passed to 'alloc' as operands.
438a5f9cda1SChristian Sigg   SmallVector<Value, 4> shape;
439a5f9cda1SChristian Sigg   SmallVector<Value, 4> strides;
440a5f9cda1SChristian Sigg   Value sizeBytes;
441a5f9cda1SChristian Sigg   getMemRefDescriptorSizes(loc, memRefType, adaptor.dynamicSizes(), rewriter,
442a5f9cda1SChristian Sigg                            shape, strides, sizeBytes);
443a5f9cda1SChristian Sigg 
444a5f9cda1SChristian Sigg   // Allocate the underlying buffer and store a pointer to it in the MemRef
445a5f9cda1SChristian Sigg   // descriptor.
446a5f9cda1SChristian Sigg   Type elementPtrType = this->getElementPtrType(memRefType);
447a5f9cda1SChristian Sigg   auto stream = adaptor.asyncDependencies().front();
448a5f9cda1SChristian Sigg   Value allocatedPtr =
449a5f9cda1SChristian Sigg       allocCallBuilder.create(loc, rewriter, {sizeBytes, stream}).getResult(0);
450a5f9cda1SChristian Sigg   allocatedPtr =
451a5f9cda1SChristian Sigg       rewriter.create<LLVM::BitcastOp>(loc, elementPtrType, allocatedPtr);
452a5f9cda1SChristian Sigg 
453a5f9cda1SChristian Sigg   // No alignment.
454a5f9cda1SChristian Sigg   Value alignedPtr = allocatedPtr;
455a5f9cda1SChristian Sigg 
456a5f9cda1SChristian Sigg   // Create the MemRef descriptor.
457a5f9cda1SChristian Sigg   auto memRefDescriptor = this->createMemRefDescriptor(
458a5f9cda1SChristian Sigg       loc, memRefType, allocatedPtr, alignedPtr, shape, strides, rewriter);
459a5f9cda1SChristian Sigg 
460a5f9cda1SChristian Sigg   rewriter.replaceOp(allocOp, {memRefDescriptor, stream});
461a5f9cda1SChristian Sigg 
462a5f9cda1SChristian Sigg   return success();
463a5f9cda1SChristian Sigg }
464a5f9cda1SChristian Sigg 
465a5f9cda1SChristian Sigg LogicalResult ConvertDeallocOpToGpuRuntimeCallPattern::matchAndRewrite(
466ef976337SRiver Riddle     gpu::DeallocOp deallocOp, OpAdaptor adaptor,
467a5f9cda1SChristian Sigg     ConversionPatternRewriter &rewriter) const {
468ef976337SRiver Riddle   if (failed(areAllLLVMTypes(deallocOp, adaptor.getOperands(), rewriter)) ||
469a5f9cda1SChristian Sigg       failed(isAsyncWithOneDependency(rewriter, deallocOp)))
470a5f9cda1SChristian Sigg     return failure();
471a5f9cda1SChristian Sigg 
472a5f9cda1SChristian Sigg   Location loc = deallocOp.getLoc();
473a5f9cda1SChristian Sigg 
474a5f9cda1SChristian Sigg   Value pointer =
475a5f9cda1SChristian Sigg       MemRefDescriptor(adaptor.memref()).allocatedPtr(rewriter, loc);
476a5f9cda1SChristian Sigg   auto casted = rewriter.create<LLVM::BitcastOp>(loc, llvmPointerType, pointer);
477a5f9cda1SChristian Sigg   Value stream = adaptor.asyncDependencies().front();
478a5f9cda1SChristian Sigg   deallocCallBuilder.create(loc, rewriter, {casted, stream});
479a5f9cda1SChristian Sigg 
480a5f9cda1SChristian Sigg   rewriter.replaceOp(deallocOp, {stream});
481a5f9cda1SChristian Sigg   return success();
482a5f9cda1SChristian Sigg }
483a5f9cda1SChristian Sigg 
484a5f9cda1SChristian Sigg static bool isGpuAsyncTokenType(Value value) {
485a5f9cda1SChristian Sigg   return value.getType().isa<gpu::AsyncTokenType>();
486a5f9cda1SChristian Sigg }
487a5f9cda1SChristian Sigg 
488a5f9cda1SChristian Sigg // Converts !gpu.async.token operands of `async.yield` to runtime calls. The
489a5f9cda1SChristian Sigg // !gpu.async.token are lowered to stream within the async.execute region, but
490a5f9cda1SChristian Sigg // are passed as events between them. For each !gpu.async.token operand, we
491a5f9cda1SChristian Sigg // create an event and record it on the stream.
492a5f9cda1SChristian Sigg LogicalResult ConvertAsyncYieldToGpuRuntimeCallPattern::matchAndRewrite(
493ef976337SRiver Riddle     async::YieldOp yieldOp, OpAdaptor adaptor,
494a5f9cda1SChristian Sigg     ConversionPatternRewriter &rewriter) const {
495a5f9cda1SChristian Sigg   if (llvm::none_of(yieldOp.operands(), isGpuAsyncTokenType))
496a5f9cda1SChristian Sigg     return rewriter.notifyMatchFailure(yieldOp, "no gpu async token operand");
497a5f9cda1SChristian Sigg 
498a5f9cda1SChristian Sigg   Location loc = yieldOp.getLoc();
499ef976337SRiver Riddle   SmallVector<Value, 4> newOperands(adaptor.getOperands());
500a5f9cda1SChristian Sigg   llvm::SmallDenseSet<Value> streams;
501a5f9cda1SChristian Sigg   for (auto &operand : yieldOp->getOpOperands()) {
502a5f9cda1SChristian Sigg     if (!isGpuAsyncTokenType(operand.get()))
503a5f9cda1SChristian Sigg       continue;
504a5f9cda1SChristian Sigg     auto idx = operand.getOperandNumber();
505ef976337SRiver Riddle     auto stream = adaptor.getOperands()[idx];
506a5f9cda1SChristian Sigg     auto event = eventCreateCallBuilder.create(loc, rewriter, {}).getResult(0);
507a5f9cda1SChristian Sigg     eventRecordCallBuilder.create(loc, rewriter, {event, stream});
508a5f9cda1SChristian Sigg     newOperands[idx] = event;
509a5f9cda1SChristian Sigg     streams.insert(stream);
510a5f9cda1SChristian Sigg   }
511a5f9cda1SChristian Sigg   for (auto stream : streams)
512a5f9cda1SChristian Sigg     streamDestroyCallBuilder.create(loc, rewriter, {stream});
513a5f9cda1SChristian Sigg 
514a5f9cda1SChristian Sigg   rewriter.updateRootInPlace(yieldOp,
515a5f9cda1SChristian Sigg                              [&] { yieldOp->setOperands(newOperands); });
516a5f9cda1SChristian Sigg   return success();
517a5f9cda1SChristian Sigg }
518a5f9cda1SChristian Sigg 
519a5f9cda1SChristian Sigg // Returns whether `value` is the result of an LLVM::CallOp to `functionName`.
520a5f9cda1SChristian Sigg static bool isDefinedByCallTo(Value value, StringRef functionName) {
521a5f9cda1SChristian Sigg   assert(value.getType().isa<LLVM::LLVMPointerType>());
522a5f9cda1SChristian Sigg   if (auto defOp = value.getDefiningOp<LLVM::CallOp>())
523a5f9cda1SChristian Sigg     return defOp.callee()->equals(functionName);
524a5f9cda1SChristian Sigg   return false;
525a5f9cda1SChristian Sigg }
526a5f9cda1SChristian Sigg 
527a5f9cda1SChristian Sigg // Converts `gpu.wait` to runtime calls. The converted op synchronizes the host
528a5f9cda1SChristian Sigg // with the stream/event operands. The operands are destroyed. That is, it
529a5f9cda1SChristian Sigg // assumes that it is not used afterwards or elsewhere. Otherwise we will get a
530a5f9cda1SChristian Sigg // runtime error. Eventually, we should guarantee this property.
531a5f9cda1SChristian Sigg LogicalResult ConvertWaitOpToGpuRuntimeCallPattern::matchAndRewrite(
532ef976337SRiver Riddle     gpu::WaitOp waitOp, OpAdaptor adaptor,
533a5f9cda1SChristian Sigg     ConversionPatternRewriter &rewriter) const {
534a5f9cda1SChristian Sigg   if (waitOp.asyncToken())
535a5f9cda1SChristian Sigg     return rewriter.notifyMatchFailure(waitOp, "Cannot convert async op.");
536a5f9cda1SChristian Sigg 
537a5f9cda1SChristian Sigg   Location loc = waitOp.getLoc();
538a5f9cda1SChristian Sigg 
539ef976337SRiver Riddle   for (auto operand : adaptor.getOperands()) {
540a5f9cda1SChristian Sigg     if (isDefinedByCallTo(operand, streamCreateCallBuilder.functionName)) {
541a5f9cda1SChristian Sigg       // The converted operand's definition created a stream.
542a5f9cda1SChristian Sigg       streamSynchronizeCallBuilder.create(loc, rewriter, {operand});
543a5f9cda1SChristian Sigg       streamDestroyCallBuilder.create(loc, rewriter, {operand});
544a5f9cda1SChristian Sigg     } else {
545a5f9cda1SChristian Sigg       // Otherwise the converted operand is an event. This assumes that we use
546a5f9cda1SChristian Sigg       // events in control flow code as well.
547a5f9cda1SChristian Sigg       eventSynchronizeCallBuilder.create(loc, rewriter, {operand});
548a5f9cda1SChristian Sigg       eventDestroyCallBuilder.create(loc, rewriter, {operand});
549a5f9cda1SChristian Sigg     }
550a5f9cda1SChristian Sigg   }
551a5f9cda1SChristian Sigg 
552a5f9cda1SChristian Sigg   rewriter.eraseOp(waitOp);
553a5f9cda1SChristian Sigg   return success();
554a5f9cda1SChristian Sigg }
555a5f9cda1SChristian Sigg 
556a5f9cda1SChristian Sigg // Converts `gpu.wait async` to runtime calls. The converted op creates a new
557a5f9cda1SChristian Sigg // stream that is synchronized with stream/event operands. The operands are
558a5f9cda1SChristian Sigg // destroyed. That is, it assumes that it is not used afterwards or elsewhere.
559a5f9cda1SChristian Sigg // Otherwise we will get a runtime error. Eventually, we should guarantee this
560a5f9cda1SChristian Sigg // property.
561a5f9cda1SChristian Sigg LogicalResult ConvertWaitAsyncOpToGpuRuntimeCallPattern::matchAndRewrite(
562ef976337SRiver Riddle     gpu::WaitOp waitOp, OpAdaptor adaptor,
563a5f9cda1SChristian Sigg     ConversionPatternRewriter &rewriter) const {
564a5f9cda1SChristian Sigg   if (!waitOp.asyncToken())
565a5f9cda1SChristian Sigg     return rewriter.notifyMatchFailure(waitOp, "Can only convert async op.");
566a5f9cda1SChristian Sigg 
567a5f9cda1SChristian Sigg   Location loc = waitOp.getLoc();
568a5f9cda1SChristian Sigg 
569a5f9cda1SChristian Sigg   auto insertionPoint = rewriter.saveInsertionPoint();
570a5f9cda1SChristian Sigg   SmallVector<Value, 1> events;
571ef976337SRiver Riddle   for (auto pair :
572ef976337SRiver Riddle        llvm::zip(waitOp.asyncDependencies(), adaptor.getOperands())) {
573a5f9cda1SChristian Sigg     auto operand = std::get<1>(pair);
574a5f9cda1SChristian Sigg     if (isDefinedByCallTo(operand, streamCreateCallBuilder.functionName)) {
575a5f9cda1SChristian Sigg       // The converted operand's definition created a stream. Insert an event
576a5f9cda1SChristian Sigg       // into the stream just after the last use of the original token operand.
577a5f9cda1SChristian Sigg       auto *defOp = std::get<0>(pair).getDefiningOp();
578a5f9cda1SChristian Sigg       rewriter.setInsertionPointAfter(defOp);
579a5f9cda1SChristian Sigg       auto event =
580a5f9cda1SChristian Sigg           eventCreateCallBuilder.create(loc, rewriter, {}).getResult(0);
581a5f9cda1SChristian Sigg       eventRecordCallBuilder.create(loc, rewriter, {event, operand});
582a5f9cda1SChristian Sigg       events.push_back(event);
583a5f9cda1SChristian Sigg     } else {
584a5f9cda1SChristian Sigg       // Otherwise the converted operand is an event. This assumes that we use
585a5f9cda1SChristian Sigg       // events in control flow code as well.
586a5f9cda1SChristian Sigg       events.push_back(operand);
587a5f9cda1SChristian Sigg     }
588a5f9cda1SChristian Sigg   }
589a5f9cda1SChristian Sigg   rewriter.restoreInsertionPoint(insertionPoint);
590a5f9cda1SChristian Sigg   auto stream = streamCreateCallBuilder.create(loc, rewriter, {}).getResult(0);
591a5f9cda1SChristian Sigg   for (auto event : events)
592a5f9cda1SChristian Sigg     streamWaitEventCallBuilder.create(loc, rewriter, {stream, event});
593a5f9cda1SChristian Sigg   for (auto event : events)
594a5f9cda1SChristian Sigg     eventDestroyCallBuilder.create(loc, rewriter, {event});
595a5f9cda1SChristian Sigg   rewriter.replaceOp(waitOp, {stream});
596a5f9cda1SChristian Sigg 
597a5f9cda1SChristian Sigg   return success();
598a5f9cda1SChristian Sigg }
599a5f9cda1SChristian Sigg 
600a5f9cda1SChristian Sigg // Creates a struct containing all kernel parameters on the stack and returns
601a5f9cda1SChristian Sigg // an array of type-erased pointers to the fields of the struct. The array can
602a5f9cda1SChristian Sigg // then be passed to the CUDA / ROCm (HIP) kernel launch calls.
603a5f9cda1SChristian Sigg // The generated code is essentially as follows:
604a5f9cda1SChristian Sigg //
605a5f9cda1SChristian Sigg // %struct = alloca(sizeof(struct { Parameters... }))
606a5f9cda1SChristian Sigg // %array = alloca(NumParameters * sizeof(void *))
607a5f9cda1SChristian Sigg // for (i : [0, NumParameters))
608a5f9cda1SChristian Sigg //   %fieldPtr = llvm.getelementptr %struct[0, i]
609a5f9cda1SChristian Sigg //   llvm.store parameters[i], %fieldPtr
610a5f9cda1SChristian Sigg //   %elementPtr = llvm.getelementptr %array[i]
611a5f9cda1SChristian Sigg //   llvm.store %fieldPtr, %elementPtr
612a5f9cda1SChristian Sigg // return %array
613a5f9cda1SChristian Sigg Value ConvertLaunchFuncOpToGpuRuntimeCallPattern::generateParamsArray(
614ef976337SRiver Riddle     gpu::LaunchFuncOp launchOp, OpAdaptor adaptor, OpBuilder &builder) const {
615a5f9cda1SChristian Sigg   auto loc = launchOp.getLoc();
616a5f9cda1SChristian Sigg   auto numKernelOperands = launchOp.getNumKernelOperands();
617a5f9cda1SChristian Sigg   auto arguments = getTypeConverter()->promoteOperands(
618a5f9cda1SChristian Sigg       loc, launchOp.getOperands().take_back(numKernelOperands),
619ef976337SRiver Riddle       adaptor.getOperands().take_back(numKernelOperands), builder);
620a5f9cda1SChristian Sigg   auto numArguments = arguments.size();
621a5f9cda1SChristian Sigg   SmallVector<Type, 4> argumentTypes;
622a5f9cda1SChristian Sigg   argumentTypes.reserve(numArguments);
623a5f9cda1SChristian Sigg   for (auto argument : arguments)
624a5f9cda1SChristian Sigg     argumentTypes.push_back(argument.getType());
625a5f9cda1SChristian Sigg   auto structType = LLVM::LLVMStructType::getNewIdentified(context, StringRef(),
626a5f9cda1SChristian Sigg                                                            argumentTypes);
627a5f9cda1SChristian Sigg   auto one = builder.create<LLVM::ConstantOp>(loc, llvmInt32Type,
628a5f9cda1SChristian Sigg                                               builder.getI32IntegerAttr(1));
629a5f9cda1SChristian Sigg   auto structPtr = builder.create<LLVM::AllocaOp>(
630a5f9cda1SChristian Sigg       loc, LLVM::LLVMPointerType::get(structType), one, /*alignment=*/0);
631a5f9cda1SChristian Sigg   auto arraySize = builder.create<LLVM::ConstantOp>(
632a5f9cda1SChristian Sigg       loc, llvmInt32Type, builder.getI32IntegerAttr(numArguments));
633a5f9cda1SChristian Sigg   auto arrayPtr = builder.create<LLVM::AllocaOp>(loc, llvmPointerPointerType,
634a5f9cda1SChristian Sigg                                                  arraySize, /*alignment=*/0);
635a5f9cda1SChristian Sigg   auto zero = builder.create<LLVM::ConstantOp>(loc, llvmInt32Type,
636a5f9cda1SChristian Sigg                                                builder.getI32IntegerAttr(0));
637a5f9cda1SChristian Sigg   for (auto en : llvm::enumerate(arguments)) {
638a5f9cda1SChristian Sigg     auto index = builder.create<LLVM::ConstantOp>(
639a5f9cda1SChristian Sigg         loc, llvmInt32Type, builder.getI32IntegerAttr(en.index()));
640a5f9cda1SChristian Sigg     auto fieldPtr = builder.create<LLVM::GEPOp>(
641a5f9cda1SChristian Sigg         loc, LLVM::LLVMPointerType::get(argumentTypes[en.index()]), structPtr,
642a5f9cda1SChristian Sigg         ArrayRef<Value>{zero, index.getResult()});
643a5f9cda1SChristian Sigg     builder.create<LLVM::StoreOp>(loc, en.value(), fieldPtr);
644a5f9cda1SChristian Sigg     auto elementPtr = builder.create<LLVM::GEPOp>(loc, llvmPointerPointerType,
645a5f9cda1SChristian Sigg                                                   arrayPtr, index.getResult());
646a5f9cda1SChristian Sigg     auto casted =
647a5f9cda1SChristian Sigg         builder.create<LLVM::BitcastOp>(loc, llvmPointerType, fieldPtr);
648a5f9cda1SChristian Sigg     builder.create<LLVM::StoreOp>(loc, casted, elementPtr);
649a5f9cda1SChristian Sigg   }
650a5f9cda1SChristian Sigg   return arrayPtr;
651a5f9cda1SChristian Sigg }
652a5f9cda1SChristian Sigg 
653a5f9cda1SChristian Sigg // Generates an LLVM IR dialect global that contains the name of the given
654a5f9cda1SChristian Sigg // kernel function as a C string, and returns a pointer to its beginning.
655a5f9cda1SChristian Sigg // The code is essentially:
656a5f9cda1SChristian Sigg //
657a5f9cda1SChristian Sigg // llvm.global constant @kernel_name("function_name\00")
658a5f9cda1SChristian Sigg // func(...) {
659a5f9cda1SChristian Sigg //   %0 = llvm.addressof @kernel_name
660a5f9cda1SChristian Sigg //   %1 = llvm.constant (0 : index)
661a5f9cda1SChristian Sigg //   %2 = llvm.getelementptr %0[%1, %1] : !llvm<"i8*">
662a5f9cda1SChristian Sigg // }
663a5f9cda1SChristian Sigg Value ConvertLaunchFuncOpToGpuRuntimeCallPattern::generateKernelNameConstant(
664a5f9cda1SChristian Sigg     StringRef moduleName, StringRef name, Location loc,
665a5f9cda1SChristian Sigg     OpBuilder &builder) const {
666a5f9cda1SChristian Sigg   // Make sure the trailing zero is included in the constant.
667a5f9cda1SChristian Sigg   std::vector<char> kernelName(name.begin(), name.end());
668a5f9cda1SChristian Sigg   kernelName.push_back('\0');
669a5f9cda1SChristian Sigg 
670a5f9cda1SChristian Sigg   std::string globalName =
671a5f9cda1SChristian Sigg       std::string(llvm::formatv("{0}_{1}_kernel_name", moduleName, name));
672a5f9cda1SChristian Sigg   return LLVM::createGlobalString(
673a5f9cda1SChristian Sigg       loc, builder, globalName, StringRef(kernelName.data(), kernelName.size()),
674a5f9cda1SChristian Sigg       LLVM::Linkage::Internal);
675a5f9cda1SChristian Sigg }
676a5f9cda1SChristian Sigg 
677a5f9cda1SChristian Sigg // Emits LLVM IR to launch a kernel function. Expects the module that contains
678a5f9cda1SChristian Sigg // the compiled kernel function as a cubin in the 'nvvm.cubin' attribute, or a
679a5f9cda1SChristian Sigg // hsaco in the 'rocdl.hsaco' attribute of the kernel function in the IR.
680a5f9cda1SChristian Sigg //
681a5f9cda1SChristian Sigg // %0 = call %binarygetter
682a5f9cda1SChristian Sigg // %1 = call %moduleLoad(%0)
683a5f9cda1SChristian Sigg // %2 = <see generateKernelNameConstant>
684a5f9cda1SChristian Sigg // %3 = call %moduleGetFunction(%1, %2)
685a5f9cda1SChristian Sigg // %4 = call %streamCreate()
686a5f9cda1SChristian Sigg // %5 = <see generateParamsArray>
687a5f9cda1SChristian Sigg // call %launchKernel(%3, <launchOp operands 0..5>, 0, %4, %5, nullptr)
688a5f9cda1SChristian Sigg // call %streamSynchronize(%4)
689a5f9cda1SChristian Sigg // call %streamDestroy(%4)
690a5f9cda1SChristian Sigg // call %moduleUnload(%1)
691a5f9cda1SChristian Sigg //
692a5f9cda1SChristian Sigg // If the op is async, the stream corresponds to the (single) async dependency
693a5f9cda1SChristian Sigg // as well as the async token the op produces.
694a5f9cda1SChristian Sigg LogicalResult ConvertLaunchFuncOpToGpuRuntimeCallPattern::matchAndRewrite(
695ef976337SRiver Riddle     gpu::LaunchFuncOp launchOp, OpAdaptor adaptor,
696a5f9cda1SChristian Sigg     ConversionPatternRewriter &rewriter) const {
697ef976337SRiver Riddle   if (failed(areAllLLVMTypes(launchOp, adaptor.getOperands(), rewriter)))
698a5f9cda1SChristian Sigg     return failure();
699a5f9cda1SChristian Sigg 
700a5f9cda1SChristian Sigg   if (launchOp.asyncDependencies().size() > 1)
701a5f9cda1SChristian Sigg     return rewriter.notifyMatchFailure(
702a5f9cda1SChristian Sigg         launchOp, "Cannot convert with more than one async dependency.");
703a5f9cda1SChristian Sigg 
704a5f9cda1SChristian Sigg   // Fail when the synchronous version of the op has async dependencies. The
705a5f9cda1SChristian Sigg   // lowering destroys the stream, and we do not want to check that there is no
706a5f9cda1SChristian Sigg   // use of the stream after this op.
707a5f9cda1SChristian Sigg   if (!launchOp.asyncToken() && !launchOp.asyncDependencies().empty())
708a5f9cda1SChristian Sigg     return rewriter.notifyMatchFailure(
709a5f9cda1SChristian Sigg         launchOp, "Cannot convert non-async op with async dependencies.");
710a5f9cda1SChristian Sigg 
711a5f9cda1SChristian Sigg   Location loc = launchOp.getLoc();
712a5f9cda1SChristian Sigg 
713a5f9cda1SChristian Sigg   // Create an LLVM global with CUBIN extracted from the kernel annotation and
714a5f9cda1SChristian Sigg   // obtain a pointer to the first byte in it.
715a5f9cda1SChristian Sigg   auto kernelModule = SymbolTable::lookupNearestSymbolFrom<gpu::GPUModuleOp>(
716a5f9cda1SChristian Sigg       launchOp, launchOp.getKernelModuleName());
717a5f9cda1SChristian Sigg   assert(kernelModule && "expected a kernel module");
718a5f9cda1SChristian Sigg 
719a5f9cda1SChristian Sigg   auto binaryAttr =
720a5f9cda1SChristian Sigg       kernelModule->getAttrOfType<StringAttr>(gpuBinaryAnnotation);
721a5f9cda1SChristian Sigg   if (!binaryAttr) {
722a5f9cda1SChristian Sigg     kernelModule.emitOpError()
723a5f9cda1SChristian Sigg         << "missing " << gpuBinaryAnnotation << " attribute";
724a5f9cda1SChristian Sigg     return failure();
725a5f9cda1SChristian Sigg   }
726a5f9cda1SChristian Sigg 
727a5f9cda1SChristian Sigg   SmallString<128> nameBuffer(kernelModule.getName());
728a5f9cda1SChristian Sigg   nameBuffer.append(kGpuBinaryStorageSuffix);
729a5f9cda1SChristian Sigg   Value data =
730a5f9cda1SChristian Sigg       LLVM::createGlobalString(loc, rewriter, nameBuffer.str(),
731a5f9cda1SChristian Sigg                                binaryAttr.getValue(), LLVM::Linkage::Internal);
732a5f9cda1SChristian Sigg 
733a5f9cda1SChristian Sigg   auto module = moduleLoadCallBuilder.create(loc, rewriter, data);
734a5f9cda1SChristian Sigg   // Get the function from the module. The name corresponds to the name of
735a5f9cda1SChristian Sigg   // the kernel function.
736a5f9cda1SChristian Sigg   auto kernelName = generateKernelNameConstant(
73741d4aa7dSChris Lattner       launchOp.getKernelModuleName().getValue(),
73841d4aa7dSChris Lattner       launchOp.getKernelName().getValue(), loc, rewriter);
739a5f9cda1SChristian Sigg   auto function = moduleGetFunctionCallBuilder.create(
740a5f9cda1SChristian Sigg       loc, rewriter, {module.getResult(0), kernelName});
741a5f9cda1SChristian Sigg   auto zero = rewriter.create<LLVM::ConstantOp>(loc, llvmInt32Type,
742a5f9cda1SChristian Sigg                                                 rewriter.getI32IntegerAttr(0));
743a5f9cda1SChristian Sigg   Value stream =
744a5f9cda1SChristian Sigg       adaptor.asyncDependencies().empty()
745a5f9cda1SChristian Sigg           ? streamCreateCallBuilder.create(loc, rewriter, {}).getResult(0)
746a5f9cda1SChristian Sigg           : adaptor.asyncDependencies().front();
747a5f9cda1SChristian Sigg   // Create array of pointers to kernel arguments.
748ef976337SRiver Riddle   auto kernelParams = generateParamsArray(launchOp, adaptor, rewriter);
749a5f9cda1SChristian Sigg   auto nullpointer = rewriter.create<LLVM::NullOp>(loc, llvmPointerPointerType);
75008b63db8SUday Bondhugula   Value dynamicSharedMemorySize = launchOp.dynamicSharedMemorySize()
75108b63db8SUday Bondhugula                                       ? launchOp.dynamicSharedMemorySize()
75208b63db8SUday Bondhugula                                       : zero;
75308b63db8SUday Bondhugula   launchKernelCallBuilder.create(
75408b63db8SUday Bondhugula       loc, rewriter,
75508b63db8SUday Bondhugula       {function.getResult(0), adaptor.gridSizeX(), adaptor.gridSizeY(),
75608b63db8SUday Bondhugula        adaptor.gridSizeZ(), adaptor.blockSizeX(), adaptor.blockSizeY(),
75708b63db8SUday Bondhugula        adaptor.blockSizeZ(), dynamicSharedMemorySize, stream, kernelParams,
758a5f9cda1SChristian Sigg        /*extra=*/nullpointer});
759a5f9cda1SChristian Sigg 
760a5f9cda1SChristian Sigg   if (launchOp.asyncToken()) {
761a5f9cda1SChristian Sigg     // Async launch: make dependent ops use the same stream.
762a5f9cda1SChristian Sigg     rewriter.replaceOp(launchOp, {stream});
763a5f9cda1SChristian Sigg   } else {
764a5f9cda1SChristian Sigg     // Synchronize with host and destroy stream. This must be the stream created
765a5f9cda1SChristian Sigg     // above (with no other uses) because we check that the synchronous version
766a5f9cda1SChristian Sigg     // does not have any async dependencies.
767a5f9cda1SChristian Sigg     streamSynchronizeCallBuilder.create(loc, rewriter, stream);
768a5f9cda1SChristian Sigg     streamDestroyCallBuilder.create(loc, rewriter, stream);
769a5f9cda1SChristian Sigg     rewriter.eraseOp(launchOp);
770a5f9cda1SChristian Sigg   }
771a5f9cda1SChristian Sigg   moduleUnloadCallBuilder.create(loc, rewriter, module.getResult(0));
772a5f9cda1SChristian Sigg 
773a5f9cda1SChristian Sigg   return success();
774a5f9cda1SChristian Sigg }
775a5f9cda1SChristian Sigg 
776a5f9cda1SChristian Sigg LogicalResult ConvertMemcpyOpToGpuRuntimeCallPattern::matchAndRewrite(
777ef976337SRiver Riddle     gpu::MemcpyOp memcpyOp, OpAdaptor adaptor,
778a5f9cda1SChristian Sigg     ConversionPatternRewriter &rewriter) const {
779a5f9cda1SChristian Sigg   auto memRefType = memcpyOp.src().getType().cast<MemRefType>();
780a5f9cda1SChristian Sigg 
781ef976337SRiver Riddle   if (failed(areAllLLVMTypes(memcpyOp, adaptor.getOperands(), rewriter)) ||
782a5f9cda1SChristian Sigg       !isConvertibleAndHasIdentityMaps(memRefType) ||
783a5f9cda1SChristian Sigg       failed(isAsyncWithOneDependency(rewriter, memcpyOp)))
784a5f9cda1SChristian Sigg     return failure();
785a5f9cda1SChristian Sigg 
786a5f9cda1SChristian Sigg   auto loc = memcpyOp.getLoc();
787a5f9cda1SChristian Sigg 
788a5f9cda1SChristian Sigg   MemRefDescriptor srcDesc(adaptor.src());
789361458b1SLoren Maggiore   Value numElements = getNumElements(rewriter, loc, memRefType, srcDesc);
790a5f9cda1SChristian Sigg 
791a5f9cda1SChristian Sigg   Type elementPtrType = getElementPtrType(memRefType);
792a5f9cda1SChristian Sigg   Value nullPtr = rewriter.create<LLVM::NullOp>(loc, elementPtrType);
793a5f9cda1SChristian Sigg   Value gepPtr = rewriter.create<LLVM::GEPOp>(
794a5f9cda1SChristian Sigg       loc, elementPtrType, ArrayRef<Value>{nullPtr, numElements});
795a5f9cda1SChristian Sigg   auto sizeBytes =
796a5f9cda1SChristian Sigg       rewriter.create<LLVM::PtrToIntOp>(loc, getIndexType(), gepPtr);
797a5f9cda1SChristian Sigg 
798a5f9cda1SChristian Sigg   auto src = rewriter.create<LLVM::BitcastOp>(
799a5f9cda1SChristian Sigg       loc, llvmPointerType, srcDesc.alignedPtr(rewriter, loc));
800a5f9cda1SChristian Sigg   auto dst = rewriter.create<LLVM::BitcastOp>(
801a5f9cda1SChristian Sigg       loc, llvmPointerType,
802a5f9cda1SChristian Sigg       MemRefDescriptor(adaptor.dst()).alignedPtr(rewriter, loc));
803a5f9cda1SChristian Sigg 
804a5f9cda1SChristian Sigg   auto stream = adaptor.asyncDependencies().front();
805a5f9cda1SChristian Sigg   memcpyCallBuilder.create(loc, rewriter, {dst, src, sizeBytes, stream});
806a5f9cda1SChristian Sigg 
807a5f9cda1SChristian Sigg   rewriter.replaceOp(memcpyOp, {stream});
808a5f9cda1SChristian Sigg 
809a5f9cda1SChristian Sigg   return success();
810a5f9cda1SChristian Sigg }
811a5f9cda1SChristian Sigg 
812361458b1SLoren Maggiore LogicalResult ConvertMemsetOpToGpuRuntimeCallPattern::matchAndRewrite(
813ef976337SRiver Riddle     gpu::MemsetOp memsetOp, OpAdaptor adaptor,
814361458b1SLoren Maggiore     ConversionPatternRewriter &rewriter) const {
815361458b1SLoren Maggiore   auto memRefType = memsetOp.dst().getType().cast<MemRefType>();
816361458b1SLoren Maggiore 
817ef976337SRiver Riddle   if (failed(areAllLLVMTypes(memsetOp, adaptor.getOperands(), rewriter)) ||
818361458b1SLoren Maggiore       !isConvertibleAndHasIdentityMaps(memRefType) ||
819361458b1SLoren Maggiore       failed(isAsyncWithOneDependency(rewriter, memsetOp)))
820361458b1SLoren Maggiore     return failure();
821361458b1SLoren Maggiore 
822361458b1SLoren Maggiore   auto loc = memsetOp.getLoc();
823361458b1SLoren Maggiore 
824361458b1SLoren Maggiore   Type valueType = adaptor.value().getType();
825361458b1SLoren Maggiore   if (!valueType.isIntOrFloat() || valueType.getIntOrFloatBitWidth() != 32) {
826361458b1SLoren Maggiore     return rewriter.notifyMatchFailure(memsetOp,
827361458b1SLoren Maggiore                                        "value must be a 32 bit scalar");
828361458b1SLoren Maggiore   }
829361458b1SLoren Maggiore 
830361458b1SLoren Maggiore   MemRefDescriptor dstDesc(adaptor.dst());
831361458b1SLoren Maggiore   Value numElements = getNumElements(rewriter, loc, memRefType, dstDesc);
832361458b1SLoren Maggiore 
833361458b1SLoren Maggiore   auto value =
834361458b1SLoren Maggiore       rewriter.create<LLVM::BitcastOp>(loc, llvmInt32Type, adaptor.value());
835361458b1SLoren Maggiore   auto dst = rewriter.create<LLVM::BitcastOp>(
836361458b1SLoren Maggiore       loc, llvmPointerType, dstDesc.alignedPtr(rewriter, loc));
837361458b1SLoren Maggiore 
838361458b1SLoren Maggiore   auto stream = adaptor.asyncDependencies().front();
839361458b1SLoren Maggiore   memsetCallBuilder.create(loc, rewriter, {dst, value, numElements, stream});
840361458b1SLoren Maggiore 
841361458b1SLoren Maggiore   rewriter.replaceOp(memsetOp, {stream});
842361458b1SLoren Maggiore   return success();
843361458b1SLoren Maggiore }
844361458b1SLoren Maggiore 
845a5f9cda1SChristian Sigg std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
846a5f9cda1SChristian Sigg mlir::createGpuToLLVMConversionPass() {
847a5f9cda1SChristian Sigg   return std::make_unique<GpuToLLVMConversionPass>();
848a5f9cda1SChristian Sigg }
8497d855605SButygin 
8507d855605SButygin void mlir::populateGpuToLLVMConversionPatterns(
8517d855605SButygin     LLVMTypeConverter &converter, OwningRewritePatternList &patterns,
8527d855605SButygin     StringRef gpuBinaryAnnotation) {
8537d855605SButygin   converter.addConversion(
8547d855605SButygin       [context = &converter.getContext()](gpu::AsyncTokenType type) -> Type {
8557d855605SButygin         return LLVM::LLVMPointerType::get(IntegerType::get(context, 8));
8567d855605SButygin       });
8577d855605SButygin   patterns.add<ConvertAllocOpToGpuRuntimeCallPattern,
8587d855605SButygin                ConvertDeallocOpToGpuRuntimeCallPattern,
8597d855605SButygin                ConvertHostRegisterOpToGpuRuntimeCallPattern,
8607d855605SButygin                ConvertMemcpyOpToGpuRuntimeCallPattern,
861361458b1SLoren Maggiore                ConvertMemsetOpToGpuRuntimeCallPattern,
8627d855605SButygin                ConvertWaitAsyncOpToGpuRuntimeCallPattern,
8637d855605SButygin                ConvertWaitOpToGpuRuntimeCallPattern,
8647d855605SButygin                ConvertAsyncYieldToGpuRuntimeCallPattern>(converter);
8657d855605SButygin   patterns.add<ConvertLaunchFuncOpToGpuRuntimeCallPattern>(converter,
8667d855605SButygin                                                            gpuBinaryAnnotation);
8677d855605SButygin   patterns.add<EraseGpuModuleOpPattern>(&converter.getContext());
8687d855605SButygin }
869