mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +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
49 lines
1.4 KiB
LLVM
49 lines
1.4 KiB
LLVM
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=core-avx-i -mattr=+rdseed | FileCheck %s
|
|
|
|
declare {i16, i32} @llvm.x86.rdseed.16()
|
|
declare {i32, i32} @llvm.x86.rdseed.32()
|
|
declare {i64, i32} @llvm.x86.rdseed.64()
|
|
|
|
define i32 @_rdseed16_step(i16* %random_val) {
|
|
%call = call {i16, i32} @llvm.x86.rdseed.16()
|
|
%randval = extractvalue {i16, i32} %call, 0
|
|
store i16 %randval, i16* %random_val
|
|
%isvalid = extractvalue {i16, i32} %call, 1
|
|
ret i32 %isvalid
|
|
; CHECK-LABEL: _rdseed16_step:
|
|
; CHECK: rdseedw %ax
|
|
; CHECK: movzwl %ax, %ecx
|
|
; CHECK: movl $1, %eax
|
|
; CHECK: cmovael %ecx, %eax
|
|
; CHECK: movw %cx, (%r[[A0:di|cx]])
|
|
; CHECK: ret
|
|
}
|
|
|
|
define i32 @_rdseed32_step(i32* %random_val) {
|
|
%call = call {i32, i32} @llvm.x86.rdseed.32()
|
|
%randval = extractvalue {i32, i32} %call, 0
|
|
store i32 %randval, i32* %random_val
|
|
%isvalid = extractvalue {i32, i32} %call, 1
|
|
ret i32 %isvalid
|
|
; CHECK-LABEL: _rdseed32_step:
|
|
; CHECK: rdseedl %e[[T0:[a-z]+]]
|
|
; CHECK: movl $1, %eax
|
|
; CHECK: cmovael %e[[T0]], %eax
|
|
; CHECK: movl %e[[T0]], (%r[[A0]])
|
|
; CHECK: ret
|
|
}
|
|
|
|
define i32 @_rdseed64_step(i64* %random_val) {
|
|
%call = call {i64, i32} @llvm.x86.rdseed.64()
|
|
%randval = extractvalue {i64, i32} %call, 0
|
|
store i64 %randval, i64* %random_val
|
|
%isvalid = extractvalue {i64, i32} %call, 1
|
|
ret i32 %isvalid
|
|
; CHECK-LABEL: _rdseed64_step:
|
|
; CHECK: rdseedq %r[[T1:[a-z]+]]
|
|
; CHECK: movl $1, %eax
|
|
; CHECK: cmovael %e[[T1]], %eax
|
|
; CHECK: movq %r[[T1]], (%r[[A0]])
|
|
; CHECK: ret
|
|
}
|