Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
Dtoy.cpp143 class IfExprAST : public ExprAST { class
146 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
296 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
510 Value *IfExprAST::Codegen() { in Codegen()
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
Dtoy.cpp158 class IfExprAST : public ExprAST { class
161 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
324 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
614 Value *IfExprAST::Codegen() { in Codegen()
/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 __anon08d88ba30111::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 __anon4e8853db0111::IfExprAST
361 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
621 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()
/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 __anonc304c4dc0111::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/examples/Kaleidoscope/Chapter7/
Dtoy.cpp163 class IfExprAST : public ExprAST { class
166 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
342 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
710 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/Chapter6/
Dtoy.cpp194 class IfExprAST : public ExprAST { class
198 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon7d54fca40111::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/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/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 __anonfbbae49d0111::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/Chapter1/
Dtoy.cpp207 class IfExprAST : public ExprAST { class
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon873e739c0111::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/Chapter1/
Dtoy.cpp201 class IfExprAST : public ExprAST { class
205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon9a1d10640111::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/Chapter2/
Dtoy.cpp201 class IfExprAST : public ExprAST { class
205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon0e9981650111::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/Chapter3/
Dtoy.cpp201 class IfExprAST : public ExprAST { class
205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon8315f2660111::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/Chapter3/
Dtoy.cpp207 class IfExprAST : public ExprAST { class
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon7037559e0111::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/Chapter7/
Dtoy.cpp212 class IfExprAST : public ExprAST { class
216 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon378135dd0111::IfExprAST
417 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
840 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 __anonabfda6de0111::IfExprAST
418 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
839 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/Chapter8/
Dtoy.cpp198 class IfExprAST : public ExprAST { class
202 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon664ddea60111::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/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 __anonf1d16da50111::IfExprAST
400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
823 Value *IfExprAST::codegen() { in codegen()

12