[PATCH] D25305: [OpenCL] Setting constant address space for array initializers

Alexey Bader via cfe-commits cfe-commits at lists.llvm.org
Mon Oct 24 03:37:17 PDT 2016


bader added inline comments.


================
Comment at: lib/CodeGen/CGDecl.cpp:1272
+    if (getLangOpts().OpenCL) {
+      UA = llvm::GlobalValue::UnnamedAddr::None;
+      AS = CGM.getContext().getTargetAddressSpace(LangAS::opencl_constant);
----------------
AlexeySotkin wrote:
> Anastasia wrote:
> > Why this change?
> Without this change, global variables with unnamed address space are translated to SPIR-V as variables with "Function" storage class, which is wrong.
> This should fix this issue: https://github.com/KhronosGroup/SPIRV-LLVM/issues/50
There is inconsistency with how Clang maps initializers to OpenCL memory model.
Consider example from the test case:
```
__private int arr[] = {1, 2, 3};
```
This code allocates a global constant for initializer {1, 2, 3} and later copies values from this global constant to the private array using memcpy intrinsic. The global constant must be allocated in constant address space, but old code do assign any address space, which is considered to be a private memory region.
This patch puts global constant objects to constant address space.


https://reviews.llvm.org/D25305





More information about the cfe-commits mailing list