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

/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp520 const MachineOperand *EndValue = nullptr; local
524 EndValue = &Op2;
526 EndValue = &Op1;
531 if (!EndValue)
554 // Since the comparisons are "ri", the EndValue should be an
556 assert(EndValue->isImm() && "Unrecognized latch comparison");
557 EndV = EndValue->getImm();
593 if (EndValue->isReg()) {
594 unsigned R = EndValue->getReg();
600 return computeCount(L, InitialValue, EndValue, IVRe
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2349 Value *EndValue = nullptr; local
2361 EndValue =
2367 TruncResumeVal->addIncoming(EndValue, VecBody);
2372 EndValue = IdxEndRoundDown;
2383 EndValue = II.transform(BypassBuilder, CRD);
2384 EndValue->setName("ind.end");
2388 EndValue = II.transform(BypassBuilder, CountRoundDown);
2389 EndValue->setName("ptr.ind.end");
2402 ResumeVal->addIncoming(EndValue, VecBody);
/external/clang/lib/Sema/
H A DSemaInit.cpp2547 llvm::APSInt EndValue; local
2556 EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).get();
2564 } else if (StartValue.getBitWidth() > EndValue.getBitWidth())
2565 EndValue = EndValue.extend(StartValue.getBitWidth());
2566 else if (StartValue.getBitWidth() < EndValue.getBitWidth())
2567 StartValue = StartValue.extend(EndValue.getBitWidth());
2569 if (!StartDependent && !EndDependent && EndValue < StartValue) {
2571 << StartValue.toString(10) << EndValue.toString(10)

Completed in 394 milliseconds