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 143 /// IfExprAST - Expression class for if/then/else.
144 class IfExprAST : public ExprAST {
147 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
298 return new IfExprAST(Cond, Then, Else);
512 Value *IfExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 158 /// IfExprAST - Expression class for if/then/else.
159 class IfExprAST : public ExprAST {
162 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
326 return new IfExprAST(Cond, Then, Else);
616 Value *IfExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 163 /// IfExprAST - Expression class for if/then/else.
164 class IfExprAST : public ExprAST {
167 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
344 return new IfExprAST(Cond, Then, Else);
712 Value *IfExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 181 /// IfExprAST - Expression class for if/then/else.
182 class IfExprAST : public ExprAST {
185 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
361 return new IfExprAST(Cond, Then, Else);
739 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);
1103 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);
961 Value *IfExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.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);
721 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);
1001 Value *IfExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 211 /// IfExprAST - Expression class for if/then/else.
212 class IfExprAST : public ExprAST {
215 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
391 return new IfExprAST(Cond, Then, Else);
    [all...]

Completed in 71 milliseconds