[PATCH] D26725: AMDGPU: Add llvm.amdgcn.interp.mov intrinsic

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 18 10:12:49 PST 2016


arsenm added inline comments.


================
Comment at: include/llvm/IR/IntrinsicsAMDGPU.td:481
+            [llvm_i32_ty, llvm_i32_ty, llvm_i32_ty, llvm_i32_ty],
+            [IntrNoMem]>;
+
----------------
nhaehnle wrote:
> tstellarAMD wrote:
> > arsenm wrote:
> > > Shouldn't this be IntrReadMem? The doc says it reads parameters in LDS
> > I think technically, this should be inaccessiblememonly,  because but there is no intrinsic attribute for this yet.
> And that region of LDS is constant anyway, so IntrNoMem is fine.
Is that possible? I thought the runtime couldn't ever initialize LDS, so something in the shader has to set it in the first place


https://reviews.llvm.org/D26725





More information about the llvm-commits mailing list