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

  /external/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/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/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/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);
738 Value *IfExprAST::Codegen() {
    [all...]
toy.cpp 186 /// IfExprAST - Expression class for if/then/else.
187 class IfExprAST : public ExprAST {
190 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
366 return new IfExprAST(Cond, Then, Else);
1102 Value *IfExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 163 /// IfExprAST - Expression class for if/then/else.
164 class IfExprAST : public ExprAST {
167 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
343 return new IfExprAST(Cond, Then, Else);
960 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);
720 Value *IfExprAST::Codegen() {
    [all...]
toy.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);
1000 Value *IfExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 210 /// IfExprAST - Expression class for if/then/else.
211 class IfExprAST : public ExprAST {
214 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
390 return new IfExprAST(Cond, Then, Else);
    [all...]

Completed in 338 milliseconds