bader created this revision. Herald added subscribers: cfe-commits, Anastasia, ebevhan. Herald added a project: clang.
User can select the version of SYCL the compiler will use via the flag -sycl-std, similar to -cl-std. The flag defines the LangOpts.SYCLVersion option to the version of SYCL. The default value is undefined. If driver is building SYCL code, flag is set to the default SYCL version (1.2.1) The preprocessor uses this variable to define CL_SYCL_LANGUAGE_VERSION macro, which should be defined according to SYCL 1.2.1 standard. Only valid value at this point for the flag is 1.2.1. Co-Authored-By: David Wood <q0kpu0h1yoephry1r2sn5b...@david.davidtw.co> Signed-off-by: Ruyman Reyes <ruy...@codeplay.com> Signed-off-by: Alexey Bader <alexey.ba...@intel.com> Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D72857 Files: clang/include/clang/Basic/LangOptions.def clang/include/clang/Basic/LangOptions.h clang/include/clang/Driver/Options.td clang/lib/Driver/ToolChains/Clang.cpp clang/lib/Frontend/CompilerInvocation.cpp clang/lib/Frontend/InitPreprocessor.cpp clang/test/Driver/sycl.c clang/test/Preprocessor/sycl-macro.cpp
Index: clang/test/Preprocessor/sycl-macro.cpp =================================================================== --- clang/test/Preprocessor/sycl-macro.cpp +++ clang/test/Preprocessor/sycl-macro.cpp @@ -1,5 +1,8 @@ // RUN: %clang_cc1 %s -E -dM | FileCheck %s -// RUN: %clang_cc1 %s -fsycl-is-device -E -dM | FileCheck --check-prefix=CHECK-SYCL %s +// RUN: %clang_cc1 %s -sycl-std=1.2.1 -E -dM | FileCheck --check-prefix=CHECK-SYCL-STD %s +// RUN: %clang_cc1 %s -fsycl-is-device -E -dM | FileCheck --check-prefixes=CHECK-SYCL,CHECK-SYCL-STD %s // CHECK-NOT:#define __SYCL_DEVICE_ONLY__ 1 +// CHECK-NOT:#define CL_SYCL_LANGUAGE_VERSION 121 +// CHECK-SYCL-STD:#define CL_SYCL_LANGUAGE_VERSION 121 // CHECK-SYCL:#define __SYCL_DEVICE_ONLY__ 1 Index: clang/test/Driver/sycl.c =================================================================== --- /dev/null +++ clang/test/Driver/sycl.c @@ -0,0 +1,5 @@ +// RUN: %clang -### -fsycl -c %s 2>&1 | FileCheck %s --check-prefix=DEFAULT +// RUN: %clang -### -fsycl %s 2>&1 | FileCheck %s --check-prefix=DEFAULT +// RUN: %clangxx -### -fsycl %s 2>&1 | FileCheck %s --check-prefix=DEFAULT + +// DEFAULT: "-fsycl-is-device" Index: clang/lib/Frontend/InitPreprocessor.cpp =================================================================== --- clang/lib/Frontend/InitPreprocessor.cpp +++ clang/lib/Frontend/InitPreprocessor.cpp @@ -450,6 +450,18 @@ if (LangOpts.FastRelaxedMath) Builder.defineMacro("__FAST_RELAXED_MATH__"); } + + // SYCL Version is set to a value when building SYCL applications + switch (LangOpts.getSYCLVersion()) { + case LangOptions::SYCLVersionList::sycl_1_2_1: + Builder.defineMacro("CL_SYCL_LANGUAGE_VERSION", "121"); + break; + case LangOptions::SYCLVersionList::undefined: + default: + // This is not a SYCL source, nothing to add + break; + } + // Not "standard" per se, but available even with the -undef flag. if (LangOpts.AsmPreprocessor) Builder.defineMacro("__ASSEMBLER__"); Index: clang/lib/Frontend/CompilerInvocation.cpp =================================================================== --- clang/lib/Frontend/CompilerInvocation.cpp +++ clang/lib/Frontend/CompilerInvocation.cpp @@ -2513,6 +2513,25 @@ LangStd = OpenCLLangStd; } + // -sycl-std applies to any SYCL source, not only those containing kernels, + // but also those using the SYCL API + if (const Arg *A = Args.getLastArg(OPT_sycl_std_EQ)) { + Opts.setSYCLVersion( + llvm::StringSwitch<LangOptions::SYCLVersionList>(A->getValue()) + .Cases("1.2.1", "121", "sycl-1.2.1", + LangOptions::SYCLVersionList::sycl_1_2_1) + .Default(LangOptions::SYCLVersionList::undefined)); + + if (Opts.getSYCLVersion() == LangOptions::SYCLVersionList::undefined) { + // User has passed an invalid value to the flag, this is an error + Diags.Report(diag::err_drv_invalid_value) + << A->getAsString(Args) << A->getValue(); + } + } else if (Args.hasArg(options::OPT_fsycl_is_device) || + Args.hasArg(options::OPT_fsycl)) { + Opts.setSYCLVersion(LangOptions::SYCLVersionList::sycl_1_2_1); + } + Opts.IncludeDefaultHeader = Args.hasArg(OPT_finclude_default_header); Opts.DeclareOpenCLBuiltins = Args.hasArg(OPT_fdeclare_opencl_builtins); Index: clang/lib/Driver/ToolChains/Clang.cpp =================================================================== --- clang/lib/Driver/ToolChains/Clang.cpp +++ clang/lib/Driver/ToolChains/Clang.cpp @@ -3977,6 +3977,18 @@ CmdArgs.push_back(Args.MakeArgString(NormalizedTriple)); } + bool IsSYCL = Args.hasArg(options::OPT_fsycl); + if (IsSYCL) { + CmdArgs.push_back("-fsycl-is-device"); + } + + if (Arg *A = Args.getLastArg(options::OPT_sycl_std_EQ)) { + A->render(Args, CmdArgs); + } else if (IsSYCL) { + // Ensure the default version in SYCL mode is 1.2.1 + CmdArgs.push_back("-sycl-std=1.2.1"); + } + if (IsOpenMPDevice) { // We have to pass the triple of the host if compiling for an OpenMP device. std::string NormalizedTriple = @@ -5218,6 +5230,9 @@ options::OPT_fno_hip_new_launch_api, false)) CmdArgs.push_back("-fhip-new-launch-api"); + // Forward -sycl-std option to -cc1 + Args.AddLastArg(CmdArgs, options::OPT_sycl_std_EQ); + if (Arg *A = Args.getLastArg(options::OPT_fcf_protection_EQ)) { CmdArgs.push_back( Args.MakeArgString(Twine("-fcf-protection=") + A->getValue())); Index: clang/include/clang/Driver/Options.td =================================================================== --- clang/include/clang/Driver/Options.td +++ clang/include/clang/Driver/Options.td @@ -124,6 +124,9 @@ def opencl_Group : OptionGroup<"<opencl group>">, Group<f_Group>, DocName<"OpenCL flags">; +def sycl_Group : OptionGroup<"<sycl group>">, Group<f_Group>, + DocName<"SYCL flags">; + def m_Group : OptionGroup<"<m group>">, Group<CompileOnly_Group>, DocName<"Target-dependent compilation options">; @@ -3391,6 +3394,11 @@ defm underscoring : BooleanFFlag<"underscoring">, Group<gfortran_Group>; defm whole_file : BooleanFFlag<"whole-file">, Group<gfortran_Group>; +// C++ SYCL options +def fsycl : Flag<["-"], "fsycl">, Group<sycl_Group>, + HelpText<"Enable SYCL kernels compilation for device">; +def sycl_std_EQ : Joined<["-"], "sycl-std=">, Group<sycl_Group>, Flags<[CC1Option]>, + HelpText<"SYCL language standard to compile for.">, Values<"1.2.1">; include "CC1Options.td" Index: clang/include/clang/Basic/LangOptions.h =================================================================== --- clang/include/clang/Basic/LangOptions.h +++ clang/include/clang/Basic/LangOptions.h @@ -119,6 +119,8 @@ MSVC2017_7 = 1914, }; + enum class SYCLVersionList { sycl_1_2_1, undefined }; + /// Clang versions with different platform ABI conformance. enum class ClangABI { /// Attempt to be ABI-compatible with code generated by Clang 3.8.x Index: clang/include/clang/Basic/LangOptions.def =================================================================== --- clang/include/clang/Basic/LangOptions.def +++ clang/include/clang/Basic/LangOptions.def @@ -203,6 +203,7 @@ LANGOPT(OpenCLVersion , 32, 0, "OpenCL C version") LANGOPT(OpenCLCPlusPlus , 1, 0, "C++ for OpenCL") LANGOPT(OpenCLCPlusPlusVersion , 32, 0, "C++ for OpenCL version") +ENUM_LANGOPT(SYCLVersion, SYCLVersionList, 4, SYCLVersionList::undefined, "Version of the SYCL standard used") LANGOPT(NativeHalfType , 1, 0, "Native half type support") LANGOPT(NativeHalfArgsAndReturns, 1, 0, "Native half args and returns") LANGOPT(HalfArgsAndReturns, 1, 0, "half args and returns")
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits