HomeSort by relevance Sort by last modified time
    Searched refs:CallExprAST (Results 1 - 17 of 17) sorted by null

  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 117 /// CallExprAST - Expression class for function calls.
118 class CallExprAST : public ExprAST {
122 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
217 return new CallExprAST(IdName, Args);
384 Value *CallExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 104 /// CallExprAST - Expression class for function calls.
105 class CallExprAST : public ExprAST {
109 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
196 return new CallExprAST(IdName, Args);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 133 /// CallExprAST - Expression class for function calls.
134 class CallExprAST : public ExprAST {
139 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args)
245 return new CallExprAST(IdName, Args);
664 Value *CallExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 151 /// CallExprAST - Expression class for function calls.
152 class CallExprAST : public ExprAST {
157 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args)
285 return new CallExprAST(IdName, Args);
550 Value *CallExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 170 /// CallExprAST - Expression class for function calls.
171 class CallExprAST : public ExprAST {
176 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args)
316 return new CallExprAST(IdName, Args);
658 Value *CallExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 176 /// CallExprAST - Expression class for function calls.
177 class CallExprAST : public ExprAST {
182 CallExprAST(const std::string &callee, std::vector<ExprAST *> &args)
336 return new CallExprAST(IdName, Args);
763 Value *CallExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 277 /// CallExprAST - Expression class for function calls.
278 class CallExprAST : public ExprAST {
283 CallExprAST(SourceLocation Loc, const std::string &callee,
480 return new CallExprAST(LitLoc, IdName, Args);
958 Value *CallExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 170 /// CallExprAST - Expression class for function calls.
171 class CallExprAST : public ExprAST {
175 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
315 return new CallExprAST(IdName, Args);
716 Value *CallExprAST::Codegen() {
    [all...]
toy.cpp 177 /// CallExprAST - Expression class for function calls.
178 class CallExprAST : public ExprAST {
182 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
322 return new CallExprAST(IdName, Args);
1083 Value *CallExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 154 /// CallExprAST - Expression class for function calls.
155 class CallExprAST : public ExprAST {
159 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
299 return new CallExprAST(IdName, Args);
941 Value *CallExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 155 /// CallExprAST - Expression class for function calls.
156 class CallExprAST : public ExprAST {
160 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
300 return new CallExprAST(IdName, Args);
698 Value *CallExprAST::Codegen() {
    [all...]
toy.cpp 156 /// CallExprAST - Expression class for function calls.
157 class CallExprAST : public ExprAST {
161 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
301 return new CallExprAST(IdName, Args);
981 Value *CallExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 164 /// CallExprAST - Expression class for function calls.
165 struct CallExprAST : public ExprAST {
166 CallExprAST(std::string CalleeName,
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 {
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 163 /// CallExprAST - Expression class for function calls.
164 struct CallExprAST : public ExprAST {
165 CallExprAST(std::string CalleeName,
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 {
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 163 /// CallExprAST - Expression class for function calls.
164 struct CallExprAST : public ExprAST {
165 CallExprAST(std::string CalleeName,
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 {
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 163 /// CallExprAST - Expression class for function calls.
164 struct CallExprAST : public ExprAST {
165 CallExprAST(std::string CalleeName,
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 {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 196 /// CallExprAST - Expression class for function calls.
197 class CallExprAST : public ExprAST {
201 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
341 return new CallExprAST(IdName, Args);
    [all...]

Completed in 84 milliseconds