Home
last modified time | relevance | path

Searched refs:ToI (Results 1 – 12 of 12) 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
147 if (ToI->mayReadFromMemory()) in getRoughDepType()
149 if (ToI->mayWriteToMemory()) in getRoughDepType()
152 if (ToI->mayWriteToMemory()) in getRoughDepType()
155 if (isa<sandboxir::PHINode>(FromI) || isa<sandboxir::PHINode>(ToI)) in getRoughDepType()
157 if (ToI->isTerminator()) in getRoughDepType()
160 DGNode::isStackSaveOrRestoreIntrinsic(ToI)) in getRoughDepType()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp220 bool canMoveMemTo(MachineInstr &MI, MachineInstr &ToI, bool IsDown);
827 bool HexagonExpandCondsets::canMoveMemTo(MachineInstr &TheI, MachineInstr &ToI, in canMoveMemTo() argument
832 if (HII->areMemAccessesTriviallyDisjoint(TheI, ToI)) in canMoveMemTo()
837 MachineBasicBlock::iterator StartI = IsDown ? TheI : ToI; in canMoveMemTo()
838 MachineBasicBlock::iterator EndI = IsDown ? ToI : TheI; in canMoveMemTo()
H A DHexagonGenInsert.cpp535 MachineBasicBlock::const_iterator ToI, const UnsignedMap &RPO,
765 MachineBasicBlock::const_iterator ToI, const UnsignedMap &RPO, in distance() argument
767 const MachineBasicBlock *FB = FromI->getParent(), *TB = ToI->getParent(); in distance()
769 return std::distance(FromI, ToI); in distance()
770 unsigned D1 = std::distance(TB->begin(), ToI); in distance()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIPreEmitPeephole.cpp361 for (MachineFunction::const_iterator MBBI(&From), ToI(&To), End = MF->end(); in mustRetainExeczBranch() local
362 MBBI != End && MBBI != ToI; ++MBBI) { in mustRetainExeczBranch()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp454 const ObjCInterfaceDecl *ToI = NewTy->getInterfaceDecl(); in getBetterObjCType() local
456 if (ToI && FromI && FromI->isSuperClassOf(ToI)) in getBetterObjCType()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributor.cpp663 const Instruction *ToI, const Function &ToFn, in isPotentiallyReachable() argument
713 if (!ToI) in isPotentiallyReachable()
715 LLVM_DEBUG(dbgs() << "[AA] check " << *ToI << " from " << *CurFromI in isPotentiallyReachable()
720 A, *CurFromI, *ToI, ExclusionSet); in isPotentiallyReachable()
723 << *ToI << " [Intra]\n"); in isPotentiallyReachable()
729 if (!ToFn.isDeclaration() && ToI) { in isPotentiallyReachable()
734 A, EntryI, *ToI, ExclusionSet); in isPotentiallyReachable()
737 << "reach @" << *ToI << " [ToFn]\n"); in isPotentiallyReachable()
819 Attributor &A, const Instruction &FromI, const Instruction &ToI, in isPotentiallyReachable() argument
823 const Function *ToFn = ToI.getFunction(); in isPotentiallyReachable()
[all …]
H A DAttributorAttributes.cpp1773 auto IsImpactedInRange = [&](Instruction *FromI, Instruction *ToI) { in updateImpl() argument
1780 } while (FromI && FromI != ToI); in updateImpl()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DArchiveWriter.cpp1017 auto ToI = FromTo.second; in computeArchiveRelativePath() local
1024 for (auto ToE = sys::path::end(PathTo); ToI != ToE; ++ToI) in computeArchiveRelativePath()
1025 sys::path::append(Relative, sys::path::Style::posix, *ToI); 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,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp9621 AttributeCommonInfo ToI( in importAttr() local
9627 std::forward<Arg>(ImportedArg)..., ToI); in importAttr()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp5019 void initScheduleData(Instruction *FromI, Instruction *ToI,
19646 Instruction *ToI, in initScheduleData() argument
19650 for (Instruction *I = FromI; I != ToI; I = I->getNextNode()) { in initScheduleData()