tex-read-cuda.ll 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s --check-prefix=SM20
  2. ; RUN: llc < %s -march=nvptx -mcpu=sm_30 | FileCheck %s --check-prefix=SM30
  3. target triple = "nvptx-unknown-cuda"
  4. declare { float, float, float, float } @llvm.nvvm.tex.unified.1d.v4f32.s32(i64, i32)
  5. declare i64 @llvm.nvvm.texsurf.handle.internal.p1i64(i64 addrspace(1)*)
  6. ; SM20-LABEL: .entry foo
  7. ; SM30-LABEL: .entry foo
  8. define void @foo(i64 %img, float* %red, i32 %idx) {
  9. ; SM20: ld.param.u64 %rd[[TEXREG:[0-9]+]], [foo_param_0];
  10. ; SM20: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]+]]}, [%rd[[TEXREG]], {%r{{[0-9]+}}}]
  11. ; SM30: ld.param.u64 %rd[[TEXREG:[0-9]+]], [foo_param_0];
  12. ; SM30: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]+]]}, [%rd[[TEXREG]], {%r{{[0-9]+}}}]
  13. %val = tail call { float, float, float, float } @llvm.nvvm.tex.unified.1d.v4f32.s32(i64 %img, i32 %idx)
  14. %ret = extractvalue { float, float, float, float } %val, 0
  15. ; SM20: st.global.f32 [%r{{[0-9]+}}], %f[[RED]]
  16. ; SM30: st.global.f32 [%r{{[0-9]+}}], %f[[RED]]
  17. store float %ret, float* %red
  18. ret void
  19. }
  20. @tex0 = internal addrspace(1) global i64 0, align 8
  21. ; SM20-LABEL: .entry bar
  22. ; SM30-LABEL: .entry bar
  23. define void @bar(float* %red, i32 %idx) {
  24. ; SM30: mov.u64 %rd[[TEXHANDLE:[0-9]+]], tex0
  25. %texHandle = tail call i64 @llvm.nvvm.texsurf.handle.internal.p1i64(i64 addrspace(1)* @tex0)
  26. ; SM20: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]+]]}, [tex0, {%r{{[0-9]+}}}]
  27. ; SM30: tex.1d.v4.f32.s32 {%f[[RED:[0-9]+]], %f[[GREEN:[0-9]+]], %f[[BLUE:[0-9]+]], %f[[ALPHA:[0-9]+]]}, [%rd[[TEXHANDLE]], {%r{{[0-9]+}}}]
  28. %val = tail call { float, float, float, float } @llvm.nvvm.tex.unified.1d.v4f32.s32(i64 %texHandle, i32 %idx)
  29. %ret = extractvalue { float, float, float, float } %val, 0
  30. ; SM20: st.global.f32 [%r{{[0-9]+}}], %f[[RED]]
  31. ; SM30: st.global.f32 [%r{{[0-9]+}}], %f[[RED]]
  32. store float %ret, float* %red
  33. ret void
  34. }
  35. !nvvm.annotations = !{!1, !2, !3}
  36. !1 = !{void (i64, float*, i32)* @foo, !"kernel", i32 1}
  37. !2 = !{void (float*, i32)* @bar, !"kernel", i32 1}
  38. !3 = !{i64 addrspace(1)* @tex0, !"texture", i32 1}