Lines Matching defs:Start
178 ExprAST *Start, *End, *Step, *Body;
180 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
182 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
364 ExprAST *Start = ParseExpression();
365 if (Start == 0) return 0;
367 return Error("expected ',' after for start value");
388 return new ForExprAST(IdName, Start, End, Step, Body);
626 // Start with what we have
821 // Set up the optimizer pipeline. Start with registering info about how the
1052 // start = startexpr
1053 // store start -> var
1074 // Emit the start code first, without 'variable' in scope.
1075 Value *StartVal = Start->Codegen();
1088 // Start insertion in LoopBB.
1261 // Create a new basic block to start insertion into.