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.h109 /// Inliner - Specifies the inliner to use. If this is non-null, it is
111 Pass *Inliner; member in class:llvm::PassManagerBuilder
/external/llvm/lib/Transforms/IPO/
H A DInliner.cpp1 //===- Inliner.cpp - Code common to all inliners --------------------------===//
65 Inliner::Inliner(char &ID) function in class:Inliner
68 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime) function in class:Inliner
76 void Inliner::getAnalysisUsage(AnalysisUsage &AU) const {
264 unsigned Inliner::getInlineThreshold(CallSite CS) const {
313 bool Inliner::shouldInline(CallSite CS) {
441 bool Inliner::runOnSCC(CallGraphSCC &SCC) {
448 DEBUG(dbgs() << "Inliner visitin
[all...]

Completed in 91 milliseconds