mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
af578b1205
Using various methods, BasicAA tries to determine whether two GetElementPtr memory locations alias when its base pointers are known to be equal. When none of its heuristics are applicable, it falls back to PartialAlias to, according to a comment, protect TBAA making a wrong decision in case of unions and malloc. PartialAlias is not correct, because a PartialAlias result implies that some, but not all, bytes overlap which is not necessarily the case here. AAResults returns the first analysis result that is not MayAlias. BasicAA is always the first alias analysis. When it returns PartialAlias, no other analysis is queried to give a more exact result (which was the intention of returning PartialAlias instead of MayAlias). For instance, ScopedAA could return a more accurate result. The PartialAlias hack was introduced in r131781 (and re-applied in r132632 after some reverts) to fix llvm.org/PR9971 where TBAA returns a wrong NoAlias result due to a union. A test case for the malloc case mentioned in the comment was not provided and I don't think it is affected since it returns an omnipotent char anyway. Since r303851 (https://reviews.llvm.org/D33328) clang does emit specific TBAA for unions anymore (but "omnipotent char" instead). Hence, the PartialAlias workaround is not required anymore. This patch passes the test-suite and check-llvm/check-clang of a self-hoisted build on x64. Reviewed By: hfinkel Differential Revision: https://reviews.llvm.org/D34318 llvm-svn: 305938
24 lines
765 B
LLVM
24 lines
765 B
LLVM
; RUN: opt -basicaa -aa-eval -print-all-alias-modref-info -disable-output < %s 2>&1 | FileCheck %s
|
|
|
|
; Check that BasicAA falls back to MayAlias (instead of PartialAlias) when none
|
|
; of its little tricks are applicable.
|
|
|
|
; CHECK: MayAlias: float* %arrayidxA, float* %arrayidxB
|
|
|
|
define void @fallback_mayalias(float* noalias nocapture %C, i64 %i, i64 %j) local_unnamed_addr {
|
|
entry:
|
|
%shl = shl i64 %i, 3
|
|
%mul = shl nsw i64 %j, 4
|
|
%addA = add nsw i64 %mul, %shl
|
|
%orB = or i64 %shl, 1
|
|
%addB = add nsw i64 %mul, %orB
|
|
|
|
%arrayidxA = getelementptr inbounds float, float* %C, i64 %addA
|
|
store float undef, float* %arrayidxA, align 4
|
|
|
|
%arrayidxB = getelementptr inbounds float, float* %C, i64 %addB
|
|
store float undef, float* %arrayidxB, align 4
|
|
|
|
ret void
|
|
}
|