Home
last modified time | relevance | path

Searched refs:EndValue (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Target/Hexagon/
DHexagonHardwareLoops.cpp525 const MachineOperand *EndValue = nullptr; in getLoopTripCount() local
529 EndValue = &Op2; in getLoopTripCount()
531 EndValue = &Op1; in getLoopTripCount()
536 if (!EndValue) in getLoopTripCount()
561 assert(EndValue->isImm() && "Unrecognized latch comparison"); in getLoopTripCount()
562 EndV = EndValue->getImm(); in getLoopTripCount()
598 if (EndValue->isReg()) { in getLoopTripCount()
599 unsigned R = EndValue->getReg(); in getLoopTripCount()
605 return computeCount(L, InitialValue, EndValue, IVReg, IVBump, Cmp); in getLoopTripCount()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp2287 Value *EndValue = nullptr; in createEmptyLoop() local
2299 EndValue = in createEmptyLoop()
2305 TruncResumeVal->addIncoming(EndValue, VecBody); in createEmptyLoop()
2310 EndValue = IdxEndRoundDown; in createEmptyLoop()
2321 EndValue = BypassBuilder.CreateAdd(CRD, II.StartValue , "ind.end"); in createEmptyLoop()
2330 EndValue = BypassBuilder.CreateSub(II.StartValue, CRD, "rev.ind.end"); in createEmptyLoop()
2336 EndValue = BypassBuilder.CreateGEP(II.StartValue, CountRoundDown, in createEmptyLoop()
2346 EndValue = BypassBuilder.CreateGEP(II.StartValue, NegIdx, in createEmptyLoop()
2360 ResumeVal->addIncoming(EndValue, VecBody); in createEmptyLoop()
/external/clang/lib/Sema/
DSemaInit.cpp2514 llvm::APSInt EndValue; in ActOnDesignatedInitializer() local
2523 EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).get(); in ActOnDesignatedInitializer()
2531 } else if (StartValue.getBitWidth() > EndValue.getBitWidth()) in ActOnDesignatedInitializer()
2532 EndValue = EndValue.extend(StartValue.getBitWidth()); in ActOnDesignatedInitializer()
2533 else if (StartValue.getBitWidth() < EndValue.getBitWidth()) in ActOnDesignatedInitializer()
2534 StartValue = StartValue.extend(EndValue.getBitWidth()); in ActOnDesignatedInitializer()
2536 if (!StartDependent && !EndDependent && EndValue < StartValue) { in ActOnDesignatedInitializer()
2538 << StartValue.toString(10) << EndValue.toString(10) in ActOnDesignatedInitializer()