OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Inliner
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h
10
// This file defines a simple policy-based bottom-up
inliner
. This file
29
///
Inliner
- This class contains all of the helper code which is used to
32
struct
Inliner
: public CallGraphSCCPass {
33
explicit
Inliner
(char &ID);
34
explicit
Inliner
(char &ID, int Threshold, bool InsertLifetime);
84
/// shouldInline - Return true if the
inliner
should attempt to
PassManagerBuilder.h
115
///
Inliner
- Specifies the
inliner
to use. If this is non-null, it is
117
Pass *
Inliner
;
/external/llvm/lib/Transforms/IPO/
Inliner.cpp
1
//===-
Inliner
.cpp - Code common to all inliners --------------------------===//
59
// PGO before we actually hook up
inliner
with analysis passes such as BPI and
68
Inliner
::
Inliner
(char &ID)
71
Inliner
::
Inliner
(char &ID, int Threshold, bool InsertLifetime)
79
void
Inliner
::getAnalysisUsage(AnalysisUsage &AU) const {
166
// and not have the
inliner
do any merging of allocas at all. This would
277
unsigned
Inliner
::getInlineThreshold(CallSite CS) const {
345
/// Return true if the
inliner
should attempt to inline at the given CallSite
[
all
...]
Completed in 520 milliseconds