Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
Dtoy.cpp152 class ForExprAST : public ExprAST { class
156 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
338 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
561 Value *ForExprAST::Codegen() { in Codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp196 class ForExprAST : public ExprAST { class
201 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon1b6fdac40111::ForExprAST
407 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
688 Value *ForExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp186 class ForExprAST : public ExprAST { class
191 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anona9d9756c0111::ForExprAST
393 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
674 Value *ForExprAST::codegen() { in codegen()
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
Dtoy.cpp167 class ForExprAST : public ExprAST { class
171 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
366 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
665 Value *ForExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp205 class ForExprAST : public ExprAST { class
210 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon1e55e66d0111::ForExprAST
426 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
785 Value *ForExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp175 class ForExprAST : public ExprAST { class
179 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
387 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
768 Value *ForExprAST::Codegen() { in Codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp216 class ForExprAST : public ExprAST { class
221 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon8fec4bc50111::ForExprAST
441 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
800 Value *ForExprAST::codegen() { in codegen()
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
Dtoy.cpp172 class ForExprAST : public ExprAST { class
176 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
384 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
761 Value *ForExprAST::Codegen() { in Codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp190 class ForExprAST : public ExprAST { class
194 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
402 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
786 Value *ForExprAST::Codegen() { in Codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp175 class ForExprAST : public ExprAST { class
179 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
387 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
768 Value *ForExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp190 class ForExprAST : public ExprAST { class
194 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
402 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
786 Value *ForExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
Dtoy.cpp212 class ForExprAST : public ExprAST { class
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anonbdf6bacf0111::ForExprAST
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
893 Value *ForExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
Dtoy.cpp219 class ForExprAST : public ExprAST { class
224 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon481d0f270111::ForExprAST
458 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
905 Value *ForExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
Dtoy.cpp212 class ForExprAST : public ExprAST { class
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon497a49ce0111::ForExprAST
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
893 Value *ForExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
Dtoy.cpp219 class ForExprAST : public ExprAST { class
224 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon5f242d250111::ForExprAST
458 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
905 Value *ForExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
Dtoy.cpp212 class ForExprAST : public ExprAST { class
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anond4fdd8cd0111::ForExprAST
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
893 Value *ForExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
Dtoy.cpp213 class ForExprAST : public ExprAST { class
218 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in ForExprAST
434 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
882 Value *ForExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
Dtoy.cpp219 class ForExprAST : public ExprAST { class
224 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anond3a09e260111::ForExprAST
458 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
905 Value *ForExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
Dtoy.cpp219 class ForExprAST : public ExprAST { class
224 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in ForExprAST
443 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
891 Value *ForExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp209 class ForExprAST : public ExprAST { class
214 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon074ec86f0111::ForExprAST
443 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
889 Value *ForExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp212 class ForExprAST : public ExprAST { class
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon92d2576e0111::ForExprAST
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
894 Value *ForExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
Dtoy.cpp236 class ForExprAST : public ExprAST { class
241 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in ForExprAST
460 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
915 Value *ForExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp224 class ForExprAST : public ExprAST { class
229 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon0468bcc60111::ForExprAST
463 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
911 Value *ForExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp225 class ForExprAST : public ExprAST { class
230 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon78e52dc70111::ForExprAST
464 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
910 Value *ForExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
Dtoy.cpp228 class ForExprAST : public ExprAST { class
233 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in ForExprAST
449 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
904 Value *ForExprAST::codegen() { in codegen()

12