OSDN Git Service

The ARC language-specific optimizer. Credit to Dan Gohman.
authorJohn McCall <rjmccall@apple.com>
Wed, 15 Jun 2011 23:37:01 +0000 (23:37 +0000)
committerJohn McCall <rjmccall@apple.com>
Wed, 15 Jun 2011 23:37:01 +0000 (23:37 +0000)
commit9fbd318d36e618fb08fb53bb48b7c848e617a8a7
tree734b59edd4958b31e22b6cbd005df15fdd8ab78b
parent5f36bb1759e35bd3aef4b6ce226e091849f6b816
The ARC language-specific optimizer.  Credit to Dan Gohman.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133108 91177308-0d34-0410-b5e6-96231b3b80d8
28 files changed:
include/llvm/Analysis/Passes.h
include/llvm/InitializePasses.h
include/llvm/LinkAllPasses.h
include/llvm/Support/PassManagerBuilder.h
include/llvm/Transforms/Scalar.h
lib/CodeGen/LLVMTargetMachine.cpp
lib/Transforms/Scalar/CMakeLists.txt
lib/Transforms/Scalar/ObjCARC.cpp [new file with mode: 0644]
lib/Transforms/Scalar/Scalar.cpp
test/Transforms/ObjCARC/basic.ll [new file with mode: 0644]
test/Transforms/ObjCARC/cfg-hazards.ll [new file with mode: 0644]
test/Transforms/ObjCARC/contract-marker.ll [new file with mode: 0644]
test/Transforms/ObjCARC/contract-storestrong-ivar.ll [new file with mode: 0644]
test/Transforms/ObjCARC/contract-storestrong.ll [new file with mode: 0644]
test/Transforms/ObjCARC/contract-testcases.ll [new file with mode: 0644]
test/Transforms/ObjCARC/contract.ll [new file with mode: 0644]
test/Transforms/ObjCARC/dg.exp [new file with mode: 0644]
test/Transforms/ObjCARC/expand.ll [new file with mode: 0644]
test/Transforms/ObjCARC/gvn.ll [new file with mode: 0644]
test/Transforms/ObjCARC/move-and-form-retain-autorelease.ll [new file with mode: 0644]
test/Transforms/ObjCARC/move-and-merge-autorelease.ll [new file with mode: 0644]
test/Transforms/ObjCARC/post-inlining.ll [new file with mode: 0644]
test/Transforms/ObjCARC/retain-not-declared.ll [new file with mode: 0644]
test/Transforms/ObjCARC/rle-s2l.ll [new file with mode: 0644]
test/Transforms/ObjCARC/rv.ll [new file with mode: 0644]
test/Transforms/ObjCARC/weak-contract.ll [new file with mode: 0644]
test/Transforms/ObjCARC/weak-copies.ll [new file with mode: 0644]
test/Transforms/ObjCARC/weak.ll [new file with mode: 0644]