Searched defs:BinaryExprAST (Results 1 - 25 of 25) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp119 /// BinaryExprAST - Expression class for a binary operator.
120 class BinaryExprAST : public ExprAST { class in namespace:__anon12325
125 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:__anon12325::BinaryExprAST
308 LHS = helper::make_unique<BinaryExprAST>(BinOp, std::move(LHS),
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp123 /// BinaryExprAST - Expression class for a binary operator.
124 class BinaryExprAST : public ExprAST { class in namespace:__anon12326
129 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:__anon12326::BinaryExprAST
319 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
413 Value *BinaryExprAST::codegen() {
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp98 /// BinaryExprAST - Expression class for a binary operator.
99 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
103 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
267 LHS = new BinaryExprAST(BinOp, LHS, RHS);
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp132 /// BinaryExprAST - Expression class for a binary operator.
133 class BinaryExprAST : public ExprAST { class in namespace:__anon12327
138 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:__anon12327::BinaryExprAST
328 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
440 Value *BinaryExprAST::codegen() {
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp106 /// BinaryExprAST - Expression class for a binary operator.
107 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
111 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
279 LHS = new BinaryExprAST(BinOp, LHS, RHS);
364 Value *BinaryExprAST::Codegen() {
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp113 /// BinaryExprAST - Expression class for a binary operator.
114 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
118 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
286 LHS = new BinaryExprAST(BinOp, LHS, RHS);
372 Value *BinaryExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp176 /// BinaryExprAST - Expression class for a binary operator.
177 class BinaryExprAST : public ExprAST { class in namespace:__anon12322
182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:__anon12322::BinaryExprAST
573 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
749 Value *BinaryExprAST::codegen() {
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp176 /// BinaryExprAST - Expression class for a binary operator.
177 class BinaryExprAST : public ExprAST { class in namespace:__anon12323
182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:__anon12323::BinaryExprAST
573 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
749 Value *BinaryExprAST::codegen() {
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp176 /// BinaryExprAST - Expression class for a binary operator.
177 class BinaryExprAST : public ExprAST { class in namespace:__anon12324
182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:__anon12324::BinaryExprAST
573 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
749 Value *BinaryExprAST::codegen() {
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp177 /// BinaryExprAST - Expression class for a binary operator.
178 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
183 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:BinaryExprAST
561 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
738 Value *BinaryExprAST::codegen() {
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
H A Dtoy.cpp192 /// BinaryExprAST - Expression class for a binary operator.
193 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
198 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:BinaryExprAST
576 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
760 Value *BinaryExprAST::codegen() {
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp150 /// BinaryExprAST - Expression class for a binary operator.
151 class BinaryExprAST : public ExprAST { class in namespace:__anon12328
156 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:__anon12328::BinaryExprAST
453 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
565 Value *BinaryExprAST::codegen() {
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp169 /// BinaryExprAST - Expression class for a binary operator.
170 class BinaryExprAST : public ExprAST { class in namespace:__anon12329
175 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:__anon12329::BinaryExprAST
502 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
668 Value *BinaryExprAST::codegen() {
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp176 /// BinaryExprAST - Expression class for a binary operator.
177 class BinaryExprAST : public ExprAST { class in namespace:__anon12330
182 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:__anon12330::BinaryExprAST
573 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
750 Value *BinaryExprAST::codegen() {
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp173 /// BinaryExprAST - Expression class for a binary operator.
174 class BinaryExprAST : public ExprAST { class in namespace:__anon12331
179 BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, function in class:__anon12331::BinaryExprAST
570 llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
745 Value *BinaryExprAST::codegen() {
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp122 /// BinaryExprAST - Expression class for a binary operator.
123 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
127 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
387 LHS = new BinaryExprAST(BinOp, LHS, RHS);
473 Value *BinaryExprAST::Codegen() {
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp137 /// BinaryExprAST - Expression class for a binary operator.
138 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
142 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
431 LHS = new BinaryExprAST(BinOp, LHS, RHS);
569 Value *BinaryExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp257 /// BinaryExprAST - Expression class for a binary operator.
258 class BinaryExprAST : public ExprAST { class in namespace:__anon12333
263 BinaryExprAST(SourceLocation Loc, char Op, std::unique_ptr<ExprAST> LHS, function in class:__anon12333::BinaryExprAST
702 LHS = llvm::make_unique<BinaryExprAST>(BinLoc, BinOp, std::move(LHS),
923 Value *BinaryExprAST::codegen() {
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp160 /// BinaryExprAST - Expression class for a binary operator.
161 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
165 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
514 LHS = new BinaryExprAST(BinOp, LHS, RHS);
668 Value *BinaryExprAST::Codegen() {
H A Dtoy.cpp167 /// BinaryExprAST - Expression class for a binary operator.
168 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
172 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
521 LHS = new BinaryExprAST(BinOp, LHS, RHS);
1038 Value *BinaryExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp186 /// BinaryExprAST - Expression class for a binary operator.
187 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
191 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
540 LHS = new BinaryExprAST(BinOp, LHS, RHS);
1109 Value *BinaryExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp144 /// BinaryExprAST - Expression class for a binary operator.
145 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
149 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
498 LHS = new BinaryExprAST(BinOp, LHS, RHS);
896 Value *BinaryExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp145 /// BinaryExprAST - Expression class for a binary operator.
146 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
150 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
499 LHS = new BinaryExprAST(BinOp, LHS, RHS);
653 Value *BinaryExprAST::Codegen() {
H A Dtoy.cpp146 /// BinaryExprAST - Expression class for a binary operator.
147 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
151 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
500 LHS = new BinaryExprAST(BinOp, LHS, RHS);
936 Value *BinaryExprAST::Codegen() {
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp142 /// BinaryExprAST - Expression class for a binary operator.
143 class BinaryExprAST : public ExprAST { class in inherits:ExprAST
147 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) function in class:BinaryExprAST
496 LHS = new BinaryExprAST(BinOp, LHS, RHS);
647 Value *BinaryExprAST::Codegen() {

Completed in 201 milliseconds