mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
[NVPTX] convert pointers in byval kernel arguments to global
Summary: For example, in struct S { int *x; int *y; }; __global__ void foo(S s) { int *b = s.y; // use b } "b" is guaranteed to point to global. NVPTX should emit ld.global/st.global for accessing "b". Reviewers: jholewinski Subscribers: llvm-commits, jholewinski Differential Revision: http://reviews.llvm.org/D11505 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243790 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
be031d9158
commit
bd11ccb2b9
@ -47,6 +47,36 @@
|
|||||||
// ...
|
// ...
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
|
// 3. Convert pointers in a byval kernel parameter to pointers in the global
|
||||||
|
// address space. As #2, it allows NVPTX to emit more ld/st.global. E.g.,
|
||||||
|
//
|
||||||
|
// struct S {
|
||||||
|
// int *x;
|
||||||
|
// int *y;
|
||||||
|
// };
|
||||||
|
// __global__ void foo(S s) {
|
||||||
|
// int *b = s.y;
|
||||||
|
// // use b
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// "b" points to the global address space. In the IR level,
|
||||||
|
//
|
||||||
|
// define void @foo({i32*, i32*}* byval %input) {
|
||||||
|
// %b_ptr = getelementptr {i32*, i32*}, {i32*, i32*}* %input, i64 0, i32 1
|
||||||
|
// %b = load i32*, i32** %b_ptr
|
||||||
|
// ; use %b
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// becomes
|
||||||
|
//
|
||||||
|
// define void @foo({i32*, i32*}* byval %input) {
|
||||||
|
// %b_ptr = getelementptr {i32*, i32*}, {i32*, i32*}* %input, i64 0, i32 1
|
||||||
|
// %b = load i32*, i32** %b_ptr
|
||||||
|
// %b_global = addrspacecast i32* %b to i32 addrspace(1)*
|
||||||
|
// %b_generic = addrspacecast i32 addrspace(1)* %b_global to i32*
|
||||||
|
// ; use %b_generic
|
||||||
|
// }
|
||||||
|
//
|
||||||
// TODO: merge this pass with NVPTXFavorNonGenericAddrSpace so that other passes
|
// TODO: merge this pass with NVPTXFavorNonGenericAddrSpace so that other passes
|
||||||
// don't cancel the addrspacecast pair this pass emits.
|
// don't cancel the addrspacecast pair this pass emits.
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
@ -54,6 +84,7 @@
|
|||||||
#include "NVPTX.h"
|
#include "NVPTX.h"
|
||||||
#include "NVPTXUtilities.h"
|
#include "NVPTXUtilities.h"
|
||||||
#include "NVPTXTargetMachine.h"
|
#include "NVPTXTargetMachine.h"
|
||||||
|
#include "llvm/Analysis/ValueTracking.h"
|
||||||
#include "llvm/IR/Function.h"
|
#include "llvm/IR/Function.h"
|
||||||
#include "llvm/IR/Instructions.h"
|
#include "llvm/IR/Instructions.h"
|
||||||
#include "llvm/IR/Module.h"
|
#include "llvm/IR/Module.h"
|
||||||
@ -71,9 +102,12 @@ class NVPTXLowerKernelArgs : public FunctionPass {
|
|||||||
bool runOnFunction(Function &F) override;
|
bool runOnFunction(Function &F) override;
|
||||||
|
|
||||||
// handle byval parameters
|
// handle byval parameters
|
||||||
void handleByValParam(Argument *);
|
void handleByValParam(Argument *Arg);
|
||||||
// handle non-byval pointer parameters
|
// Knowing Ptr must point to the global address space, this function
|
||||||
void handlePointerParam(Argument *);
|
// addrspacecasts Ptr to global and then back to generic. This allows
|
||||||
|
// NVPTXFavorNonGenericAddrSpace to fold the global-to-generic cast into
|
||||||
|
// loads/stores that appear later.
|
||||||
|
void markPointerAsGlobal(Value *Ptr);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static char ID; // Pass identification, replacement for typeid
|
static char ID; // Pass identification, replacement for typeid
|
||||||
@ -128,26 +162,33 @@ void NVPTXLowerKernelArgs::handleByValParam(Argument *Arg) {
|
|||||||
new StoreInst(LI, AllocA, FirstInst);
|
new StoreInst(LI, AllocA, FirstInst);
|
||||||
}
|
}
|
||||||
|
|
||||||
void NVPTXLowerKernelArgs::handlePointerParam(Argument *Arg) {
|
void NVPTXLowerKernelArgs::markPointerAsGlobal(Value *Ptr) {
|
||||||
assert(!Arg->hasByValAttr() &&
|
if (Ptr->getType()->getPointerAddressSpace() == ADDRESS_SPACE_GLOBAL)
|
||||||
"byval params should be handled by handleByValParam");
|
|
||||||
|
|
||||||
// Do nothing if the argument already points to the global address space.
|
|
||||||
if (Arg->getType()->getPointerAddressSpace() == ADDRESS_SPACE_GLOBAL)
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Instruction *FirstInst = Arg->getParent()->getEntryBlock().begin();
|
// Deciding where to emit the addrspacecast pair.
|
||||||
Instruction *ArgInGlobal = new AddrSpaceCastInst(
|
BasicBlock::iterator InsertPt;
|
||||||
Arg, PointerType::get(Arg->getType()->getPointerElementType(),
|
if (Argument *Arg = dyn_cast<Argument>(Ptr)) {
|
||||||
ADDRESS_SPACE_GLOBAL),
|
// Insert at the functon entry if Ptr is an argument.
|
||||||
Arg->getName(), FirstInst);
|
InsertPt = Arg->getParent()->getEntryBlock().begin();
|
||||||
Value *ArgInGeneric = new AddrSpaceCastInst(ArgInGlobal, Arg->getType(),
|
} else {
|
||||||
Arg->getName(), FirstInst);
|
// Insert right after Ptr if Ptr is an instruction.
|
||||||
// Replace with ArgInGeneric all uses of Args except ArgInGlobal.
|
InsertPt = cast<Instruction>(Ptr);
|
||||||
Arg->replaceAllUsesWith(ArgInGeneric);
|
++InsertPt;
|
||||||
ArgInGlobal->setOperand(0, Arg);
|
assert(InsertPt != InsertPt->getParent()->end() &&
|
||||||
}
|
"We don't call this function with Ptr being a terminator.");
|
||||||
|
}
|
||||||
|
|
||||||
|
Instruction *PtrInGlobal = new AddrSpaceCastInst(
|
||||||
|
Ptr, PointerType::get(Ptr->getType()->getPointerElementType(),
|
||||||
|
ADDRESS_SPACE_GLOBAL),
|
||||||
|
Ptr->getName(), InsertPt);
|
||||||
|
Value *PtrInGeneric = new AddrSpaceCastInst(PtrInGlobal, Ptr->getType(),
|
||||||
|
Ptr->getName(), InsertPt);
|
||||||
|
// Replace with PtrInGeneric all uses of Ptr except PtrInGlobal.
|
||||||
|
Ptr->replaceAllUsesWith(PtrInGeneric);
|
||||||
|
PtrInGlobal->setOperand(0, Ptr);
|
||||||
|
}
|
||||||
|
|
||||||
// =============================================================================
|
// =============================================================================
|
||||||
// Main function for this pass.
|
// Main function for this pass.
|
||||||
@ -157,12 +198,32 @@ bool NVPTXLowerKernelArgs::runOnFunction(Function &F) {
|
|||||||
if (!isKernelFunction(F))
|
if (!isKernelFunction(F))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
if (TM && TM->getDrvInterface() == NVPTX::CUDA) {
|
||||||
|
// Mark pointers in byval structs as global.
|
||||||
|
for (auto &B : F) {
|
||||||
|
for (auto &I : B) {
|
||||||
|
if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
|
||||||
|
if (LI->getType()->isPointerTy()) {
|
||||||
|
Value *UO = GetUnderlyingObject(LI->getPointerOperand(),
|
||||||
|
F.getParent()->getDataLayout());
|
||||||
|
if (Argument *Arg = dyn_cast<Argument>(UO)) {
|
||||||
|
if (Arg->hasByValAttr()) {
|
||||||
|
// LI is a load from a pointer within a byval kernel parameter.
|
||||||
|
markPointerAsGlobal(LI);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
for (Argument &Arg : F.args()) {
|
for (Argument &Arg : F.args()) {
|
||||||
if (Arg.getType()->isPointerTy()) {
|
if (Arg.getType()->isPointerTy()) {
|
||||||
if (Arg.hasByValAttr())
|
if (Arg.hasByValAttr())
|
||||||
handleByValParam(&Arg);
|
handleByValParam(&Arg);
|
||||||
else if (TM && TM->getDrvInterface() == NVPTX::CUDA)
|
else if (TM && TM->getDrvInterface() == NVPTX::CUDA)
|
||||||
handlePointerParam(&Arg);
|
markPointerAsGlobal(&Arg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 | FileCheck %s
|
; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 | FileCheck %s
|
||||||
|
|
||||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v16:16:16-v32:32:32-v64:64:64-v128:128:128-n16:32:64"
|
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v16:16:16-v32:32:32-v64:64:64-v128:128:128-n16:32:64"
|
||||||
target triple = "nvptx64-unknown-unknown"
|
target triple = "nvptx64-nvidia-cuda"
|
||||||
|
|
||||||
; Verify that both %input and %output are converted to global pointers and then
|
; Verify that both %input and %output are converted to global pointers and then
|
||||||
; addrspacecast'ed back to the original type.
|
; addrspacecast'ed back to the original type.
|
||||||
@ -26,6 +26,22 @@ define void @kernel2(float addrspace(1)* %input, float addrspace(1)* %output) {
|
|||||||
ret void
|
ret void
|
||||||
}
|
}
|
||||||
|
|
||||||
!nvvm.annotations = !{!0, !1}
|
%struct.S = type { i32*, i32* }
|
||||||
|
|
||||||
|
define void @ptr_in_byval(%struct.S* byval %input, i32* %output) {
|
||||||
|
; CHECK-LABEL: .visible .entry ptr_in_byval(
|
||||||
|
; CHECK: cvta.to.global.u64
|
||||||
|
; CHECK: cvta.to.global.u64
|
||||||
|
%b_ptr = getelementptr inbounds %struct.S, %struct.S* %input, i64 0, i32 1
|
||||||
|
%b = load i32*, i32** %b_ptr, align 4
|
||||||
|
%v = load i32, i32* %b, align 4
|
||||||
|
; CHECK: ld.global.u32
|
||||||
|
store i32 %v, i32* %output, align 4
|
||||||
|
; CHECK: st.global.u32
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
!nvvm.annotations = !{!0, !1, !2}
|
||||||
!0 = !{void (float*, float*)* @kernel, !"kernel", i32 1}
|
!0 = !{void (float*, float*)* @kernel, !"kernel", i32 1}
|
||||||
!1 = !{void (float addrspace(1)*, float addrspace(1)*)* @kernel2, !"kernel", i32 1}
|
!1 = !{void (float addrspace(1)*, float addrspace(1)*)* @kernel2, !"kernel", i32 1}
|
||||||
|
!2 = !{void (%struct.S*, i32*)* @ptr_in_byval, !"kernel", i32 1}
|
||||||
|
Loading…
Reference in New Issue
Block a user