Home | History | Annotate | Download | only in cached

Lines Matching defs:Start

199   ExprAST *Start, *End, *Step, *Body;
201 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
203 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
385 ExprAST *Start = ParseExpression();
386 if (Start == 0) return 0;
388 return Error("expected ',' after for start value");
409 return new ForExprAST(IdName, Start, End, Step, Body);
647 // Start with what we have
918 // Set up the optimizer pipeline. Start with registering info about how the
1154 // start = startexpr
1155 // store start -> var
1176 // Emit the start code first, without 'variable' in scope.
1177 Value *StartVal = Start->Codegen();
1190 // Start insertion in LoopBB.
1363 // Create a new basic block to start insertion into.