Home
last modified time | relevance | path

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

/external/llvm/lib/Target/Hexagon/
DHexagonHardwareLoops.cpp489 const MachineOperand *EndValue, in getComparisonKind() argument
640 const MachineOperand *EndValue = nullptr; in getLoopTripCount() local
644 EndValue = &Op2; in getLoopTripCount()
646 EndValue = &Op1; in getLoopTripCount()
651 if (!EndValue) in getLoopTripCount()
654 Cmp = getComparisonKind(CondOpc, InitialValue, EndValue, IVBump); in getLoopTripCount()
669 if (EndValue->isReg()) { in getLoopTripCount()
670 unsigned R = EndValue->getReg(); in getLoopTripCount()
677 return computeCount(L, InitialValue, EndValue, IVReg, IVBump, Cmp); in getLoopTripCount()
/external/clang/lib/Sema/
DSemaInit.cpp2705 llvm::APSInt EndValue; in ActOnDesignatedInitializer() local
2714 EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).get(); in ActOnDesignatedInitializer()
2722 } else if (StartValue.getBitWidth() > EndValue.getBitWidth()) in ActOnDesignatedInitializer()
2723 EndValue = EndValue.extend(StartValue.getBitWidth()); in ActOnDesignatedInitializer()
2724 else if (StartValue.getBitWidth() < EndValue.getBitWidth()) in ActOnDesignatedInitializer()
2725 StartValue = StartValue.extend(EndValue.getBitWidth()); in ActOnDesignatedInitializer()
2727 if (!StartDependent && !EndDependent && EndValue < StartValue) { in ActOnDesignatedInitializer()
2729 << StartValue.toString(10) << EndValue.toString(10) in ActOnDesignatedInitializer()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp2930 Value *EndValue; in createEmptyLoop() local
2933 EndValue = CountRoundDown; in createEmptyLoop()
2939 EndValue = II.transform(B, CRD); in createEmptyLoop()
2940 EndValue->setName("ind.end"); in createEmptyLoop()
2945 BCResumeVal->addIncoming(EndValue, MiddleBlock); in createEmptyLoop()