Re-enable some of the disabled tests. Use FileCheck instead of grep to check

output.




git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140263 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Akira Hatanaka 2011-09-21 17:36:30 +00:00
parent 0e64f810a5
commit 0b4a61548f
5 changed files with 25 additions and 40 deletions

View File

@ -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
}

View File

@ -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
}

View File

@ -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
}

View File

@ -1,25 +1,23 @@
; DISABLED: llc < %s -march=mips -o %t
; DISABLED: grep {rodata.str1.4,"aMS",@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"
@i0 = internal unnamed_addr constant [5 x i32] [ i32 0, i32 1, i32 2, i32 3, i32 4 ]
@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",@progbits
; CHECK: rodata,"a",@progbits

View File

@ -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
}