blob: dceb567d10e15819ba88994bd77e018ef826e4ec [file] [log] [blame]
Michael Gottesman79d8d812013-01-28 01:35:51 +00001//===-- ObjCARC.cpp --------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements common infrastructure for libLLVMObjCARCOpts.a, which
11// implements several scalar transformations over the LLVM intermediate
12// representation, including the C bindings for that library.
13//
14//===----------------------------------------------------------------------===//
15
Michael Gottesman08904e32013-01-28 03:28:38 +000016#include "ObjCARC.h"
17
Michael Gottesman79d8d812013-01-28 01:35:51 +000018#include "llvm-c/Initialization.h"
19#include "llvm/Analysis/Passes.h"
20#include "llvm/Analysis/Verifier.h"
21#include "llvm/IR/DataLayout.h"
22#include "llvm/InitializePasses.h"
23#include "llvm/PassManager.h"
Michael Gottesman283e0792013-01-28 03:35:20 +000024#include "llvm/Support/CommandLine.h"
Michael Gottesman79d8d812013-01-28 01:35:51 +000025
26using namespace llvm;
Michael Gottesman08904e32013-01-28 03:28:38 +000027using namespace llvm::objcarc;
28
29/// \brief A handy option to enable/disable all ARC Optimizations.
30bool llvm::objcarc::EnableARCOpts;
31static cl::opt<bool, true>
32EnableARCOptimizations("enable-objc-arc-opts",
33 cl::location(EnableARCOpts),
34 cl::init(true));
Michael Gottesman79d8d812013-01-28 01:35:51 +000035
36/// initializeObjCARCOptsPasses - Initialize all passes linked into the
37/// ObjCARCOpts library.
38void llvm::initializeObjCARCOpts(PassRegistry &Registry) {
39 initializeObjCARCAliasAnalysisPass(Registry);
40 initializeObjCARCAPElimPass(Registry);
41 initializeObjCARCExpandPass(Registry);
42 initializeObjCARCContractPass(Registry);
43 initializeObjCARCOptPass(Registry);
44}
45
46void LLVMInitializeObjCARCOpts(LLVMPassRegistryRef R) {
47 initializeObjCARCOpts(*unwrap(R));
48}