mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
bf301d5670
This provides an implementation of CFL alias analysis (including some supporting data structures). Currently, we don't have any extremely fancy features, sans some interprocedural analysis (i.e. no field sensitivity, etc.), and we do best sitting behind BasicAA + TBAA. In such a configuration, we take ~0.6-0.8% of total compile time, and give ~7-8% NoAlias responses to queries TBAA and BasicAA couldn't answer when bootstrapping LLVM. In testing this on other projects, we've seen up to 10.5% of queries dropped by BasicAA+TBAA answered with NoAlias by this algorithm. Patch by George Burgess IV (with minor modifications by me -- mostly adapting some BasicAA tests), thanks! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216970 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
571 B
LLVM
19 lines
571 B
LLVM
; This testcase consists of alias relations which should be completely
|
|
; resolvable by cfl-aa (derived from BasicAA/2003-11-04-SimpleCases.ll).
|
|
|
|
; RUN: opt < %s -cfl-aa -aa-eval -print-may-aliases -disable-output 2>&1 | FileCheck %s
|
|
|
|
%T = type { i32, [10 x i8] }
|
|
|
|
; CHECK: Function: test
|
|
; CHECK-NOT: May:
|
|
|
|
define void @test(%T* %P) {
|
|
%A = getelementptr %T* %P, i64 0
|
|
%B = getelementptr %T* %P, i64 0, i32 0
|
|
%C = getelementptr %T* %P, i64 0, i32 1
|
|
%D = getelementptr %T* %P, i64 0, i32 1, i64 0
|
|
%E = getelementptr %T* %P, i64 0, i32 1, i64 5
|
|
ret void
|
|
}
|