Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/
H A DDifferenceEngine.cpp222 typedef std::pair<const BasicBlock *, const BasicBlock *> BlockPair; typedef in __anon35eb8c210111::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/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineSink.cpp1486 auto BlockPair = std::make_pair(From, To); in hasStoreBetween() local
1490 if (auto It = HasStoreCache.find(BlockPair); It != HasStoreCache.end()) in hasStoreBetween()
1493 if (auto It = StoreInstrCache.find(BlockPair); It != StoreInstrCache.end()) in hasStoreBetween()
1531 HasStoreCache[BlockPair] = true; in hasStoreBetween()
1545 HasStoreCache[BlockPair] = true; in hasStoreBetween()
1557 StoreInstrCache[BlockPair].push_back(&I); in hasStoreBetween()
1564 HasStoreCache[BlockPair] = false; in hasStoreBetween()
/freebsd/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()