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

  /external/llvm/include/llvm/Analysis/
LoopPass.h 108 assert(N < PassVector.size() && "Pass number out of range!");
109 LoopPass *LP = static_cast<LoopPass *>(PassVector[N]);
RegionPass.h 114 assert(N < PassVector.size() && "Pass number out of range!");
115 Pass *FP = static_cast<Pass *>(PassVector[N]);
  /external/llvm/include/llvm/
PassManagers.h 290 /// Add pass P into the PassVector. Update
346 return (unsigned)PassVector.size();
372 SmallVector<Pass *, 16> PassVector;
446 assert ( N < PassVector.size() && "Pass number out of range!");
447 FunctionPass *FP = static_cast<FunctionPass *>(PassVector[N]);
  /external/llvm/lib/VMCore/
PassManager.cpp 198 assert(N < PassVector.size() && "Pass number out of range!");
199 BasicBlockPass *BP = static_cast<BasicBlockPass *>(PassVector[N]);
349 assert(N < PassVector.size() && "Pass number out of range!");
350 return static_cast<ModulePass *>(PassVector[N]);
932 /// Add pass P into the PassVector. Update
946 PassVector.push_back(P);
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 82 assert(N < PassVector.size() && "Pass number out of range!");
83 return static_cast<Pass *>(PassVector[N]);

Completed in 59 milliseconds