Home
last modified time | relevance | path

Searched refs:FromI (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SandboxVectorizer/
H A DDependencyGraph.cpp144 DependencyGraph::getRoughDepType(Instruction *FromI, Instruction *ToI) { in getRoughDepType() argument
146 if (FromI->mayWriteToMemory()) { in getRoughDepType()
151 } else if (FromI->mayReadFromMemory()) { in getRoughDepType()
155 if (isa<sandboxir::PHINode>(FromI) || isa<sandboxir::PHINode>(ToI)) in getRoughDepType()
159 if (DGNode::isStackSaveOrRestoreIntrinsic(FromI) || in getRoughDepType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h372 auto FromI = ImportedFromDecls.find(ToD); in getImportedFromDecl() local
373 if (FromI == ImportedFromDecls.end()) in getImportedFromDecl()
375 auto *FromD = dyn_cast<DeclT>(FromI->second); in getImportedFromDecl()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp455 const ObjCInterfaceDecl *FromI = OldTy->getInterfaceDecl(); in getBetterObjCType() local
456 if (ToI && FromI && FromI->isSuperClassOf(ToI)) in getBetterObjCType()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenInsert.cpp534 unsigned distance(MachineBasicBlock::const_iterator FromI,
764 unsigned HexagonGenInsert::distance(MachineBasicBlock::const_iterator FromI, in distance() argument
767 const MachineBasicBlock *FB = FromI->getParent(), *TB = ToI->getParent(); in distance()
769 return std::distance(FromI, ToI); in distance()
772 unsigned D3 = std::distance(FromI, FB->end()); in distance()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributor.cpp662 isPotentiallyReachable(Attributor &A, const Instruction &FromI, in isPotentiallyReachable() argument
669 << FromI << " [GBCB: " << bool(GoBackwardsCB) << "][#ExS: " in isPotentiallyReachable()
682 if (GoBackwardsCB && &ToFn != FromI.getFunction() && in isPotentiallyReachable()
683 !GoBackwardsCB(*FromI.getFunction()) && A.getInfoCache().isKernel(ToFn) && in isPotentiallyReachable()
684 A.getInfoCache().isKernel(*FromI.getFunction())) { in isPotentiallyReachable()
696 LLVM_DEBUG(dbgs() << "[AA] check @" << ToFn.getName() << " from " << FromI in isPotentiallyReachable()
704 Worklist.push_back(&FromI); in isPotentiallyReachable()
775 LLVM_DEBUG(dbgs() << "[AA] check @" << ToFn.getName() << " from " << FromI in isPotentiallyReachable()
819 Attributor &A, const Instruction &FromI, const Instruction &ToI, in isPotentiallyReachable() argument
824 return ::isPotentiallyReachable(A, FromI, &ToI, *ToFn, QueryingAA, in isPotentiallyReachable()
[all …]
H A DAttributorAttributes.cpp1773 auto IsImpactedInRange = [&](Instruction *FromI, Instruction *ToI) { in updateImpl() argument
1777 if (FromI->mayWriteToMemory() && !IsAssumption(*FromI)) in updateImpl()
1779 FromI = FromI->getNextNonDebugInstruction(); in updateImpl()
1780 } while (FromI && FromI != ToI); in updateImpl()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DArchiveWriter.cpp1016 auto FromI = FromTo.first; in computeArchiveRelativePath() local
1021 for (auto FromE = sys::path::end(DirFrom); FromI != FromE; ++FromI) in computeArchiveRelativePath()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/
H A DDependencyGraph.h358 static DependencyType getRoughDepType(Instruction *FromI, Instruction *ToI);
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h392 Attributor &A, const Instruction &FromI, const Instruction &ToI,
399 Attributor &A, const Instruction &FromI, const Function &ToFn,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp5019 void initScheduleData(Instruction *FromI, Instruction *ToI,
19645 void BoUpSLP::BlockScheduling::initScheduleData(Instruction *FromI, in initScheduleData() argument
19650 for (Instruction *I = FromI; I != ToI; I = I->getNextNode()) { in initScheduleData()