HomeSort by relevance Sort by last modified time
    Searched defs:PassInf (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/LLVM/lib/VMCore/
PassManager.cpp 92 const llvm::PassInfo *PassInf = PassesToPrint[i];
93 if (PassInf)
94 if (PassInf->getPassArgument() == PI->getPassArgument()) {
687 const PassInfo *PassInf =
689 assert(PassInf && "Expected all immutable passes to be initialized");
691 PassInf->getInterfacesImplemented();
    [all...]
  /external/swiftshader/third_party/LLVM/tools/opt/
opt.cpp 624 const PassInfo *PassInf = PassList[i];
626 if (PassInf->getNormalCtor())
627 P = PassInf->getNormalCtor()();
630 << PassInf->getPassName() << "\n";
638 Passes.add(new BasicBlockPassPrinter(PassInf, Out->os()));
641 Passes.add(new RegionPassPrinter(PassInf, Out->os()));
644 Passes.add(new LoopPassPrinter(PassInf, Out->os()));
647 Passes.add(new FunctionPassPrinter(PassInf, Out->os()));
650 Passes.add(new CallGraphSCCPassPrinter(PassInf, Out->os()));
653 Passes.add(new ModulePassPrinter(PassInf, Out->os()));
    [all...]
  /external/llvm/lib/IR/
LegacyPassManager.cpp 99 for (auto *PassInf : PassesToPrint) {
100 if (PassInf)
101 if (PassInf->getPassArgument() == PI->getPassArgument()) {
746 const PassInfo *PassInf = findAnalysisPassInfo(AID);
747 assert(PassInf && "Expected all immutable passes to be initialized");
748 for (const PassInfo *ImmPI : PassInf->getInterfacesImplemented())
    [all...]

Completed in 203 milliseconds