HomeSort by: relevance | last modified time | path
    Searched refs:HoistPoint (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
ControlHeightReduction.cpp 715 Instruction *HoistPoint = EntryBB->getTerminator();
720 HoistPoint = SI;
724 assert(HoistPoint && "Null HoistPoint");
726 // Check that HoistPoint is the first one in Selects in the entry block,
736 assert(&I == HoistPoint &&
737 "HoistPoint must be the first one in Selects");
742 return HoistPoint;
1447 static void hoistValue(Value *V, Instruction *HoistPoint, Region *R,
1456 if (I == HoistPoint)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LICM.cpp 1002 Instruction *HoistPoint = nullptr;
1009 if (!HoistPoint || !DT->dominates(HoistPoint->getParent(), Dominator)) {
1010 if (HoistPoint)
1011 assert(DT->dominates(Dominator, HoistPoint->getParent()) &&
1013 HoistPoint = Dominator->getTerminator();
1016 << HoistPoint->getParent()->getNameOrAsOperand()
1018 moveInstructionBefore(*I, *HoistPoint, *SafetyInfo, MSSAU, SE);
1019 HoistPoint = I;

Completed in 18 milliseconds