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

  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 757 SmallVector<BasicBlock *, 32> DirtyBlocks;
768 // determine what is dirty, seeding our initial DirtyBlocks worklist.
771 DirtyBlocks.push_back(Entry.getBB());
777 // cerr << "CACHED CASE: " << DirtyBlocks.size() << " dirty: "
780 // Seed DirtyBlocks with each of the preds of QueryInst's block.
783 DirtyBlocks.push_back(Pred);
796 while (!DirtyBlocks.empty()) {
797 BasicBlock *DirtyBB = DirtyBlocks.back();
798 DirtyBlocks.pop_back();
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
MemoryDependenceAnalysis.cpp 596 /// DirtyBlocks - This is the set of blocks that need to be recomputed. In
600 SmallVector<BasicBlock*, 32> DirtyBlocks;
611 // determine what is dirty, seeding our initial DirtyBlocks worklist.
615 DirtyBlocks.push_back(I->getBB());
621 //cerr << "CACHED CASE: " << DirtyBlocks.size() << " dirty: "
624 // Seed DirtyBlocks with each of the preds of QueryInst's block.
627 DirtyBlocks.push_back(*PI);
640 while (!DirtyBlocks.empty()) {
641 BasicBlock *DirtyBB = DirtyBlocks.back();
642 DirtyBlocks.pop_back()
    [all...]

Completed in 134 milliseconds