ObjCARC.cpp revision 309124
1//===-- 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
16#include "ObjCARC.h"
17#include "llvm-c/Core.h"
18#include "llvm-c/Initialization.h"
19#include "llvm/InitializePasses.h"
20
21namespace llvm {
22  class PassRegistry;
23}
24
25using namespace llvm;
26using namespace llvm::objcarc;
27
28/// initializeObjCARCOptsPasses - Initialize all passes linked into the
29/// ObjCARCOpts library.
30void llvm::initializeObjCARCOpts(PassRegistry &Registry) {
31  initializeObjCARCAAWrapperPassPass(Registry);
32  initializeObjCARCAPElimPass(Registry);
33  initializeObjCARCExpandPass(Registry);
34  initializeObjCARCContractPass(Registry);
35  initializeObjCARCOptPass(Registry);
36  initializePAEvalPass(Registry);
37}
38
39void LLVMInitializeObjCARCOpts(LLVMPassRegistryRef R) {
40  initializeObjCARCOpts(*unwrap(R));
41}
42