forked from KhronosGroup/SPIRV-LLVM-Translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TransOCLMD.cpp
219 lines (191 loc) · 7.2 KB
/
TransOCLMD.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
//===- TransOCLMD.cpp - Transform OCL metadata to SPIR-V metadata - C++ -*-===//
//
// The LLVM/SPIRV Translator
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
// Copyright (c) 2014 Advanced Micro Devices, Inc. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal with the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimers.
// Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimers in the documentation
// and/or other materials provided with the distribution.
// Neither the names of Advanced Micro Devices, Inc., nor the names of its
// contributors may be used to endorse or promote products derived from this
// Software without specific prior written permission.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH
// THE SOFTWARE.
//
//===----------------------------------------------------------------------===//
//
// This file implements translation of OCL metadata to SPIR-V metadata.
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "clmdtospv"
#include "OCLUtil.h"
#include "SPIRVInternal.h"
#include "SPIRVMDBuilder.h"
#include "SPIRVMDWalker.h"
#include "llvm/ADT/Triple.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/InstVisitor.h"
#include "llvm/IR/Verifier.h"
#include "llvm/Pass.h"
#include "llvm/PassSupport.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
using namespace llvm;
using namespace SPIRV;
using namespace OCLUtil;
namespace SPIRV {
cl::opt<bool> EraseOCLMD("spirv-erase-cl-md", cl::init(true),
cl::desc("Erase OpenCL metadata"));
class TransOCLMD : public ModulePass {
public:
TransOCLMD() : ModulePass(ID), M(nullptr), Ctx(nullptr), CLVer(0) {
initializeTransOCLMDPass(*PassRegistry::getPassRegistry());
}
bool runOnModule(Module &M) override;
void visit(Module *M);
static char ID;
private:
Module *M;
LLVMContext *Ctx;
unsigned CLVer; /// OpenCL version as major*10+minor
};
char TransOCLMD::ID = 0;
bool TransOCLMD::runOnModule(Module &Module) {
M = &Module;
Ctx = &M->getContext();
CLVer = getOCLVersion(M, true);
if (CLVer == 0)
return false;
LLVM_DEBUG(dbgs() << "Enter TransOCLMD:\n");
visit(M);
LLVM_DEBUG(dbgs() << "After TransOCLMD:\n" << *M);
std::string Err;
raw_string_ostream ErrorOS(Err);
if (verifyModule(*M, &ErrorOS)) {
LLVM_DEBUG(errs() << "Fails to verify module: " << ErrorOS.str());
}
return true;
}
void TransOCLMD::visit(Module *M) {
SPIRVMDBuilder B(*M);
SPIRVMDWalker W(*M);
// !spirv.Source = !{!x}
// !{x} = !{i32 3, i32 102000}
B.addNamedMD(kSPIRVMD::Source)
.addOp()
.add(CLVer < kOCLVer::CL21 ? spv::SourceLanguageOpenCL_C
: spv::SourceLanguageOpenCL_CPP)
.add(CLVer)
.done();
if (EraseOCLMD)
B.eraseNamedMD(kSPIR2MD::OCLVer).eraseNamedMD(kSPIR2MD::SPIRVer);
// !spirv.MemoryModel = !{!x}
// !{x} = !{i32 1, i32 2}
Triple TT(M->getTargetTriple());
auto Arch = TT.getArch();
assert((Arch == Triple::spir || Arch == Triple::spir64) && "Invalid triple");
B.addNamedMD(kSPIRVMD::MemoryModel)
.addOp()
.add(Arch == Triple::spir ? spv::AddressingModelPhysical32
: spv::AddressingModelPhysical64)
.add(spv::MemoryModelOpenCL)
.done();
// Add source extensions
// !spirv.SourceExtension = !{!x, !y, ...}
// !x = {!"cl_khr_..."}
// !y = {!"cl_khr_..."}
auto Exts = getNamedMDAsStringSet(M, kSPIR2MD::Extensions);
if (!Exts.empty()) {
auto N = B.addNamedMD(kSPIRVMD::SourceExtension);
for (auto &I : Exts)
N.addOp().add(I).done();
}
if (EraseOCLMD)
B.eraseNamedMD(kSPIR2MD::Extensions).eraseNamedMD(kSPIR2MD::OptFeatures);
if (EraseOCLMD)
B.eraseNamedMD(kSPIR2MD::FPContract);
// Create metadata representing (empty so far) list
// of OpEntryPoint and OpExecutionMode instructions
auto EP = B.addNamedMD(kSPIRVMD::EntryPoint); // !spirv.EntryPoint = {}
auto EM = B.addNamedMD(kSPIRVMD::ExecutionMode); // !spirv.ExecutionMode = {}
// Add execution modes for kernels. We take it from metadata attached to
// the kernel functions.
for (Function &Kernel : *M) {
if (Kernel.getCallingConv() != CallingConv::SPIR_KERNEL)
continue;
// Add EntryPoint(which actually is adding its operands) to the list of
// entry points:
// !{i32 6, void (i32 addrspace(1)*)* @kernel, !"kernel" }
MDNode *EPNode;
EP.addOp()
.add(spv::ExecutionModelKernel)
.add(&Kernel)
.add(Kernel.getName())
.done(&EPNode);
// Specifing execution modes for the Kernel and adding it to the list
// of ExecutionMode instructions.
// !{void (i32 addrspace(1)*)* @kernel, i32 17, i32 X, i32 Y, i32 Z}
if (MDNode *WGSize = Kernel.getMetadata(kSPIR2MD::WGSize)) {
unsigned X, Y, Z;
decodeMDNode(WGSize, X, Y, Z);
EM.addOp()
.add(&Kernel)
.add(spv::ExecutionModeLocalSize)
.add(X)
.add(Y)
.add(Z)
.done();
}
// !{void (i32 addrspace(1)*)* @kernel, i32 18, i32 X, i32 Y, i32 Z}
if (MDNode *WGSizeHint = Kernel.getMetadata(kSPIR2MD::WGSizeHint)) {
unsigned X, Y, Z;
decodeMDNode(WGSizeHint, X, Y, Z);
EM.addOp()
.add(&Kernel)
.add(spv::ExecutionModeLocalSizeHint)
.add(X)
.add(Y)
.add(Z)
.done();
}
// !{void (i32 addrspace(1)*)* @kernel, i32 30, i32 hint}
if (MDNode *VecTypeHint = Kernel.getMetadata(kSPIR2MD::VecTyHint)) {
EM.addOp()
.add(&Kernel)
.add(spv::ExecutionModeVecTypeHint)
.add(transVecTypeHint(VecTypeHint))
.done();
}
// !{void (i32 addrspace(1)*)* @kernel, i32 35, i32 size}
if (MDNode *ReqdSubgroupSize = Kernel.getMetadata(kSPIR2MD::SubgroupSize)) {
EM.addOp()
.add(&Kernel)
.add(spv::ExecutionModeSubgroupSize)
.add(getMDOperandAsInt(ReqdSubgroupSize, 0))
.done();
}
}
}
} // namespace SPIRV
INITIALIZE_PASS(TransOCLMD, "clmdtospv",
"Transform OCL metadata format to SPIR-V metadata format",
false, false)
ModulePass *llvm::createTransOCLMD() { return new TransOCLMD(); }