Searched refs:HoistPoint (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | ControlHeightReduction.cpp | 684 Instruction *HoistPoint = EntryBB->getTerminator(); in getBranchInsertPoint() local 689 HoistPoint = SI; in getBranchInsertPoint() 693 assert(HoistPoint && "Null HoistPoint"); in getBranchInsertPoint() 705 assert(&I == HoistPoint && in getBranchInsertPoint() 711 return HoistPoint; in getBranchInsertPoint() 1433 static void hoistValue(Value *V, Instruction *HoistPoint, Region *R, in hoistValue() argument 1442 if (I == HoistPoint) in hoistValue() 1458 assert(DT.getNode(HoistPoint->getParent()) && in hoistValue() 1460 if (DT.dominates(I, HoistPoint)) in hoistValue() 1471 hoistValue(Op, HoistPoint, R, HoistStopMap, HoistedSet, TrivialPHIs, DT); in hoistValue() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LICM.cpp | 1009 Instruction *HoistPoint = nullptr; in hoistRegion() local 1016 if (!HoistPoint || !DT->dominates(HoistPoint->getParent(), Dominator)) { in hoistRegion() 1017 if (HoistPoint) in hoistRegion() 1018 assert(DT->dominates(Dominator, HoistPoint->getParent()) && in hoistRegion() 1020 HoistPoint = Dominator->getTerminator(); in hoistRegion() 1023 << HoistPoint->getParent()->getNameOrAsOperand() in hoistRegion() 1025 moveInstructionBefore(*I, HoistPoint->getIterator(), *SafetyInfo, MSSAU, in hoistRegion() 1027 HoistPoint = I; in hoistRegion()
|