mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
2e307633f3
Re-recommiting after landing DAG extension-crash fix. Recommiting after adding check to avoid miscomputing alias information on addresses of the same base but different subindices. Memory accesses offset from frame indices may alias, e.g., we may merge write from function arguments passed on the stack when they are contiguous. As a result, when checking aliasing, we consider the underlying frame index's offset from the stack pointer. Static allocs are realized as stack objects in SelectionDAG, but its offset is not set until post-DAG causing DAGCombiner's alias check to consider access to static allocas to frequently alias. Modify isAlias to consider access between static allocas and access from other frame objects to be considered aliasing. Many test changes are included here. Most are fixes for tests which indirectly relied on our aliasing ability and needed to be modified to preserve their original intent. The remaining tests have minor improvements due to relaxed ordering. The exception is CodeGen/X86/2011-10-19-widen_vselect.ll which has a minor degradation dispite though the pre-legalized DAG is improved. Reviewers: rnk, mkuper, jonpa, hfinkel, uweigand Reviewed By: rnk Subscribers: sdardis, nemanjai, javed.absar, llvm-commits Differential Revision: https://reviews.llvm.org/D33345 llvm-svn: 308350
56 lines
1.2 KiB
LLVM
56 lines
1.2 KiB
LLVM
; RUN: llc < %s -march=xcore | FileCheck %s
|
|
|
|
define void @_Z1fz(...) {
|
|
entry:
|
|
; CHECK-LABEL: _Z1fz:
|
|
; CHECK: extsp 3
|
|
; CHECK: stw r[[REG:[0-3]{1,1}]]
|
|
; CHECK: , sp{{\[}}[[REG]]{{\]}}
|
|
; CHECK: stw r[[REG:[0-3]{1,1}]]
|
|
; CHECK: , sp{{\[}}[[REG]]{{\]}}
|
|
; CHECK: stw r[[REG:[0-3]{1,1}]]
|
|
; CHECK: , sp{{\[}}[[REG]]{{\]}}
|
|
; CHECK: stw r[[REG:[0-3]{1,1}]]
|
|
; CHECK: , sp{{\[}}[[REG]]{{\]}}
|
|
; CHECK: ldaw sp, sp[3]
|
|
; CHECK: retsp 0
|
|
ret void
|
|
}
|
|
|
|
|
|
declare void @llvm.va_start(i8*) nounwind
|
|
declare void @llvm.va_end(i8*) nounwind
|
|
declare void @f(i32) nounwind
|
|
define void @test_vararg(...) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: test_vararg
|
|
; CHECK: extsp 6
|
|
; CHECK: stw lr, sp[1]
|
|
; CHECK-DAG: stw r3, sp[6]
|
|
; CHECK-DAG: stw r0, sp[3]
|
|
; CHECK-DAG: stw r1, sp[4]
|
|
; CHECK-DAG: stw r2, sp[5]
|
|
; CHECK: ldaw r0, sp[3]
|
|
; CHECK: stw r0, sp[2]
|
|
%list = alloca i8*, align 4
|
|
%list1 = bitcast i8** %list to i8*
|
|
call void @llvm.va_start(i8* %list1)
|
|
br label %for.cond
|
|
|
|
; CHECK-LABEL: .LBB1_1
|
|
; CHECK: ldw r0, sp[2]
|
|
; CHECK: add r1, r0, 4
|
|
; CHECK: stw r1, sp[2]
|
|
; CHECK: ldw r0, r0[0]
|
|
; CHECK: bl f
|
|
; CHECK: bu .LBB1_1
|
|
for.cond:
|
|
%0 = va_arg i8** %list, i32
|
|
call void @f(i32 %0)
|
|
br label %for.cond
|
|
|
|
call void @llvm.va_end(i8* %list1)
|
|
ret void
|
|
}
|
|
|