Searched defs:Inliner (Results 1 - 3 of 3) 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 DInliner.cpp1 //===- Inliner.cpp - Code common to all inliners --------------------------===//
55 Inliner::Inliner(char &ID) function in class:Inliner
58 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime) function in class:Inliner
66 void Inliner::getAnalysisUsage(AnalysisUsage &Info) const {
203 unsigned Inliner::getInlineThreshold(CallSite CS) const {
224 bool Inliner::shouldInline(CallSite CS) {
336 bool Inliner::runOnSCC(CallGraphSCC &SCC) {
341 DEBUG(dbgs() << "Inliner visitin
[all...]

Completed in 450 milliseconds