Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixIrreducibleControlFlow.cpp67 using BlockSet = SmallPtrSet<MachineBasicBlock *, 4>; typedef
69 static BlockVector getSortedEntries(const BlockSet &Entries) { in getSortedEntries()
85 ReachabilityGraph(MachineBasicBlock *Entry, const BlockSet &Blocks) in ReachabilityGraph()
110 const BlockSet &getLoopers() const { return Loopers; } in getLoopers()
113 const BlockSet &getLoopEntries() const { return LoopEntries; } in getLoopEntries()
116 const BlockSet &getLoopEnterers(MachineBasicBlock *LoopEntry) const { in getLoopEnterers()
125 const BlockSet &Blocks;
127 BlockSet Loopers, LoopEntries;
128 DenseMap<MachineBasicBlock *, BlockSet> LoopEnterers;
133 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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DReachingDefAnalysis.h108 using BlockSet = SmallPtrSetImpl<MachineBasicBlock*>;
193 BlockSet &VisitedBBs) const;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h585 using BlockSet = DenseSet<Block *>; variable
591 using block_iterator = BlockSet::iterator;
592 using const_block_iterator = BlockSet::const_iterator;
663 BlockSet Blocks;
712 using BlockSet = DenseSet<Block *>; variable
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h604 void collectBlocks(SmallPtrSetImpl<BasicBlock *> &BlockSet,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp247 SmallPtrSet<BasicBlock *, 8> BlockSet; in PGOCounterPromoter() local
254 if (BlockSet.insert(ExitBlock).second) { in PGOCounterPromoter()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DReachingDefAnalysis.cpp415 BlockSet &VisitedBBs) const { in getLiveOuts()
H A DMachineVerifier.cpp109 using BlockSet = SmallPtrSet<const MachineBasicBlock *, 8>; typedef
113 BlockSet FunctionBlocks;
155 BlockSet Preds, Succs;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp2600 SmallPtrSetImpl<BasicBlock *> &BlockSet, in collectBlocks() argument
2603 BlockSet.insert(EntryBB); in collectBlocks()
2604 BlockSet.insert(ExitBB); in collectBlocks()
2611 if (BlockSet.insert(SuccBB).second) in collectBlocks()