HomeSort by relevance Sort by last modified time
    Searched refs:BBs (Results 1 - 12 of 12) 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/include/llvm/Transforms/Utils/
FunctionUtils.h 41 Function* ExtractBasicBlock(ArrayRef<BasicBlock*> BBs,
  /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 99 // BBs that are not part of any loop are element of the Loop
682 // starting with BB is stored. These regions can be threated as single BBS.
806 RegionInfo::getCommonRegion(SmallVectorImpl<BasicBlock*> &BBs) const {
807 Region* ret = getRegionFor(BBs.back());
808 BBs.pop_back();
810 for (SmallVectorImpl<BasicBlock*>::const_iterator I = BBs.begin(),
811 E = BBs.end(); I != E; ++I)
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 455 bool TestFuncs(const std::vector<BasicBlock*> &BBs, std::string &Error);
462 bool ReduceMiscompiledBlocks::TestFuncs(const std::vector<BasicBlock*> &BBs,
467 if (!BBs.empty()) {
468 outs() << "but these " << BBs.size() << " blocks are extracted: ";
469 for (unsigned i = 0, e = BBs.size() < 10 ? BBs.size() : 10; i != e; ++i)
470 outs() << BBs[i]->getName() << " ";
471 if (BBs.size() > 10) outs() << "...";
487 for (unsigned i = 0, e = BBs.size(); i != e; ++i) {
488 BasicBlock *BB = cast<BasicBlock>(VMap[BBs[i]])
    [all...]
CrashDebugger.cpp 272 bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) {
279 for (unsigned i = 0, e = BBs.size(); i != e; ++i)
280 Blocks.insert(cast<BasicBlock>(VMap[BBs[i]]));
286 outs() << " " << BBs[i]->getName();
340 BBs.clear();
347 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,
385 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/llvm/include/llvm/Analysis/
RegionInfo.h 233 /// verifyWalk - Walk over all the BBs of the region starting from BB and
657 /// @param BBs A vector of basic blocks.
658 /// @return The smallest region that contains all basic blocks in BBS.
659 Region* getCommonRegion(SmallVectorImpl<BasicBlock*> &BBs) const;
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 795 Function* llvm::ExtractBasicBlock(ArrayRef<BasicBlock*> BBs, bool AggregateArgs){
796 return CodeExtractor(0, AggregateArgs).ExtractCodeRegion(BBs);
  /external/valgrind/main/none/tests/
cmdline2.stdout.exp 92 --trace-notbelow=<number> only show BBs above <number> [999999999]

Completed in 374 milliseconds