mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-19 04:29:45 +00:00
![Junmo Park](/assets/img/avatar_default.png)
Summary: Both the hardware and LLVM have changed since 2012. Now, load-based heuristic don't show big differences any more on OoO cores. There is no notable regressons and improvements on spec2000/2006. (Cortex-A57, Core i5). Reviewers: spatel, zansari Differential Revision: http://reviews.llvm.org/D16836 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@261809 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
431 B
LLVM
13 lines
431 B
LLVM
; RUN: llc -mtriple=aarch64-none-linux-gnu < %s -mcpu=cortex-a57 -aarch64-enable-early-ifcvt=false | FileCheck %s
|
|
|
|
; Check that the select isn't expanded into a branch sequence
|
|
; when the icmp's first operand %x0 is from load.
|
|
define i64 @f(i64 %a, i64 %b, i64* %c, i64 %d, i64 %e) {
|
|
; CHECK: csel
|
|
%x0 = load i64, i64* %c
|
|
%x1 = icmp eq i64 %x0, 0
|
|
%x2 = select i1 %x1, i64 %a, i64 %b
|
|
%x3 = add i64 %x2, %d
|
|
ret i64 %x3
|
|
}
|