Home | History | Annotate | Download | only in complete

Lines Matching refs:PrototypeAST

238 /// PrototypeAST - This class represents the "prototype" for a function,
240 class PrototypeAST {
246 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
267 PrototypeAST *Proto;
270 FunctionAST(PrototypeAST *proto, ExprAST *body)
305 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
558 static PrototypeAST *ParsePrototype() {
616 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
622 PrototypeAST *Proto = ParsePrototype();
634 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
641 static PrototypeAST *ParseExtern() {
1376 Function *PrototypeAST::Codegen() {
1420 void PrototypeAST::CreateArgumentAllocas(Function *F) {
1490 if (PrototypeAST *P = ParseExtern()) {