/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 105 class CallExprAST : public ExprAST { class 109 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in __anonab6338a00111::CallExprAST 196 return new CallExprAST(IdName, Args); in ParseIdentifierExpr()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 118 class CallExprAST : public ExprAST { class 122 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in __anon1fdfa9a10111::CallExprAST 217 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 384 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 134 class CallExprAST : public ExprAST { class 139 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args) in CallExprAST() function in __anon945c1aa20111::CallExprAST 245 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 664 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 152 class CallExprAST : public ExprAST { class 157 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args) in CallExprAST() function in __anon08d88ba30111::CallExprAST 285 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 550 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 171 class CallExprAST : public ExprAST { class 176 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args) in CallExprAST() function in __anon7d54fca40111::CallExprAST 316 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 658 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 171 class CallExprAST : public ExprAST { class 175 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 315 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 716 Value *CallExprAST::Codegen() { in Codegen()
|
D | toy.cpp | 178 class CallExprAST : public ExprAST { class 182 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 322 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 1083 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 177 class CallExprAST : public ExprAST { class 182 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args) in CallExprAST() function in __anonf1d16da50111::CallExprAST 336 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 763 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 156 class CallExprAST : public ExprAST { class 160 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 300 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 698 Value *CallExprAST::Codegen() { in Codegen()
|
D | toy.cpp | 157 class CallExprAST : public ExprAST { class 161 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 301 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 981 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
D | toy.cpp | 164 struct CallExprAST : public ExprAST { struct 165 CallExprAST(std::string CalleeName, in CallExprAST() function 314 return ErrorU<CallExprAST>("Expected ')' or ',' in argument list"); in ParseIdentifierExpr() 322 return llvm::make_unique<CallExprAST>(IdName, std::move(Args)); in ParseIdentifierExpr() 826 Value *CallExprAST::IRGen(IRGenContext &C) const { in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
D | toy.cpp | 164 struct CallExprAST : public ExprAST { struct 165 CallExprAST(std::string CalleeName, in CallExprAST() function 314 return ErrorU<CallExprAST>("Expected ')' or ',' in argument list"); in ParseIdentifierExpr() 322 return llvm::make_unique<CallExprAST>(IdName, std::move(Args)); in ParseIdentifierExpr() 826 Value *CallExprAST::IRGen(IRGenContext &C) const { in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
D | toy.cpp | 164 struct CallExprAST : public ExprAST { struct 165 CallExprAST(std::string CalleeName, in CallExprAST() argument 314 return ErrorU<CallExprAST>("Expected ')' or ',' in argument list"); in ParseIdentifierExpr() 322 return llvm::make_unique<CallExprAST>(IdName, std::move(Args)); in ParseIdentifierExpr() 826 Value *CallExprAST::IRGen(IRGenContext &C) const { in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
D | toy.cpp | 165 struct CallExprAST : public ExprAST { struct 166 CallExprAST(std::string CalleeName, in CallExprAST() function 315 return ErrorU<CallExprAST>("Expected ')' or ',' in argument list"); in ParseIdentifierExpr() 323 return llvm::make_unique<CallExprAST>(IdName, std::move(Args)); in ParseIdentifierExpr() 827 Value *CallExprAST::IRGen(IRGenContext &C) const { in IRGen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 155 class CallExprAST : public ExprAST { class 159 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 299 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 941 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 278 class CallExprAST : public ExprAST { class 283 CallExprAST(SourceLocation Loc, const std::string &callee, in CallExprAST() function in __anon664ddea60211::CallExprAST 480 return new CallExprAST(LitLoc, IdName, Args); in ParseIdentifierExpr() 958 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 197 class CallExprAST : public ExprAST { class 201 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) in CallExprAST() function in CallExprAST 341 return new CallExprAST(IdName, Args); in ParseIdentifierExpr() 1158 Value *CallExprAST::Codegen() { in Codegen()
|
/external/llvm/docs/tutorial/ |
D | LangImpl2.rst | 81 /// CallExprAST - Expression class for function calls. 82 class CallExprAST : public ExprAST { 86 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 281 return new CallExprAST(IdName, Args); 291 ``CallExprAST`` node as appropriate.
|
D | LangImpl3.rst | 201 Value *CallExprAST::Codegen() {
|