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

1 2

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 174 /// IfExprAST - Expression class for if/then/else.
175 class IfExprAST : public ExprAST {
179 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
347 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
607 Value *IfExprAST::codegen() {
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 142 /// IfExprAST - Expression class for if/then/else.
143 class IfExprAST : public ExprAST {
146 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
296 return new IfExprAST(Cond, Then, Else);
510 Value *IfExprAST::Codegen() {
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 157 /// IfExprAST - Expression class for if/then/else.
158 class IfExprAST : public ExprAST {
161 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
324 return new IfExprAST(Cond, Then, Else);
614 Value *IfExprAST::Codegen() {
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 183 /// IfExprAST - Expression class for if/then/else.
184 class IfExprAST : public ExprAST {
188 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
361 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
621 Value *IfExprAST::codegen() {
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 200 /// IfExprAST - Expression class for if/then/else.
201 class IfExprAST : public ExprAST {
205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
822 Value *IfExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 200 /// IfExprAST - Expression class for if/then/else.
201 class IfExprAST : public ExprAST {
205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
822 Value *IfExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 200 /// IfExprAST - Expression class for if/then/else.
201 class IfExprAST : public ExprAST {
205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
822 Value *IfExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 201 /// IfExprAST - Expression class for if/then/else.
202 class IfExprAST : public ExprAST {
206 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
388 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
811 Value *IfExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 216 /// IfExprAST - Expression class for if/then/else.
217 class IfExprAST : public ExprAST {
221 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
403 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
833 Value *IfExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 193 /// IfExprAST - Expression class for if/then/else.
194 class IfExprAST : public ExprAST {
198 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
380 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
718 Value *IfExprAST::codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 200 /// IfExprAST - Expression class for if/then/else.
201 class IfExprAST : public ExprAST {
205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
823 Value *IfExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 197 /// IfExprAST - Expression class for if/then/else.
198 class IfExprAST : public ExprAST {
202 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
397 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
818 Value *IfExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 180 /// IfExprAST - Expression class for if/then/else.
181 class IfExprAST : public ExprAST {
184 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
360 return new IfExprAST(Cond, Then, Else);
737 Value *IfExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 164 /// IfExprAST - Expression class for if/then/else.
165 class IfExprAST : public ExprAST {
168 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
344 return new IfExprAST(Cond, Then, Else);
959 Value *IfExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 165 /// IfExprAST - Expression class for if/then/else.
166 class IfExprAST : public ExprAST {
169 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
345 return new IfExprAST(Cond, Then, Else);
719 Value *IfExprAST::Codegen() {
    [all...]
toy.cpp 166 /// IfExprAST - Expression class for if/then/else.
167 class IfExprAST : public ExprAST {
170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
346 return new IfExprAST(Cond, Then, Else);
999 Value *IfExprAST::Codegen() {
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 162 /// IfExprAST - Expression class for if/then/else.
163 class IfExprAST : public ExprAST {
166 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
342 return new IfExprAST(Cond, Then, Else);
710 Value *IfExprAST::Codegen() {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 206 /// IfExprAST - Expression class for if/then/else.
207 class IfExprAST : public ExprAST {
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
412 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
834 Value *IfExprAST::codegen() {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 206 /// IfExprAST - Expression class for if/then/else.
207 class IfExprAST : public ExprAST {
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
412 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
834 Value *IfExprAST::codegen() {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 206 /// IfExprAST - Expression class for if/then/else.
207 class IfExprAST : public ExprAST {
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
412 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
834 Value *IfExprAST::codegen() {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 206 /// IfExprAST - Expression class for if/then/else.
207 class IfExprAST : public ExprAST {
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
397 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
820 Value *IfExprAST::codegen() {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 223 /// IfExprAST - Expression class for if/then/else.
224 class IfExprAST : public ExprAST {
228 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
414 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
844 Value *IfExprAST::codegen() {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 203 /// IfExprAST - Expression class for if/then/else.
204 class IfExprAST : public ExprAST {
208 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
395 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
733 Value *IfExprAST::codegen() {
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 211 /// IfExprAST - Expression class for if/then/else.
212 class IfExprAST : public ExprAST {
216 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
417 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
840 Value *IfExprAST::codegen() {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 212 /// IfExprAST - Expression class for if/then/else.
213 class IfExprAST : public ExprAST {
217 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
418 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
839 Value *IfExprAST::codegen() {
    [all...]

Completed in 234 milliseconds

1 2