Home
last modified time | relevance | path

Searched refs:collectInstructions (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DDependenceGraphBuilder.cpp230 N->collectInstructions([](const Instruction *I) { return true; }, SrcIList); in createDefUseEdges()
284 (*SrcIt)->collectInstructions(isMemoryAccess, SrcIList); in createMemoryDependencyEdges()
292 (*DstIt)->collectInstructions(isMemoryAccess, DstIList); in createMemoryDependencyEdges()
H A DDDG.cpp39 bool DDGNode::collectInstructions( in collectInstructions() function in DDGNode
51 PN->collectInstructions(Pred, TmpIList); in collectInstructions()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DDDG.h78 bool collectInstructions(llvm::function_ref<bool(Instruction *)> const &Pred,
460 Src.collectInstructions(isMemoryAccess, SrcIList); in getDependencies()
461 Dst.collectInstructions(isMemoryAccess, DstIList); in getDependencies()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp170 std::pair<InstrListMap, InstrListMap> collectInstructions(BasicBlock *BB);
287 std::tie(LoadRefs, StoreRefs) = collectInstructions(BB); in run()
792 Vectorizer::collectInstructions(BasicBlock *BB) { in collectInstructions() function in Vectorizer