HomeSort by relevance Sort by last modified time
    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 108 /// Inliner - Specifies the inliner to use. If this is non-null, it is
110 Pass *Inliner;
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 1 //===- Inliner.cpp - Code common to all inliners --------------------------===//
58 // PGO before we actually hook up inliner with analysis passes such as BPI and
67 Inliner::Inliner(char &ID)
70 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime)
78 void Inliner::getAnalysisUsage(AnalysisUsage &AU) const {
150 // and not have the inliner do any merging of allocas at all. This would
254 unsigned Inliner::getInlineThreshold(CallSite CS) const {
297 /// Return true if the inliner should attempt to inline at the given CallSite
    [all...]

Completed in 229 milliseconds