Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp513 const MachineOperand *EndValue, in getComparisonKind() argument
679 const MachineOperand *EndValue = nullptr; in getLoopTripCount() local
683 EndValue = &Op2; in getLoopTripCount()
685 EndValue = &Op1; in getLoopTripCount()
690 if (!EndValue) in getLoopTripCount()
693 Cmp = getComparisonKind(CondOpc, InitialValue, EndValue, IVBump); in getLoopTripCount()
711 if (EndValue->isReg()) { in getLoopTripCount()
712 Register R = EndValue->getReg(); in getLoopTripCount()
716 if (!checkForImmediate(*EndValue, V)) in getLoopTripCount()
722 return computeCount(L, InitialValue, EndValue, IVReg, IVBump, Cmp); in getLoopTripCount()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp3508 llvm::APSInt EndValue; in ActOnDesignatedInitializer() local
3517 EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).get(); in ActOnDesignatedInitializer()
3525 } else if (StartValue.getBitWidth() > EndValue.getBitWidth()) in ActOnDesignatedInitializer()
3526 EndValue = EndValue.extend(StartValue.getBitWidth()); in ActOnDesignatedInitializer()
3527 else if (StartValue.getBitWidth() < EndValue.getBitWidth()) in ActOnDesignatedInitializer()
3528 StartValue = StartValue.extend(EndValue.getBitWidth()); in ActOnDesignatedInitializer()
3530 if (!StartDependent && !EndDependent && EndValue < StartValue) { in ActOnDesignatedInitializer()
3532 << toString(StartValue, 10) << toString(EndValue, 10) in ActOnDesignatedInitializer()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp562 Value *VectorTripCount, Value *EndValue,
2614 Value *&EndValue = IVEndValues[OrigPhi]; in createInductionResumeValue() local
2618 EndValue = VectorTripCount; in createInductionResumeValue()
2626 EndValue = emitTransformedIndex(B, VectorTripCount, II.getStartValue(), in createInductionResumeValue()
2628 EndValue->setName("ind.end"); in createInductionResumeValue()
2649 BCResumeVal->addIncoming(EndValue, LoopMiddleBlock); in createInductionResumeValue()
2769 Value *VectorTripCount, Value *EndValue, in fixupIVUsers() argument
2789 MissingVals[UI] = EndValue; in fixupIVUsers()