Searched refs:PrototypeAST (Results 1 - 12 of 12) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp113 /// PrototypeAST - This class represents the "prototype" for a function,
116 class PrototypeAST { class in namespace:__anon24614
120 PrototypeAST(const std::string &name, const std::vector<std::string> &args) function in class:__anon24614::PrototypeAST
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("", st
[all...]
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp127 /// PrototypeAST - This class represents the "prototype" for a function,
130 class PrototypeAST { class in namespace:__anon24615
134 PrototypeAST(const std::string &name, const std::vector<std::string> &args) function in class:__anon24615::PrototypeAST
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 *Prot
[all...]
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp134 /// PrototypeAST - This class represents the "prototype" for a function,
137 class PrototypeAST { class in namespace:__anon24616
141 PrototypeAST(const std::string &name, const std::vector<std::string> &args) function in class:__anon24616::PrototypeAST
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 *Prot
[all...]
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp163 /// PrototypeAST - This class represents the "prototype" for a function,
166 class PrototypeAST { class in namespace:__anon24617
170 PrototypeAST(const std::string &name, const std::vector<std::string> &args) function in class:__anon24617::PrototypeAST
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 *Prot
[all...]
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp178 /// PrototypeAST - This class represents the "prototype" for a function,
181 class PrototypeAST { class in namespace:__anon24618
187 PrototypeAST(const std::string &name, const std::vector<std::string> &args, function in class:__anon24618::PrototypeAST
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 *Prot
[all...]
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp195 /// PrototypeAST - This class represents the "prototype" for a function,
197 class PrototypeAST { class in namespace:__anon24619
203 PrototypeAST(const std::string &name, const std::vector<std::string> &args, function in class:__anon24619::PrototypeAST
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 *Prot
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp213 /// PrototypeAST - This class represents the "prototype" for a function,
215 class PrototypeAST { class
221 PrototypeAST(const std::string &name, const std::vector<std::string> &args, function in class:PrototypeAST
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 *Prot
[all...]
H A Dtoy.cpp219 /// PrototypeAST - This class represents the "prototype" for a function,
221 class PrototypeAST { class
227 PrototypeAST(const std::string &name, const std::vector<std::string> &args, function in class:PrototypeAST
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 *Prot
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp196 /// PrototypeAST - This class represents the "prototype" for a function,
198 class PrototypeAST { class
204 PrototypeAST(const std::string &name, const std::vector<std::string> &args, function in class:PrototypeAST
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 *Prot
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp198 /// PrototypeAST - This class represents the "prototype" for a function,
200 class PrototypeAST { class
206 PrototypeAST(const std::string &name, const std::vector<std::string> &args, function in class:PrototypeAST
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 *Prot
[all...]
H A Dtoy.cpp198 /// PrototypeAST - This class represents the "prototype" for a function,
200 class PrototypeAST { class
206 PrototypeAST(const std::string &name, const std::vector<std::string> &args, function in class:PrototypeAST
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 *Prot
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp243 /// PrototypeAST - This class represents the "prototype" for a function,
245 class PrototypeAST { class
251 PrototypeAST(const std::string &name, const std::vector<std::string> &args, function in class:PrototypeAST
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 *Prot
[all...]

Completed in 113 milliseconds