Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp196 class ForExprAST : public ExprAST { class
201 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon42cfe4710111::ForExprAST
407 return std::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
689 Value *ForExprAST::codegen() { in codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/cached/
H A 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()
H A 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()
1150 Value *ForExprAST::Codegen() { in Codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp216 class ForExprAST : public ExprAST { class
221 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anonb74c55720111::ForExprAST
441 return std::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
801 Value *ForExprAST::codegen() { in codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A 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()
H A 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()
1048 Value *ForExprAST::Codegen() { in Codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp219 class ForExprAST : public ExprAST { class
224 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anoncef1c7f20111::ForExprAST
458 return std::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
906 Value *ForExprAST::codegen() { in codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp225 class ForExprAST : public ExprAST { class
230 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anona04537740111::ForExprAST
464 return std::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
911 Value *ForExprAST::codegen() { in codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp217 class ForExprAST : public ExprAST { class
222 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in ForExprAST
441 return std::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
889 Value *ForExprAST::codegen() { in codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp224 class ForExprAST : public ExprAST { class
229 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon2bc8c6730111::ForExprAST
463 return std::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
912 Value *ForExprAST::codegen() { in codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp219 class ForExprAST : public ExprAST { class
224 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon436e38f30111::ForExprAST
458 return std::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
906 Value *ForExprAST::codegen() { in codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp219 class ForExprAST : public ExprAST { class
224 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anonb7eaa9f40111::ForExprAST
458 return std::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
906 Value *ForExprAST::codegen() { in codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/initial/
H A 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()
1008 Value *ForExprAST::Codegen() { in Codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp313 class ForExprAST : public ExprAST { class
318 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, in ForExprAST() function in __anon14c1a8750211::ForExprAST
575 return std::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), in ParseForExpr()
1080 Value *ForExprAST::codegen() { in codegen()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp216 class ForExprAST : public ExprAST { class
220 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, in ForExprAST() function in ForExprAST
428 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
1228 Value *ForExprAST::Codegen() { in Codegen()
/llvm-project-15.0.7/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl05.rst493 /// ForExprAST - Expression class for for/in.
494 class ForExprAST : public ExprAST {
499 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
561 return std::make_unique<ForExprAST>(IdName, std::move(Start),
633 Value *ForExprAST::codegen() {
786 ``ForExprAST::codegen()``.
H A DLangImpl07.rst370 with ``ForExprAST::codegen()`` (see the `full code listing <#id1>`_ for