Home
last modified time | relevance | path

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

/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp163 class IfExprAST : public ExprAST { class
167 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in __anone5e5f5430111::IfExprAST
334 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
570 Value *IfExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp182 class IfExprAST : public ExprAST { class
186 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in __anon5a6266440111::IfExprAST
365 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
678 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()
720 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()
1000 Value *IfExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp188 class IfExprAST : public ExprAST { class
192 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in __anonceded7450111::IfExprAST
385 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
783 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()
738 Value *IfExprAST::Codegen() { in Codegen()
Dtoy.cpp188 class IfExprAST : public ExprAST { class
191 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
367 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
1102 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()
960 Value *IfExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp296 class IfExprAST : public ExprAST { class
300 IfExprAST(SourceLocation Loc, ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in __anon435b48460211::IfExprAST
531 return new IfExprAST(IfLoc, Cond, Then, Else); in ParseIfExpr()
980 Value *IfExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/Orc/initial/
Dtoy.cpp176 struct IfExprAST : public ExprAST { struct
177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function
371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
845 Value *IfExprAST::IRGen(IRGenContext &C) const { in IRGen()
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dtoy.cpp207 class IfExprAST : public ExprAST { class
210 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST
386 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
1180 Value *IfExprAST::Codegen() { in Codegen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
Dtoy.cpp176 struct IfExprAST : public ExprAST { struct
177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function
371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
845 Value *IfExprAST::IRGen(IRGenContext &C) const { in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
Dtoy.cpp176 struct IfExprAST : public ExprAST { struct
177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument
371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
845 Value *IfExprAST::IRGen(IRGenContext &C) const { in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
Dtoy.cpp177 struct IfExprAST : public ExprAST { struct
178 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument
372 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
846 Value *IfExprAST::IRGen(IRGenContext &C) const { in IRGen()
/external/llvm/docs/tutorial/
DLangImpl5.rst91 /// IfExprAST - Expression class for if/then/else.
92 class IfExprAST : public ExprAST {
95 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
134 return new IfExprAST(Cond, Then, Else);
266 for ``IfExprAST``:
270 Value *IfExprAST::Codegen() {
DOCamlLangImpl5.rst246 for ``IfExprAST``: