With opaque pointers, we cannot use the pointer element type to determine the LocationSize for the AA query. Instead, -aa-eval tests are now required to have an explicit load or store for any pointer they want to compute alias results for, and the load/store types are used to determine the location size. This may affect ordering of results, and sorting within one result, as the type is not considered part of the sorted string anymore. To somewhat minimize the churn, printing still uses faux typed pointer notation.
29 lines
842 B
LLVM
29 lines
842 B
LLVM
; This testcase ensures that CFL AA handles assignment in an inclusion-based
|
|
; manner
|
|
|
|
; RUN: opt < %s -aa-pipeline=cfl-anders-aa -passes=aa-eval -print-all-alias-modref-info -disable-output 2>&1 | FileCheck %s
|
|
|
|
; CHECK-LABEL: Function: test_assign
|
|
; CHECK: NoAlias: i64* %a, i64* %b
|
|
; CHECK: NoAlias: i64* %b, i32* %c
|
|
; CHECK: NoAlias: i64* %a, i32* %d
|
|
; CHECK: NoAlias: i32* %c, i32* %d
|
|
; CHECK: MayAlias: i64* %a, i32* %e
|
|
; CHECK: MayAlias: i64* %b, i32* %e
|
|
; CHECK: MayAlias: i32* %c, i32* %e
|
|
; CHECK: MayAlias: i32* %d, i32* %e
|
|
define void @test_assign(i1 %cond) {
|
|
%a = alloca i64, align 8
|
|
%b = alloca i64, align 8
|
|
|
|
%c = bitcast i64* %a to i32*
|
|
%d = bitcast i64* %b to i32*
|
|
%e = select i1 %cond, i32* %c, i32* %d
|
|
load i64, i64* %a
|
|
load i64, i64* %b
|
|
load i32, i32* %c
|
|
load i32, i32* %d
|
|
load i32, i32* %e
|
|
ret void
|
|
}
|