Home
last modified time | relevance | path

Searched refs:CallExprAST (Results 1 – 6 of 6) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter2/
Dtoy.cpp108 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/
Dtoy.cpp117 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/
Dtoy.cpp124 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/
Dtoy.cpp133 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/
Dtoy.cpp148 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/
Dtoy.cpp153 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()