| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DebugCheckers.cpp | 38 CFGDomTree Dom; in checkASTCodeBody() local 39 Dom.buildDominatorTree(AC->getCFG()); in checkASTCodeBody() 40 Dom.dump(); in checkASTCodeBody() 64 CFGPostDomTree Dom; in checkASTCodeBody() local 65 Dom.buildDominatorTree(AC->getCFG()); in checkASTCodeBody() 66 Dom.dump(); in checkASTCodeBody() 90 ControlDependencyCalculator Dom(AC->getCFG()); in checkASTCodeBody() local 91 Dom.dump(); in checkASTCodeBody()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | TLSVariableHoist.cpp | 175 BasicBlock *Dom = Header; in getNearestLoopDomInst() local 177 Dom = DT->findNearestCommonDominator(Dom, PredBB); in getNearestLoopDomInst() 179 assert(Dom && "Not find dominator BB!"); in getNearestLoopDomInst() 180 Instruction *Term = Dom->getTerminator(); in getNearestLoopDomInst()
|
| H A D | SeparateConstOffsetFromGEP.cpp | 1190 if (auto *Dom = findClosestMatchingDominator(Key, I, DominatingAdds)) { in reuniteExts() local 1191 Instruction *NewSExt = new SExtInst(Dom, I->getType(), "", I); in reuniteExts() 1200 if (auto *Dom = in reuniteExts() local 1202 Instruction *NewSExt = new SExtInst(Dom, I->getType(), "", I); in reuniteExts()
|
| H A D | GVN.cpp | 3162 SmallVector<BasicBlock *, 8> Dom; in addDeadBlock() local 3163 DT->getDescendants(D, Dom); in addDeadBlock() 3164 DeadBlocks.insert(Dom.begin(), Dom.end()); in addDeadBlock() 3167 for (BasicBlock *B : Dom) { in addDeadBlock()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | SplitKit.cpp | 1061 if (!Dom.first) { in hoistCopies() 1064 } else if (Dom.first == ValMBB) { in hoistCopies() 1066 if (!Dom.second.isValid() || VNI->def < Dom.second) in hoistCopies() 1067 Dom.second = VNI->def; in hoistCopies() 1075 else if (Near != Dom.first) in hoistCopies() 1084 << printMBBReference(*Dom.first) << ' ' << Dom.second in hoistCopies() 1090 DomPair &Dom = NearestDom[i]; in hoistCopies() local 1091 if (!Dom.first || Dom.second.isValid()) in hoistCopies() 1097 Dom.first = findShallowDominator(Dom.first, DefMBB); in hoistCopies() 1108 Dom.second = defFromParent(0, ParentVNI, LSP, *Dom.first, in hoistCopies() [all …]
|
| H A D | ShrinkWrap.cpp | 376 DominanceAnalysis &Dom, bool Strict = true) { in FindIDom() argument 379 IDom = Dom.findNearestCommonDominator(IDom, BB); in FindIDom()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SILowerI1Copies.cpp | 311 MachineBasicBlock *Dom = CommonDominators[LoopLevel]; local 313 Dom = DT.findNearestCommonDominator(Dom, Incoming.Block); 315 if (!inLoopLevel(*Dom, LoopLevel, Incomings)) { 317 Dom, insertUndefLaneMask(Dom, &MRI, LaneMaskRegAttrs)); 321 for (MachineBasicBlock *Pred : Dom->predecessors()) {
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/FuzzMutate/ |
| H A D | RandomIRBuilder.cpp | 148 for (BasicBlock *Dom : Dominators) { in findOrCreateSource() 150 for (Instruction &I : *Dom) { in findOrCreateSource() 325 for (BasicBlock *Dom : Dominators) { in connectToSink() 326 for (Instruction &I : *Dom) { in connectToSink()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | SafepointIRVerifier.cpp | 169 SmallVector<BasicBlock *, 8> Dom; in addDeadBlock() local 170 DT->getDescendants(const_cast<BasicBlock*>(D), Dom); in addDeadBlock() 174 DeadBlocks.insert(Dom.begin(), Dom.end()); in addDeadBlock() 177 for (BasicBlock *B : Dom) in addDeadBlock()
|
| /freebsd-14.2/share/timedef/ |
| H A D | ga_IE.UTF-8.src | 31 Dom
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonCommonGEP.cpp | 677 BasicBlock *Dom = cast<BasicBlock>(*I); in nearest_common_dominator() local 680 Dom = B ? DT->findNearestCommonDominator(Dom, B) : nullptr; in nearest_common_dominator() 681 if (!Dom) in nearest_common_dominator() 684 LLVM_DEBUG(dbgs() << "computed:" << Dom->getName() << '\n'); in nearest_common_dominator() 685 return Dom; in nearest_common_dominator()
|
| H A D | HexagonISelDAGToDAGHVX.cpp | 1774 SetVector<SDNode*> Dom, NonDom; in select() local 1775 Dom.insert(N0); in select() 1777 auto IsDomRec = [&Dom, &NonDom] (SDNode *T, auto Rec) -> bool { in select() 1778 if (Dom.count(T)) in select() 1790 Dom.insert(T); in select() 1809 for (SDNode *T : Dom) { in select() 1810 unsigned NumDomOps = llvm::count_if(T->ops(), [&Dom](const SDUse &U) { in select() 1811 return Dom.count(U.getNode()); in select()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemorySSA.cpp | 781 auto Dom = Paths.begin(); in tryOptimizePhi() local 782 for (auto I = std::next(Dom), E = Paths.end(); I != E; ++I) in tryOptimizePhi() 783 if (!MSSA.dominates(I->Clobber, Dom->Clobber)) in tryOptimizePhi() 784 Dom = I; in tryOptimizePhi() 786 if (Last != Dom) in tryOptimizePhi() 787 std::iter_swap(Last, Dom); in tryOptimizePhi()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroFrame.cpp | 2686 DominatorTree Dom(F); in sinkSpillUsesAfterCoroBegin() local 2696 Dom.dominates(CoroBegin, Inst)) in sinkSpillUsesAfterCoroBegin() 2707 if (Dom.dominates(CoroBegin, Inst)) in sinkSpillUsesAfterCoroBegin() 2716 llvm::sort(InsertionList, [&Dom](Instruction *A, Instruction *B) -> bool { in sinkSpillUsesAfterCoroBegin() 2718 return Dom.dominates(A, B); in sinkSpillUsesAfterCoroBegin()
|
| /freebsd-14.2/contrib/tzdata/ |
| H A D | northamerica | 3322 -4:40 - SDMT 1933 Apr 1 12:00 # S. Dom. MT
|
| /freebsd-14.2/share/misc/ |
| H A D | pci_vendors | 17460 127a 4311 Ring Modular? Riptide HSF RT HP Dom
|