Rewrite some tests with FileCHeck in X86 codegen

- Revise previous patches of the same purpose by fixing
  *) grep <PA> | not grep <PB> semantically is not the same as
     CHECK: <PA>{{^<PB>.*$}} as the former will check all occurrences of <PA>
     while the later only check the first match. As the result, CHECK needs
     putting in all place where <PA> occurs.
  *) grep <PA> | count <N> needs a final CHECK-NOT of the same pattern.
     (As 'CHECK-<N>' is proposed for discussion, converting 'grep | count <N>'
      where N > 1 is postponed.)



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180742 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Michael Liao 2013-04-29 22:41:29 +00:00
parent 3e3456b23a
commit 26ebdd1e7c
20 changed files with 85 additions and 28 deletions

View File

@ -1,4 +1,8 @@
; RUN: llc < %s -march=x86 -x86-asm-syntax=intel | grep inc | not grep PTR
; RUN: llc < %s -march=x86 -x86-asm-syntax=intel | FileCheck %s
; CHECK: inc
; CHECK-NOT: PTR
; CHECK: {{$}}
define signext i16 @t(i32* %bitptr, i32* %source, i8** %byteptr, i32 %scale, i32 %round) {
entry:

View File

@ -1,5 +1,4 @@
; RUN: llc < %s | grep "a:" | not grep ax
; RUN: llc < %s | grep "b:" | not grep ax
; RUN: llc < %s | FileCheck %s
; PR2078
; The clobber list says that "ax" is clobbered. Make sure that eax isn't
; allocated to the input/output register.
@ -15,6 +14,10 @@ entry:
ret void
}
; CHECK: a:
; CHECK-NOT: ax
; CHECK: {{$}}
define void @test2(i16* %block, i8* %pixels, i32 %line_size) nounwind {
entry:
%tmp1 = getelementptr i16* %block, i32 64 ; <i16*> [#uses=1]
@ -22,3 +25,6 @@ entry:
ret void
}
; CHECK: b:
; CHECK-NOT: ax
; CHECK: {{$}}

View File

@ -1,4 +1,6 @@
; RUN: llc < %s -mtriple=i386-apple-darwin | grep testb
; RUN: llc < %s -mtriple=i386-apple-darwin | FileCheck %s
; CHECK: testb
; ModuleID = '<stdin>'
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"

View File

@ -1,8 +1,9 @@
; RUN: llc < %s -relocation-model=static > %t
; RUN: grep "1: ._pv_cpu_ops+8" %t
; RUN: grep "2: ._G" %t
; RUN: llc < %s -relocation-model=static | FileCheck %s
; PR4152
; CHECK: {{1: ._pv_cpu_ops[+]8}}
; CHECK: {{2: ._G}}
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
target triple = "i386-apple-darwin9.6"
%struct.pv_cpu_ops = type { i32, [2 x i32] }

View File

@ -1,6 +1,7 @@
; RUN: llc < %s -tailcallopt=false | FileCheck %s
; CHECK: movl 8(%esp), %eax
; CHECK: movl 8(%esp), %eax
; CHECK-NOT: movl 8(%esp), %eax
; PR3122
; rdar://6400815

View File

@ -1,5 +1,4 @@
; RUN: llc < %s -march=x86 -tailcallopt=false | FileCheck %s
; CHECK: ret{{[^4]*$}}
%struct.foo = type { [4 x i32] }
@ -10,6 +9,8 @@ entry:
store i32 1, i32* %tmp3, align 8
ret void
}
; CHECK: bar
; CHECK: ret{{[^4]*$}}
@dst = external global i32
@ -22,3 +23,5 @@ define void @foo() nounwind {
store i32 %tmp6, i32* @dst
ret void
}
; CHECK: foo
; CHECK: ret{{[^4]*$}}

View File

@ -1,5 +1,5 @@
; RUN: llc < %s -march=x86 -o %t
; RUN: FileCheck %s -input-file %t
; RUN: llc < %s -march=x86 | FileCheck %s
; CHECK: movl {{.}}12, %eax
; CHECK: movl {{.}}24, %edx
; CHECK: movl {{.}}48, %ecx

View File

