Batch 2 of Mips CodeGen tests
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>
Fri, 8 Aug 2008 04:03:25 +0000 (04:03 +0000)
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>
Fri, 8 Aug 2008 04:03:25 +0000 (04:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54507 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Mips/2008-07-06-fadd64.ll [new file with mode: 0644]
test/CodeGen/Mips/2008-07-07-FPExtend.ll [new file with mode: 0644]
test/CodeGen/Mips/2008-07-07-Float2Int.ll [new file with mode: 0644]

diff --git a/test/CodeGen/Mips/2008-07-06-fadd64.ll b/test/CodeGen/Mips/2008-07-06-fadd64.ll
new file mode 100644 (file)
index 0000000..d85e1e0
--- /dev/null
@@ -0,0 +1,11 @@
+; RUN: llvm-as < %s | llc -enable-legalize-types -march=mips | \
+; RUN: grep __adddf3
+
+target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
+target triple = "mipsallegrexel-psp-elf"
+
+define double @dofloat(double %a, double %b) nounwind {
+entry:
+       add double %a, %b               ; <double>:0 [#uses=1]
+       ret double %0
+}
diff --git a/test/CodeGen/Mips/2008-07-07-FPExtend.ll b/test/CodeGen/Mips/2008-07-07-FPExtend.ll
new file mode 100644 (file)
index 0000000..265da73
--- /dev/null
@@ -0,0 +1,11 @@
+; RUN: llvm-as < %s | llc -enable-legalize-types -march=mips | \
+; RUN: grep __extendsfdf2
+
+target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
+target triple = "mipsallegrexel-psp-elf"
+
+define double @dofloat(float %a) nounwind {
+entry:
+       fpext float %a to double                ; <double>:0 [#uses=1]
+       ret double %0
+}
diff --git a/test/CodeGen/Mips/2008-07-07-Float2Int.ll b/test/CodeGen/Mips/2008-07-07-Float2Int.ll
new file mode 100644 (file)
index 0000000..ccaac0e
--- /dev/null
@@ -0,0 +1,17 @@
+; RUN: llvm-as < %s | llc -enable-legalize-types -march=mips | \
+; RUN: grep trunc.w.s | count 3
+
+target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
+target triple = "mipsallegrexel-psp-elf"
+
+define i32 @fptoint(float %a) nounwind {
+entry:
+       fptosi float %a to i32          ; <i32>:0 [#uses=1]
+       ret i32 %0
+}
+
+define i32 @fptouint(float %a) nounwind {
+entry:
+       fptoui float %a to i32          ; <i32>:0 [#uses=1]
+       ret i32 %0
+}