aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/PTX/mov.ll
diff options
context:
space:
mode:
authorChe-Liang Chiou <clchiou@gmail.com>2011-03-02 03:20:28 +0000
committerChe-Liang Chiou <clchiou@gmail.com>2011-03-02 03:20:28 +0000
commitfd8978b021dbb0b9b09084dcc707c2054ff76280 (patch)
treecdbd6a22e3787047cdb1edcaa79065a2231b6a9c /test/CodeGen/PTX/mov.ll
parent9ff5de99df4820a128e525e077333047cfe50661 (diff)
Extend initial support for primitive types in PTX backend
- Allow i16, i32, i64, float, and double types, using the native .u16, .u32, .u64, .f32, and .f64 PTX types. - Allow loading/storing of all primitive types. - Allow primitive types to be passed as parameters. - Allow selection of PTX Version and Shader Model as sub-target attributes. - Merge integer/floating-point test cases for load/store. - Use .u32 instead of .s32 to conform to output from NVidia nvcc compiler. Patch by Justin Holewinski git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126824 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PTX/mov.ll')
-rw-r--r--test/CodeGen/PTX/mov.ll53
1 files changed, 45 insertions, 8 deletions
diff --git a/test/CodeGen/PTX/mov.ll b/test/CodeGen/PTX/mov.ll
index d201a7867a..00dcf19f1d 100644
--- a/test/CodeGen/PTX/mov.ll
+++ b/test/CodeGen/PTX/mov.ll
@@ -1,25 +1,62 @@
; RUN: llc < %s -march=ptx | FileCheck %s
-define ptx_device i32 @t1() {
-; CHECK: mov.s32 r0, 0;
+define ptx_device i16 @t1_u16() {
+; CHECK: mov.u16 rh0, 0;
+; CHECK: ret;
+ ret i16 0
+}
+
+define ptx_device i32 @t1_u32() {
+; CHECK: mov.u32 r0, 0;
; CHECK: ret;
ret i32 0
}
-define ptx_device i32 @t2(i32 %x) {
-; CHECK: mov.s32 r0, r1;
+define ptx_device i64 @t1_u64() {
+; CHECK: mov.u64 rd0, 0;
; CHECK: ret;
- ret i32 %x
+ ret i64 0
}
-define ptx_device float @t3() {
+define ptx_device float @t1_f32() {
; CHECK: mov.f32 f0, 0F00000000;
-; CHECK-NEXT: ret;
+; CHECK: ret;
ret float 0.0
}
-define ptx_device float @t4(float %x) {
+define ptx_device double @t1_f64() {
+; CHECK: mov.f64 fd0, 0D0000000000000000;
+; CHECK: ret;
+ ret double 0.0
+}
+
+define ptx_device i16 @t2_u16(i16 %x) {
+; CHECK: mov.u16 rh0, rh1;
+; CHECK: ret;
+ ret i16 %x
+}
+
+define ptx_device i32 @t2_u32(i32 %x) {
+; CHECK: mov.u32 r0, r1;
+; CHECK: ret;
+ ret i32 %x
+}
+
+define ptx_device i64 @t2_u64(i64 %x) {
+; CHECK: mov.u64 rd0, rd1;
+; CHECK: ret;
+ ret i64 %x
+}
+
+define ptx_device float @t3_f32(float %x) {
; CHECK: mov.f32 f0, f1;
; CHECK-NEXT: ret;
ret float %x
}
+
+define ptx_device double @t3_f64(double %x) {
+; CHECK: mov.f64 fd0, fd1;
+; CHECK-NEXT: ret;
+ ret double %x
+}
+