HomeSort by relevance Sort by last modified time
    Searched refs:BinaryExprAST (Results 1 - 12 of 12) 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 114 /// BinaryExprAST - Expression class for a binary operator.
115 class BinaryExprAST : public ExprAST {
119 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
288 LHS = new BinaryExprAST(BinOp, LHS, RHS);
374 Value *BinaryExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 123 /// BinaryExprAST - Expression class for a binary operator.
124 class BinaryExprAST : public ExprAST {
128 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
389 LHS = new BinaryExprAST(BinOp, LHS, RHS);
475 Value *BinaryExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 138 /// BinaryExprAST - Expression class for a binary operator.
139 class BinaryExprAST : public ExprAST {
143 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
433 LHS = new BinaryExprAST(BinOp, LHS, RHS);
571 Value *BinaryExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 143 /// BinaryExprAST - Expression class for a binary operator.
144 class BinaryExprAST : public ExprAST {
148 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
498 LHS = new BinaryExprAST(BinOp, LHS, RHS);
649 Value *BinaryExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 161 /// BinaryExprAST - Expression class for a binary operator.
162 class BinaryExprAST : public ExprAST {
166 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
515 LHS = new BinaryExprAST(BinOp, LHS, RHS);
669 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);
1039 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);
897 Value *BinaryExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.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);
654 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);
937 Value *BinaryExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 191 /// BinaryExprAST - Expression class for a binary operator.
192 class BinaryExprAST : public ExprAST {
196 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
545 LHS = new BinaryExprAST(BinOp, LHS, RHS);
    [all...]

Completed in 255 milliseconds