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.
17 lines
570 B
LLVM
17 lines
570 B
LLVM
; RUN: opt -aa-pipeline=globals-aa,basic-aa -passes='require<globals-aa>,aa-eval' -print-all-alias-modref-info -disable-output %s 2>&1 | FileCheck %s
|
|
|
|
@g0 = internal addrspace(3) global i32 undef
|
|
|
|
; CHECK-LABEL: test1
|
|
; CHECK-DAG: NoAlias: i32* %gp, i32* %p
|
|
; CHECK-DAG: NoAlias: i32* %p, i32 addrspace(3)* @g0
|
|
; CHECK-DAG: MustAlias: i32* %gp, i32 addrspace(3)* @g0
|
|
define i32 @test1(i32* %p) {
|
|
load i32, i32 addrspace(3)* @g0
|
|
%gp = addrspacecast i32 addrspace(3)* @g0 to i32*
|
|
store i32 0, i32* %gp
|
|
store i32 1, i32* %p
|
|
%v = load i32, i32* %gp
|
|
ret i32 %v
|
|
}
|