Home
last modified time | relevance | path

Searched refs:BinaryExprAST (Results 1 – 22 of 22) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter2/
Dtoy.cpp99 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/
Dtoy.cpp108 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/
Dtoy.cpp123 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/
Dtoy.cpp141 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/
Dtoy.cpp160 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/
Dtoy-jit.cpp161 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()
Dtoy.cpp168 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/
Dtoy.cpp166 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/
Dtoy-jit.cpp146 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()
Dtoy.cpp147 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/
Dtoy.cpp145 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/
Dtoy.cpp261 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/
Dtoy.cpp187 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/
Dtoy.cpp152 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/
Dtoy.cpp152 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/
Dtoy.cpp152 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/
DLangImpl2.rst72 /// 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);
DLangImpl8.rst321 LHS = new BinaryExprAST(BinLoc, BinOp, LHS, RHS);
DLangImpl6.rst230 Value *BinaryExprAST::Codegen() {
DLangImpl3.rst145 Value *BinaryExprAST::Codegen() {
DLangImpl7.rst572 Value *BinaryExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
Dtoy.cpp153 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()