Searched refs:StartVal (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp579 Value *StartVal = Start->Codegen(); local
580 if (StartVal == 0) return 0;
596 Variable->addIncoming(StartVal, PreheaderBB);
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp683 Value *StartVal = Start->Codegen(); local
684 if (StartVal == 0) return 0;
700 Variable->addIncoming(StartVal, PreheaderBB);
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp788 Value *StartVal = Start->Codegen(); local
789 if (StartVal == 0) return 0;
792 Builder.CreateStore(StartVal, Alloca);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DScalarEvolution.cpp3068 const SCEV *StartVal = getSCEV(StartValueV);
3069 const SCEV *PHISCEV = getAddRecExpr(StartVal, Accum, L, Flags);
3074 (void)getAddRecExpr(getAddExpr(StartVal, Accum),
3093 const SCEV *StartVal = getSCEV(StartValueV);
3095 // If StartVal = j.start - j.stride, we can use StartVal as the
3097 if (StartVal == getMinusSCEV(AddRec->getOperand(0),
3099 // FIXME: For constant StartVal, we should be able to infer
3102 getAddRecExpr(StartVal, AddRec->getOperand(1), L,

Completed in 204 milliseconds