HomeSort by: relevance | last modified time | path
    Searched refs:LegacyInlinerBase (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
InlineSimple.cpp 38 class SimpleInliner : public LegacyInlinerBase {
43 SimpleInliner() : LegacyInlinerBase(ID), Params(llvm::getInlineParams()) {
48 : LegacyInlinerBase(ID), Params(std::move(Params)) {
118 return LegacyInlinerBase::runOnSCC(SCC);
123 LegacyInlinerBase::getAnalysisUsage(AU);
AlwaysInliner.cpp 133 class AlwaysInlinerLegacyPass : public LegacyInlinerBase {
136 AlwaysInlinerLegacyPass() : LegacyInlinerBase(ID, /*InsertLifetime*/ true) {
141 : LegacyInlinerBase(ID, InsertLifetime) {
Inliner.cpp 102 LegacyInlinerBase::LegacyInlinerBase(char &ID) : CallGraphSCCPass(ID) {}
104 LegacyInlinerBase::LegacyInlinerBase(char &ID, bool InsertLifetime)
110 void LegacyInlinerBase::getAnalysisUsage(AnalysisUsage &AU) const {
285 bool LegacyInlinerBase::doInitialization(CallGraph &CG) {
291 bool LegacyInlinerBase::runOnSCC(CallGraphSCC &SCC) {
533 bool LegacyInlinerBase::inlineCalls(CallGraphSCC &SCC) {
551 bool LegacyInlinerBase::doFinalization(CallGraph &CG) {
559 bool LegacyInlinerBase::removeDeadFunctions(CallGraph &CG
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
Inliner.h 31 struct LegacyInlinerBase : public CallGraphSCCPass {
32 explicit LegacyInlinerBase(char &ID);
33 explicit LegacyInlinerBase(char &ID, bool InsertLifetime);

Completed in 19 milliseconds