Searched refs:EndValue (Results 1 – 5 of 5) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonHardwareLoops.cpp | 510 const MachineOperand *EndValue, in getComparisonKind() argument 675 const MachineOperand *EndValue = nullptr; in getLoopTripCount() local 679 EndValue = &Op2; in getLoopTripCount() 681 EndValue = &Op1; in getLoopTripCount() 686 if (!EndValue) in getLoopTripCount() 689 Cmp = getComparisonKind(CondOpc, InitialValue, EndValue, IVBump); in getLoopTripCount() 707 if (EndValue->isReg()) { in getLoopTripCount() 708 unsigned R = EndValue->getReg(); in getLoopTripCount() 712 if (!checkForImmediate(*EndValue, V)) in getLoopTripCount() 718 return computeCount(L, InitialValue, EndValue, IVReg, IVBump, Cmp); in getLoopTripCount()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonHardwareLoops.cpp | 491 const MachineOperand *EndValue, in getComparisonKind() argument 642 const MachineOperand *EndValue = nullptr; in getLoopTripCount() local 646 EndValue = &Op2; in getLoopTripCount() 648 EndValue = &Op1; in getLoopTripCount() 653 if (!EndValue) in getLoopTripCount() 656 Cmp = getComparisonKind(CondOpc, InitialValue, EndValue, IVBump); in getLoopTripCount() 671 if (EndValue->isReg()) { in getLoopTripCount() 672 unsigned R = EndValue->getReg(); in getLoopTripCount() 679 return computeCount(L, InitialValue, EndValue, IVReg, IVBump, Cmp); in getLoopTripCount()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 342 Value *CountRoundDown, Value *EndValue, 3071 Value *EndValue; in createEmptyLoop() local 3074 EndValue = CountRoundDown; in createEmptyLoop() 3080 EndValue = II.transform(B, CRD, PSE.getSE(), DL); in createEmptyLoop() 3081 EndValue->setName("ind.end"); in createEmptyLoop() 3086 BCResumeVal->addIncoming(EndValue, MiddleBlock); in createEmptyLoop() 3089 fixupIVUsers(OrigPhi, II, CountRoundDown, EndValue, MiddleBlock); in createEmptyLoop() 3136 Value *CountRoundDown, Value *EndValue, in fixupIVUsers() argument 3154 MissingVals[UI] = EndValue; in fixupIVUsers()
|
/external/clang/lib/Sema/ |
D | SemaInit.cpp | 2791 llvm::APSInt EndValue; in ActOnDesignatedInitializer() local 2800 EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).get(); in ActOnDesignatedInitializer() 2808 } else if (StartValue.getBitWidth() > EndValue.getBitWidth()) in ActOnDesignatedInitializer() 2809 EndValue = EndValue.extend(StartValue.getBitWidth()); in ActOnDesignatedInitializer() 2810 else if (StartValue.getBitWidth() < EndValue.getBitWidth()) in ActOnDesignatedInitializer() 2811 StartValue = StartValue.extend(EndValue.getBitWidth()); in ActOnDesignatedInitializer() 2813 if (!StartDependent && !EndDependent && EndValue < StartValue) { in ActOnDesignatedInitializer() 2815 << StartValue.toString(10) << EndValue.toString(10) in ActOnDesignatedInitializer()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 465 Value *CountRoundDown, Value *EndValue, 2919 Value *&EndValue = IVEndValues[OrigPhi]; in createVectorizedLoopSkeleton() local 2922 EndValue = CountRoundDown; in createVectorizedLoopSkeleton() 2930 EndValue = II.transform(B, CRD, PSE.getSE(), DL); in createVectorizedLoopSkeleton() 2931 EndValue->setName("ind.end"); in createVectorizedLoopSkeleton() 2936 BCResumeVal->addIncoming(EndValue, MiddleBlock); in createVectorizedLoopSkeleton() 2985 Value *CountRoundDown, Value *EndValue, in fixupIVUsers() argument 3003 MissingVals[UI] = EndValue; in fixupIVUsers()
|