/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 143 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/ |
D | toy.cpp | 158 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/ |
D | toy.cpp | 175 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/ |
D | toy.cpp | 184 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/ |
D | toy-jit.cpp | 166 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/ |
D | toy-jit.cpp | 166 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/ |
D | toy.cpp | 204 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/ |
D | toy.cpp | 163 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/ |
D | toy-jit.cpp | 181 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/ |
D | toy-jit.cpp | 181 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/ |
D | toy.cpp | 194 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/ |
D | toy.cpp | 207 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/ |
D | toy.cpp | 207 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/ |
D | toy.cpp | 207 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/ |
D | toy.cpp | 201 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/ |
D | toy.cpp | 201 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/ |
D | toy.cpp | 201 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/ |
D | toy.cpp | 202 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/ |
D | toy.cpp | 207 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/ |
D | toy.cpp | 212 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/ |
D | toy.cpp | 213 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/ |
D | toy.cpp | 217 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/ |
D | toy.cpp | 198 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/ |
D | toy.cpp | 224 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/ |
D | toy.cpp | 201 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()
|