-
Notifications
You must be signed in to change notification settings - Fork 13.4k
[DirectX] legalize memset #136244
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
[DirectX] legalize memset #136244
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
b7a4fb3
[DirectX] legalize memset
farzonl 8636f9c
remove lifetime intrinsics removal. Move memset cleanup first incase …
farzonl b020f5c
Add memset as an alloca load condition for type propogation.
farzonl 53690ba
address pr comments
farzonl e6a4b05
fix a few more issues with pr
farzonl 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5 | ||
; RUN: opt -S -dxil-legalize -dxil-finalize-linkage -mtriple=dxil-pc-shadermodel6.3-library %s | FileCheck %s | ||
|
||
define void @replace_float_memset_test() #0 { | ||
; CHECK-LABEL: define void @replace_float_memset_test( | ||
; CHECK-SAME: ) #[[ATTR0:[0-9]+]] { | ||
; CHECK-NEXT: [[ACCUM_I_FLAT:%.*]] = alloca [2 x float], align 4 | ||
; CHECK-NEXT: call void @llvm.lifetime.start.p0(i64 8, ptr nonnull [[ACCUM_I_FLAT]]) | ||
; CHECK-NEXT: [[GEP:%.*]] = getelementptr float, ptr [[ACCUM_I_FLAT]], i32 0 | ||
; CHECK-NEXT: store float 0.000000e+00, ptr [[GEP]], align 4 | ||
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr float, ptr [[ACCUM_I_FLAT]], i32 1 | ||
; CHECK-NEXT: store float 0.000000e+00, ptr [[GEP1]], align 4 | ||
; CHECK-NEXT: call void @llvm.lifetime.end.p0(i64 8, ptr nonnull [[ACCUM_I_FLAT]]) | ||
; CHECK-NEXT: ret void | ||
; | ||
%accum.i.flat = alloca [2 x float], align 4 | ||
call void @llvm.lifetime.start.p0(i64 8, ptr nonnull %accum.i.flat) | ||
call void @llvm.memset.p0.i32(ptr nonnull align 4 dereferenceable(8) %accum.i.flat, i8 0, i32 8, i1 false) | ||
call void @llvm.lifetime.end.p0(i64 8, ptr nonnull %accum.i.flat) | ||
ret void | ||
} | ||
|
||
define void @replace_half_memset_test() #0 { | ||
; CHECK-LABEL: define void @replace_half_memset_test( | ||
; CHECK-SAME: ) #[[ATTR0]] { | ||
; CHECK-NEXT: [[ACCUM_I_FLAT:%.*]] = alloca [2 x half], align 4 | ||
; CHECK-NEXT: call void @llvm.lifetime.start.p0(i64 4, ptr nonnull [[ACCUM_I_FLAT]]) | ||
; CHECK-NEXT: [[GEP:%.*]] = getelementptr half, ptr [[ACCUM_I_FLAT]], i32 0 | ||
; CHECK-NEXT: store half 0xH0000, ptr [[GEP]], align 2 | ||
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr half, ptr [[ACCUM_I_FLAT]], i32 1 | ||
; CHECK-NEXT: store half 0xH0000, ptr [[GEP1]], align 2 | ||
; CHECK-NEXT: call void @llvm.lifetime.end.p0(i64 4, ptr nonnull [[ACCUM_I_FLAT]]) | ||
; CHECK-NEXT: ret void | ||
; | ||
%accum.i.flat = alloca [2 x half], align 4 | ||
call void @llvm.lifetime.start.p0(i64 4, ptr nonnull %accum.i.flat) | ||
call void @llvm.memset.p0.i32(ptr nonnull align 4 dereferenceable(8) %accum.i.flat, i8 0, i32 4, i1 false) | ||
call void @llvm.lifetime.end.p0(i64 4, ptr nonnull %accum.i.flat) | ||
ret void | ||
} | ||
|
||
define void @replace_double_memset_test() #0 { | ||
; CHECK-LABEL: define void @replace_double_memset_test( | ||
; CHECK-SAME: ) #[[ATTR0]] { | ||
; CHECK-NEXT: [[ACCUM_I_FLAT:%.*]] = alloca [2 x double], align 4 | ||
; CHECK-NEXT: call void @llvm.lifetime.start.p0(i64 16, ptr nonnull [[ACCUM_I_FLAT]]) | ||
; CHECK-NEXT: [[GEP:%.*]] = getelementptr double, ptr [[ACCUM_I_FLAT]], i32 0 | ||
; CHECK-NEXT: store double 0.000000e+00, ptr [[GEP]], align 8 | ||
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr double, ptr [[ACCUM_I_FLAT]], i32 1 | ||
; CHECK-NEXT: store double 0.000000e+00, ptr [[GEP1]], align 8 | ||
; CHECK-NEXT: call void @llvm.lifetime.end.p0(i64 16, ptr nonnull [[ACCUM_I_FLAT]]) | ||
; CHECK-NEXT: ret void | ||
; | ||
%accum.i.flat = alloca [2 x double], align 4 | ||
call void @llvm.lifetime.start.p0(i64 16, ptr nonnull %accum.i.flat) | ||
call void @llvm.memset.p0.i32(ptr nonnull align 4 dereferenceable(8) %accum.i.flat, i8 0, i32 16, i1 false) | ||
call void @llvm.lifetime.end.p0(i64 16, ptr nonnull %accum.i.flat) | ||
ret void | ||
} | ||
|
||
define void @replace_int16_memset_test() #0 { | ||
; CHECK-LABEL: define void @replace_int16_memset_test( | ||
; CHECK-SAME: ) #[[ATTR0]] { | ||
; CHECK-NEXT: [[CACHE_I:%.*]] = alloca [2 x i16], align 2 | ||
; CHECK-NEXT: call void @llvm.lifetime.start.p0(i64 4, ptr nonnull [[CACHE_I]]) | ||
; CHECK-NEXT: [[GEP:%.*]] = getelementptr i16, ptr [[CACHE_I]], i32 0 | ||
; CHECK-NEXT: store i16 0, ptr [[GEP]], align 2 | ||
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr i16, ptr [[CACHE_I]], i32 1 | ||
; CHECK-NEXT: store i16 0, ptr [[GEP1]], align 2 | ||
; CHECK-NEXT: call void @llvm.lifetime.end.p0(i64 4, ptr nonnull [[CACHE_I]]) | ||
; CHECK-NEXT: ret void | ||
; | ||
%cache.i = alloca [2 x i16], align 2 | ||
call void @llvm.lifetime.start.p0(i64 4, ptr nonnull %cache.i) | ||
call void @llvm.memset.p0.i32(ptr nonnull align 2 dereferenceable(4) %cache.i, i8 0, i32 4, i1 false) | ||
call void @llvm.lifetime.end.p0(i64 4, ptr nonnull %cache.i) | ||
ret void | ||
} | ||
|
||
define void @replace_int_memset_test() #0 { | ||
; CHECK-LABEL: define void @replace_int_memset_test( | ||
; CHECK-SAME: ) #[[ATTR0]] { | ||
; CHECK-NEXT: [[ACCUM_I_FLAT:%.*]] = alloca [1 x i32], align 4 | ||
; CHECK-NEXT: call void @llvm.lifetime.start.p0(i64 4, ptr nonnull [[ACCUM_I_FLAT]]) | ||
; CHECK-NEXT: [[GEP:%.*]] = getelementptr i32, ptr [[ACCUM_I_FLAT]], i32 0 | ||
; CHECK-NEXT: store i32 0, ptr [[GEP]], align 4 | ||
; CHECK-NEXT: call void @llvm.lifetime.end.p0(i64 4, ptr nonnull [[ACCUM_I_FLAT]]) | ||
; CHECK-NEXT: ret void | ||
; | ||
%accum.i.flat = alloca [1 x i32], align 4 | ||
call void @llvm.lifetime.start.p0(i64 4, ptr nonnull %accum.i.flat) | ||
call void @llvm.memset.p0.i32(ptr nonnull align 4 dereferenceable(8) %accum.i.flat, i8 0, i32 4, i1 false) | ||
call void @llvm.lifetime.end.p0(i64 4, ptr nonnull %accum.i.flat) | ||
ret void | ||
} | ||
|
||
define void @replace_int_memset_to_var_test() #0 { | ||
; CHECK-LABEL: define void @replace_int_memset_to_var_test( | ||
; CHECK-SAME: ) #[[ATTR0]] { | ||
; CHECK-NEXT: [[ACCUM_I_FLAT:%.*]] = alloca [1 x i32], align 4 | ||
; CHECK-NEXT: [[I:%.*]] = alloca i32, align 4 | ||
; CHECK-NEXT: store i32 1, ptr [[I]], align 4 | ||
; CHECK-NEXT: [[I8_LOAD:%.*]] = load i32, ptr [[I]], align 4 | ||
; CHECK-NEXT: call void @llvm.lifetime.start.p0(i64 4, ptr nonnull [[ACCUM_I_FLAT]]) | ||
; CHECK-NEXT: [[GEP:%.*]] = getelementptr i32, ptr [[ACCUM_I_FLAT]], i32 0 | ||
; CHECK-NEXT: store i32 [[I8_LOAD]], ptr [[GEP]], align 4 | ||
; CHECK-NEXT: call void @llvm.lifetime.end.p0(i64 4, ptr nonnull [[ACCUM_I_FLAT]]) | ||
; CHECK-NEXT: ret void | ||
; | ||
%accum.i.flat = alloca [1 x i32], align 4 | ||
%i = alloca i8, align 4 | ||
store i8 1, ptr %i | ||
%i8.load = load i8, ptr %i | ||
call void @llvm.lifetime.start.p0(i64 4, ptr nonnull %accum.i.flat) | ||
call void @llvm.memset.p0.i32(ptr nonnull align 4 dereferenceable(8) %accum.i.flat, i8 %i8.load, i32 4, i1 false) | ||
call void @llvm.lifetime.end.p0(i64 4, ptr nonnull %accum.i.flat) | ||
ret void | ||
} | ||
|
||
attributes #0 = {"hlsl.export"} | ||
|
||
|
||
declare void @llvm.lifetime.end.p0(i64 immarg, ptr captures(none)) | ||
declare void @llvm.lifetime.start.p0(i64 immarg, ptr captures(none)) | ||
declare void @llvm.memset.p0.i32(ptr writeonly captures(none), i8, i32, i1 immarg) |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the legalize legacy pass is a function level pass so it leaves behind the intrinsic decleration in the module. finalize linkage has a cleanup that will remove these dead intrinsics declarations so doing this after legalization works better for cleanup purposes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems fine, but do note that if we do #134260 then we can't rely on this ordering.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we do that we can make legalization a module level pass and then we can do the cleanup of declares without FinalizeLinkage.