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);
83 /// shouldInline - Return true if the inliner should attempt to
PassManagerBuilder.h 99 /// Inliner - Specifies the inliner to use. If this is non-null, it is
101 Pass *Inliner;
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 1 //===- Inliner.cpp - Code common to all inliners --------------------------===//
55 Inliner::Inliner(char &ID)
58 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime)
66 void Inliner::getAnalysisUsage(AnalysisUsage &Info) const {
116 // and not have the inliner do any merging of allocas at all. This would
203 unsigned Inliner::getInlineThreshold(CallSite CS) const {
222 /// shouldInline - Return true if the inliner should attempt to inline
224 bool Inliner::shouldInline(CallSite CS)
    [all...]

Completed in 36 milliseconds