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(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon08d88ba30111::IfExprAST
335 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
595 Value *IfExprAST::codegen() { in codegen()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp182 class IfExprAST : public ExprAST { class
186 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anon7d54fca40111::IfExprAST
368 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
706 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/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/Chapter7/
Dtoy.cpp188 class IfExprAST : public ExprAST { class
192 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function in __anonf1d16da50111::IfExprAST
387 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
811 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/Orc/lazy_codegen/
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()
844 Value *IfExprAST::IRGen(IRGenContext &C) const { in IRGen()
/external/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp293 class IfExprAST : public ExprAST { class
297 IfExprAST(SourceLocation Loc, std::unique_ptr<ExprAST> Cond, in IfExprAST() function in __anon664ddea60211::IfExprAST
528 return llvm::make_unique<IfExprAST>(IfLoc, std::move(Cond), std::move(Then), in ParseIfExpr()
1000 Value *IfExprAST::codegen() { in codegen()
/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_irgen/
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()
844 Value *IfExprAST::IRGen(IRGenContext &C) const { in IRGen()
/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()
844 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() function
372 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr()
845 Value *IfExprAST::IRGen(IRGenContext &C) const { in IRGen()
/external/llvm/docs/tutorial/
DLangImpl5.rst98 /// IfExprAST - Expression class for if/then/else.
99 class IfExprAST : public ExprAST {
103 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
146 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
284 for ``IfExprAST``:
288 Value *IfExprAST::codegen() {
DOCamlLangImpl5.rst246 for ``IfExprAST``: