Lines Matching defs:Start
192 ExprAST *Start, *End, *Step, *Body;
194 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
196 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
378 ExprAST *Start = ParseExpression();
379 if (Start == 0) return 0;
381 return Error("expected ',' after for start value");
402 return new ForExprAST(IdName, Start, End, Step, Body);
790 // start = startexpr
791 // store start -> var
812 // Emit the start code first, without 'variable' in scope.
813 Value *StartVal = Start->Codegen();
826 // Start insertion in LoopBB.
992 // Create a new basic block to start insertion into.
1167 // Set up the optimizer pipeline. Start with registering info about how the