Skip to content

[InstCombine] Convert mem intrinsic with null into a noop #100388

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 3 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1575,16 +1575,30 @@ Instruction *InstCombinerImpl::visitCallInst(CallInst &CI) {
return eraseInstFromFunction(CI);
}

auto IsPointerUndefined = [MI](Value *Ptr) {
return isa<ConstantPointerNull>(Ptr) &&
!NullPointerIsDefined(
MI->getFunction(),
cast<PointerType>(Ptr->getType())->getAddressSpace());
};
bool SrcIsUndefined = false;
// If we can determine a pointer alignment that is bigger than currently
// set, update the alignment.
if (auto *MTI = dyn_cast<AnyMemTransferInst>(MI)) {
if (Instruction *I = SimplifyAnyMemTransfer(MTI))
return I;
SrcIsUndefined = IsPointerUndefined(MTI->getRawSource());
} else if (auto *MSI = dyn_cast<AnyMemSetInst>(MI)) {
if (Instruction *I = SimplifyAnyMemSet(MSI))
return I;
}

// If src/dest is null, this memory intrinsic must be a noop.
if (SrcIsUndefined || IsPointerUndefined(MI->getRawDest())) {
Builder.CreateAssumption(Builder.CreateIsNull(MI->getLength()));
return eraseInstFromFunction(CI);
}

if (Changed) return II;
}

Expand Down
77 changes: 77 additions & 0 deletions llvm/test/Transforms/InstCombine/mem-intrinsics.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
; RUN: opt -S -passes=instcombine < %s | FileCheck %s

define void @memset_null(i64 %len) {
; CHECK-LABEL: define void @memset_null(
; CHECK-SAME: i64 [[LEN:%.*]]) {
; CHECK-NEXT: [[TMP1:%.*]] = icmp eq i64 [[LEN]], 0
; CHECK-NEXT: call void @llvm.assume(i1 [[TMP1]])
; CHECK-NEXT: ret void
;
call void @llvm.memset.p0.i64(ptr null, i8 0, i64 %len, i1 false)
ret void
}

define void @memset_null_ub() {
; CHECK-LABEL: define void @memset_null_ub() {
; CHECK-NEXT: store i64 poison, ptr null, align 4294967296
; CHECK-NEXT: ret void
;
call void @llvm.memset.p0.i64(ptr null, i8 0, i64 8, i1 false)
ret void
}

define void @memcpy_null_src(ptr %dst, i64 %len) {
; CHECK-LABEL: define void @memcpy_null_src(
; CHECK-SAME: ptr [[DST:%.*]], i64 [[LEN:%.*]]) {
; CHECK-NEXT: [[TMP1:%.*]] = icmp eq i64 [[LEN]], 0
; CHECK-NEXT: call void @llvm.assume(i1 [[TMP1]])
; CHECK-NEXT: ret void
;
call void @llvm.memcpy.p0.i64(ptr %dst, ptr null, i64 %len, i1 false)
ret void
}

define void @memmove_null_src(ptr %dst, i64 %len) {
; CHECK-LABEL: define void @memmove_null_src(
; CHECK-SAME: ptr [[DST:%.*]], i64 [[LEN:%.*]]) {
; CHECK-NEXT: [[TMP1:%.*]] = icmp eq i64 [[LEN]], 0
; CHECK-NEXT: call void @llvm.assume(i1 [[TMP1]])
; CHECK-NEXT: ret void
;
call void @llvm.memmove.p0.i64(ptr %dst, ptr null, i64 %len, i1 false)
ret void
}

define void @memset_element_atomic(i64 %len) {
; CHECK-LABEL: define void @memset_element_atomic(
; CHECK-SAME: i64 [[LEN:%.*]]) {
; CHECK-NEXT: [[TMP1:%.*]] = icmp eq i64 [[LEN]], 0
; CHECK-NEXT: call void @llvm.assume(i1 [[TMP1]])
; CHECK-NEXT: ret void
;
call void @llvm.memset.element.unordered.atomic.p0.i64(ptr align 1 null, i8 0, i64 %len, i32 1)
ret void
}

; negative tests

define void @memset_null_volatile(i64 %len) {
; CHECK-LABEL: define void @memset_null_volatile(
; CHECK-SAME: i64 [[LEN:%.*]]) {
; CHECK-NEXT: call void @llvm.memset.p0.i64(ptr null, i8 0, i64 [[LEN]], i1 true)
; CHECK-NEXT: ret void
;
call void @llvm.memset.p0.i64(ptr null, i8 0, i64 %len, i1 true)
ret void
}

define void @memset_null_is_defined(i64 %len) null_pointer_is_valid {
; CHECK-LABEL: define void @memset_null_is_defined(
; CHECK-SAME: i64 [[LEN:%.*]]) #[[ATTR0:[0-9]+]] {
; CHECK-NEXT: call void @llvm.memset.p0.i64(ptr align 4294967296 null, i8 0, i64 [[LEN]], i1 false)
; CHECK-NEXT: ret void
;
call void @llvm.memset.p0.i64(ptr null, i8 0, i64 %len, i1 false)
ret void
}
2 changes: 1 addition & 1 deletion llvm/test/Transforms/InstCombine/mempcpy.ll
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ define ptr @memcpy_big_const_n(ptr %d, ptr nocapture readonly %s) {

define i32 @PR48810() {
; CHECK-LABEL: @PR48810(
; CHECK-NEXT: call void @llvm.memcpy.p0.p0.i64(ptr align 1 undef, ptr align 4294967296 null, i64 undef, i1 false)
; CHECK-NEXT: store i1 true, ptr poison, align 1
; CHECK-NEXT: ret i32 undef
;
%r = call dereferenceable(1) ptr @mempcpy(ptr undef, ptr null, i64 undef)
Expand Down
Loading