Skip to content

Commit 545a145

Browse files
authored
Add parsing of OpenCL C++ -cl-std flags (#510)
Hello! Support for OpenCL C++ was added into LLVM 14, but IGC doesn't support parsing of those flags just yet. I've opened PRs which adds support for parsing these flags to the following repositories: [intel-graphics-compiler](intel/intel-graphics-compiler#328), [compute-runtime](intel/compute-runtime#731) and [opencl-clang](#510). The options are passed down into LLVM which then happily compiles my C++ kernel. PRs should be merged in the following order: opencl-clang, intel-graphics-compiler, then finally compute-runtime. Kind regards, -Lucas Co-authored-by: Lucas Zadrozny <[email protected]>
1 parent bd0b0f4 commit 545a145

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

opencl_clang_options.td

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ def cl_std_CL1_1: Flag<["-"], "cl-std=CL1.1">;
3434
def cl_std_CL1_2: Flag<["-"], "cl-std=CL1.2">;
3535
def cl_std_CL2_0: Flag<["-"], "cl-std=CL2.0">;
3636
def cl_std_CL3_0: Flag<["-"], "cl-std=CL3.0">;
37+
def cl_std_CLCxx: Flag<["-"], "cl-std=CLC++">;
38+
def cl_std_CLCxx1_0: Flag<["-"], "cl-std=CLC++1.0">;
39+
def cl_std_CLCxx2021: Flag<["-"], "cl-std=CLC++2021">;
3740
def cl_uniform_work_group_size: Flag<["-"], "cl-uniform-work-group-size">;
3841
def cl_no_subgroup_ifp: Flag<["-"], "cl-no-subgroup-ifp">;
3942
def triple : Separate<["-"], "triple">, HelpText<"Specify target triple (e.g. i686-apple-darwin9)">;

options_compile.cpp

+15-1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ std::string EffectiveOptionsFilter::processOptions(const OpenCLArgList &args,
8181
ArgsVector &effectiveArgs) {
8282
// Reset args
8383
int iCLStdSet = 0;
84+
bool isCpp = false;
8485
bool fp64Enabled = false;
8586
std::string szTriple;
8687
std::string sourceName(llvm::Twine(s_progID++).str());
@@ -150,6 +151,17 @@ std::string EffectiveOptionsFilter::processOptions(const OpenCLArgList &args,
150151
iCLStdSet = 300;
151152
effectiveArgs.push_back((*it)->getAsString(args));
152153
break;
154+
case OPT_COMPILE_cl_std_CLCxx:
155+
case OPT_COMPILE_cl_std_CLCxx1_0:
156+
iCLStdSet = 200;
157+
isCpp = true;
158+
effectiveArgs.push_back((*it)->getAsString(args));
159+
break;
160+
case OPT_COMPILE_cl_std_CLCxx2021:
161+
iCLStdSet = 300;
162+
isCpp = true;
163+
effectiveArgs.push_back((*it)->getAsString(args));
164+
break;
153165
case OPT_COMPILE_triple:
154166
szTriple = (*it)->getValue();
155167
break;
@@ -231,7 +243,9 @@ std::string EffectiveOptionsFilter::processOptions(const OpenCLArgList &args,
231243

232244
// Specifying the option makes clang emit function body for functions
233245
// marked with inline keyword.
234-
effectiveArgs.push_back("-fgnu89-inline");
246+
if (!isCpp) {
247+
effectiveArgs.push_back("-fgnu89-inline");
248+
}
235249

236250
// Do not support all extensions by default. Support for a particular
237251
// extension should be enabled by passing a '-cl-ext' option in pszOptionsEx.

0 commit comments

Comments
 (0)