mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
6a7770b7ae
This changes the SelectionDAG scheduling preference to source order. Soon, the SelectionDAG scheduler can be bypassed saving a nice chunk of compile time. Performance differences that result from this change are often a consequence of register coalescing. The register coalescer is far from perfect. Bugs can be filed for deficiencies. On x86 SandyBridge/Haswell, the source order schedule is often preserved, particularly for small blocks. Register pressure is generally improved over the SD scheduler's ILP mode. However, we are still able to handle large blocks that require latency hiding, unlike the SD scheduler's BURR mode. MI scheduler also attempts to discover the critical path in single-block loops and adjust heuristics accordingly. The MI scheduler relies on the new machine model. This is currently unimplemented for AVX, so we may not be generating the best code yet. Unit tests are updated so they don't depend on SD scheduling heuristics. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192750 91177308-0d34-0410-b5e6-96231b3b80d8
43 lines
1.5 KiB
LLVM
43 lines
1.5 KiB
LLVM
; RUN: llc < %s -march=x86 -mcpu=generic | FileCheck %s
|
|
; RUN: llc < %s -march=x86 -mcpu=atom | FileCheck -check-prefix=ATOM %s
|
|
|
|
define void @foo(float* nocapture %A, float* nocapture %B, float* nocapture %C, i32 %N) nounwind {
|
|
; ATOM: foo
|
|
; ATOM: addl
|
|
; ATOM: addl
|
|
; ATOM: leal
|
|
|
|
; CHECK: foo
|
|
; CHECK: addl
|
|
; CHECK: addl
|
|
; CHECK: addl
|
|
|
|
entry:
|
|
%0 = icmp sgt i32 %N, 0 ; <i1> [#uses=1]
|
|
br i1 %0, label %bb, label %return
|
|
|
|
bb: ; preds = %bb, %entry
|
|
%i.03 = phi i32 [ 0, %entry ], [ %indvar.next, %bb ] ; <i32> [#uses=5]
|
|
%1 = getelementptr float* %A, i32 %i.03 ; <float*> [#uses=1]
|
|
%2 = load float* %1, align 4 ; <float> [#uses=1]
|
|
%3 = getelementptr float* %B, i32 %i.03 ; <float*> [#uses=1]
|
|
%4 = load float* %3, align 4 ; <float> [#uses=1]
|
|
%5 = fadd float %2, %4 ; <float> [#uses=1]
|
|
%6 = getelementptr float* %C, i32 %i.03 ; <float*> [#uses=1]
|
|
store float %5, float* %6, align 4
|
|
%7 = add i32 %i.03, 10 ; <i32> [#uses=3]
|
|
%8 = getelementptr float* %A, i32 %7 ; <float*> [#uses=1]
|
|
%9 = load float* %8, align 4 ; <float> [#uses=1]
|
|
%10 = getelementptr float* %B, i32 %7 ; <float*> [#uses=1]
|
|
%11 = load float* %10, align 4 ; <float> [#uses=1]
|
|
%12 = fadd float %9, %11 ; <float> [#uses=1]
|
|
%13 = getelementptr float* %C, i32 %7 ; <float*> [#uses=1]
|
|
store float %12, float* %13, align 4
|
|
%indvar.next = add i32 %i.03, 1 ; <i32> [#uses=2]
|
|
%exitcond = icmp eq i32 %indvar.next, %N ; <i1> [#uses=1]
|
|
br i1 %exitcond, label %return, label %bb
|
|
|
|
return: ; preds = %bb, %entry
|
|
ret void
|
|
}
|