Searched defs:EndValue (Results 1 - 3 of 3) sorted by relevance

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

Completed in 174 milliseconds