OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StepValue
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Transforms/Utils/
LoopUtils.cpp
616
: StartValue(Start), IK(K),
StepValue
(Step) {
619
assert(
StepValue
&& !
StepValue
->isZero() && "
StepValue
is zero");
624
assert(
StepValue
->getType()->isIntegerTy() &&
625
"
StepValue
is not an integer");
629
if (
StepValue
&& (
StepValue
->isOne() ||
StepValue
->isMinusOne()))
630
return
StepValue
->getSExtValue()
[
all
...]
/external/llvm/include/llvm/Transforms/Utils/
LoopUtils.h
261
: StartValue(nullptr), IK(IK_NoInduction),
StepValue
(nullptr) {}
270
///
StepValue
.
271
/// For integer induction, returns StartValue + Index *
StepValue
.
272
/// For pointer induction, returns StartValue[Index *
StepValue
].
279
ConstantInt *getStepValue() const { return
StepValue
; }
293
ConstantInt *
StepValue
;
Completed in 699 milliseconds