Skip to content

Commit 2dd9835

Browse files
committedDec 12, 2017
[InstComineLoadStoreAlloca] Optimize stores to GEP off null base
Summary: Currently, in InstCombineLoadStoreAlloca, we have simplification rules for the following cases: 1. load off a null 2. load off a GEP with null base 3. store to a null This patch adds support for the fourth case which is store into a GEP with null base. Since this is UB as well (and directly analogous to the load off a GEP with null base), we can substitute the stored val with undef in instcombine, so that SimplifyCFG can optimize this code into unreachable code. Note: Right now, simplifyCFG hasn't been taught about optimizing this to unreachable and adding an llvm.trap (this is already done for the above 3 cases). Reviewers: majnemer, hfinkel, sanjoy, davide Reviewed by: sanjoy, davide Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D41026 llvm-svn: 320480
1 parent 11ef531 commit 2dd9835

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed
 

‎llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp

+12-1
Original file line numberDiff line numberDiff line change
@@ -959,6 +959,16 @@ static Instruction *replaceGEPIdxWithZero(InstCombiner &IC, Value *Ptr,
959959
return nullptr;
960960
}
961961

962+
static bool canSimplifyNullStoreOrGEP(StoreInst &SI) {
963+
if (SI.getPointerAddressSpace() != 0)
964+
return false;
965+
966+
auto *Ptr = SI.getPointerOperand();
967+
if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Ptr))
968+
Ptr = GEPI->getOperand(0);
969+
return isa<ConstantPointerNull>(Ptr);
970+
}
971+
962972
static bool canSimplifyNullLoadOrGEP(LoadInst &LI, Value *Op) {
963973
if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Op)) {
964974
const Value *GEPI0 = GEPI->getOperand(0);
@@ -1447,7 +1457,8 @@ Instruction *InstCombiner::visitStoreInst(StoreInst &SI) {
14471457
}
14481458

14491459
// store X, null -> turns into 'unreachable' in SimplifyCFG
1450-
if (isa<ConstantPointerNull>(Ptr) && SI.getPointerAddressSpace() == 0) {
1460+
// store X, GEP(null, Y) -> turns into 'unreachable' in SimplifyCFG
1461+
if (canSimplifyNullStoreOrGEP(SI)) {
14511462
if (!isa<UndefValue>(Val)) {
14521463
SI.setOperand(0, UndefValue::get(Val->getType()));
14531464
if (Instruction *U = dyn_cast<Instruction>(Val))

‎llvm/test/Transforms/InstCombine/store.ll

+8
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ define void @test2(i32* %P) {
2020
; CHECK-NEXT: ret void
2121
}
2222

23+
define void @store_at_gep_off_null(i64 %offset) {
24+
; CHECK-LABEL: @store_at_gep_off_null
25+
; CHECK: store i32 undef, i32* %ptr
26+
%ptr = getelementptr i32, i32 *null, i64 %offset
27+
store i32 24, i32* %ptr
28+
ret void
29+
}
30+
2331
;; Simple sinking tests
2432

2533
; "if then else"

0 commit comments

Comments
 (0)
Please sign in to comment.