Skip to content

Commit b7cd291

Browse files
committed
[GlobalOpt] Treat null-check of loaded value as use of global (PR35760)
PR35760 shows an example program which, when compiled with `clang -O0` or gcc at any optimization level, prints '0'. However, llvm transforms the program in a way that causes it to print '1'. Fix the issue by having `AllUsesOfValueWillTrapIfNull` return false when analyzing a load from a global which is used by an `icmp`. This special case was untested [0] so this is just deleting dead code. An alternative fix might be to change the GlobalStatus analysis for the global to report "Stored" instead of "StoredOnce". However, "StoredOnce" is appropriate when only one value other than the initializer is stored to the global. [0] http://lab.llvm.org:8080/coverage/coverage-reports/coverage/Users/buildslave/jenkins/workspace/coverage/llvm-project/llvm/lib/Transforms/IPO/GlobalOpt.cpp.html#L662 Differential Revision: https://reviews.llvm.org/D76645
1 parent bec785a commit b7cd291

File tree

2 files changed

+41
-3
lines changed

2 files changed

+41
-3
lines changed

llvm/lib/Transforms/IPO/GlobalOpt.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -659,9 +659,6 @@ static bool AllUsesOfValueWillTrapIfNull(const Value *V,
659659
// checked.
660660
if (PHIs.insert(PN).second && !AllUsesOfValueWillTrapIfNull(PN, PHIs))
661661
return false;
662-
} else if (isa<ICmpInst>(U) &&
663-
isa<ConstantPointerNull>(U->getOperand(1))) {
664-
// Ignore icmp X, null
665662
} else {
666663
//cerr << "NONTRAPPING USE: " << *U;
667664
return false;
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
; RUN: opt -S -globalopt -o - < %s | FileCheck %s
2+
3+
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
4+
target triple = "x86_64-unknown-linux-gnu"
5+
6+
@_ZL3g_i = internal global i32* null, align 8
7+
@.str = private unnamed_addr constant [2 x i8] c"0\00", align 1
8+
@.str.1 = private unnamed_addr constant [2 x i8] c"1\00", align 1
9+
10+
define dso_local i32 @main() {
11+
store i32* null, i32** @_ZL3g_i, align 8
12+
call void @_ZL13PutsSomethingv()
13+
ret i32 0
14+
}
15+
16+
; CHECK-LABEL: define {{.*}} @_ZL13PutsSomethingv()
17+
; CHECK: [[gvLoad:%.*]] = load i32*, i32** @_ZL3g_i
18+
; CHECK-NEXT: icmp eq i32* [[gvLoad]], null
19+
define internal void @_ZL13PutsSomethingv() {
20+
%1 = load i32*, i32** @_ZL3g_i, align 8
21+
%2 = icmp eq i32* %1, null
22+
br i1 %2, label %3, label %7
23+
24+
3: ; preds = %0
25+
%4 = call noalias i8* @malloc(i64 4) #3
26+
%5 = bitcast i8* %4 to i32*
27+
store i32* %5, i32** @_ZL3g_i, align 8
28+
%6 = call i32 @puts(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0))
29+
br label %9
30+
31+
7: ; preds = %0
32+
%8 = call i32 @puts(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0))
33+
br label %9
34+
35+
9: ; preds = %7, %3
36+
ret void
37+
}
38+
39+
declare dso_local noalias i8* @malloc(i64)
40+
41+
declare dso_local i32 @puts(i8* nocapture readonly)

0 commit comments

Comments
 (0)