LLVM
4.0.0
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
llvm.src
lib
Analysis
ObjCARCAnalysisUtils.cpp
Go to the documentation of this file.
1
//===- ObjCARCAnalysisUtils.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 "
llvm/Analysis/ObjCARCAnalysisUtils.h
"
17
#include "
llvm/Support/CommandLine.h
"
18
19
using namespace
llvm;
20
using namespace
llvm::objcarc;
21
22
/// \brief A handy option to enable/disable all ARC Optimizations.
23
bool
llvm::objcarc::EnableARCOpts
;
24
static
cl::opt<bool, true>
25
EnableARCOptimizations
(
"enable-objc-arc-opts"
,
26
cl::desc
(
"enable/disable all ARC Optimizations"
),
27
cl::location
(
EnableARCOpts
),
28
cl::init
(
true
));
llvm::objcarc::EnableARCOpts
bool EnableARCOpts
A handy option to enable/disable all ARC Optimizations.
Definition:
ObjCARCAnalysisUtils.cpp:23
EnableARCOptimizations
static cl::opt< bool, true > EnableARCOptimizations("enable-objc-arc-opts", cl::desc("enable/disable all ARC Optimizations"), cl::location(EnableARCOpts), cl::init(true))
CommandLine.h
llvm::cl::init
initializer< Ty > init(const Ty &Val)
Definition:
CommandLine.h:395
llvm::cl::desc
Definition:
CommandLine.h:366
ObjCARCAnalysisUtils.h
This file defines common analysis utilities used by the ObjC ARC Optimizer.
llvm::cl::opt
Definition:
CommandLine.h:1270
llvm::cl::location
LocationClass< Ty > location(Ty &L)
Definition:
CommandLine.h:411
Generated on Wed Mar 8 2017 17:18:21 for LLVM by
1.8.6