/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 99 class BinaryExprAST : public ExprAST { class 101 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) {} in BinaryExprAST() function in __anonab6338a00111::BinaryExprAST 260 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 108 class BinaryExprAST : public ExprAST { class 112 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in __anon1fdfa9a10111::BinaryExprAST 281 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS() 366 Value *BinaryExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 123 class BinaryExprAST : public ExprAST { class 128 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in __anon945c1aa20111::BinaryExprAST 316 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS() 641 Value *BinaryExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 141 class BinaryExprAST : public ExprAST { class 146 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in __anon08d88ba30111::BinaryExprAST 436 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS() 527 Value *BinaryExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 160 class BinaryExprAST : public ExprAST { class 165 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in __anon7d54fca40111::BinaryExprAST 483 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS() 627 Value *BinaryExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 161 class BinaryExprAST : public ExprAST { class 165 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in BinaryExprAST 514 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS() 668 Value *BinaryExprAST::Codegen() { in Codegen()
|
D | toy.cpp | 168 class BinaryExprAST : public ExprAST { class 172 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in BinaryExprAST 521 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS() 1038 Value *BinaryExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 166 class BinaryExprAST : public ExprAST { class 171 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in __anonf1d16da50111::BinaryExprAST 554 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS() 712 Value *BinaryExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 146 class BinaryExprAST : public ExprAST { class 150 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in BinaryExprAST 499 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS() 653 Value *BinaryExprAST::Codegen() { in Codegen()
|
D | toy.cpp | 147 class BinaryExprAST : public ExprAST { class 151 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in BinaryExprAST 500 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS() 936 Value *BinaryExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 145 class BinaryExprAST : public ExprAST { class 149 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in BinaryExprAST 498 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS() 896 Value *BinaryExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 261 class BinaryExprAST : public ExprAST { class 266 BinaryExprAST(SourceLocation Loc, char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in __anon664ddea60211::BinaryExprAST 701 LHS = new BinaryExprAST(BinLoc, BinOp, LHS, RHS); in ParseBinOpRHS() 905 Value *BinaryExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 187 class BinaryExprAST : public ExprAST { class 191 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) in BinaryExprAST() function in BinaryExprAST 540 LHS = new BinaryExprAST(BinOp, LHS, RHS); in ParseBinOpRHS() 1109 Value *BinaryExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
D | toy.cpp | 152 struct BinaryExprAST : public ExprAST { struct 153 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, in BinaryExprAST() function 536 LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS)); in ParseBinOpRHS() 781 Value *BinaryExprAST::IRGen(IRGenContext &C) const { in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
D | toy.cpp | 152 struct BinaryExprAST : public ExprAST { struct 153 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, in BinaryExprAST() function 536 LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS)); in ParseBinOpRHS() 781 Value *BinaryExprAST::IRGen(IRGenContext &C) const { in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
D | toy.cpp | 152 struct BinaryExprAST : public ExprAST { struct 153 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, in BinaryExprAST() function 536 LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS)); in ParseBinOpRHS() 781 Value *BinaryExprAST::IRGen(IRGenContext &C) const { in IRGen()
|
/external/llvm/docs/tutorial/ |
D | LangImpl2.rst | 72 /// BinaryExprAST - Expression class for a binary operator. 73 class BinaryExprAST : public ExprAST { 77 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) 147 ExprAST *Result = new BinaryExprAST('+', X, Y); 477 LHS = new BinaryExprAST(BinOp, LHS, RHS); 505 LHS = new BinaryExprAST(BinOp, LHS, RHS);
|
D | LangImpl8.rst | 321 LHS = new BinaryExprAST(BinLoc, BinOp, LHS, RHS);
|
D | LangImpl6.rst | 230 Value *BinaryExprAST::Codegen() {
|
D | LangImpl3.rst | 145 Value *BinaryExprAST::Codegen() {
|
D | LangImpl7.rst | 572 Value *BinaryExprAST::Codegen() {
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
D | toy.cpp | 153 struct BinaryExprAST : public ExprAST { struct 154 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, in BinaryExprAST() argument 537 LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS)); in ParseBinOpRHS() 782 Value *BinaryExprAST::IRGen(IRGenContext &C) const { in IRGen()
|