-
Notifications
You must be signed in to change notification settings - Fork 14.4k
[IR][DSE] Support non-malloc functions in malloc+memset->calloc fold #138299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
clubby789 marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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
17 changes: 17 additions & 0 deletions
17
llvm/test/Transforms/DeadStoreElimination/zeroed-missing.ll
This file contains hidden or 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,17 @@ | ||
; RUN: opt < %s -passes='dse,verify<memoryssa>' -S | FileCheck %s | ||
|
||
declare void @llvm.memset.p0.i64(ptr nocapture, i8, i64, i1) nounwind | ||
|
||
; This should create a declaration for the named variant | ||
define ptr @undeclared_customalloc(i64 %size, i64 %align) { | ||
; CHECK-LABEL: @undeclared_customalloc | ||
; CHECK-NEXT: [[CALL:%.*]] = call ptr @customalloc2_zeroed(i64 [[SIZE:%.*]], i64 [[ALIGN:%.*]]) | ||
; CHECK-NEXT: ret ptr [[CALL]] | ||
%call = call ptr @customalloc2(i64 %size, i64 %align) | ||
call void @llvm.memset.p0.i64(ptr %call, i8 0, i64 %size, i1 false) | ||
ret ptr %call | ||
} | ||
|
||
declare ptr @customalloc2(i64, i64) allockind("alloc") "alloc-family"="customalloc2" "alloc-variant-zeroed"="customalloc2_zeroed" | ||
; CHECK-DAG: declare ptr @customalloc2_zeroed(i64, i64) #[[CA2ATTR:[0-9]+]] | ||
; CHECK-DAG: attributes #[[CA2ATTR]] = { allockind("alloc,zeroed") "alloc-family"="customalloc2" } |
This file contains hidden or 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,19 @@ | ||
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s | ||
|
||
; CHECK: 'alloc-variant-zeroed' must not be empty | ||
declare ptr @a(i64) "alloc-variant-zeroed"="" | ||
|
||
; CHECK: 'alloc-variant-zeroed' must not be empty | ||
declare ptr @b(i64) "alloc-variant-zeroed"="" | ||
|
||
; CHECK: 'alloc-variant-zeroed' must name a function belonging to the same 'alloc-family' | ||
declare ptr @c(i64) "alloc-variant-zeroed"="c_zeroed" "alloc-family"="C" | ||
declare ptr @c_zeroed(i64) | ||
|
||
; CHECK: 'alloc-variant-zeroed' must name a function with 'allockind("zeroed")' | ||
declare ptr @d(i64) "alloc-variant-zeroed"="d_zeroed" "alloc-family"="D" | ||
declare ptr @d_zeroed(i64) "alloc-family"="D" | ||
|
||
; CHECK: 'alloc-variant-zeroed' must name a function with the same signature | ||
declare ptr @e(i64) "alloc-variant-zeroed"="e_zeroed" "alloc-family"="E" | ||
declare ptr @e_zeroed(i64, i64) "alloc-family"="E" allockind("zeroed") |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.