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 --------------------------===//
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 &AU) const {
255 unsigned Inliner::getInlineThreshold(CallSite CS) const {
285 bool Inliner::shouldInline(CallSite CS) {
397 bool Inliner::runOnSCC(CallGraphSCC &SCC) {
403 DEBUG(dbgs() << "Inliner visitin
[all...]

Completed in 111 milliseconds