/external/llvm/examples/Kaleidoscope/Chapter5/ |
H A D | toy.cpp | 162 /// IfExprAST - Expression class for if/then/else. 163 class IfExprAST : public ExprAST { class in namespace:__anon11886 167 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, function in class:__anon11886::IfExprAST 335 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), 595 Value *IfExprAST::codegen() {
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
H A D | toy.cpp | 181 /// IfExprAST - Expression class for if/then/else. 182 class IfExprAST : public ExprAST { class in namespace:__anon11887 186 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, function in class:__anon11887::IfExprAST 368 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), 706 Value *IfExprAST::codegen() {
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
H A D | toy.cpp | 187 /// IfExprAST - Expression class for if/then/else. 188 class IfExprAST : public ExprAST { class in namespace:__anon11888 192 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, function in class:__anon11888::IfExprAST 387 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), 811 Value *IfExprAST::codegen() {
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
H A D | toy-jit.cpp | 180 /// 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 D | toy.cpp | 187 /// 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 D | toy.cpp | 164 /// 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 D | toy-jit.cpp | 165 /// 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 D | toy.cpp | 166 /// 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/Chapter8/ |
H A D | toy.cpp | 292 /// IfExprAST - Expression class for if/then/else. 293 class IfExprAST : public ExprAST { class in namespace:__anon11890 297 IfExprAST(SourceLocation Loc, std::unique_ptr<ExprAST> Cond, function in class:__anon11890::IfExprAST 528 return llvm::make_unique<IfExprAST>(IfLoc, std::move(Cond), std::move(Then), 1000 Value *IfExprAST::codegen() {
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
H A D | toy.cpp | 206 /// 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 D | toy.cpp | 176 /// 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), 845 Value *IfExprAST::IRGen(IRGenContext &C) const {
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
H A D | toy.cpp | 175 /// 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), 844 Value *IfExprAST::IRGen(IRGenContext &C) const {
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
H A D | toy.cpp | 175 /// 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), 844 Value *IfExprAST::IRGen(IRGenContext &C) const {
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
H A D | toy.cpp | 175 /// 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), 844 Value *IfExprAST::IRGen(IRGenContext &C) const {
|