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

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
AddDiscriminators.cpp 203 auto &BBMap = LBM[L];
204 auto R = BBMap.insert(&B);
205 if (BBMap.size() == 1)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
WebAssemblyExceptionInfo.h 120 DenseMap<const MachineBasicBlock *, WebAssemblyException *> BBMap;
149 return BBMap.lookup(MBB);
154 BBMap.erase(MBB);
157 BBMap[MBB] = WE;
WebAssemblyExceptionInfo.cpp 85 BBMap.clear();
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 58 BBMapTy BBMap;
85 return BBMap[BB]->DefBB->AvailableVal;
97 BBMap[BB] = Info;
118 // Check if BBMap already has a BBInfo for the predecessor block.
120 BBMap.FindAndConstruct(Pred);
177 BBInfo *SuccInfo = BBMap[*SI];
386 /// in the BBMap.
392 BBMap[PHI->getParent()]->PHITag = PHI;
401 BBInfo *PredInfo = BBMap[I.getIncomingBlock()];
433 /// PHIs in both the BBMap and the AvailableVals mapping
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 481 // BBMap - Mapping of basic blocks to the inner most loop they occur in
482 DenseMap<const BlockT *, LoopT *> BBMap;
496 : BBMap(std::move(Arg.BBMap)),
502 BBMap = std::move(RHS.BBMap);
512 BBMap.clear();
536 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); }
572 BBMap.erase(BB);
575 BBMap[BB] = L
    [all...]
LoopInfoImpl.h 196 LIB.BBMap[NewBB] = L;
512 for (DenseMap<BasicBlock*, LoopT*>::const_iterator I = BBMap.begin(),
513 E = BBMap.end(); I != E; ++I)
529 for (auto &Entry : BBMap) {
  /external/llvm/lib/Transforms/Utils/
AddDiscriminators.cpp 193 auto &BBMap = LBM[L];
194 auto R = BBMap.insert(std::make_pair(&B, (Metadata *)nullptr));
195 if (BBMap.size() == 1)
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
LoopInfo.h 605 // BBMap - Mapping of basic blocks to the inner most loop they occur in
606 DenseMap<const BlockT *, LoopT *> BBMap;
621 : BBMap(std::move(Arg.BBMap)),
628 BBMap = std::move(RHS.BBMap);
640 BBMap.clear();
684 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); }
718 BBMap.erase(BB);
721 BBMap[BB] = L
    [all...]
LoopInfoImpl.h 267 LIB.BBMap[NewBB] = L;
634 for (DenseMap<BasicBlock*, LoopT*>::const_iterator I = BBMap.begin(),
635 E = BBMap.end(); I != E; ++I)
711 for (auto &Entry : BBMap) {
718 "BBMap should point to the innermost loop containing BB");
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 69 BBMapTy BBMap;
96 return BBMap[BB]->DefBB->AvailableVal;
108 BBMap[BB] = Info;
129 // Check if BBMap already has a BBInfo for the predecessor block.
131 BBMap.FindAndConstruct(Pred);
188 BBInfo *SuccInfo = BBMap[*SI];
397 /// in the BBMap.
403 BBMap[PHI->getParent()]->PHITag = PHI;
412 BBInfo *PredInfo = BBMap[I.getIncomingBlock()];
444 /// the BBMap and the AvailableVals mapping
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
LoopInfo.h 641 // BBMap - Mapping of basic blocks to the inner most loop they occur in
642 DenseMap<BlockT *, LoopT *> BBMap;
658 BBMap.clear(); // Reset internal state of analysis
675 BBMap.find(const_cast<BlockT*>(BB));
676 return I != BBMap.end() ? I->second : 0;
715 typename DenseMap<BlockT *, LoopT *>::iterator I = BBMap.find(BB);
716 if (I != BBMap.end())
717 BBMap.erase(I);
720 BBMap[BB] = L;
746 typename DenseMap<BlockT *, LoopT *>::iterator I = BBMap.find(BB)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 82 BBMapTy BBMap;
109 return BBMap[BB]->DefBB->AvailableVal;
121 BBMap[BB] = Info;
141 // Check if BBMap already has a BBInfo for the predecessor block.
143 BBMap.FindAndConstruct(Pred);
200 BBInfo *SuccInfo = BBMap[*SI];
404 /// in the BBMap.
410 BBMap[PHI->getParent()]->PHITag = PHI;
419 BBInfo *PredInfo = BBMap[I.getIncomingBlock()];
451 /// the BBMap and the AvailableVals mapping
    [all...]
  /external/llvm/tools/llvm-c-test/
echo.cpp 342 BasicBlockMap BBMap;
666 auto i = BBMap.find(Src);
667 if (i != BBMap.end()) {
682 return BBMap[Src] = BB;
  /external/swiftshader/third_party/LLVM/lib/Analysis/
LoopInfo.cpp 678 for (DenseMap<BasicBlock*, Loop*>::const_iterator I = LI.BBMap.begin(),
679 E = LI.BBMap.end(); I != E; ++I) {
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/
echo.cpp 361 BasicBlockMap BBMap;
738 auto i = BBMap.find(Src);
739 if (i != BBMap.end()) {
755 return BBMap[Src] = BB;
    [all...]

Completed in 750 milliseconds