-
Notifications
You must be signed in to change notification settings - Fork 14.8k
[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
[DirectX] legalize memset #136244
Changes from 4 commits
b7a4fb3
8636f9c
b020f5c
53690ba
e6a4b05
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,7 +98,6 @@ class DirectXPassConfig : public TargetPassConfig { | |
|
||
FunctionPass *createTargetRegisterAllocator(bool) override { return nullptr; } | ||
void addCodeGenPrepare() override { | ||
addPass(createDXILFinalizeLinkageLegacyPass()); | ||
addPass(createDXILIntrinsicExpansionLegacyPass()); | ||
addPass(createDXILCBufferAccessLegacyPass()); | ||
addPass(createDXILDataScalarizationLegacyPass()); | ||
|
@@ -109,6 +108,7 @@ class DirectXPassConfig : public TargetPassConfig { | |
addPass(createScalarizerPass(DxilScalarOptions)); | ||
addPass(createDXILForwardHandleAccessesLegacyPass()); | ||
addPass(createDXILLegalizeLegacyPass()); | ||
addPass(createDXILFinalizeLinkageLegacyPass()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 commentThe 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 commentThe 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. |
||
addPass(createDXILTranslateMetadataLegacyPass()); | ||
addPass(createDXILOpLoweringLegacyPass()); | ||
addPass(createDXILPrepareModulePass()); | ||
|
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) |
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.
Should this function also be static?