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.
37 lines
1.1 KiB
LLVM
37 lines
1.1 KiB
LLVM
; This testcase ensures that CFL AA handles assignment cycles correctly
|
|
|
|
; 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_cycle
|
|
; CHECK: NoAlias: i64* %a, i64** %b
|
|
; CHECK: NoAlias: i64* %a, i64*** %c
|
|
; CHECK: NoAlias: i64** %b, i64*** %c
|
|
; CHECK: NoAlias: i64* %a, i64**** %d
|
|
; CHECK: NoAlias: i64** %b, i64**** %d
|
|
; CHECK: NoAlias: i64*** %c, i64**** %d
|
|
; CHECK: NoAlias: i64* %a, i64* %e
|
|
; CHECK: NoAlias: i64** %b, i64* %e
|
|
; CHECK: NoAlias: i64*** %c, i64* %e
|
|
; CHECK: MayAlias: i64* %a, i64* %f
|
|
; CHECK: NoAlias: i64** %b, i64* %f
|
|
; CHECK: NoAlias: i64*** %c, i64* %f
|
|
; CHECK: MayAlias: i64**** %d, i64* %f
|
|
; CHECK: MayAlias: i64* %e, i64* %f
|
|
define void @test_cycle() {
|
|
%a = alloca i64, align 8
|
|
%b = alloca i64*, align 8
|
|
%c = alloca i64**, align 8
|
|
%d = alloca i64***, align 8
|
|
load i64, i64* %a
|
|
store i64* %a, i64** %b
|
|
store i64** %b, i64*** %c
|
|
store i64*** %c, i64**** %d
|
|
|
|
%e = bitcast i64**** %d to i64*
|
|
load i64, i64* %e
|
|
store i64* %e, i64** %b
|
|
%f = load i64*, i64** %b
|
|
load i64, i64* %f
|
|
ret void
|
|
}
|