Home | History | Annotate | Download | only in initial

Lines Matching defs:Start

176   ExprAST *Start, *End, *Step, *Body;
178 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
180 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
362 ExprAST *Start = ParseExpression();
363 if (Start == 0) return 0;
365 return Error("expected ',' after for start value");
386 return new ForExprAST(IdName, Start, End, Step, Body);
624 // Start with what we have
791 // Set up the optimizer pipeline. Start with registering info about how the
1012 // start = startexpr
1013 // store start -> var
1034 // Emit the start code first, without 'variable' in scope.
1035 Value *StartVal = Start->Codegen();
1048 // Start insertion in LoopBB.
1221 // Create a new basic block to start insertion into.