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

  /external/llvm/include/llvm/Support/
InstIterator.h 36 _BB_t *BBs; // BasicBlocksType
52 : BBs(II.BBs), BB(II.BB), BI(II.BI) {}
56 : BBs(II.BBs), BB(II.BB), BI(II.BI) {}
59 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
60 if (BB != BBs->end()) {
67 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end cto
    [all...]
  /external/llvm/lib/Analysis/
DominanceFrontier.cpp 122 const std::set<BasicBlock*> &BBs = I->second;
124 for (std::set<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
RegionInfo.cpp 131 // BBs that are not part of any loop are element of the Loop
700 // starting with BB is stored. These regions can be threated as single BBS.
824 RegionInfo::getCommonRegion(SmallVectorImpl<BasicBlock*> &BBs) const {
825 Region* ret = getRegionFor(BBs.back());
826 BBs.pop_back();
828 for (SmallVectorImpl<BasicBlock*>::const_iterator I = BBs.begin(),
829 E = BBs.end(); I != E; ++I)
  /external/llvm/include/llvm/Transforms/Utils/
CodeExtractor.h 69 CodeExtractor(ArrayRef<BasicBlock *> BBs, DominatorTree *DT = 0,
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 490 bool TestFuncs(const std::vector<BasicBlock*> &BBs, std::string &Error);
497 bool ReduceMiscompiledBlocks::TestFuncs(const std::vector<BasicBlock*> &BBs,
502 if (!BBs.empty()) {
503 outs() << "but these " << BBs.size() << " blocks are extracted: ";
504 for (unsigned i = 0, e = BBs.size() < 10 ? BBs.size() : 10; i != e; ++i)
505 outs() << BBs[i]->getName() << " ";
506 if (BBs.size() > 10) outs() << "...";
522 for (unsigned i = 0, e = BBs.size(); i != e; ++i) {
523 BasicBlock *BB = cast<BasicBlock>(VMap[BBs[i]])
    [all...]
CrashDebugger.cpp 270 bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) {
277 for (unsigned i = 0, e = BBs.size(); i != e; ++i)
278 Blocks.insert(cast<BasicBlock>(VMap[BBs[i]]));
284 outs() << " " << BBs[i]->getName();
338 BBs.clear();
345 BBs.push_back(cast<BasicBlock>(V));
ExtractFunction.cpp 360 /// cloned from the one the BBs are in, so some mapping needs to be performed.
364 std::vector<BasicBlock*> &BBs,
379 for (std::vector<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
BugDriver.h 234 /// cloned from the one the BBs are in, so some mapping needs to be performed.
237 Module *ExtractMappedBlocksFromModule(const std::vector<BasicBlock*> &BBs,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_bb.cpp 66 for (ArrayList::Iterator BBs = allBBlocks.iterator(); !BBs.end(); BBs.next())
67 delete reinterpret_cast<BasicBlock *>(BBs.get());
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_bb.cpp 66 for (ArrayList::Iterator BBs = allBBlocks.iterator(); !BBs.end(); BBs.next())
67 delete reinterpret_cast<BasicBlock *>(BBs.get());
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 104 buildExtractionBlockSet(ArrayRef<BasicBlock *> BBs) {
105 return buildExtractionBlockSet(BBs.begin(), BBs.end());
124 CodeExtractor::CodeExtractor(ArrayRef<BasicBlock *> BBs, DominatorTree *DT,
127 Blocks(buildExtractionBlockSet(BBs)), NumExitBlocks(~0U) {}
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
RegionInfo.h 229 /// verifyWalk - Walk over all the BBs of the region starting from BB and
708 /// @param BBs A vector of basic blocks.
709 /// @return The smallest region that contains all basic blocks in BBS.
710 Region* getCommonRegion(SmallVectorImpl<BasicBlock*> &BBs) const;
  /external/valgrind/main/none/tests/
cmdline2.stdout.exp 100 --trace-notbelow=<number> only show BBs above <number> [999999999]
101 --trace-notabove=<number> only show BBs below <number> [0]

Completed in 1774 milliseconds