[clang] [SYCL] SYCL host kernel launch support for the sycl_kernel_entry_point attribute. (PR #152403)

Mariya Podchishchaeva via cfe-commits cfe-commits at lists.llvm.org
Wed Nov 19 04:01:19 PST 2025


================
@@ -387,8 +397,162 @@ void SemaSYCL::CheckSYCLEntryPointFunctionDecl(FunctionDecl *FD) {
   }
 }
 
+ExprResult SemaSYCL::BuildSYCLKernelLaunchIdExpr(FunctionDecl *FD,
+                                                 QualType KNT) {
+  // The current context must be the function definition context to ensure
+  // that name lookup is performed within the correct scope.
+  assert(SemaRef.CurContext == FD);
+
+  // An appropriate source location is required to emit diagnostics if
----------------
Fznamznon wrote:

Having a valid location here also affects some routines that build AST. I don't know if it is worth mentioning.

https://github.com/llvm/llvm-project/pull/152403


More information about the cfe-commits mailing list