Searched refs:Inliner (Results 1 - 10 of 10) sorted by relevance

/external/llvm/include/llvm/Transforms/IPO/
H A DInlinerPass.h29 /// Inliner - This class contains all of the helper code which is used to
32 struct Inliner : public CallGraphSCCPass { struct in namespace:llvm
33 explicit Inliner(char &ID);
34 explicit Inliner(char &ID, int Threshold, bool InsertLifetime);
H A DPassManagerBuilder.h99 /// Inliner - Specifies the inliner to use. If this is non-null, it is
101 Pass *Inliner; member in class:llvm::PassManagerBuilder
/external/llvm/lib/Transforms/IPO/
H A DInlineSimple.cpp31 class SimpleInliner : public Inliner {
34 SimpleInliner() : Inliner(ID) {
37 SimpleInliner(int Threshold) : Inliner(ID, Threshold,
H A DInlineAlways.cpp34 class AlwaysInliner : public Inliner {
37 AlwaysInliner() : Inliner(ID, -2000000000, /*InsertLifetime*/true) {
40 AlwaysInliner(bool InsertLifetime) : Inliner(ID, -2000000000,
55 "Inliner for always_inline functions", false, false)
58 "Inliner for always_inline functions", false, false)
H A DPassManagerBuilder.cpp47 Inliner = 0;
56 delete Inliner;
111 if (Inliner) {
112 MPM.add(Inliner);
113 Inliner = 0;
139 if (Inliner) {
140 MPM.add(Inliner);
141 Inliner = 0;
341 Builder->Inliner = createFunctionInliningPass(Threshold);
H A DAndroid.mk15 Inliner.cpp \
H A DInliner.cpp1 //===- Inliner.cpp - Code common to all inliners --------------------------===//
56 Inliner::Inliner(char &ID) function in class:Inliner
59 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime) function in class:Inliner
67 void Inliner::getAnalysisUsage(AnalysisUsage &Info) const {
204 unsigned Inliner::getInlineThreshold(CallSite CS) const {
228 bool Inliner::shouldInline(CallSite CS) {
340 bool Inliner::runOnSCC(CallGraphSCC &SCC) {
346 DEBUG(dbgs() << "Inliner visitin
[all...]
/external/llvm/tools/bugpoint/
H A Dbugpoint.cpp165 Builder.Inliner = createFunctionInliningPass();
178 Builder.Inliner = createAlwaysInlinerPass();
180 Builder.Inliner = createFunctionInliningPass(225);
182 Builder.Inliner = createFunctionInliningPass(275);
/external/clang/lib/CodeGen/
H A DBackendUtil.cpp208 PMBuilder.Inliner = createFunctionInliningPass(Threshold);
215 PMBuilder.Inliner = createAlwaysInlinerPass(false);
217 PMBuilder.Inliner = createAlwaysInlinerPass();
/external/llvm/tools/opt/
H A Dopt.cpp437 Builder.Inliner = createFunctionInliningPass(Threshold);
439 Builder.Inliner = createAlwaysInlinerPass();
461 Builder.Inliner = createFunctionInliningPass();

Completed in 237 milliseconds