@ -1,4 +1,4 @@
; RUN: llc < %s -march=x86 | grep fild | not grep ESP
; RUN: llc < %s -march=x86 | FileCheck %s
define double @short(i16* %P) {
%V = load i16* %P ; <i16> [#uses=1]
@ -18,3 +18,9 @@ define double @long(i64* %P) {
ret double %V2
}
; CHECK: long
; CHECK: fild
; CHECK-NOT: ESP
; CHECK-NOT: esp
; CHECK: {{$}}
; CHECK: ret

View File

@ -1,6 +1,8 @@
; RUN: llc < %s -mtriple=x86_64-linux -mcpu=corei7 | grep pinsr
; RUN: llc < %s -mtriple=x86_64-linux -mcpu=corei7 | FileCheck %s
; PR2562
; CHECK: pinsr
external global i16 ; <i16*>:0 [#uses=1]
external global <4 x i16> ; <<4 x i16>*>:1 [#uses=2]

View File

@ -1,4 +1,6 @@
; RUN: llc < %s -march=x86 | grep testl
; RUN: llc < %s -march=x86 | FileCheck %s
; CHECK: testl
; It's tempting to eliminate the testl instruction here and just use the
; EFLAGS value from the incl, however it can't be known whether the add

View File

@ -1,7 +1,9 @@
; RUN: llc < %s -mtriple=x86_64-apple-darwin10 | grep L__ZZ20
; RUN: llc < %s -mtriple=x86_64-apple-darwin10 | FileCheck %s
; Quote should be outside of private prefix.
; rdar://6855766x
; CHECK: L__ZZ20
%struct.A = type { i32*, i32 }
@"_ZZ20-[Example1 whatever]E4C.91" = private constant %struct.A { i32* null, i32 1 } ; <%struct.A*> [#uses=1]

View File

@ -1,5 +1,8 @@
; RUN: llc < %s -march=x86 | not grep rodata
; RUN: llc < %s -march=x86 | not grep literal
; RUN: llc < %s -march=x86 | FileCheck %s
; CHECK-NOT: rodata
; CHECK-NOT: literal
;
; Check that no FP constants in this testcase ends up in the
; constant pool.

View File

@ -1,4 +1,7 @@
; RUN: llc < %s -march=x86-64 | grep "leal .*), %e.*" | count 1
; RUN: llc < %s -march=x86-64 | FileCheck %s
; CHECK: {{leal .*[)], %e.*}}
; CHECK-NOT: {{leal .*[)], %e.*}}
; Don't eliminate or coalesce away the explicit zero-extension!
; This is currently using an leal because of a 3-addressification detail,

View File

@ -1,4 +1,6 @@
; RUN: llc < %s -march=x86-64 | grep imull
; RUN: llc < %s -march=x86-64 | FileCheck %s
; CHECK: imull
; Don't eliminate or coalesce away the explicit zero-extension!

View File

@ -1,6 +1,8 @@
; PR925
; RUN: llc < %s -march=x86 | \
; RUN: grep mov.*str1 | count 1
; RUN: llc < %s -march=x86 | FileCheck %s
; CHECK: {{mov.*str1}}
; CHECK-NOT: {{mov.*str1}}
target datalayout = "e-p:32:32"
target triple = "i686-apple-darwin8.7.2"

View File

@ -1,4 +1,6 @@
; RUN: llc < %s -march=x86 -mattr=+sse | grep movaps
; RUN: llc < %s -march=x86 -mattr=+sse | FileCheck %s
; CHECK: movaps
define <4 x float> @foo() {
ret <4 x float> <float 0x4009C9D0A0000000, float 0x4002666660000000, float 0x3FF3333340000000, float 0x3FB99999A0000000>

View File

@ -1,6 +1,8 @@
; RUN: llc < %s -march=x86 -mattr=+sse2 | not grep movaps
; RUN: llc < %s -march=x86 -mattr=+sse2 | FileCheck %s
; RUN: llc < %s -march=x86 -mattr=+sse2 | grep esp | count 2
; CHECK-NOT: movaps
; These should both generate something like this:
;_test3:
; movl $1234567, %eax

View File

@ -1,7 +1,13 @@
; RUN: llc < %s -relocation-model=static -march=x86 -mcpu=yonah | grep xorps | count 1
; RUN: llc < %s -relocation-model=static -march=x86 -mcpu=yonah | grep pcmpeqd | count 1
; RUN: llc < %s -relocation-model=static -march=x86 -mcpu=yonah | FileCheck %s
; RUN: llc < %s -relocation-model=static -march=x86 -mcpu=yonah | FileCheck -check-prefix CHECK2 %s
; 64-bit stores here do not use MMX.
; CHECK: xorps
; CHECK-NOT: xorps
; CHECK2: pcmpeqd
; CHECK2-NOT: pcmpeqd
@M1 = external global <1 x i64>
@M2 = external global <2 x i32>

View File

@ -1,4 +1,9 @@
; RUN: llc < %s -march=x86-64 | grep movq | grep rbp
; RUN: llc < %s -march=x86-64 | FileCheck %s
; CHECK: stack_end_address
; CHECK: {{movq.+rbp.*$}}
; CHECK: {{movq.+rbp.*$}}
; CHECK: ret
define i64* @stack_end_address() nounwind {
entry:

View File

@ -1,6 +1,9 @@
; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1
; RUN: grep "callq f" %t1
; RUN: not grep "callq f@PLT" %t1
; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic | FileCheck %s
; CHECK-NOT: {{callq f@PLT}}
; CHECK: {{callq f}}
; CHECK-NOT: {{callq f@PLT}}
define void @g() {
entry: