Home | History | Annotate | Download | only in lazy

Lines Matching defs:Start

177   ExprAST *Start, *End, *Step, *Body;
179 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
181 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
363 ExprAST *Start = ParseExpression();
364 if (Start == 0) return 0;
366 return Error("expected ',' after for start value");
387 return new ForExprAST(IdName, Start, End, Step, Body);
772 // start = startexpr
773 // store start -> var
794 // Emit the start code first, without 'variable' in scope.
795 Value *StartVal = Start->Codegen();
808 // Start insertion in LoopBB.
974 // Create a new basic block to start insertion into.
1127 // Set up the optimizer pipeline. Start with registering info about how the