Searched refs:CallExprAST (Results 1 - 17 of 17) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp117 /// CallExprAST - Expression class for function calls.
118 class CallExprAST : public ExprAST { class in namespace:__anon10100
122 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) function in class:__anon10100::CallExprAST
217 return new CallExprAST(IdName, Args);
384 Value *CallExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp104 /// CallExprAST - Expression class for function calls.
105 class CallExprAST : public ExprAST { class in namespace:__anon10099
109 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) function in class:__anon10099::CallExprAST
196 return new CallExprAST(IdName, Args);
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp133 /// CallExprAST - Expression class for function calls.
134 class CallExprAST : public ExprAST { class in namespace:__anon10101
139 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args) function in class:__anon10101::CallExprAST
245 return new CallExprAST(IdName, Args);
664 Value *CallExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp151 /// CallExprAST - Expression class for function calls.
152 class CallExprAST : public ExprAST { class in namespace:__anon10102
157 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args) function in class:__anon10102::CallExprAST
285 return new CallExprAST(IdName, Args);
550 Value *CallExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp170 /// CallExprAST - Expression class for function calls.
171 class CallExprAST : public ExprAST { class in namespace:__anon10103
176 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args) function in class:__anon10103::CallExprAST
316 return new CallExprAST(IdName, Args);
658 Value *CallExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp176 /// CallExprAST - Expression class for function calls.
177 class CallExprAST : public ExprAST { class in namespace:__anon10104
182 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args) function in class:__anon10104::CallExprAST
336 return new CallExprAST(IdName, Args);
763 Value *CallExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp277 /// CallExprAST - Expression class for function calls.
278 class CallExprAST : public ExprAST { class in namespace:__anon10106
283 CallExprAST(SourceLocation Loc, const std::string &callee, function in class:__anon10106::CallExprAST
480 return new CallExprAST(LitLoc, IdName, Args);
958 Value *CallExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp170 /// CallExprAST - Expression class for function calls.
171 class CallExprAST : public ExprAST { class in inherits:ExprAST
175 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) function in class:CallExprAST
315 return new CallExprAST(IdName, Args);
716 Value *CallExprAST::Codegen() {
H A Dtoy.cpp177 /// CallExprAST - Expression class for function calls.
178 class CallExprAST : public ExprAST { class in inherits:ExprAST
182 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) function in class:CallExprAST
322 return new CallExprAST(IdName, Args);
1083 Value *CallExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp154 /// CallExprAST - Expression class for function calls.
155 class CallExprAST : public ExprAST { class in inherits:ExprAST
159 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) function in class:CallExprAST
299 return new CallExprAST(IdName, Args);
941 Value *CallExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp155 /// CallExprAST - Expression class for function calls.
156 class CallExprAST : public ExprAST { class in inherits:ExprAST
160 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) function in class:CallExprAST
300 return new CallExprAST(IdName, Args);
698 Value *CallExprAST::Codegen() {
H A Dtoy.cpp156 /// CallExprAST - Expression class for function calls.
157 class CallExprAST : public ExprAST { class in inherits:ExprAST
161 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) function in class:CallExprAST
301 return new CallExprAST(IdName, Args);
981 Value *CallExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp164 /// CallExprAST - Expression class for function calls.
165 struct CallExprAST : public ExprAST { struct in inherits:ExprAST
166 CallExprAST(std::string CalleeName, function in struct:CallExprAST
315 return ErrorU<CallExprAST>("Expected ')' or ',' in argument list");
323 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
827 Value *CallExprAST::IRGen(IRGenContext &C) const {
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp163 /// CallExprAST - Expression class for function calls.
164 struct CallExprAST : public ExprAST { struct in inherits:ExprAST
165 CallExprAST(std::string CalleeName, function in struct:CallExprAST
314 return ErrorU<CallExprAST>("Expected ')' or ',' in argument list");
322 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
826 Value *CallExprAST::IRGen(IRGenContext &C) const {
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp163 /// CallExprAST - Expression class for function calls.
164 struct CallExprAST : public ExprAST { struct in inherits:ExprAST
165 CallExprAST(std::string CalleeName, function in struct:CallExprAST
314 return ErrorU<CallExprAST>("Expected ')' or ',' in argument list");
322 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
826 Value *CallExprAST::IRGen(IRGenContext &C) const {
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp163 /// CallExprAST - Expression class for function calls.
164 struct CallExprAST : public ExprAST { struct in inherits:ExprAST
165 CallExprAST(std::string CalleeName, function in struct:CallExprAST
314 return ErrorU<CallExprAST>("Expected ')' or ',' in argument list");
322 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
826 Value *CallExprAST::IRGen(IRGenContext &C) const {
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp196 /// CallExprAST - Expression class for function calls.
197 class CallExprAST : public ExprAST { class in inherits:ExprAST
201 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) function in class:CallExprAST
341 return new CallExprAST(IdName, Args);
1158 Value *CallExprAST::Codegen() {

Completed in 135 milliseconds