Home
last modified time | relevance | path

Searched refs:ForExprAST (Results 1 – 11 of 11) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp153 class ForExprAST : public ExprAST { class
157 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in __anonfb7718fa0111::ForExprAST
340 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
563 Value *ForExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp168 class ForExprAST : public ExprAST { class
172 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in __anon6ff389fb0111::ForExprAST
368 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
667 Value *ForExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp176 class ForExprAST : public ExprAST { class
180 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
388 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
772 Value *ForExprAST::Codegen() { in Codegen()
Dtoy.cpp176 class ForExprAST : public ExprAST { class
180 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
388 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
1052 Value *ForExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp191 class ForExprAST : public ExprAST { class
195 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
403 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
790 Value *ForExprAST::Codegen() { in Codegen()
Dtoy.cpp197 class ForExprAST : public ExprAST { class
201 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
409 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
1154 Value *ForExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp173 class ForExprAST : public ExprAST { class
177 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in __anone46ffafc0111::ForExprAST
386 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
763 Value *ForExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp174 class ForExprAST : public ExprAST { class
178 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
386 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
1012 Value *ForExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dtoy.cpp221 class ForExprAST : public ExprAST { class
225 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
433 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
1332 Value *ForExprAST::Codegen() { in Codegen()
/external/llvm/docs/tutorial/
DLangImpl5.rst464 /// ForExprAST - Expression class for for/in.
465 class ForExprAST : public ExprAST {
469 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
524 return new ForExprAST(IdName, Start, End, Step, Body);
573 Value *ForExprAST::Codegen() {
721 ``ForExprAST::Codegen``.
DLangImpl7.rst369 with ``ForExprAST::Codegen`` (see the `full code listing <#code>`_ for