Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/Analysis/
DDependenceGraphBuilder.cpp231 N->collectInstructions([](const Instruction *I) { return true; }, SrcIList); in createDefUseEdges()
285 (*SrcIt)->collectInstructions(isMemoryAccess, SrcIList); in createMemoryDependencyEdges()
293 (*DstIt)->collectInstructions(isMemoryAccess, DstIList); in createMemoryDependencyEdges()
DDDG.cpp38 bool DDGNode::collectInstructions( in collectInstructions() function in DDGNode
50 PN->collectInstructions(Pred, TmpIList); in collectInstructions()
/openbsd/src/gnu/llvm/llvm/include/llvm/Analysis/
DDDG.h80 bool collectInstructions(llvm::function_ref<bool(Instruction *)> const &Pred,
449 Src.collectInstructions(isMemoryAccess, SrcIList); in getDependencies()
450 Dst.collectInstructions(isMemoryAccess, DstIList); in getDependencies()
/openbsd/src/gnu/llvm/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp169 std::pair<InstrListMap, InstrListMap> collectInstructions(BasicBlock *BB);
289 std::tie(LoadRefs, StoreRefs) = collectInstructions(BB); in run()
814 Vectorizer::collectInstructions(BasicBlock *BB) { in collectInstructions() function in Vectorizer