2017-05-24 23:08:30 +08:00
|
|
|
; RUN: llc -verify-machineinstrs < %s | FileCheck %s
|
2012-11-22 01:28:27 +08:00
|
|
|
|
|
|
|
target datalayout = "e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16"
|
|
|
|
target triple = "msp430---elf"
|
|
|
|
|
|
|
|
declare void @llvm.va_start(i8*) nounwind
|
|
|
|
declare void @llvm.va_end(i8*) nounwind
|
|
|
|
declare void @llvm.va_copy(i8*, i8*) nounwind
|
|
|
|
|
|
|
|
define void @va_start(i16 %a, ...) nounwind {
|
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; CHECK-LABEL: va_start:
|
2012-11-22 01:28:27 +08:00
|
|
|
; CHECK: sub.w #2, r1
|
|
|
|
%vl = alloca i8*, align 2
|
|
|
|
%vl1 = bitcast i8** %vl to i8*
|
|
|
|
; CHECK-NEXT: mov.w r1, [[REG:r[0-9]+]]
|
|
|
|
; CHECK-NEXT: add.w #6, [[REG]]
|
|
|
|
; CHECK-NEXT: mov.w [[REG]], 0(r1)
|
|
|
|
call void @llvm.va_start(i8* %vl1)
|
|
|
|
call void @llvm.va_end(i8* %vl1)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define i16 @va_arg(i8* %vl) nounwind {
|
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; CHECK-LABEL: va_arg:
|
2012-11-22 01:28:27 +08:00
|
|
|
%vl.addr = alloca i8*, align 2
|
|
|
|
store i8* %vl, i8** %vl.addr, align 2
|
2017-03-03 04:25:10 +08:00
|
|
|
; CHECK: mov.w r12, [[REG:r[0-9]+]]
|
2012-11-22 01:28:27 +08:00
|
|
|
; CHECK-NEXT: add.w #2, [[REG]]
|
|
|
|
; CHECK-NEXT: mov.w [[REG]], 0(r1)
|
|
|
|
%0 = va_arg i8** %vl.addr, i16
|
2017-03-03 04:25:10 +08:00
|
|
|
; CHECK-NEXT: mov.w 0(r12), r12
|
2012-11-22 01:28:27 +08:00
|
|
|
ret i16 %0
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @va_copy(i8* %vl) nounwind {
|
|
|
|
entry:
|
2013-07-14 14:24:09 +08:00
|
|
|
; CHECK-LABEL: va_copy:
|
2012-11-22 01:28:27 +08:00
|
|
|
%vl.addr = alloca i8*, align 2
|
|
|
|
%vl2 = alloca i8*, align 2
|
[DAG] Improve Aliasing of operations to static alloca
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
2017-07-19 04:06:24 +08:00
|
|
|
; CHECK-DAG: mov.w r12, 2(r1)
|
2012-11-22 01:28:27 +08:00
|
|
|
store i8* %vl, i8** %vl.addr, align 2
|
|
|
|
%0 = bitcast i8** %vl2 to i8*
|
|
|
|
%1 = bitcast i8** %vl.addr to i8*
|
[DAG] Improve Aliasing of operations to static alloca
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
2017-07-19 04:06:24 +08:00
|
|
|
; CHECK-DAG: mov.w r12, 0(r1)
|
2012-11-22 01:28:27 +08:00
|
|
|
call void @llvm.va_copy(i8* %0, i8* %1)
|
|
|
|
ret void
|
|
|
|
}
|