Home | History | Annotate | Download | only in complete

Lines Matching defs:Start

218   ExprAST *Start, *End, *Step, *Body;
220 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
222 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
404 ExprAST *Start = ParseExpression();
405 if (Start == 0) return 0;
407 return Error("expected ',' after for start value");
428 return new ForExprAST(IdName, Start, End, Step, Body);
666 // Start with what we have
961 // Set up the optimizer pipeline. Start with registering info about how the
1232 // start = startexpr
1233 // store start -> var
1254 // Emit the start code first, without 'variable' in scope.
1255 Value *StartVal = Start->Codegen();
1268 // Start insertion in LoopBB.
1441 // Create a new basic block to start insertion into.