HomeSort by relevance Sort by last modified time
    Searched refs:Inliner (Results 1 - 10 of 10) 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/
InlineSimple.cpp 31 class SimpleInliner : public Inliner {
34 SimpleInliner() : Inliner(ID) {
37 SimpleInliner(int Threshold) : Inliner(ID, Threshold,
InlineAlways.cpp 10 // This file implements a custom inliner that handles only functions that
34 class AlwaysInliner : public Inliner {
37 AlwaysInliner() : Inliner(ID, -2000000000, /*InsertLifetime*/true) {
40 AlwaysInliner(bool InsertLifetime) : Inliner(ID, -2000000000,
55 "Inliner for always_inline functions", false, false)
58 "Inliner for always_inline functions", false, false)
95 /// \brief Get the inline cost for the always-inliner.
97 /// The always inliner *only* handles functions which are marked with the
PassManagerBuilder.cpp 47 Inliner = 0;
56 delete Inliner;
111 if (Inliner) {
112 MPM.add(Inliner);
113 Inliner = 0;
139 if (Inliner) {
140 MPM.add(Inliner);
141 Inliner = 0;
255 // Optimize globals again if we ran the inliner.
341 Builder->Inliner = createFunctionInliningPass(Threshold)
    [all...]
Android.mk 15 Inliner.cpp \
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...]
  /external/llvm/tools/bugpoint/
bugpoint.cpp 165 Builder.Inliner = createFunctionInliningPass();
178 Builder.Inliner = createAlwaysInlinerPass();
180 Builder.Inliner = createFunctionInliningPass(225);
182 Builder.Inliner = createFunctionInliningPass(275);
  /external/clang/lib/CodeGen/
BackendUtil.cpp 194 PMBuilder.Inliner = createFunctionInliningPass(Threshold);
201 PMBuilder.Inliner = createAlwaysInlinerPass(false);
203 PMBuilder.Inliner = createAlwaysInlinerPass();
  /external/llvm/tools/opt/
opt.cpp 87 DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
424 Builder.Inliner = createFunctionInliningPass(Threshold);
426 Builder.Inliner = createAlwaysInlinerPass();
448 Builder.Inliner = createFunctionInliningPass();

Completed in 433 milliseconds