Searched refs:CallExprAST (Results 1 – 6 of 6) sorted by relevance
/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 108 class CallExprAST : public ExprAST { class 112 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 203 return new CallExprAST(IdName, Args); in ParseIdentifierExpr()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 117 class CallExprAST : public ExprAST { class 121 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 215 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 382 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 124 class CallExprAST : public ExprAST { class 128 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 222 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 390 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 133 class CallExprAST : public ExprAST { class 137 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 251 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 491 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 148 class CallExprAST : public ExprAST { class 152 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 279 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 595 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 153 class CallExprAST : public ExprAST { class 157 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 297 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 691 Value *CallExprAST::Codegen() { in Codegen()
|