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

  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 113 /// PrototypeAST - This class represents the "prototype" for a function,
116 class PrototypeAST {
120 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
128 FunctionAST(PrototypeAST *proto, ExprAST *body) {}
161 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
276 static PrototypeAST *ParsePrototype() {
295 return new PrototypeAST(FnName, ArgNames);
301 PrototypeAST *Proto = ParsePrototype();
313 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 127 /// PrototypeAST - This class represents the "prototype" for a function,
130 class PrototypeAST {
134 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
142 PrototypeAST *Proto;
145 FunctionAST(PrototypeAST *proto, ExprAST *body)
181 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
297 static PrototypeAST *ParsePrototype() {
316 return new PrototypeAST(FnName, ArgNames);
322 PrototypeAST *Proto = ParsePrototype();
334 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 134 /// PrototypeAST - This class represents the "prototype" for a function,
137 class PrototypeAST {
141 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
149 PrototypeAST *Proto;
152 FunctionAST(PrototypeAST *proto, ExprAST *body)
188 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
304 static PrototypeAST *ParsePrototype() {
323 return new PrototypeAST(FnName, ArgNames);
329 PrototypeAST *Proto = ParsePrototype();
341 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 163 /// PrototypeAST - This class represents the "prototype" for a function,
166 class PrototypeAST {
170 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
178 PrototypeAST *Proto;
181 FunctionAST(PrototypeAST *proto, ExprAST *body)
217 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
405 static PrototypeAST *ParsePrototype() {
424 return new PrototypeAST(FnName, ArgNames);
430 PrototypeAST *Proto = ParsePrototype();
442 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 178 /// PrototypeAST - This class represents the "prototype" for a function,
181 class PrototypeAST {
187 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
206 PrototypeAST *Proto;
209 FunctionAST(PrototypeAST *proto, ExprAST *body)
245 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
451 static PrototypeAST *ParsePrototype() {
509 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
515 PrototypeAST *Proto = ParsePrototype();
527 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 195 /// PrototypeAST - This class represents the "prototype" for a function,
197 class PrototypeAST {
203 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
224 PrototypeAST *Proto;
227 FunctionAST(PrototypeAST *proto, ExprAST *body)
263 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
516 static PrototypeAST *ParsePrototype() {
574 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
580 PrototypeAST *Proto = ParsePrototype();
592 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 213 /// PrototypeAST - This class represents the "prototype" for a function,
215 class PrototypeAST {
221 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
242 PrototypeAST *Proto;
245 FunctionAST(PrototypeAST *proto, ExprAST *body)
280 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
533 static PrototypeAST *ParsePrototype() {
591 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
597 PrototypeAST *Proto = ParsePrototype();
609 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
toy.cpp 219 /// PrototypeAST - This class represents the "prototype" for a function,
221 class PrototypeAST {
227 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
248 PrototypeAST *Proto;
251 FunctionAST(PrototypeAST *proto, ExprAST *body)
286 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
539 static PrototypeAST *ParsePrototype() {
597 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
603 PrototypeAST *Proto = ParsePrototype();
615 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 196 /// PrototypeAST - This class represents the "prototype" for a function,
198 class PrototypeAST {
204 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
225 PrototypeAST *Proto;
228 FunctionAST(PrototypeAST *proto, ExprAST *body)
263 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
516 static PrototypeAST *ParsePrototype() {
574 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
580 PrototypeAST *Proto = ParsePrototype();
592 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 198 /// PrototypeAST - This class represents the "prototype" for a function,
200 class PrototypeAST {
206 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
227 PrototypeAST *Proto;
230 FunctionAST(PrototypeAST *proto, ExprAST *body)
265 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
518 static PrototypeAST *ParsePrototype() {
576 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
582 PrototypeAST *Proto = ParsePrototype();
594 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
toy.cpp 198 /// PrototypeAST - This class represents the "prototype" for a function,
200 class PrototypeAST {
206 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
227 PrototypeAST *Proto;
230 FunctionAST(PrototypeAST *proto, ExprAST *body)
265 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
518 static PrototypeAST *ParsePrototype() {
576 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
582 PrototypeAST *Proto = ParsePrototype();
594 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 243 /// PrototypeAST - This class represents the "prototype" for a function,
245 class PrototypeAST {
251 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
272 PrototypeAST *Proto;
275 FunctionAST(PrototypeAST *proto, ExprAST *body)
310 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
563 static PrototypeAST *ParsePrototype() {
621 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
627 PrototypeAST *Proto = ParsePrototype();
639 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]

Completed in 120 milliseconds