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);
68 // getInlineFudgeFactor - Return a > 1.0 factor if the inliner should use a
90 /// shouldInline - Return true if the inliner should attempt to
  /external/llvm/include/llvm/Support/
PassManagerBuilder.h 91 /// Inliner - Specifies the inliner to use. If this is non-null, it is
93 Pass *Inliner;
108 Inliner = 0;
116 delete Inliner;
162 if (Inliner) {
163 MPM.add(Inliner);
164 Inliner = 0;
187 if (Inliner) {
188 MPM.add(Inliner);
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 1 //===- Inliner.cpp - Code common to all inliners --------------------------===//
50 Inliner::Inliner(char &ID)
53 Inliner::Inliner(char &ID, int Threshold)
60 void Inliner::getAnalysisUsage(AnalysisUsage &Info) const {
110 // and not have the inliner do any merging of allocas at all. This would
197 unsigned Inliner::getInlineThreshold(CallSite CS) const {
216 /// shouldInline - Return true if the inliner should attempt to inline
218 bool Inliner::shouldInline(CallSite CS)
    [all...]

Completed in 1645 milliseconds