-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AllocOpt: Fix stack lowering where alloca continas boxed and unboxed …
…data (#55306) Co-authored-by: Valentin Churavy <[email protected]> Co-authored-by: Mosè Giordano <[email protected]> Co-authored-by: Gabriel Baraldi <[email protected]> (cherry picked from commit 1e1e710)
- Loading branch information
Showing
4 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
; This file is a part of Julia. License is MIT: https://julialang.org/license | ||
|
||
; RUN: opt --load-pass-plugin=libjulia-codegen%shlibext -passes='function(AllocOpt)' -S %s | FileCheck %s | ||
|
||
|
||
@tag = external addrspace(10) global {} | ||
|
||
@glob = external addrspace(10) global {} | ||
|
||
; Test that the gc_preserve intrinsics are deleted directly. | ||
|
||
; CHECK-LABEL: @ptr_and_bits | ||
; CHECK-NOT: alloca | ||
; CHECK: call noalias ptr addrspace(10) @julia.gc_alloc_obj | ||
|
||
define void @ptr_and_bits(ptr %fptr, i1 %b, i1 %b2, i32 %idx) { | ||
%pgcstack = call ptr @julia.get_pgcstack() | ||
%ptls = call ptr @julia.ptls_states() | ||
%ptls_i8 = bitcast ptr %ptls to ptr | ||
%v = call noalias ptr addrspace(10) @julia.gc_alloc_obj(ptr %ptls_i8, i64 16, ptr addrspace(10) @tag) | ||
|
||
%g0 = getelementptr { i64, ptr addrspace(10) }, ptr addrspace(10) %v, i32 %idx, i32 1 | ||
store ptr addrspace(10) @glob, ptr addrspace(10) %g0 | ||
|
||
%g1 = getelementptr { i64, ptr addrspace(10) }, ptr addrspace(10) %v, i32 %idx, i32 0 | ||
store i64 7, ptr addrspace(10) %g1 | ||
|
||
%res = load ptr addrspace(10), ptr addrspace(10) %g0 | ||
%res2 = load i64, ptr addrspace(10) %g1 | ||
ret void | ||
} | ||
|
||
declare noalias ptr addrspace(10) @julia.gc_alloc_obj(ptr, i64, ptr addrspace(10)) | ||
|
||
declare ptr @julia.ptls_states() | ||
|
||
declare ptr @julia.get_pgcstack() |