Home
last modified time | relevance | path

Searched refs:BlockPair (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-diff/lib/
H A DDifferenceEngine.cpp222 typedef std::pair<const BasicBlock *, const BasicBlock *> BlockPair; typedef in __anoncf3dc2d70111::FunctionDifferenceEngine
232 bool operator()(BlockPair &Old, BlockPair &New) { in operator ()()
239 PriorityQueue<BlockPair, QueueSorter, 20> Queue;
258 Queue.insert(BlockPair(L, R)); in tryUnify()
276 BlockPair Pair = Queue.remove_min(); in processQueue()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineSink.cpp1433 auto BlockPair = std::make_pair(From, To); in hasStoreBetween() local
1437 if (auto It = HasStoreCache.find(BlockPair); It != HasStoreCache.end()) in hasStoreBetween()
1440 if (auto It = StoreInstrCache.find(BlockPair); It != StoreInstrCache.end()) in hasStoreBetween()
1478 HasStoreCache[BlockPair] = true; in hasStoreBetween()
1492 HasStoreCache[BlockPair] = true; in hasStoreBetween()
1504 StoreInstrCache[BlockPair].push_back(&I); in hasStoreBetween()
1511 HasStoreCache[BlockPair] = false; in hasStoreBetween()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixIrreducibleControlFlow.cpp139 using BlockPair = std::pair<MachineBasicBlock *, MachineBasicBlock *>; in calculate() typedef
140 SmallVector<BlockPair, 4> WorkList; in calculate()