/external/llvm/examples/Kaleidoscope/Chapter2/ |
toy.cpp | 112 /// PrototypeAST - This class represents the "prototype" for a function, 115 class PrototypeAST { 119 PrototypeAST(const std::string &name, const std::vector<std::string> &args) 127 FunctionAST(PrototypeAST *proto, ExprAST *body) {} 159 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 275 static PrototypeAST *ParsePrototype() { 294 return new PrototypeAST(FnName, ArgNames); 300 PrototypeAST *Proto = ParsePrototype(); 312 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter3/ |
toy.cpp | 126 /// PrototypeAST - This class represents the "prototype" for a function, 129 class PrototypeAST { 133 PrototypeAST(const std::string &name, const std::vector<std::string> &args) 141 PrototypeAST *Proto; 144 FunctionAST(PrototypeAST *proto, ExprAST *body) 179 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 295 static PrototypeAST *ParsePrototype() { 314 return new PrototypeAST(FnName, ArgNames); 320 PrototypeAST *Proto = ParsePrototype(); 332 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter4/ |
toy.cpp | 133 /// PrototypeAST - This class represents the "prototype" for a function, 136 class PrototypeAST { 140 PrototypeAST(const std::string &name, const std::vector<std::string> &args) 148 PrototypeAST *Proto; 151 FunctionAST(PrototypeAST *proto, ExprAST *body) 186 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 302 static PrototypeAST *ParsePrototype() { 321 return new PrototypeAST(FnName, ArgNames); 327 PrototypeAST *Proto = ParsePrototype(); 339 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter5/ |
toy.cpp | 162 /// PrototypeAST - This class represents the "prototype" for a function, 165 class PrototypeAST { 169 PrototypeAST(const std::string &name, const std::vector<std::string> &args) 177 PrototypeAST *Proto; 180 FunctionAST(PrototypeAST *proto, ExprAST *body) 215 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 403 static PrototypeAST *ParsePrototype() { 422 return new PrototypeAST(FnName, ArgNames); 428 PrototypeAST *Proto = ParsePrototype(); 440 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter6/ |
toy.cpp | 177 /// PrototypeAST - This class represents the "prototype" for a function, 180 class PrototypeAST { 186 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 205 PrototypeAST *Proto; 208 FunctionAST(PrototypeAST *proto, ExprAST *body) 243 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 449 static PrototypeAST *ParsePrototype() { 507 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); 513 PrototypeAST *Proto = ParsePrototype(); 525 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter7/ |
toy.cpp | 194 /// PrototypeAST - This class represents the "prototype" for a function, 196 class PrototypeAST { 202 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 223 PrototypeAST *Proto; 226 FunctionAST(PrototypeAST *proto, ExprAST *body) 261 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 514 static PrototypeAST *ParsePrototype() { 572 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); 578 PrototypeAST *Proto = ParsePrototype(); 590 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy-jit.cpp | 212 /// PrototypeAST - This class represents the "prototype" for a function, 214 class PrototypeAST { 220 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 241 PrototypeAST *Proto; 244 FunctionAST(PrototypeAST *proto, ExprAST *body) 279 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 532 static PrototypeAST *ParsePrototype() { 590 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); 596 PrototypeAST *Proto = ParsePrototype(); 608 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |
toy.cpp | 218 /// PrototypeAST - This class represents the "prototype" for a function, 220 class PrototypeAST { 226 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 247 PrototypeAST *Proto; 250 FunctionAST(PrototypeAST *proto, ExprAST *body) 285 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 538 static PrototypeAST *ParsePrototype() { 596 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); 602 PrototypeAST *Proto = ParsePrototype(); 614 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
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) 262 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 515 static PrototypeAST *ParsePrototype() { 573 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); 579 PrototypeAST *Proto = ParsePrototype(); 591 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy-jit.cpp | 197 /// PrototypeAST - This class represents the "prototype" for a function, 199 class PrototypeAST { 205 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 226 PrototypeAST *Proto; 229 FunctionAST(PrototypeAST *proto, ExprAST *body) 264 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 517 static PrototypeAST *ParsePrototype() { 575 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); 581 PrototypeAST *Proto = ParsePrototype(); 593 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |
toy.cpp | 197 /// PrototypeAST - This class represents the "prototype" for a function, 199 class PrototypeAST { 205 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 226 PrototypeAST *Proto; 229 FunctionAST(PrototypeAST *proto, ExprAST *body) 264 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 517 static PrototypeAST *ParsePrototype() { 575 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); 581 PrototypeAST *Proto = ParsePrototype(); 593 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
toy.cpp | 242 /// PrototypeAST - This class represents the "prototype" for a function, 244 class PrototypeAST { 250 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 271 PrototypeAST *Proto; 274 FunctionAST(PrototypeAST *proto, ExprAST *body) 309 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } 562 static PrototypeAST *ParsePrototype() { 620 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); 626 PrototypeAST *Proto = ParsePrototype(); 638 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()) [all...] |