Home
last modified time | relevance | path

Searched refs:BlockSet (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixIrreducibleControlFlow.cpp68 using BlockSet = SmallPtrSet<MachineBasicBlock *, 4>; typedef
70 static BlockVector getSortedEntries(const BlockSet &Entries) { in getSortedEntries()
86 ReachabilityGraph(MachineBasicBlock *Entry, const BlockSet &Blocks) in ReachabilityGraph()
111 const BlockSet &getLoopers() const { return Loopers; } in getLoopers()
114 const BlockSet &getLoopEntries() const { return LoopEntries; } in getLoopEntries()
117 const BlockSet &getLoopEnterers(MachineBasicBlock *LoopEntry) const { in getLoopEnterers()
126 const BlockSet &Blocks;
128 BlockSet Loopers, LoopEntries;
129 DenseMap<MachineBasicBlock *, BlockSet> LoopEnterers;
134 DenseMap<MachineBasicBlock *, BlockSet> Reachable;
[all …]
H A DWebAssemblyExceptionInfo.h48 SmallPtrSet<MachineBasicBlock *, 8> BlockSet; variable
68 return BlockSet.count(MBB); in contains()
71 void addToBlocksSet(MachineBasicBlock *MBB) { BlockSet.insert(MBB); } in addToBlocksSet()
72 void removeFromBlocksSet(MachineBasicBlock *MBB) { BlockSet.erase(MBB); } in removeFromBlocksSet()
76 BlockSet.insert(MBB); in addBlock()
87 SmallPtrSetImpl<MachineBasicBlock *> &getBlocksSet() { return BlockSet; } in getBlocksSet()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DBlockCoverageInference.h33 using BlockSet = SmallSetVector<const BasicBlock *, 4>;
42 BlockSet getDependencies(const BasicBlock &BB) const;
64 DenseMap<const BasicBlock *, BlockSet> PredecessorDependencies;
68 DenseMap<const BasicBlock *, BlockSet> SuccessorDependencies;
76 bool IsForward, BlockSet &Reachable) const;
79 static std::string getBlockNames(BlockSet BBs) { in getBlockNames()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DBlockCoverageInference.cpp64 BlockCoverageInference::BlockSet
67 BlockSet Dependencies; in getDependencies()
137 BlockSet ReachableFromEntry, ReachableFromTerminal; in findDependencies()
175 DenseMap<const BasicBlock *, BlockSet> AdjacencyList; in findDependencies()
187 auto getNextOnPath = [&](BlockSet &Path) -> const BasicBlock * { in findDependencies()
209 BlockSet Path; in findDependencies()
237 BlockSet &Reachable) const { in getReachableAvoiding()
H A DInstrProfiling.cpp509 SmallPtrSet<BasicBlock *, 8> BlockSet; in PGOCounterPromoter() local
516 if (BlockSet.insert(ExitBlock).second && in PGOCounterPromoter()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVStructurizer.cpp38 using BlockSet = std::unordered_set<BasicBlock *>; typedef
343 BlockSet OutsideBlocks; in getSelectionConstructBlocks()
767 std::vector<Edge> getExitsFrom(const BlockSet &Construct, in getExitsFrom()
786 void constructDivergentConstruct(BlockSet &Visited, Splitter &S, in constructDivergentConstruct()
823 BlockSet getConstructBlocks(Splitter &S, DivergentConstruct *Node) { in getConstructBlocks()
828 return BlockSet(LoopBlocks.begin(), LoopBlocks.end()); in getConstructBlocks()
832 return BlockSet(SelectionBlocks.begin(), SelectionBlocks.end()); in getConstructBlocks()
857 BlockSet ConstructBlocks = getConstructBlocks(S, Node); in fixupConstruct()
922 BlockSet Visited; in splitCriticalEdges()
972 BlockSet Seen; in splitSwitchCases()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DReachingDefAnalysis.h156 using BlockSet = SmallPtrSetImpl<MachineBasicBlock*>;
239 BlockSet &VisitedBBs) const;
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h726 using BlockSet = DenseSet<Block *>; variable
732 using block_iterator = BlockSet::iterator;
733 using const_block_iterator = BlockSet::const_iterator;
779 BlockSet::size_type blocks_size() const { return Blocks.size(); } in blocks_size()
830 BlockSet Blocks;
884 using BlockSet = DenseSet<Block *>; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DReachingDefAnalysis.cpp504 BlockSet &VisitedBBs) const { in getLiveOuts()
H A DMachineVerifier.cpp144 using BlockSet = SmallPtrSet<const MachineBasicBlock *, 8>; typedef
148 BlockSet FunctionBlocks;
190 BlockSet Preds, Succs;
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h2168 LLVM_ABI void collectBlocks(SmallPtrSetImpl<BasicBlock *> &BlockSet,
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp9627 SmallPtrSetImpl<BasicBlock *> &BlockSet, in collectBlocks() argument
9630 BlockSet.insert(EntryBB); in collectBlocks()
9631 BlockSet.insert(ExitBB); in collectBlocks()
9638 if (BlockSet.insert(SuccBB).second) in collectBlocks()