Hal Finkel 7e32aa1015 Simplify pointer comparisons involving memory allocation functions
System memory allocation functions, which are identified at the IR level by the
noalias attribute on the return value, must return a pointer into a memory region
disjoint from any other memory accessible to the caller. We can use this
property to simplify pointer comparisons between allocated memory and local
stack addresses and the addresses of global variables. Neither the stack nor
global variables can overlap with the region used by the memory allocator.

Fixes PR21556.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223093 91177308-0d34-0410-b5e6-96231b3b80d8
2014-12-01 23:38:06 +00:00

109 lines
3.1 KiB
LLVM

; RUN: opt -instsimplify -S < %s | FileCheck %s
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
@g1 = global i32 0, align 4
; Make sure we can simplify away a pointer comparison between
; dynamically-allocated memory and a local stack allocation.
; void p()
; {
; int *mData;
; int mStackData[10];
; mData = new int[12];
; if (mData != mStackData) {
; delete[] mData;
; }
; }
define void @_Z2p1v() #0 {
%mStackData = alloca [10 x i32], align 16
%1 = bitcast [10 x i32]* %mStackData to i8*
%2 = tail call noalias i8* @_Znam(i64 48) #4
%3 = bitcast i8* %2 to i32*
%4 = getelementptr inbounds [10 x i32]* %mStackData, i64 0, i64 0
%5 = icmp eq i32* %3, %4
br i1 %5, label %7, label %6
; CHECK-LABEL: @_Z2p1v
; CHECK-NOT: icmp
; CHECK: ret void
; <label>:6 ; preds = %0
call void @_ZdaPv(i8* %2) #5
br label %7
; <label>:7 ; preds = %0, %6
ret void
}
; Also check a more-complicated case with multiple underlying objects.
define void @_Z2p2bb(i1 zeroext %b1, i1 zeroext %b2) #0 {
%mStackData = alloca [10 x i32], align 16
%1 = bitcast [10 x i32]* %mStackData to i8*
%2 = getelementptr inbounds [10 x i32]* %mStackData, i64 0, i64 0
%3 = select i1 %b1, i32* %2, i32* @g1
%4 = tail call noalias i8* @_Znam(i64 48) #4
%5 = tail call noalias i8* @_Znam(i64 48) #4
%.v = select i1 %b2, i8* %4, i8* %5
%6 = bitcast i8* %.v to i32*
%7 = icmp eq i32* %6, %3
br i1 %7, label %9, label %8
; CHECK-LABEL: @_Z2p2bb
; CHECK-NOT: icmp
; CHECK: ret void
; <label>:8 ; preds = %0
call void @_ZdaPv(i8* %4) #5
call void @_ZdaPv(i8* %5) #5
br label %9
; <label>:9 ; preds = %0, %8
ret void
}
; Here's another case involving multiple underlying objects, but this time we
; must keep the comparison (it might involve a regular pointer-typed function
; argument).
define void @_Z4nopebbPi(i1 zeroext %b1, i1 zeroext %b2, i32* readnone %q) #0 {
%mStackData = alloca [10 x i32], align 16
%1 = bitcast [10 x i32]* %mStackData to i8*
%2 = getelementptr inbounds [10 x i32]* %mStackData, i64 0, i64 0
%3 = select i1 %b1, i32* %2, i32* %q
%4 = tail call noalias i8* @_Znam(i64 48) #4
%5 = tail call noalias i8* @_Znam(i64 48) #4
%.v = select i1 %b2, i8* %4, i8* %5
%6 = bitcast i8* %.v to i32*
%7 = icmp eq i32* %6, %3
br i1 %7, label %9, label %8
; CHECK-LABEL: @_Z4nopebbPi
; CHECK: icmp
; CHECK: ret void
; <label>:8 ; preds = %0
call void @_ZdaPv(i8* %4) #5
call void @_ZdaPv(i8* %5) #5
br label %9
; <label>:9 ; preds = %0, %8
ret void
}
; Function Attrs: nobuiltin
declare noalias i8* @_Znam(i64) #2
; Function Attrs: nobuiltin nounwind
declare void @_ZdaPv(i8*) #3
attributes #0 = { uwtable }
attributes #1 = { nounwind }
attributes #2 = { nobuiltin }
attributes #3 = { nobuiltin nounwind }
attributes #4 = { builtin }
attributes #5 = { builtin nounwind }