Home
last modified time | relevance | path

Searched refs:IfExprAST (Results 1 – 25 of 36) sorted by relevance

12

/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp175 class IfExprAST : public ExprAST { class
179 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon2397a3ae0111::IfExprAST
347 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
607 Value *IfExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp184 class IfExprAST : public ExprAST { class
188 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon6d9d59460111::IfExprAST
361 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
621 Value *IfExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp194 class IfExprAST : public ExprAST { class
198 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon981414af0111::IfExprAST
380 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
718 Value *IfExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp204 class IfExprAST : public ExprAST { class
208 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anone219ca470111::IfExprAST
395 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
733 Value *IfExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp166 class IfExprAST : public ExprAST { class
169 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
345 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
719 Value *IfExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp166 class IfExprAST : public ExprAST { class
169 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
345 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
719 Value *IfExprAST::Codegen() { in Codegen()
Dtoy.cpp167 class IfExprAST : public ExprAST { class
170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
346 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
999 Value *IfExprAST::Codegen() { in Codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp181 class IfExprAST : public ExprAST { class
184 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
360 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
737 Value *IfExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp181 class IfExprAST : public ExprAST { class
184 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
360 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
737 Value *IfExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
Dtoy.cpp201 class IfExprAST : public ExprAST { class
205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon8465a24f0111::IfExprAST
400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
822 Value *IfExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
Dtoy.cpp202 class IfExprAST : public ExprAST { class
206 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in IfExprAST
388 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
811 Value *IfExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
Dtoy.cpp207 class IfExprAST : public ExprAST { class
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anonc56baee70111::IfExprAST
412 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
834 Value *IfExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
Dtoy.cpp201 class IfExprAST : public ExprAST { class
205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon6d5e84510111::IfExprAST
400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
822 Value *IfExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
Dtoy.cpp207 class IfExprAST : public ExprAST { class
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in IfExprAST
397 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
820 Value *IfExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
Dtoy.cpp201 class IfExprAST : public ExprAST { class
205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anonf8e213500111::IfExprAST
400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
822 Value *IfExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
Dtoy.cpp207 class IfExprAST : public ExprAST { class
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon39e81fe80111::IfExprAST
412 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
834 Value *IfExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
Dtoy.cpp207 class IfExprAST : public ExprAST { class
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anonae6490e90111::IfExprAST
412 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
834 Value *IfExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp213 class IfExprAST : public ExprAST { class
217 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anoncb12ac490111::IfExprAST
418 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
839 Value *IfExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp212 class IfExprAST : public ExprAST { class
216 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon56963b480111::IfExprAST
417 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
840 Value *IfExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
Dtoy.cpp217 class IfExprAST : public ExprAST { class
221 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in IfExprAST
403 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
833 Value *IfExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp201 class IfExprAST : public ExprAST { class
205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon0c9085b00111::IfExprAST
400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
823 Value *IfExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp198 class IfExprAST : public ExprAST { class
202 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon810cf6b10111::IfExprAST
397 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
818 Value *IfExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
Dtoy.cpp224 class IfExprAST : public ExprAST { class
228 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in IfExprAST
414 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
844 Value *IfExprAST::codegen() { in codegen()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp165 class IfExprAST : public ExprAST { class
168 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
344 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
959 Value *IfExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp165 class IfExprAST : public ExprAST { class
168 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
344 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
959 Value *IfExprAST::Codegen() { in Codegen()

12