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

  /external/llvm/include/llvm/Analysis/
SparsePropagation.h 123 SmallPtrSet<BasicBlock*, 16> BBExecutable; // The bbs that are executable.
177 return BBExecutable.count(BB);
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 93 BBExecutable.insert(BB); // Basic block is executable!
106 if (BBExecutable.count(Dest)) {
309 if (BBExecutable.count(UI->getParent())) // Inst is executable?
332 if (!BBExecutable.count(BB))
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 159 SmallPtrSet<BasicBlock*, 8> BBExecutable; // The BBs that are executable.
217 if (!BBExecutable.insert(BB).second)
267 return BBExecutable.count(BB);
456 if (BBExecutable.count(I->getParent())) // Inst is executable?
585 assert(BBExecutable.count(To) && "Dest should always be alive!");
588 if (!BBExecutable.count(From)) return false;
    [all...]

Completed in 167 milliseconds