[llvm-commits] [llvm] r140263 - in /llvm/trunk/test/CodeGen/Mips: 2008-07-06-fadd64.ll 2008-07-07-FPExtend.ll 2008-07-07-IntDoubleConvertions.ll 2008-07-15-InternalConstant.ll 2008-08-07-FPRound.ll

Akira Hatanaka ahatanak at gmail.com
Wed Sep 21 10:36:30 PDT 2011


Author: ahatanak
Date: Wed Sep 21 12:36:30 2011
New Revision: 140263

URL: http://llvm.org/viewvc/llvm-project?rev=140263&view=rev
Log:
Re-enable some of the disabled tests. Use FileCheck instead of grep to check
output.



Modified:
    llvm/trunk/test/CodeGen/Mips/2008-07-06-fadd64.ll
    llvm/trunk/test/CodeGen/Mips/2008-07-07-FPExtend.ll
    llvm/trunk/test/CodeGen/Mips/2008-07-07-IntDoubleConvertions.ll
    llvm/trunk/test/CodeGen/Mips/2008-07-15-InternalConstant.ll
    llvm/trunk/test/CodeGen/Mips/2008-08-07-FPRound.ll

Modified: llvm/trunk/test/CodeGen/Mips/2008-07-06-fadd64.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Mips/2008-07-06-fadd64.ll?rev=140263&r1=140262&r2=140263&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Mips/2008-07-06-fadd64.ll (original)
+++ llvm/trunk/test/CodeGen/Mips/2008-07-06-fadd64.ll Wed Sep 21 12:36:30 2011
@@ -1,12 +1,8 @@
-; DISABLED: llc < %s -march=mips | grep __adddf3
-; RUN: false
-; XFAIL: *
-
-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-unknown-psp-elf"
+; RUN: llc -march=mips -mattr=single-float  < %s | FileCheck %s
 
 define double @dofloat(double %a, double %b) nounwind {
 entry:
+; CHECK: __adddf3
 	fadd double %a, %b		; <double>:0 [#uses=1]
 	ret double %0
 }

Modified: llvm/trunk/test/CodeGen/Mips/2008-07-07-FPExtend.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Mips/2008-07-07-FPExtend.ll?rev=140263&r1=140262&r2=140263&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Mips/2008-07-07-FPExtend.ll (original)
+++ llvm/trunk/test/CodeGen/Mips/2008-07-07-FPExtend.ll Wed Sep 21 12:36:30 2011
@@ -1,12 +1,8 @@
-; DISABLED: llc < %s -march=mips | grep __extendsfdf2
-; RUN: false
-; XFAIL: *
-
-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-unknown-psp-elf"
+; RUN: llc -march=mips -mattr=single-float  < %s | FileCheck %s
 
 define double @dofloat(float %a) nounwind {
 entry:
+; CHECK: __extendsfdf2
 	fpext float %a to double		; <double>:0 [#uses=1]
 	ret double %0
 }

Modified: llvm/trunk/test/CodeGen/Mips/2008-07-07-IntDoubleConvertions.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Mips/2008-07-07-IntDoubleConvertions.ll?rev=140263&r1=140262&r2=140263&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Mips/2008-07-07-IntDoubleConvertions.ll (original)
+++ llvm/trunk/test/CodeGen/Mips/2008-07-07-IntDoubleConvertions.ll Wed Sep 21 12:36:30 2011
@@ -1,34 +1,33 @@
-; DISABLED: llc < %s -march=mips -o %t
-; DISABLED: grep __floatsidf   %t | count 1
-; DISABLED: grep __floatunsidf %t | count 1
-; DISABLED: grep __fixdfsi %t | count 1
-; DISABLED: grep __fixunsdfsi %t  | count 1
-; RUN: false
-; XFAIL: *
-
-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-unknown-psp-elf"
+; RUN: llc -march=mips -mattr=single-float  < %s | FileCheck %s
 
 define double @int2fp(i32 %a) nounwind {
 entry:
+; CHECK: int2fp
+; CHECK: __floatsidf
 	sitofp i32 %a to double		; <double>:0 [#uses=1]
 	ret double %0
 }
 
 define double @uint2double(i32 %a) nounwind {
 entry:
+; CHECK: uint2double
+; CHECK: __floatunsidf
 	uitofp i32 %a to double		; <double>:0 [#uses=1]
 	ret double %0
 }
 
 define i32 @double2int(double %a) nounwind {
 entry:
+; CHECK: double2int
+; CHECK: __fixdfsi
   fptosi double %a to i32   ; <i32>:0 [#uses=1]
   ret i32 %0
 }
 
 define i32 @double2uint(double %a) nounwind {
 entry:
+; CHECK: double2uint
+; CHECK: __fixunsdfsi
   fptoui double %a to i32   ; <i32>:0 [#uses=1]
   ret i32 %0
 }

Modified: llvm/trunk/test/CodeGen/Mips/2008-07-15-InternalConstant.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Mips/2008-07-15-InternalConstant.ll?rev=140263&r1=140262&r2=140263&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Mips/2008-07-15-InternalConstant.ll (original)
+++ llvm/trunk/test/CodeGen/Mips/2008-07-15-InternalConstant.ll Wed Sep 21 12:36:30 2011
@@ -1,25 +1,23 @@
-; DISABLED: llc < %s -march=mips -o %t
-; DISABLED: grep {rodata.str1.4,"aMS", at progbits}  %t | count 1
-; DISABLED: grep {r.data,}  %t | count 1
-; DISABLED: grep {\%hi} %t | count 2
-; DISABLED: grep {\%lo} %t | count 2
-; DISABLED: not grep {gp_rel} %t
-; RUN: false
-+; XFAIL: *
+; RUN: llc -march=mips -relocation-model=static  < %s | FileCheck %s
 
-
-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-unknown-psp-elf"
 @.str = internal unnamed_addr constant [10 x i8] c"AAAAAAAAA\00"
- at i0 = internal unnamed_addr constant [5 x i32] [ i32 0, i32 1, i32 2, i32 3, i32 4 ] 
+ at i0 = internal unnamed_addr constant [5 x i32] [ i32 0, i32 1, i32 2, i32 3, i32 4 ]
 
 define i8* @foo() nounwind {
 entry:
+; CHECK: foo
+; CHECK: %hi(.str)
+; CHECK: %lo(.str)
 	ret i8* getelementptr ([10 x i8]* @.str, i32 0, i32 0)
 }
 
 define i32* @bar() nounwind  {
 entry:
+; CHECK: bar
+; CHECK: %hi(i0)
+; CHECK: %lo(i0)
   ret i32* getelementptr ([5 x i32]* @i0, i32 0, i32 0)
 }
 
+; CHECK: rodata.str1.4,"aMS", at progbits
+; CHECK: rodata,"a", at progbits

Modified: llvm/trunk/test/CodeGen/Mips/2008-08-07-FPRound.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Mips/2008-08-07-FPRound.ll?rev=140263&r1=140262&r2=140263&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Mips/2008-08-07-FPRound.ll (original)
+++ llvm/trunk/test/CodeGen/Mips/2008-08-07-FPRound.ll Wed Sep 21 12:36:30 2011
@@ -1,12 +1,8 @@
-; DISABLED: llc < %s -march=mips | grep __truncdfsf2 | count 1
-; RUN: false
-; XFAIL: *
-
-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-unknown-psp-elf"
+; RUN: llc -march=mips -mattr=single-float  < %s | FileCheck %s
 
 define float @round2float(double %a) nounwind {
 entry:
+; CHECK: __truncdfsf2
 	fptrunc double %a to float		; <float>:0 [#uses=1]
 	ret float %0
 }





More information about the llvm-commits mailing list