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

  /external/llvm/include/llvm/Analysis/
DominanceFrontierImpl.h 131 const std::set<BlockT *> &BBs = I->second;
133 for (const BlockT *BB : BBs) {
  /external/llvm/include/llvm/IR/
InstIterator.h 35 BB_t *BBs; // BasicBlocksType
51 : BBs(II.BBs), BB(II.BB), BI(II.BI) {}
55 : BBs(II.BBs), BB(II.BB), BI(II.BI) {}
58 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
59 if (BB != BBs->end()) {
66 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end cto
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 244 SmallPtrSet<BasicBlock *, 8> BBs;
247 BBs.insert(findMatInsertPt(U.Inst, U.OpndIdx)->getParent());
249 if (BBs.count(Entry))
252 while (BBs.size() >= 2) {
254 BB1 = *BBs.begin();
255 BB2 = *std::next(BBs.begin());
259 BBs.erase(BB1);
260 BBs.erase(BB2);
261 BBs.insert(BB);
263 assert((BBs.size() == 1) && "Expected only one element.")
    [all...]
PlaceSafepoints.cpp 792 std::set<BasicBlock *> BBs; // new BBs + insertee
808 scanInlinedCode(&*(start), &*(after), calls, BBs);
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 428 /// to BBs and other ways of implementation (see below).
436 /// fact BBs are ordered in function. And since cmpValues are called during
437 /// this walk, the numbering depends only on how BBs located inside the CFG.
446 /// could be operands from further BBs we didn't scan yet.
761 // They are BBs in the same function. Order by which comes first in the
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 201 milliseconds