HomeSort by relevance Sort by last modified time
    Searched refs:BinaryExprAST (Results 1 - 17 of 17) sorted by null

  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 107 /// BinaryExprAST - Expression class for a binary operator.
108 class BinaryExprAST : public ExprAST {
112 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
281 LHS = new BinaryExprAST(BinOp, LHS, RHS);
366 Value *BinaryExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 98 /// BinaryExprAST - Expression class for a binary operator.
99 class BinaryExprAST : public ExprAST {
101 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) {}
260 LHS = new BinaryExprAST(BinOp, LHS, RHS);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 122 /// BinaryExprAST - Expression class for a binary operator.
123 class BinaryExprAST : public ExprAST {
128 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
316 LHS = new BinaryExprAST(BinOp, LHS, RHS);
641 Value *BinaryExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 140 /// BinaryExprAST - Expression class for a binary operator.
141 class BinaryExprAST : public ExprAST {
146 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
436 LHS = new BinaryExprAST(BinOp, LHS, RHS);
527 Value *BinaryExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 159 /// BinaryExprAST - Expression class for a binary operator.
160 class BinaryExprAST : public ExprAST {
165 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
483 LHS = new BinaryExprAST(BinOp, LHS, RHS);
627 Value *BinaryExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 165 /// BinaryExprAST - Expression class for a binary operator.
166 class BinaryExprAST : public ExprAST {
171 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
554 LHS = new BinaryExprAST(BinOp, LHS, RHS);
712 Value *BinaryExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 260 /// BinaryExprAST - Expression class for a binary operator.
261 class BinaryExprAST : public ExprAST {
266 BinaryExprAST(SourceLocation Loc, char op, ExprAST *lhs, ExprAST *rhs)
701 LHS = new BinaryExprAST(BinLoc, BinOp, LHS, RHS);
905 Value *BinaryExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 160 /// BinaryExprAST - Expression class for a binary operator.
161 class BinaryExprAST : public ExprAST {
165 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
514 LHS = new BinaryExprAST(BinOp, LHS, RHS);
668 Value *BinaryExprAST::Codegen() {
    [all...]
toy.cpp 167 /// BinaryExprAST - Expression class for a binary operator.
168 class BinaryExprAST : public ExprAST {
172 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
521 LHS = new BinaryExprAST(BinOp, LHS, RHS);
1038 Value *BinaryExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 144 /// BinaryExprAST - Expression class for a binary operator.
145 class BinaryExprAST : public ExprAST {
149 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
498 LHS = new BinaryExprAST(BinOp, LHS, RHS);
896 Value *BinaryExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 145 /// BinaryExprAST - Expression class for a binary operator.
146 class BinaryExprAST : public ExprAST {
150 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
499 LHS = new BinaryExprAST(BinOp, LHS, RHS);
653 Value *BinaryExprAST::Codegen() {
    [all...]
toy.cpp 146 /// BinaryExprAST - Expression class for a binary operator.
147 class BinaryExprAST : public ExprAST {
151 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
500 LHS = new BinaryExprAST(BinOp, LHS, RHS);
936 Value *BinaryExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 186 /// BinaryExprAST - Expression class for a binary operator.
187 class BinaryExprAST : public ExprAST {
191 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
540 LHS = new BinaryExprAST(BinOp, LHS, RHS);
1109 Value *BinaryExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 152 /// BinaryExprAST - Expression class for a binary operator.
153 struct BinaryExprAST : public ExprAST {
154 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
537 LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
782 Value *BinaryExprAST::IRGen(IRGenContext &C) const {
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 151 /// BinaryExprAST - Expression class for a binary operator.
152 struct BinaryExprAST : public ExprAST {
153 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
536 LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
781 Value *BinaryExprAST::IRGen(IRGenContext &C) const {
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 151 /// BinaryExprAST - Expression class for a binary operator.
152 struct BinaryExprAST : public ExprAST {
153 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
536 LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
781 Value *BinaryExprAST::IRGen(IRGenContext &C) const {
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 151 /// BinaryExprAST - Expression class for a binary operator.
152 struct BinaryExprAST : public ExprAST {
153 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
536 LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
781 Value *BinaryExprAST::IRGen(IRGenContext &C) const {
    [all...]

Completed in 88 milliseconds