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

  /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/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...]
toy.cpp 187 /// IfExprAST - Expression class for if/then/else.
188 class IfExprAST : public ExprAST {
191 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
367 return new IfExprAST(Cond, Then, Else);
1101 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/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 293 /// IfExprAST - Expression class for if/then/else.
294 class IfExprAST : public ExprAST {
298 IfExprAST(SourceLocation Loc, std::unique_ptr<ExprAST> Cond,
529 return llvm::make_unique<IfExprAST>(IfLoc, std::move(Cond), std::move(Then),
1000 Value *IfExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 206 /// IfExprAST - Expression class for if/then/else.
207 class IfExprAST : public ExprAST {
210 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
386 return new IfExprAST(Cond, Then, Else);
    [all...]

Completed in 2103 milliseconds