Searched refs:EndValue (Results 1 – 3 of 3) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/ |
H A D | HexagonHardwareLoops.cpp | 513 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()
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | SemaInit.cpp | 3255 llvm::APSInt EndValue; in ActOnDesignatedInitializer() local 3264 EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).get(); in ActOnDesignatedInitializer() 3272 } else if (StartValue.getBitWidth() > EndValue.getBitWidth()) in ActOnDesignatedInitializer() 3273 EndValue = EndValue.extend(StartValue.getBitWidth()); in ActOnDesignatedInitializer() 3274 else if (StartValue.getBitWidth() < EndValue.getBitWidth()) in ActOnDesignatedInitializer() 3275 StartValue = StartValue.extend(EndValue.getBitWidth()); in ActOnDesignatedInitializer() 3277 if (!StartDependent && !EndDependent && EndValue < StartValue) { in ActOnDesignatedInitializer() 3279 << toString(StartValue, 10) << toString(EndValue, 10) in ActOnDesignatedInitializer()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 561 Value *VectorTripCount, Value *EndValue, 3145 Value *&EndValue = IVEndValues[OrigPhi]; in createInductionResumeValue() local 3149 EndValue = VectorTripCount; in createInductionResumeValue() 3159 EndValue = in createInductionResumeValue() 3161 EndValue->setName("ind.end"); in createInductionResumeValue() 3182 BCResumeVal->addIncoming(EndValue, LoopMiddleBlock); in createInductionResumeValue() 3318 Value *VectorTripCount, Value *EndValue, in fixupIVUsers() argument 3337 MissingVals[UI] = EndValue; in fixupIVUsers()
|