mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
Handle an addrspacecast case in memcpyopt
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199836 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1214e71d77
commit
88a9f0476c
@ -662,7 +662,7 @@ bool MemCpyOpt::performCallSlotOptzn(Instruction *cpy,
|
||||
while (!srcUseList.empty()) {
|
||||
User *UI = srcUseList.pop_back_val();
|
||||
|
||||
if (isa<BitCastInst>(UI)) {
|
||||
if (isa<BitCastInst>(UI) || isa<AddrSpaceCastInst>(UI)) {
|
||||
for (User::use_iterator I = UI->use_begin(), E = UI->use_end();
|
||||
I != E; ++I)
|
||||
srcUseList.push_back(*I);
|
||||
|
@ -78,6 +78,7 @@ define void @test4(i8 *%P) {
|
||||
|
||||
declare void @test4a(i8* align 1 byval)
|
||||
declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i32, i1) nounwind
|
||||
declare void @llvm.memcpy.p1i8.p1i8.i64(i8 addrspace(1)* nocapture, i8 addrspace(1)* nocapture, i64, i32, i1) nounwind
|
||||
|
||||
%struct.S = type { i128, [4 x i8]}
|
||||
|
||||
@ -152,6 +153,22 @@ declare noalias i8* @malloc(i32)
|
||||
; rdar://11341081
|
||||
%struct.big = type { [50 x i32] }
|
||||
|
||||
define void @test9_addrspacecast() nounwind ssp uwtable {
|
||||
entry:
|
||||
; CHECK-LABEL: @test9_addrspacecast(
|
||||
; CHECK: f1
|
||||
; CHECK-NOT: memcpy
|
||||
; CHECK: f2
|
||||
%b = alloca %struct.big, align 4
|
||||
%tmp = alloca %struct.big, align 4
|
||||
call void @f1(%struct.big* sret %tmp)
|
||||
%0 = addrspacecast %struct.big* %b to i8 addrspace(1)*
|
||||
%1 = addrspacecast %struct.big* %tmp to i8 addrspace(1)*
|
||||
call void @llvm.memcpy.p1i8.p1i8.i64(i8 addrspace(1)* %0, i8 addrspace(1)* %1, i64 200, i32 4, i1 false)
|
||||
call void @f2(%struct.big* %b)
|
||||
ret void
|
||||
}
|
||||
|
||||
define void @test9() nounwind ssp uwtable {
|
||||
entry:
|
||||
; CHECK: test9
|
||||
|
Loading…
Reference in New Issue
Block a user