Skip to content

Commit c66844d

Browse files
committed
[CodeGenOpenCL] Remove pointer type caching
This was important when typed LLVM pointers wanted a struct definition for every type, but that's no longer necessary with opaque pointers. NFCI.
1 parent a89c15a commit c66844d

File tree

2 files changed

+8
-41
lines changed

2 files changed

+8
-41
lines changed

clang/lib/CodeGen/CGOpenCLRuntime.cpp

+7-39
Original file line numberDiff line numberDiff line change
@@ -37,43 +37,16 @@ llvm::Type *CGOpenCLRuntime::convertOpenCLSpecificType(const Type *T) {
3737
if (llvm::Type *TransTy = CGM.getTargetCodeGenInfo().getOpenCLType(CGM, T))
3838
return TransTy;
3939

40-
switch (cast<BuiltinType>(T)->getKind()) {
41-
default:
42-
llvm_unreachable("Unexpected opencl builtin type!");
43-
return nullptr;
44-
#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
45-
case BuiltinType::Id: \
46-
return getPointerType(T, "opencl." #ImgType "_" #Suffix "_t");
47-
#include "clang/Basic/OpenCLImageTypes.def"
48-
case BuiltinType::OCLSampler:
40+
if (T->isSamplerT())
4941
return getSamplerType(T);
50-
case BuiltinType::OCLEvent:
51-
return getPointerType(T, "opencl.event_t");
52-
case BuiltinType::OCLClkEvent:
53-
return getPointerType(T, "opencl.clk_event_t");
54-
case BuiltinType::OCLQueue:
55-
return getPointerType(T, "opencl.queue_t");
56-
case BuiltinType::OCLReserveID:
57-
return getPointerType(T, "opencl.reserve_id_t");
58-
#define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
59-
case BuiltinType::Id: \
60-
return getPointerType(T, "opencl." #ExtType);
61-
#include "clang/Basic/OpenCLExtensionTypes.def"
62-
}
63-
}
6442

65-
llvm::PointerType *CGOpenCLRuntime::getPointerType(const Type *T,
66-
StringRef Name) {
67-
auto I = CachedTys.find(Name);
68-
if (I != CachedTys.end())
69-
return I->second;
43+
return getPointerType(T);
44+
}
7045

71-
llvm::LLVMContext &Ctx = CGM.getLLVMContext();
46+
llvm::PointerType *CGOpenCLRuntime::getPointerType(const Type *T) {
7247
uint32_t AddrSpc = CGM.getContext().getTargetAddressSpace(
7348
CGM.getContext().getOpenCLTypeAddrSpace(T));
74-
auto *PTy = llvm::PointerType::get(Ctx, AddrSpc);
75-
CachedTys[Name] = PTy;
76-
return PTy;
49+
return llvm::PointerType::get(CGM.getLLVMContext(), AddrSpc);
7750
}
7851

7952
llvm::Type *CGOpenCLRuntime::getPipeType(const PipeType *T) {
@@ -89,9 +62,7 @@ llvm::Type *CGOpenCLRuntime::getPipeType(const PipeType *T) {
8962
llvm::Type *CGOpenCLRuntime::getPipeType(const PipeType *T, StringRef Name,
9063
llvm::Type *&PipeTy) {
9164
if (!PipeTy)
92-
PipeTy = llvm::PointerType::get(
93-
CGM.getLLVMContext(), CGM.getContext().getTargetAddressSpace(
94-
CGM.getContext().getOpenCLTypeAddrSpace(T)));
65+
PipeTy = getPointerType(T);
9566
return PipeTy;
9667
}
9768

@@ -103,10 +74,7 @@ llvm::Type *CGOpenCLRuntime::getSamplerType(const Type *T) {
10374
CGM, CGM.getContext().OCLSamplerTy.getTypePtr()))
10475
SamplerTy = TransTy;
10576
else
106-
// struct opencl.sampler_t*
107-
SamplerTy = llvm::PointerType::get(
108-
CGM.getLLVMContext(), CGM.getContext().getTargetAddressSpace(
109-
CGM.getContext().getOpenCLTypeAddrSpace(T)));
77+
SamplerTy = getPointerType(T);
11078
return SamplerTy;
11179
}
11280

clang/lib/CodeGen/CGOpenCLRuntime.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ class CGOpenCLRuntime {
3939
llvm::Type *PipeROTy;
4040
llvm::Type *PipeWOTy;
4141
llvm::Type *SamplerTy;
42-
llvm::StringMap<llvm::PointerType *> CachedTys;
4342

4443
/// Structure for enqueued block information.
4544
struct EnqueuedBlockInfo {
@@ -53,7 +52,7 @@ class CGOpenCLRuntime {
5352

5453
virtual llvm::Type *getPipeType(const PipeType *T, StringRef Name,
5554
llvm::Type *&PipeTy);
56-
llvm::PointerType *getPointerType(const Type *T, StringRef Name);
55+
llvm::PointerType *getPointerType(const Type *T);
5756

5857
public:
5958
CGOpenCLRuntime(CodeGenModule &CGM) : CGM(CGM),

0 commit comments

Comments
 (0)