HomeSort by relevance Sort by last modified time
    Searched refs:ForExprAST (Results 1 - 14 of 14) sorted by null

  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 186 /// ForExprAST - Expression class for for/in.
187 struct ForExprAST : public ExprAST {
188 ForExprAST(std::string VarName, std::unique_ptr<ExprAST> Start,
377 static std::unique_ptr<ForExprAST> ParseForExpr() {
381 return ErrorU<ForExprAST>("expected identifier after for");
387 return ErrorU<ForExprAST>("expected '=' after for");
395 return ErrorU<ForExprAST>("expected ',' after for start value");
412 return ErrorU<ForExprAST>("expected 'in' after for");
419 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
897 Value *ForExprAST::IRGen(IRGenContext &C) const
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 185 /// ForExprAST - Expression class for for/in.
186 struct ForExprAST : public ExprAST {
187 ForExprAST(std::string VarName, std::unique_ptr<ExprAST> Start,
376 static std::unique_ptr<ForExprAST> ParseForExpr() {
380 return ErrorU<ForExprAST>("expected identifier after for");
386 return ErrorU<ForExprAST>("expected '=' after for");
394 return ErrorU<ForExprAST>("expected ',' after for start value");
411 return ErrorU<ForExprAST>("expected 'in' after for");
418 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
896 Value *ForExprAST::IRGen(IRGenContext &C) const
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 185 /// ForExprAST - Expression class for for/in.
186 struct ForExprAST : public ExprAST {
187 ForExprAST(std::string VarName, std::unique_ptr<ExprAST> Start,
376 static std::unique_ptr<ForExprAST> ParseForExpr() {
380 return ErrorU<ForExprAST>("expected identifier after for");
386 return ErrorU<ForExprAST>("expected '=' after for");
394 return ErrorU<ForExprAST>("expected ',' after for start value");
411 return ErrorU<ForExprAST>("expected 'in' after for");
418 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
896 Value *ForExprAST::IRGen(IRGenContext &C) const
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 185 /// ForExprAST - Expression class for for/in.
186 struct ForExprAST : public ExprAST {
187 ForExprAST(std::string VarName, std::unique_ptr<ExprAST> Start,
376 static std::unique_ptr<ForExprAST> ParseForExpr() {
380 return ErrorU<ForExprAST>("expected identifier after for");
386 return ErrorU<ForExprAST>("expected '=' after for");
394 return ErrorU<ForExprAST>("expected ',' after for start value");
411 return ErrorU<ForExprAST>("expected 'in' after for");
418 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
896 Value *ForExprAST::IRGen(IRGenContext &C) const
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 172 /// ForExprAST - Expression class for for/in.
173 class ForExprAST : public ExprAST {
178 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
379 return new ForExprAST(IdName, Start, End, Step, Body);
624 Value *ForExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 191 /// ForExprAST - Expression class for for/in.
192 class ForExprAST : public ExprAST {
197 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
410 return new ForExprAST(IdName, Start, End, Step, Body);
732 Value *ForExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 197 /// ForExprAST - Expression class for for/in.
198 class ForExprAST : public ExprAST {
203 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
430 return new ForExprAST(IdName, Start, End, Step, Body);
837 Value *ForExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 312 /// ForExprAST - Expression class for for/in.
313 class ForExprAST : public ExprAST {
318 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
576 return new ForExprAST(IdName, Start, End, Step, Body);
1036 Value *ForExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 189 /// ForExprAST - Expression class for for/in.
190 class ForExprAST : public ExprAST {
194 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
402 return new ForExprAST(IdName, Start, End, Step, Body);
789 Value *ForExprAST::Codegen() {
    [all...]
toy.cpp 196 /// ForExprAST - Expression class for for/in.
197 class ForExprAST : public ExprAST {
201 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
409 return new ForExprAST(IdName, Start, End, Step, Body);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 173 /// ForExprAST - Expression class for for/in.
174 class ForExprAST : public ExprAST {
178 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
386 return new ForExprAST(IdName, Start, End, Step, Body);
1011 Value *ForExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 174 /// ForExprAST - Expression class for for/in.
175 class ForExprAST : public ExprAST {
179 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
387 return new ForExprAST(IdName, Start, End, Step, Body);
771 Value *ForExprAST::Codegen() {
    [all...]
toy.cpp 175 /// ForExprAST - Expression class for for/in.
176 class ForExprAST : public ExprAST {
180 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
388 return new ForExprAST(IdName, Start, End, Step, Body);
1051 Value *ForExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 215 /// ForExprAST - Expression class for for/in.
216 class ForExprAST : public ExprAST {
220 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
428 return new ForExprAST(IdName, Start, End, Step, Body);
    [all...]

Completed in 47 milliseconds