HomeSort by relevance Sort by last modified time
    Searched refs:Inliner (Results 1 - 23 of 23) sorted by null

  /external/llvm/lib/Transforms/IPO/
InlineSimple.cpp 36 /// \brief Actual inliner pass implementation.
39 /// inliner pass and the always inliner pass. The two passes use different cost
41 class SimpleInliner : public Inliner {
50 : Inliner(ID), DefaultThreshold(llvm::getDefaultInlineThreshold()) {
55 : Inliner(ID), DefaultThreshold(Threshold) {
101 return Inliner::runOnSCC(SCC);
106 Inliner::getAnalysisUsage(AU);
InlineAlways.cpp 10 // This file implements a custom inliner that handles only functions that
37 /// \brief Inliner pass which only handles "always inline" functions.
38 class AlwaysInliner : public Inliner {
41 AlwaysInliner() : Inliner(ID, /*InsertLifetime*/ true) {
45 AlwaysInliner(bool InsertLifetime) : Inliner(ID, InsertLifetime) {
66 "Inliner for always_inline functions", false, false)
72 "Inliner for always_inline functions", false, false)
80 /// \brief Get the inline cost for the always-inliner.
82 /// The always inliner *only* handles functions which are marked with the
Inliner.cpp 1 //===- Inliner.cpp - Code common to all inliners --------------------------===//
50 Inliner::Inliner(char &ID) : CallGraphSCCPass(ID), InsertLifetime(true) {}
52 Inliner::Inliner(char &ID, bool InsertLifetime)
58 void Inliner::getAnalysisUsage(AnalysisUsage &AU) const {
114 // and not have the inliner do any merging of allocas at all. This would
232 bool Inliner::shouldBeDeferred(Function *Caller, CallSite CS, InlineCost IC,
302 /// Return true if the inliner should attempt to inline at the given CallSite.
303 bool Inliner::shouldInline(CallSite CS)
    [all...]
PassManagerBuilder.cpp 132 Inliner = nullptr;
154 delete Inliner;
340 if (Inliner) {
341 MPM.add(Inliner);
342 Inliner = nullptr;
345 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly
400 if (Inliner) {
401 MPM.add(Inliner);
402 Inliner = nullptr;
411 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSC
    [all...]
  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 10 // This file defines a simple policy-based bottom-up inliner. This file
30 /// Inliner - This class contains all of the helper code which is used to
33 struct Inliner : public CallGraphSCCPass {
34 explicit Inliner(char &ID);
35 explicit Inliner(char &ID, bool InsertLifetime);
76 /// shouldInline - Return true if the inliner should attempt to
PassManagerBuilder.h 118 /// Inliner - Specifies the inliner to use. If this is non-null, it is
120 Pass *Inliner;
  /external/swiftshader/third_party/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
PassManagerBuilder.h 86 /// Inliner - Specifies the inliner to use. If this is non-null, it is
88 Pass *Inliner;
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
InlineSimple.cpp 32 class SimpleInliner : public Inliner {
37 SimpleInliner() : Inliner(ID) {
40 SimpleInliner(int Threshold) : Inliner(ID, Threshold) {
PassManagerBuilder.cpp 37 Inliner = 0;
45 delete Inliner;
100 if (Inliner) {
101 MPM.add(Inliner);
102 Inliner = 0;
125 if (Inliner) {
126 MPM.add(Inliner);
127 Inliner = 0;
230 // Optimize globals again if we ran the inliner.
316 Builder->Inliner = createFunctionInliningPass(Threshold)
    [all...]
InlineAlways.cpp 10 // This file implements a custom inliner that handles only functions that
34 class AlwaysInliner : public Inliner {
40 AlwaysInliner() : Inliner(ID, -2000000000) {
68 "Inliner for always_inline functions", false, false)
71 "Inliner for always_inline functions", false, false)
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...]
  /external/llvm/tools/bugpoint/
bugpoint.cpp 171 Builder.Inliner = createFunctionInliningPass();
178 Builder.Inliner = createAlwaysInlinerPass();
180 Builder.Inliner = createFunctionInliningPass(225);
182 Builder.Inliner = createFunctionInliningPass(275);
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
bugpoint.cpp 164 Builder.Inliner = createFunctionInliningPass();
177 Builder.Inliner = createAlwaysInlinerPass();
179 Builder.Inliner = createFunctionInliningPass(225);
181 Builder.Inliner = createFunctionInliningPass(275);
  /external/llvm/bindings/ocaml/transforms/passmgr_builder/
llvm_passmgr_builder.mli 37 (** See the [llvm::PassManagerBuilder::Inliner] function. *)
  /external/llvm/tools/opt/
opt.cpp 113 DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
245 Builder.Inliner = createFunctionInliningPass(OptLevel, SizeLevel);
247 Builder.Inliner = createAlwaysInlinerPass();
283 Builder.Inliner = createFunctionInliningPass();
  /external/swiftshader/third_party/LLVM/tools/opt/
opt.cpp 87 DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
419 Builder.Inliner = createFunctionInliningPass(Threshold);
421 Builder.Inliner = createAlwaysInlinerPass();
443 Builder.Inliner = createFunctionInliningPass();
  /external/clang/lib/CodeGen/
BackendUtil.cpp 339 PMBuilder.Inliner =
347 PMBuilder.Inliner = createAlwaysInlinerPass(false);
349 PMBuilder.Inliner = createAlwaysInlinerPass();
    [all...]
  /frameworks/compile/libbcc/lib/
Compiler.cpp 250 Builder.Inliner = llvm::createFunctionInliningPass();
  /external/llvm/lib/LTO/
LTOCodeGenerator.cpp 542 PMB.Inliner = createFunctionInliningPass();
ThinLTOCodeGenerator.cpp 160 PMB.Inliner = createFunctionInliningPass();
  /external/llvm/tools/gold/
gold-plugin.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/google/errorprone/error_prone_core/2.0.18/
error_prone_core-2.0.18.jar 

Completed in 6530 milliseconds