Searched refs:IfExprAST (Results 1 - 14 of 14) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp162 /// IfExprAST - Expression class for if/then/else.
163 class IfExprAST : public ExprAST { class in namespace:__anon10102
167 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) function in class:__anon10102::IfExprAST
334 return new IfExprAST(Cond, Then, Else);
570 Value *IfExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp181 /// IfExprAST - Expression class for if/then/else.
182 class IfExprAST : public ExprAST { class in namespace:__anon10103
186 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) function in class:__anon10103::IfExprAST
365 return new IfExprAST(Cond, Then, Else);
678 Value *IfExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp187 /// IfExprAST - Expression class for if/then/else.
188 class IfExprAST : public ExprAST { class in namespace:__anon10104
192 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) function in class:__anon10104::IfExprAST
385 return new IfExprAST(Cond, Then, Else);
783 Value *IfExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp295 /// IfExprAST - Expression class for if/then/else.
296 class IfExprAST : public ExprAST { class in namespace:__anon10106
300 IfExprAST(SourceLocation Loc, ExprAST *cond, ExprAST *then, ExprAST *_else) function in class:__anon10106::IfExprAST
531 return new IfExprAST(IfLoc, Cond, Then, Else);
980 Value *IfExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp180 /// IfExprAST - Expression class for if/then/else.
181 class IfExprAST : public ExprAST { class in inherits:ExprAST
184 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) function in class:IfExprAST
360 return new IfExprAST(Cond, Then, Else);
738 Value *IfExprAST::Codegen() {
H A Dtoy.cpp187 /// IfExprAST - Expression class for if/then/else.
188 class IfExprAST : public ExprAST { class in inherits:ExprAST
191 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) function in class:IfExprAST
367 return new IfExprAST(Cond, Then, Else);
1102 Value *IfExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp164 /// IfExprAST - Expression class for if/then/else.
165 class IfExprAST : public ExprAST { class in inherits:ExprAST
168 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) function in class:IfExprAST
344 return new IfExprAST(Cond, Then, Else);
960 Value *IfExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp165 /// IfExprAST - Expression class for if/then/else.
166 class IfExprAST : public ExprAST { class in inherits:ExprAST
169 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) function in class:IfExprAST
345 return new IfExprAST(Cond, Then, Else);
720 Value *IfExprAST::Codegen() {
H A Dtoy.cpp166 /// IfExprAST - Expression class for if/then/else.
167 class IfExprAST : public ExprAST { class in inherits:ExprAST
170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) function in class:IfExprAST
346 return new IfExprAST(Cond, Then, Else);
1000 Value *IfExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp206 /// IfExprAST - Expression class for if/then/else.
207 class IfExprAST : public ExprAST { class in inherits:ExprAST
210 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) function in class:IfExprAST
386 return new IfExprAST(Cond, Then, Else);
1180 Value *IfExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp176 /// IfExprAST - Expression class for if/then/else.
177 struct IfExprAST : public ExprAST { struct in inherits:ExprAST
178 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, function in struct:IfExprAST
372 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
846 Value *IfExprAST::IRGen(IRGenContext &C) const {
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp175 /// IfExprAST - Expression class for if/then/else.
176 struct IfExprAST : public ExprAST { struct in inherits:ExprAST
177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, function in struct:IfExprAST
371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
845 Value *IfExprAST::IRGen(IRGenContext &C) const {
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp175 /// IfExprAST - Expression class for if/then/else.
176 struct IfExprAST : public ExprAST { struct in inherits:ExprAST
177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, function in struct:IfExprAST
371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
845 Value *IfExprAST::IRGen(IRGenContext &C) const {
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp175 /// IfExprAST - Expression class for if/then/else.
176 struct IfExprAST : public ExprAST { struct in inherits:ExprAST
177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, function in struct:IfExprAST
371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
845 Value *IfExprAST::IRGen(IRGenContext &C) const {

Completed in 102 milliseconds