mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Enable a bunch more -regalloc=fast tests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103531 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1a1ad578a3
commit
85f4fdaed4
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -regalloc=local
|
||||
; RUN: llc < %s -regalloc=fast
|
||||
|
||||
%struct.CHESS_POSITION = type { i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i32, i32, i8, i8, [64 x i8], i8, i8, i8, i8, i8 }
|
||||
@search = external global %struct.CHESS_POSITION ; <%struct.CHESS_POSITION*> [#uses=2]
|
||||
|
@ -1,9 +1,15 @@
|
||||
; RUN: llc < %s | grep {subfc r3,r5,r4}
|
||||
; RUN: llc < %s | grep {subfze r4,r6}
|
||||
; RUN: llc < %s -regalloc=local | grep {subfc r6,r5,r4}
|
||||
; RUN: llc < %s -regalloc=local | grep {subfze r3,r3}
|
||||
; RUN: llc < %s | FileCheck %s
|
||||
; RUN: llc < %s -regalloc=local | FileCheck -check-prefix=LOCAL %s
|
||||
; RUN: llc < %s -regalloc=fast | FileCheck -check-prefix=FAST %s
|
||||
; The first argument of subfc must not be the same as any other register.
|
||||
|
||||
; CHECK: subfc r3,r5,r4
|
||||
; CHECK: subfze r4,r6
|
||||
; LOCAL: subfc r6,r5,r4
|
||||
; LOCAL: subfze r3,r3
|
||||
; FAST: subfc r9,r8,r7
|
||||
; FAST: subfze r10,r6
|
||||
|
||||
; PR1357
|
||||
|
||||
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"
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -mtriple=powerpc64-apple-darwin9 -regalloc=local -relocation-model=pic
|
||||
; RUN: llc < %s -mtriple=powerpc64-apple-darwin9 -regalloc=fast -relocation-model=pic
|
||||
|
||||
%struct.NSError = type opaque
|
||||
%struct.NSManagedObjectContext = type opaque
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -mtriple=powerpc64-apple-darwin9 -regalloc=local -relocation-model=pic
|
||||
; RUN: llc < %s -mtriple=powerpc64-apple-darwin9 -regalloc=fast -relocation-model=pic
|
||||
|
||||
%struct.NSError = type opaque
|
||||
%struct.NSManagedObjectContext = type opaque
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -mtriple=powerpc-apple-darwin -regalloc=local
|
||||
; RUN: llc < %s -mtriple=powerpc-apple-darwin -regalloc=fast
|
||||
|
||||
define i32 @bork(i64 %foo, i64 %bar) {
|
||||
entry:
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -march=ppc32 -regalloc=local -O0 -relocation-model=pic -o -
|
||||
; RUN: llc < %s -march=ppc32 -regalloc=fast -O0 -relocation-model=pic -o -
|
||||
; PR1638
|
||||
|
||||
@.str242 = external constant [3 x i8] ; <[3 x i8]*> [#uses=1]
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -regalloc=local -relocation-model=pic | FileCheck %s
|
||||
; RUN: llc < %s -regalloc=fast -relocation-model=pic | FileCheck %s
|
||||
|
||||
target triple = "thumbv6-apple-darwin10"
|
||||
|
||||
@ -6,10 +7,10 @@ target triple = "thumbv6-apple-darwin10"
|
||||
|
||||
define arm_apcscc void @foo() nounwind {
|
||||
entry:
|
||||
; CHECK: str r0, [sp]
|
||||
; CHECK: str r0, [sp
|
||||
%0 = call arm_apcscc i32 (...)* @bar() nounwind ; <i32> [#uses=1]
|
||||
; CHECK: blx _bar
|
||||
; CHECK: ldr r1, [sp]
|
||||
; CHECK: ldr r1, [sp
|
||||
store i32 %0, i32* @fred, align 4
|
||||
br label %return
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -march=x86 -mattr=+sse2 -regalloc=local
|
||||
; RUN: llc < %s -march=x86 -mattr=+sse2 -regalloc=fast
|
||||
|
||||
define void @SolveCubic(double %a, double %b, double %c, double %d, i32* %solutions, double* %x) {
|
||||
entry:
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -regalloc=local -march=x86 -mattr=+mmx | grep esi
|
||||
; RUN: llc < %s -regalloc=fast -march=x86 -mattr=+mmx | grep esi
|
||||
; PR2082
|
||||
; Local register allocator was refusing to use ESI, EDI, and EBP so it ran out of
|
||||
; registers.
|
||||
|
@ -1,5 +1,6 @@
|
||||
; RUN: llc < %s -mtriple=x86_64-apple-darwin
|
||||
; RUN: llc < %s -mtriple=x86_64-apple-darwin -relocation-model=pic -disable-fp-elim -O0 -regalloc=local
|
||||
; RUN: llc < %s -mtriple=x86_64-apple-darwin -relocation-model=pic -disable-fp-elim -O0 -regalloc=fast
|
||||
; PR5534
|
||||
|
||||
%struct.CGPoint = type { double, double }
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -mtriple=i386-apple-darwin -regalloc=local
|
||||
; RUN: llc < %s -mtriple=i386-apple-darwin -regalloc=fast
|
||||
|
||||
@_ZTVN10Evaluation10GridOutputILi3EEE = external constant [5 x i32 (...)*] ; <[5 x i32 (...)*]*> [#uses=1]
|
||||
|
||||
|
@ -1,18 +1,19 @@
|
||||
; RUN: llc < %s -march=x86 | not grep "movl %eax, %eax"
|
||||
; RUN: llc < %s -march=x86 | not grep "movl %edx, %edx"
|
||||
; RUN: llc < %s -march=x86 | not grep "movl (%eax), %eax"
|
||||
; RUN: llc < %s -march=x86 | not grep "movl (%edx), %edx"
|
||||
; RUN: llc < %s -march=x86 -regalloc=local | not grep "movl %eax, %eax"
|
||||
; RUN: llc < %s -march=x86 -regalloc=local | not grep "movl %edx, %edx"
|
||||
; RUN: llc < %s -march=x86 -regalloc=local | not grep "movl (%eax), %eax"
|
||||
; RUN: llc < %s -march=x86 -regalloc=local | not grep "movl (%edx), %edx"
|
||||
; RUN: llc < %s -march=x86 | FileCheck %s
|
||||
; RUN: llc < %s -march=x86 -regalloc=local | FileCheck %s
|
||||
; RUN: llc < %s -march=x86 -regalloc=fast | FileCheck %s
|
||||
|
||||
; %0 must not be put in EAX or EDX.
|
||||
; In the first asm, $0 and $2 must not be put in EAX.
|
||||
; CHECK: InlineAsm Start
|
||||
; CHECK-NOT: movl %eax, %eax
|
||||
; CHECK-NOT: movl (%eax), %eax
|
||||
; CHECK: InlineAsm End
|
||||
; In the second asm, $0 and $2 must not be put in EDX.
|
||||
; This is kind of hard to test thoroughly, but the things above should continue
|
||||
; to pass, I think.
|
||||
; ModuleID = '<stdin>'
|
||||
; CHECK: InlineAsm Start
|
||||
; CHECK-NOT: movl %edx, %edx
|
||||
; CHECK-NOT: movl (%edx), %edx
|
||||
; CHECK: InlineAsm End
|
||||
|
||||
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-darwin8"
|
||||
@x = common global i32 0 ; <i32*> [#uses=1]
|
||||
|
@ -1,5 +1,7 @@
|
||||
; RUN: llc < %s -march=x86 | grep "#%ebp %esi %edi 8(%edx) %eax (%ebx)"
|
||||
; RUN: llc < %s -march=x86 -regalloc=local | grep "#%edi %ebp %edx 8(%ebx) %eax (%esi)"
|
||||
; RUN: llc < %s -march=x86 -regalloc=fast | grep "#%ecx %ebx %edi 8(%ebp) %eax (%esi)"
|
||||
|
||||
; The 1st, 2nd, 3rd and 5th registers above must all be different. The registers
|
||||
; referenced in the 4th and 6th operands must not be the same as the 1st or 5th
|
||||
; operand. There are many combinations that work; this is what llc puts out now.
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -mtriple=i386-apple-darwin9.6 -regalloc=local -disable-fp-elim
|
||||
; RUN: llc < %s -mtriple=i386-apple-darwin9.6 -regalloc=fast -disable-fp-elim
|
||||
; rdar://6538384
|
||||
|
||||
%struct.FILE = type { i8*, i32, i32, i16, i16, %struct.__sbuf, i32, i8*, i32 (i8*)*, i32 (i8*, i8*, i32)*, i64 (i8*, i64, i32)*, i32 (i8*, i8*, i32)*, %struct.__sbuf, %struct.__sFILEX*, i32, [3 x i8], [1 x i8], %struct.__sbuf, i32, i64 }
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -mtriple=i386-apple-darwin -O0 -regalloc=local | not grep sil
|
||||
; RUN: llc < %s -mtriple=i386-apple-darwin -O0 -regalloc=fast | not grep sil
|
||||
; rdar://6787136
|
||||
|
||||
%struct.X = type { i8, [32 x i8] }
|
||||
|
Loading…
Reference in New Issue
Block a user