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

  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
toy.cpp 106 /// BinaryExprAST - Expression class for a binary operator.
107 class BinaryExprAST : public ExprAST {
111 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
279 LHS = new BinaryExprAST(BinOp, LHS, RHS);
364 Value *BinaryExprAST::Codegen() {
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 98 /// BinaryExprAST - Expression class for a binary operator.
99 class BinaryExprAST : public ExprAST {
103 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
267 LHS = new BinaryExprAST(BinOp, LHS, RHS);
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 119 /// BinaryExprAST - Expression class for a binary operator.
120 class BinaryExprAST : public ExprAST {
125 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
308 LHS = helper::make_unique<BinaryExprAST>(BinOp, std::move(LHS),
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 123 /// BinaryExprAST - Expression class for a binary operator.
124 class BinaryExprAST : public ExprAST {
129 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
319 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
413 Value *BinaryExprAST::codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 132 /// BinaryExprAST - Expression class for a binary operator.
133 class BinaryExprAST : public ExprAST {
138 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
328 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
440 Value *BinaryExprAST::codegen() {
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
toy.cpp 113 /// BinaryExprAST - Expression class for a binary operator.
114 class BinaryExprAST : public ExprAST {
118 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
286 LHS = new BinaryExprAST(BinOp, LHS, RHS);
372 Value *BinaryExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 150 /// BinaryExprAST - Expression class for a binary operator.
151 class BinaryExprAST : public ExprAST {
156 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
453 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
565 Value *BinaryExprAST::codegen() {
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 122 /// BinaryExprAST - Expression class for a binary operator.
123 class BinaryExprAST : public ExprAST {
127 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
387 LHS = new BinaryExprAST(BinOp, LHS, RHS);
473 Value *BinaryExprAST::Codegen() {
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 137 /// BinaryExprAST - Expression class for a binary operator.
138 class BinaryExprAST : public ExprAST {
142 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
431 LHS = new BinaryExprAST(BinOp, LHS, RHS);
569 Value *BinaryExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 176 /// BinaryExprAST - Expression class for a binary operator.
177 class BinaryExprAST : public ExprAST {
182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
573 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
749 Value *BinaryExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 176 /// BinaryExprAST - Expression class for a binary operator.
177 class BinaryExprAST : public ExprAST {
182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
573 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
749 Value *BinaryExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 176 /// BinaryExprAST - Expression class for a binary operator.
177 class BinaryExprAST : public ExprAST {
182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
573 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
749 Value *BinaryExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 177 /// BinaryExprAST - Expression class for a binary operator.
178 class BinaryExprAST : public ExprAST {
183 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
561 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
738 Value *BinaryExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 192 /// BinaryExprAST - Expression class for a binary operator.
193 class BinaryExprAST : public ExprAST {
198 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
576 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
760 Value *BinaryExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 169 /// BinaryExprAST - Expression class for a binary operator.
170 class BinaryExprAST : public ExprAST {
175 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
502 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
668 Value *BinaryExprAST::codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 176 /// BinaryExprAST - Expression class for a binary operator.
177 class BinaryExprAST : public ExprAST {
182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
573 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
750 Value *BinaryExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 173 /// BinaryExprAST - Expression class for a binary operator.
174 class BinaryExprAST : public ExprAST {
179 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS,
570 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
745 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/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 142 /// BinaryExprAST - Expression class for a binary operator.
143 class BinaryExprAST : public ExprAST {
147 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
496 LHS = new BinaryExprAST(BinOp, LHS, RHS);
647 Value *BinaryExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 257 /// BinaryExprAST - Expression class for a binary operator.
258 class BinaryExprAST : public ExprAST {
263 BinaryExprAST(SourceLocation Loc, char Op, std::unique_ptr<ExprAST> LHS,
702 LHS = llvm::make_unique<BinaryExprAST>(BinLoc, BinOp, std::move(LHS),
923 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...]

Completed in 555 milliseconds