1 // parse.cc -- Go frontend parser.
3 // Copyright 2009 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
12 #include "statements.h"
13 #include "expressions.h"
16 // Struct Parse::Enclosing_var_comparison.
18 // Return true if v1 should be considered to be less than v2.
21 Parse::Enclosing_var_comparison::operator()(const Enclosing_var& v1,
22 const Enclosing_var& v2)
24 if (v1.var() == v2.var())
27 const std::string& n1(v1.var()->name());
28 const std::string& n2(v2.var()->name());
29 int i = n1.compare(n2);
35 // If we get here it means that a single nested function refers to
36 // two different variables defined in enclosing functions, and both
37 // variables have the same name. I think this is impossible.
43 Parse::Parse(Lex* lex, Gogo* gogo)
45 token_(Token::make_invalid_token(Linemap::unknown_location())),
46 unget_token_(Token::make_invalid_token(Linemap::unknown_location())),
47 unget_token_valid_(false),
48 is_erroneous_function_(false),
51 continue_stack_(NULL),
58 // Return the current token.
63 if (this->unget_token_valid_)
64 return &this->unget_token_;
65 if (this->token_.is_invalid())
66 this->token_ = this->lex_->next_token();
70 // Advance to the next token and return it.
73 Parse::advance_token()
75 if (this->unget_token_valid_)
77 this->unget_token_valid_ = false;
78 if (!this->token_.is_invalid())
81 this->token_ = this->lex_->next_token();
85 // Push a token back on the input stream.
88 Parse::unget_token(const Token& token)
90 go_assert(!this->unget_token_valid_);
91 this->unget_token_ = token;
92 this->unget_token_valid_ = true;
95 // The location of the current token.
100 return this->peek_token()->location();
103 // IdentifierList = identifier { "," identifier } .
106 Parse::identifier_list(Typed_identifier_list* til)
108 const Token* token = this->peek_token();
111 if (!token->is_identifier())
113 error_at(this->location(), "expected identifier");
117 this->gogo_->pack_hidden_name(token->identifier(),
118 token->is_identifier_exported());
119 til->push_back(Typed_identifier(name, NULL, token->location()));
120 token = this->advance_token();
121 if (!token->is_op(OPERATOR_COMMA))
123 token = this->advance_token();
127 // ExpressionList = Expression { "," Expression } .
129 // If MAY_BE_SINK is true, the expressions in the list may be "_".
132 Parse::expression_list(Expression* first, bool may_be_sink)
134 Expression_list* ret = new Expression_list();
136 ret->push_back(first);
139 ret->push_back(this->expression(PRECEDENCE_NORMAL, may_be_sink, true,
142 const Token* token = this->peek_token();
143 if (!token->is_op(OPERATOR_COMMA))
146 // Most expression lists permit a trailing comma.
147 Location location = token->location();
148 this->advance_token();
149 if (!this->expression_may_start_here())
151 this->unget_token(Token::make_operator_token(OPERATOR_COMMA,
158 // QualifiedIdent = [ PackageName "." ] identifier .
159 // PackageName = identifier .
161 // This sets *PNAME to the identifier and sets *PPACKAGE to the
162 // package or NULL if there isn't one. This returns true on success,
163 // false on failure in which case it will have emitted an error
167 Parse::qualified_ident(std::string* pname, Named_object** ppackage)
169 const Token* token = this->peek_token();
170 if (!token->is_identifier())
172 error_at(this->location(), "expected identifier");
176 std::string name = token->identifier();
177 bool is_exported = token->is_identifier_exported();
178 name = this->gogo_->pack_hidden_name(name, is_exported);
180 token = this->advance_token();
181 if (!token->is_op(OPERATOR_DOT))
188 Named_object* package = this->gogo_->lookup(name, NULL);
189 if (package == NULL || !package->is_package())
191 error_at(this->location(), "expected package");
192 // We expect . IDENTIFIER; skip both.
193 if (this->advance_token()->is_identifier())
194 this->advance_token();
198 package->package_value()->set_used();
200 token = this->advance_token();
201 if (!token->is_identifier())
203 error_at(this->location(), "expected identifier");
207 name = token->identifier();
211 error_at(this->location(), "invalid use of %<_%>");
215 if (package->name() == this->gogo_->package_name())
216 name = this->gogo_->pack_hidden_name(name,
217 token->is_identifier_exported());
222 this->advance_token();
227 // Type = TypeName | TypeLit | "(" Type ")" .
229 // ArrayType | StructType | PointerType | FunctionType | InterfaceType |
230 // SliceType | MapType | ChannelType .
235 const Token* token = this->peek_token();
236 if (token->is_identifier())
237 return this->type_name(true);
238 else if (token->is_op(OPERATOR_LSQUARE))
239 return this->array_type(false);
240 else if (token->is_keyword(KEYWORD_CHAN)
241 || token->is_op(OPERATOR_CHANOP))
242 return this->channel_type();
243 else if (token->is_keyword(KEYWORD_INTERFACE))
244 return this->interface_type();
245 else if (token->is_keyword(KEYWORD_FUNC))
247 Location location = token->location();
248 this->advance_token();
249 Type* type = this->signature(NULL, location);
251 return Type::make_error_type();
254 else if (token->is_keyword(KEYWORD_MAP))
255 return this->map_type();
256 else if (token->is_keyword(KEYWORD_STRUCT))
257 return this->struct_type();
258 else if (token->is_op(OPERATOR_MULT))
259 return this->pointer_type();
260 else if (token->is_op(OPERATOR_LPAREN))
262 this->advance_token();
263 Type* ret = this->type();
264 if (this->peek_token()->is_op(OPERATOR_RPAREN))
265 this->advance_token();
268 if (!ret->is_error_type())
269 error_at(this->location(), "expected %<)%>");
275 error_at(token->location(), "expected type");
276 return Type::make_error_type();
281 Parse::type_may_start_here()
283 const Token* token = this->peek_token();
284 return (token->is_identifier()
285 || token->is_op(OPERATOR_LSQUARE)
286 || token->is_op(OPERATOR_CHANOP)
287 || token->is_keyword(KEYWORD_CHAN)
288 || token->is_keyword(KEYWORD_INTERFACE)
289 || token->is_keyword(KEYWORD_FUNC)
290 || token->is_keyword(KEYWORD_MAP)
291 || token->is_keyword(KEYWORD_STRUCT)
292 || token->is_op(OPERATOR_MULT)
293 || token->is_op(OPERATOR_LPAREN));
296 // TypeName = QualifiedIdent .
298 // If MAY_BE_NIL is true, then an identifier with the value of the
299 // predefined constant nil is accepted, returning the nil type.
302 Parse::type_name(bool issue_error)
304 Location location = this->location();
307 Named_object* package;
308 if (!this->qualified_ident(&name, &package))
309 return Type::make_error_type();
311 Named_object* named_object;
313 named_object = this->gogo_->lookup(name, NULL);
316 named_object = package->package_value()->lookup(name);
317 if (named_object == NULL
319 && package->name() != this->gogo_->package_name())
321 // Check whether the name is there but hidden.
322 std::string s = ('.' + package->package_value()->unique_prefix()
323 + '.' + package->package_value()->name()
325 named_object = package->package_value()->lookup(s);
326 if (named_object != NULL)
328 const std::string& packname(package->package_value()->name());
329 error_at(location, "invalid reference to hidden type %<%s.%s%>",
330 Gogo::message_name(packname).c_str(),
331 Gogo::message_name(name).c_str());
338 if (named_object == NULL)
341 named_object = this->gogo_->add_unknown_name(name, location);
344 const std::string& packname(package->package_value()->name());
345 error_at(location, "reference to undefined identifier %<%s.%s%>",
346 Gogo::message_name(packname).c_str(),
347 Gogo::message_name(name).c_str());
352 else if (named_object->is_type())
354 if (!named_object->type_value()->is_visible())
357 else if (named_object->is_unknown() || named_object->is_type_declaration())
365 error_at(location, "expected type");
366 return Type::make_error_type();
369 if (named_object->is_type())
370 return named_object->type_value();
371 else if (named_object->is_unknown() || named_object->is_type_declaration())
372 return Type::make_forward_declaration(named_object);
377 // ArrayType = "[" [ ArrayLength ] "]" ElementType .
378 // ArrayLength = Expression .
379 // ElementType = CompleteType .
382 Parse::array_type(bool may_use_ellipsis)
384 go_assert(this->peek_token()->is_op(OPERATOR_LSQUARE));
385 const Token* token = this->advance_token();
387 Expression* length = NULL;
388 if (token->is_op(OPERATOR_RSQUARE))
389 this->advance_token();
392 if (!token->is_op(OPERATOR_ELLIPSIS))
393 length = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
394 else if (may_use_ellipsis)
396 // An ellipsis is used in composite literals to represent a
397 // fixed array of the size of the number of elements. We
398 // use a length of nil to represent this, and change the
399 // length when parsing the composite literal.
400 length = Expression::make_nil(this->location());
401 this->advance_token();
405 error_at(this->location(),
406 "use of %<[...]%> outside of array literal");
407 length = Expression::make_error(this->location());
408 this->advance_token();
410 if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
412 error_at(this->location(), "expected %<]%>");
413 return Type::make_error_type();
415 this->advance_token();
418 Type* element_type = this->type();
420 return Type::make_array_type(element_type, length);
423 // MapType = "map" "[" KeyType "]" ValueType .
424 // KeyType = CompleteType .
425 // ValueType = CompleteType .
430 Location location = this->location();
431 go_assert(this->peek_token()->is_keyword(KEYWORD_MAP));
432 if (!this->advance_token()->is_op(OPERATOR_LSQUARE))
434 error_at(this->location(), "expected %<[%>");
435 return Type::make_error_type();
437 this->advance_token();
439 Type* key_type = this->type();
441 if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
443 error_at(this->location(), "expected %<]%>");
444 return Type::make_error_type();
446 this->advance_token();
448 Type* value_type = this->type();
450 if (key_type->is_error_type() || value_type->is_error_type())
451 return Type::make_error_type();
453 return Type::make_map_type(key_type, value_type, location);
456 // StructType = "struct" "{" { FieldDecl ";" } "}" .
461 go_assert(this->peek_token()->is_keyword(KEYWORD_STRUCT));
462 Location location = this->location();
463 if (!this->advance_token()->is_op(OPERATOR_LCURLY))
465 Location token_loc = this->location();
466 if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
467 && this->advance_token()->is_op(OPERATOR_LCURLY))
468 error_at(token_loc, "unexpected semicolon or newline before %<{%>");
471 error_at(this->location(), "expected %<{%>");
472 return Type::make_error_type();
475 this->advance_token();
477 Struct_field_list* sfl = new Struct_field_list;
478 while (!this->peek_token()->is_op(OPERATOR_RCURLY))
480 this->field_decl(sfl);
481 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
482 this->advance_token();
483 else if (!this->peek_token()->is_op(OPERATOR_RCURLY))
485 error_at(this->location(), "expected %<;%> or %<}%> or newline");
486 if (!this->skip_past_error(OPERATOR_RCURLY))
487 return Type::make_error_type();
490 this->advance_token();
492 for (Struct_field_list::const_iterator pi = sfl->begin();
496 if (pi->type()->is_error_type())
498 for (Struct_field_list::const_iterator pj = pi + 1;
502 if (pi->field_name() == pj->field_name()
503 && !Gogo::is_sink_name(pi->field_name()))
504 error_at(pi->location(), "duplicate field name %<%s%>",
505 Gogo::message_name(pi->field_name()).c_str());
509 return Type::make_struct_type(sfl, location);
512 // FieldDecl = (IdentifierList CompleteType | TypeName) [ Tag ] .
513 // Tag = string_lit .
516 Parse::field_decl(Struct_field_list* sfl)
518 const Token* token = this->peek_token();
519 Location location = token->location();
521 bool is_anonymous_pointer;
522 if (token->is_op(OPERATOR_MULT))
525 is_anonymous_pointer = true;
527 else if (token->is_identifier())
529 std::string id = token->identifier();
530 bool is_id_exported = token->is_identifier_exported();
531 Location id_location = token->location();
532 token = this->advance_token();
533 is_anonymous = (token->is_op(OPERATOR_SEMICOLON)
534 || token->is_op(OPERATOR_RCURLY)
535 || token->is_op(OPERATOR_DOT)
536 || token->is_string());
537 is_anonymous_pointer = false;
538 this->unget_token(Token::make_identifier_token(id, is_id_exported,
543 error_at(this->location(), "expected field name");
544 this->gogo_->mark_locals_used();
545 while (!token->is_op(OPERATOR_SEMICOLON)
546 && !token->is_op(OPERATOR_RCURLY)
548 token = this->advance_token();
554 if (is_anonymous_pointer)
556 this->advance_token();
557 if (!this->peek_token()->is_identifier())
559 error_at(this->location(), "expected field name");
560 this->gogo_->mark_locals_used();
561 while (!token->is_op(OPERATOR_SEMICOLON)
562 && !token->is_op(OPERATOR_RCURLY)
564 token = this->advance_token();
568 Type* type = this->type_name(true);
571 if (this->peek_token()->is_string())
573 tag = this->peek_token()->string_value();
574 this->advance_token();
577 if (!type->is_error_type())
579 if (is_anonymous_pointer)
580 type = Type::make_pointer_type(type);
581 sfl->push_back(Struct_field(Typed_identifier("", type, location)));
583 sfl->back().set_tag(tag);
588 Typed_identifier_list til;
591 token = this->peek_token();
592 if (!token->is_identifier())
594 error_at(this->location(), "expected identifier");
598 this->gogo_->pack_hidden_name(token->identifier(),
599 token->is_identifier_exported());
600 til.push_back(Typed_identifier(name, NULL, token->location()));
601 if (!this->advance_token()->is_op(OPERATOR_COMMA))
603 this->advance_token();
606 Type* type = this->type();
609 if (this->peek_token()->is_string())
611 tag = this->peek_token()->string_value();
612 this->advance_token();
615 for (Typed_identifier_list::iterator p = til.begin();
620 sfl->push_back(Struct_field(*p));
622 sfl->back().set_tag(tag);
627 // PointerType = "*" Type .
630 Parse::pointer_type()
632 go_assert(this->peek_token()->is_op(OPERATOR_MULT));
633 this->advance_token();
634 Type* type = this->type();
635 if (type->is_error_type())
637 return Type::make_pointer_type(type);
640 // ChannelType = Channel | SendChannel | RecvChannel .
641 // Channel = "chan" ElementType .
642 // SendChannel = "chan" "<-" ElementType .
643 // RecvChannel = "<-" "chan" ElementType .
646 Parse::channel_type()
648 const Token* token = this->peek_token();
651 if (token->is_op(OPERATOR_CHANOP))
653 if (!this->advance_token()->is_keyword(KEYWORD_CHAN))
655 error_at(this->location(), "expected %<chan%>");
656 return Type::make_error_type();
659 this->advance_token();
663 go_assert(token->is_keyword(KEYWORD_CHAN));
664 if (this->advance_token()->is_op(OPERATOR_CHANOP))
667 this->advance_token();
671 // Better error messages for the common error of omitting the
672 // channel element type.
673 if (!this->type_may_start_here())
675 token = this->peek_token();
676 if (token->is_op(OPERATOR_RCURLY))
677 error_at(this->location(), "unexpected %<}%> in channel type");
678 else if (token->is_op(OPERATOR_RPAREN))
679 error_at(this->location(), "unexpected %<)%> in channel type");
680 else if (token->is_op(OPERATOR_COMMA))
681 error_at(this->location(), "unexpected comma in channel type");
683 error_at(this->location(), "expected channel element type");
684 return Type::make_error_type();
687 Type* element_type = this->type();
688 return Type::make_channel_type(send, receive, element_type);
691 // Give an error for a duplicate parameter or receiver name.
694 Parse::check_signature_names(const Typed_identifier_list* params,
697 for (Typed_identifier_list::const_iterator p = params->begin();
701 if (p->name().empty() || Gogo::is_sink_name(p->name()))
703 std::pair<std::string, const Typed_identifier*> val =
704 std::make_pair(p->name(), &*p);
705 std::pair<Parse::Names::iterator, bool> ins = names->insert(val);
708 error_at(p->location(), "redefinition of %qs",
709 Gogo::message_name(p->name()).c_str());
710 inform(ins.first->second->location(),
711 "previous definition of %qs was here",
712 Gogo::message_name(p->name()).c_str());
717 // Signature = Parameters [ Result ] .
719 // RECEIVER is the receiver if there is one, or NULL. LOCATION is the
720 // location of the start of the type.
722 // This returns NULL on a parse error.
725 Parse::signature(Typed_identifier* receiver, Location location)
727 bool is_varargs = false;
728 Typed_identifier_list* params;
729 bool params_ok = this->parameters(¶ms, &is_varargs);
731 Typed_identifier_list* results = NULL;
732 if (this->peek_token()->is_op(OPERATOR_LPAREN)
733 || this->type_may_start_here())
735 if (!this->result(&results))
744 this->check_signature_names(params, &names);
746 this->check_signature_names(results, &names);
748 Function_type* ret = Type::make_function_type(receiver, params, results,
751 ret->set_is_varargs();
755 // Parameters = "(" [ ParameterList [ "," ] ] ")" .
757 // This returns false on a parse error.
760 Parse::parameters(Typed_identifier_list** pparams, bool* is_varargs)
764 if (!this->peek_token()->is_op(OPERATOR_LPAREN))
766 error_at(this->location(), "expected %<(%>");
770 Typed_identifier_list* params = NULL;
771 bool saw_error = false;
773 const Token* token = this->advance_token();
774 if (!token->is_op(OPERATOR_RPAREN))
776 params = this->parameter_list(is_varargs);
779 token = this->peek_token();
782 // The optional trailing comma is picked up in parameter_list.
784 if (!token->is_op(OPERATOR_RPAREN))
785 error_at(this->location(), "expected %<)%>");
787 this->advance_token();
796 // ParameterList = ParameterDecl { "," ParameterDecl } .
798 // This sets *IS_VARARGS if the list ends with an ellipsis.
799 // IS_VARARGS will be NULL if varargs are not permitted.
801 // We pick up an optional trailing comma.
803 // This returns NULL if some error is seen.
805 Typed_identifier_list*
806 Parse::parameter_list(bool* is_varargs)
808 Location location = this->location();
809 Typed_identifier_list* ret = new Typed_identifier_list();
811 bool saw_error = false;
813 // If we see an identifier and then a comma, then we don't know
814 // whether we are looking at a list of identifiers followed by a
815 // type, or a list of types given by name. We have to do an
816 // arbitrary lookahead to figure it out.
818 bool parameters_have_names;
819 const Token* token = this->peek_token();
820 if (!token->is_identifier())
822 // This must be a type which starts with something like '*'.
823 parameters_have_names = false;
827 std::string name = token->identifier();
828 bool is_exported = token->is_identifier_exported();
829 Location location = token->location();
830 token = this->advance_token();
831 if (!token->is_op(OPERATOR_COMMA))
833 if (token->is_op(OPERATOR_DOT))
835 // This is a qualified identifier, which must turn out
837 parameters_have_names = false;
839 else if (token->is_op(OPERATOR_RPAREN))
841 // A single identifier followed by a parenthesis must be
843 parameters_have_names = false;
847 // An identifier followed by something other than a
848 // comma or a dot or a right parenthesis must be a
849 // parameter name followed by a type.
850 parameters_have_names = true;
853 this->unget_token(Token::make_identifier_token(name, is_exported,
858 // An identifier followed by a comma may be the first in a
859 // list of parameter names followed by a type, or it may be
860 // the first in a list of types without parameter names. To
861 // find out we gather as many identifiers separated by
863 std::string id_name = this->gogo_->pack_hidden_name(name,
865 ret->push_back(Typed_identifier(id_name, NULL, location));
866 bool just_saw_comma = true;
867 while (this->advance_token()->is_identifier())
869 name = this->peek_token()->identifier();
870 is_exported = this->peek_token()->is_identifier_exported();
871 location = this->peek_token()->location();
872 id_name = this->gogo_->pack_hidden_name(name, is_exported);
873 ret->push_back(Typed_identifier(id_name, NULL, location));
874 if (!this->advance_token()->is_op(OPERATOR_COMMA))
876 just_saw_comma = false;
883 // We saw ID1 "," ID2 "," followed by something which
884 // was not an identifier. We must be seeing the start
885 // of a type, and ID1 and ID2 must be types, and the
886 // parameters don't have names.
887 parameters_have_names = false;
889 else if (this->peek_token()->is_op(OPERATOR_RPAREN))
891 // We saw ID1 "," ID2 ")". ID1 and ID2 must be types,
892 // and the parameters don't have names.
893 parameters_have_names = false;
895 else if (this->peek_token()->is_op(OPERATOR_DOT))
897 // We saw ID1 "," ID2 ".". ID2 must be a package name,
898 // ID1 must be a type, and the parameters don't have
900 parameters_have_names = false;
901 this->unget_token(Token::make_identifier_token(name, is_exported,
904 just_saw_comma = true;
908 // We saw ID1 "," ID2 followed by something other than
909 // ",", ".", or ")". We must be looking at the start of
910 // a type, and ID1 and ID2 must be parameter names.
911 parameters_have_names = true;
914 if (parameters_have_names)
916 go_assert(!just_saw_comma);
917 // We have just seen ID1, ID2 xxx.
919 if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
923 error_at(this->location(), "%<...%> only permits one name");
925 this->advance_token();
928 for (size_t i = 0; i < ret->size(); ++i)
929 ret->set_type(i, type);
930 if (!this->peek_token()->is_op(OPERATOR_COMMA))
931 return saw_error ? NULL : ret;
932 if (this->advance_token()->is_op(OPERATOR_RPAREN))
933 return saw_error ? NULL : ret;
937 Typed_identifier_list* tret = new Typed_identifier_list();
938 for (Typed_identifier_list::const_iterator p = ret->begin();
942 Named_object* no = this->gogo_->lookup(p->name(), NULL);
945 no = this->gogo_->add_unknown_name(p->name(),
949 type = no->type_value();
950 else if (no->is_unknown() || no->is_type_declaration())
951 type = Type::make_forward_declaration(no);
954 error_at(p->location(), "expected %<%s%> to be a type",
955 Gogo::message_name(p->name()).c_str());
957 type = Type::make_error_type();
959 tret->push_back(Typed_identifier("", type, p->location()));
964 || this->peek_token()->is_op(OPERATOR_RPAREN))
965 return saw_error ? NULL : ret;
970 bool mix_error = false;
971 this->parameter_decl(parameters_have_names, ret, is_varargs, &mix_error);
972 while (this->peek_token()->is_op(OPERATOR_COMMA))
974 if (is_varargs != NULL && *is_varargs)
976 error_at(this->location(), "%<...%> must be last parameter");
979 if (this->advance_token()->is_op(OPERATOR_RPAREN))
981 this->parameter_decl(parameters_have_names, ret, is_varargs, &mix_error);
985 error_at(location, "invalid named/anonymous mix");
996 // ParameterDecl = [ IdentifierList ] [ "..." ] Type .
999 Parse::parameter_decl(bool parameters_have_names,
1000 Typed_identifier_list* til,
1004 if (!parameters_have_names)
1007 Location location = this->location();
1008 if (!this->peek_token()->is_identifier())
1010 if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
1011 type = this->type();
1014 if (is_varargs == NULL)
1015 error_at(this->location(), "invalid use of %<...%>");
1018 this->advance_token();
1019 if (is_varargs == NULL
1020 && this->peek_token()->is_op(OPERATOR_RPAREN))
1021 type = Type::make_error_type();
1024 Type* element_type = this->type();
1025 type = Type::make_array_type(element_type, NULL);
1031 type = this->type_name(false);
1032 if (type->is_error_type()
1033 || (!this->peek_token()->is_op(OPERATOR_COMMA)
1034 && !this->peek_token()->is_op(OPERATOR_RPAREN)))
1037 while (!this->peek_token()->is_op(OPERATOR_COMMA)
1038 && !this->peek_token()->is_op(OPERATOR_RPAREN))
1039 this->advance_token();
1042 if (!type->is_error_type())
1043 til->push_back(Typed_identifier("", type, location));
1047 size_t orig_count = til->size();
1048 if (this->peek_token()->is_identifier())
1049 this->identifier_list(til);
1052 size_t new_count = til->size();
1055 if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
1056 type = this->type();
1059 if (is_varargs == NULL)
1060 error_at(this->location(), "invalid use of %<...%>");
1061 else if (new_count > orig_count + 1)
1062 error_at(this->location(), "%<...%> only permits one name");
1065 this->advance_token();
1066 Type* element_type = this->type();
1067 type = Type::make_array_type(element_type, NULL);
1069 for (size_t i = orig_count; i < new_count; ++i)
1070 til->set_type(i, type);
1074 // Result = Parameters | Type .
1076 // This returns false on a parse error.
1079 Parse::result(Typed_identifier_list** presults)
1081 if (this->peek_token()->is_op(OPERATOR_LPAREN))
1082 return this->parameters(presults, NULL);
1085 Location location = this->location();
1086 Type* type = this->type();
1087 if (type->is_error_type())
1092 Typed_identifier_list* til = new Typed_identifier_list();
1093 til->push_back(Typed_identifier("", type, location));
1099 // Block = "{" [ StatementList ] "}" .
1101 // Returns the location of the closing brace.
1106 if (!this->peek_token()->is_op(OPERATOR_LCURLY))
1108 Location loc = this->location();
1109 if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1110 && this->advance_token()->is_op(OPERATOR_LCURLY))
1111 error_at(loc, "unexpected semicolon or newline before %<{%>");
1114 error_at(this->location(), "expected %<{%>");
1115 return Linemap::unknown_location();
1119 const Token* token = this->advance_token();
1121 if (!token->is_op(OPERATOR_RCURLY))
1123 this->statement_list();
1124 token = this->peek_token();
1125 if (!token->is_op(OPERATOR_RCURLY))
1127 if (!token->is_eof() || !saw_errors())
1128 error_at(this->location(), "expected %<}%>");
1130 this->gogo_->mark_locals_used();
1132 // Skip ahead to the end of the block, in hopes of avoiding
1133 // lots of meaningless errors.
1134 Location ret = token->location();
1136 while (!token->is_eof())
1138 if (token->is_op(OPERATOR_LCURLY))
1140 else if (token->is_op(OPERATOR_RCURLY))
1145 this->advance_token();
1149 token = this->advance_token();
1150 ret = token->location();
1156 Location ret = token->location();
1157 this->advance_token();
1161 // InterfaceType = "interface" "{" [ MethodSpecList ] "}" .
1162 // MethodSpecList = MethodSpec { ";" MethodSpec } [ ";" ] .
1165 Parse::interface_type()
1167 go_assert(this->peek_token()->is_keyword(KEYWORD_INTERFACE));
1168 Location location = this->location();
1170 if (!this->advance_token()->is_op(OPERATOR_LCURLY))
1172 Location token_loc = this->location();
1173 if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1174 && this->advance_token()->is_op(OPERATOR_LCURLY))
1175 error_at(token_loc, "unexpected semicolon or newline before %<{%>");
1178 error_at(this->location(), "expected %<{%>");
1179 return Type::make_error_type();
1182 this->advance_token();
1184 Typed_identifier_list* methods = new Typed_identifier_list();
1185 if (!this->peek_token()->is_op(OPERATOR_RCURLY))
1187 this->method_spec(methods);
1188 while (this->peek_token()->is_op(OPERATOR_SEMICOLON))
1190 if (this->advance_token()->is_op(OPERATOR_RCURLY))
1192 this->method_spec(methods);
1194 if (!this->peek_token()->is_op(OPERATOR_RCURLY))
1196 error_at(this->location(), "expected %<}%>");
1197 while (!this->advance_token()->is_op(OPERATOR_RCURLY))
1199 if (this->peek_token()->is_eof())
1200 return Type::make_error_type();
1204 this->advance_token();
1206 if (methods->empty())
1212 Interface_type* ret = Type::make_interface_type(methods, location);
1213 this->gogo_->record_interface_type(ret);
1217 // MethodSpec = MethodName Signature | InterfaceTypeName .
1218 // MethodName = identifier .
1219 // InterfaceTypeName = TypeName .
1222 Parse::method_spec(Typed_identifier_list* methods)
1224 const Token* token = this->peek_token();
1225 if (!token->is_identifier())
1227 error_at(this->location(), "expected identifier");
1231 std::string name = token->identifier();
1232 bool is_exported = token->is_identifier_exported();
1233 Location location = token->location();
1235 if (this->advance_token()->is_op(OPERATOR_LPAREN))
1237 // This is a MethodName.
1238 name = this->gogo_->pack_hidden_name(name, is_exported);
1239 Type* type = this->signature(NULL, location);
1242 methods->push_back(Typed_identifier(name, type, location));
1246 this->unget_token(Token::make_identifier_token(name, is_exported,
1248 Type* type = this->type_name(false);
1249 if (type->is_error_type()
1250 || (!this->peek_token()->is_op(OPERATOR_SEMICOLON)
1251 && !this->peek_token()->is_op(OPERATOR_RCURLY)))
1253 if (this->peek_token()->is_op(OPERATOR_COMMA))
1254 error_at(this->location(),
1255 "name list not allowed in interface type");
1257 error_at(location, "expected signature or type name");
1258 this->gogo_->mark_locals_used();
1259 token = this->peek_token();
1260 while (!token->is_eof()
1261 && !token->is_op(OPERATOR_SEMICOLON)
1262 && !token->is_op(OPERATOR_RCURLY))
1263 token = this->advance_token();
1266 // This must be an interface type, but we can't check that now.
1267 // We check it and pull out the methods in
1268 // Interface_type::do_verify.
1269 methods->push_back(Typed_identifier("", type, location));
1273 // Declaration = ConstDecl | TypeDecl | VarDecl | FunctionDecl | MethodDecl .
1276 Parse::declaration()
1278 const Token* token = this->peek_token();
1279 if (token->is_keyword(KEYWORD_CONST))
1281 else if (token->is_keyword(KEYWORD_TYPE))
1283 else if (token->is_keyword(KEYWORD_VAR))
1285 else if (token->is_keyword(KEYWORD_FUNC))
1286 this->function_decl();
1289 error_at(this->location(), "expected declaration");
1290 this->advance_token();
1295 Parse::declaration_may_start_here()
1297 const Token* token = this->peek_token();
1298 return (token->is_keyword(KEYWORD_CONST)
1299 || token->is_keyword(KEYWORD_TYPE)
1300 || token->is_keyword(KEYWORD_VAR)
1301 || token->is_keyword(KEYWORD_FUNC));
1304 // Decl<P> = P | "(" [ List<P> ] ")" .
1307 Parse::decl(void (Parse::*pfn)(void*), void* varg)
1309 if (this->peek_token()->is_eof())
1312 error_at(this->location(), "unexpected end of file");
1316 if (!this->peek_token()->is_op(OPERATOR_LPAREN))
1320 if (!this->advance_token()->is_op(OPERATOR_RPAREN))
1322 this->list(pfn, varg, true);
1323 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
1325 error_at(this->location(), "missing %<)%>");
1326 while (!this->advance_token()->is_op(OPERATOR_RPAREN))
1328 if (this->peek_token()->is_eof())
1333 this->advance_token();
1337 // List<P> = P { ";" P } [ ";" ] .
1339 // In order to pick up the trailing semicolon we need to know what
1340 // might follow. This is either a '}' or a ')'.
1343 Parse::list(void (Parse::*pfn)(void*), void* varg, bool follow_is_paren)
1346 Operator follow = follow_is_paren ? OPERATOR_RPAREN : OPERATOR_RCURLY;
1347 while (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1348 || this->peek_token()->is_op(OPERATOR_COMMA))
1350 if (this->peek_token()->is_op(OPERATOR_COMMA))
1351 error_at(this->location(), "unexpected comma");
1352 if (this->advance_token()->is_op(follow))
1358 // ConstDecl = "const" ( ConstSpec | "(" { ConstSpec ";" } ")" ) .
1363 go_assert(this->peek_token()->is_keyword(KEYWORD_CONST));
1364 this->advance_token();
1367 Type* last_type = NULL;
1368 Expression_list* last_expr_list = NULL;
1370 if (!this->peek_token()->is_op(OPERATOR_LPAREN))
1371 this->const_spec(&last_type, &last_expr_list);
1374 this->advance_token();
1375 while (!this->peek_token()->is_op(OPERATOR_RPAREN))
1377 this->const_spec(&last_type, &last_expr_list);
1378 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
1379 this->advance_token();
1380 else if (!this->peek_token()->is_op(OPERATOR_RPAREN))
1382 error_at(this->location(), "expected %<;%> or %<)%> or newline");
1383 if (!this->skip_past_error(OPERATOR_RPAREN))
1387 this->advance_token();
1390 if (last_expr_list != NULL)
1391 delete last_expr_list;
1394 // ConstSpec = IdentifierList [ [ CompleteType ] "=" ExpressionList ] .
1397 Parse::const_spec(Type** last_type, Expression_list** last_expr_list)
1399 Typed_identifier_list til;
1400 this->identifier_list(&til);
1403 if (this->type_may_start_here())
1405 type = this->type();
1407 *last_expr_list = NULL;
1410 Expression_list *expr_list;
1411 if (!this->peek_token()->is_op(OPERATOR_EQ))
1413 if (*last_expr_list == NULL)
1415 error_at(this->location(), "expected %<=%>");
1419 expr_list = new Expression_list;
1420 for (Expression_list::const_iterator p = (*last_expr_list)->begin();
1421 p != (*last_expr_list)->end();
1423 expr_list->push_back((*p)->copy());
1427 this->advance_token();
1428 expr_list = this->expression_list(NULL, false);
1430 if (*last_expr_list != NULL)
1431 delete *last_expr_list;
1432 *last_expr_list = expr_list;
1435 Expression_list::const_iterator pe = expr_list->begin();
1436 for (Typed_identifier_list::iterator pi = til.begin();
1440 if (pe == expr_list->end())
1442 error_at(this->location(), "not enough initializers");
1448 if (!Gogo::is_sink_name(pi->name()))
1449 this->gogo_->add_constant(*pi, *pe, this->iota_value());
1451 if (pe != expr_list->end())
1452 error_at(this->location(), "too many initializers");
1454 this->increment_iota();
1459 // TypeDecl = "type" Decl<TypeSpec> .
1464 go_assert(this->peek_token()->is_keyword(KEYWORD_TYPE));
1465 this->advance_token();
1466 this->decl(&Parse::type_spec, NULL);
1469 // TypeSpec = identifier Type .
1472 Parse::type_spec(void*)
1474 const Token* token = this->peek_token();
1475 if (!token->is_identifier())
1477 error_at(this->location(), "expected identifier");
1480 std::string name = token->identifier();
1481 bool is_exported = token->is_identifier_exported();
1482 Location location = token->location();
1483 token = this->advance_token();
1485 // The scope of the type name starts at the point where the
1486 // identifier appears in the source code. We implement this by
1487 // declaring the type before we read the type definition.
1488 Named_object* named_type = NULL;
1491 name = this->gogo_->pack_hidden_name(name, is_exported);
1492 named_type = this->gogo_->declare_type(name, location);
1496 if (!this->peek_token()->is_op(OPERATOR_SEMICOLON))
1497 type = this->type();
1500 error_at(this->location(),
1501 "unexpected semicolon or newline in type declaration");
1502 type = Type::make_error_type();
1503 this->advance_token();
1506 if (type->is_error_type())
1508 this->gogo_->mark_locals_used();
1509 while (!this->peek_token()->is_op(OPERATOR_SEMICOLON)
1510 && !this->peek_token()->is_eof())
1511 this->advance_token();
1516 if (named_type->is_type_declaration())
1518 Type* ftype = type->forwarded();
1519 if (ftype->forward_declaration_type() != NULL
1520 && (ftype->forward_declaration_type()->named_object()
1523 error_at(location, "invalid recursive type");
1524 type = Type::make_error_type();
1527 this->gogo_->define_type(named_type,
1528 Type::make_named_type(named_type, type,
1530 go_assert(named_type->package() == NULL);
1534 // This will probably give a redefinition error.
1535 this->gogo_->add_type(name, type, location);
1540 // VarDecl = "var" Decl<VarSpec> .
1545 go_assert(this->peek_token()->is_keyword(KEYWORD_VAR));
1546 this->advance_token();
1547 this->decl(&Parse::var_spec, NULL);
1550 // VarSpec = IdentifierList
1551 // ( CompleteType [ "=" ExpressionList ] | "=" ExpressionList ) .
1554 Parse::var_spec(void*)
1556 // Get the variable names.
1557 Typed_identifier_list til;
1558 this->identifier_list(&til);
1560 Location location = this->location();
1563 Expression_list* init = NULL;
1564 if (!this->peek_token()->is_op(OPERATOR_EQ))
1566 type = this->type();
1567 if (type->is_error_type())
1569 this->gogo_->mark_locals_used();
1570 while (!this->peek_token()->is_op(OPERATOR_EQ)
1571 && !this->peek_token()->is_op(OPERATOR_SEMICOLON)
1572 && !this->peek_token()->is_eof())
1573 this->advance_token();
1575 if (this->peek_token()->is_op(OPERATOR_EQ))
1577 this->advance_token();
1578 init = this->expression_list(NULL, false);
1583 this->advance_token();
1584 init = this->expression_list(NULL, false);
1587 this->init_vars(&til, type, init, false, location);
1593 // Create variables. TIL is a list of variable names. If TYPE is not
1594 // NULL, it is the type of all the variables. If INIT is not NULL, it
1595 // is an initializer list for the variables.
1598 Parse::init_vars(const Typed_identifier_list* til, Type* type,
1599 Expression_list* init, bool is_coloneq,
1602 // Check for an initialization which can yield multiple values.
1603 if (init != NULL && init->size() == 1 && til->size() > 1)
1605 if (this->init_vars_from_call(til, type, *init->begin(), is_coloneq,
1608 if (this->init_vars_from_map(til, type, *init->begin(), is_coloneq,
1611 if (this->init_vars_from_receive(til, type, *init->begin(), is_coloneq,
1614 if (this->init_vars_from_type_guard(til, type, *init->begin(),
1615 is_coloneq, location))
1619 if (init != NULL && init->size() != til->size())
1621 if (init->empty() || !init->front()->is_error_expression())
1622 error_at(location, "wrong number of initializations");
1625 type = Type::make_error_type();
1628 // Note that INIT was already parsed with the old name bindings, so
1629 // we don't have to worry that it will accidentally refer to the
1630 // newly declared variables.
1632 Expression_list::const_iterator pexpr;
1634 pexpr = init->begin();
1635 bool any_new = false;
1636 for (Typed_identifier_list::const_iterator p = til->begin();
1641 go_assert(pexpr != init->end());
1642 this->init_var(*p, type, init == NULL ? NULL : *pexpr, is_coloneq,
1648 go_assert(pexpr == init->end());
1649 if (is_coloneq && !any_new)
1650 error_at(location, "variables redeclared but no variable is new");
1653 // See if we need to initialize a list of variables from a function
1654 // call. This returns true if we have set up the variables and the
1658 Parse::init_vars_from_call(const Typed_identifier_list* vars, Type* type,
1659 Expression* expr, bool is_coloneq,
1662 Call_expression* call = expr->call_expression();
1666 // This is a function call. We can't check here whether it returns
1667 // the right number of values, but it might. Declare the variables,
1668 // and then assign the results of the call to them.
1670 Named_object* first_var = NULL;
1671 unsigned int index = 0;
1672 bool any_new = false;
1673 for (Typed_identifier_list::const_iterator pv = vars->begin();
1677 Expression* init = Expression::make_call_result(call, index);
1678 Named_object* no = this->init_var(*pv, type, init, is_coloneq, false,
1681 if (this->gogo_->in_global_scope() && no->is_variable())
1683 if (first_var == NULL)
1687 // The subsequent vars have an implicit dependency on
1688 // the first one, so that everything gets initialized in
1689 // the right order and so that we detect cycles
1691 this->gogo_->record_var_depends_on(no->var_value(), first_var);
1696 if (is_coloneq && !any_new)
1697 error_at(location, "variables redeclared but no variable is new");
1702 // See if we need to initialize a pair of values from a map index
1703 // expression. This returns true if we have set up the variables and
1704 // the initialization.
1707 Parse::init_vars_from_map(const Typed_identifier_list* vars, Type* type,
1708 Expression* expr, bool is_coloneq,
1711 Index_expression* index = expr->index_expression();
1714 if (vars->size() != 2)
1717 // This is an index which is being assigned to two variables. It
1718 // must be a map index. Declare the variables, and then assign the
1719 // results of the map index.
1720 bool any_new = false;
1721 Typed_identifier_list::const_iterator p = vars->begin();
1722 Expression* init = type == NULL ? index : NULL;
1723 Named_object* val_no = this->init_var(*p, type, init, is_coloneq,
1724 type == NULL, &any_new);
1725 if (type == NULL && any_new && val_no->is_variable())
1726 val_no->var_value()->set_type_from_init_tuple();
1727 Expression* val_var = Expression::make_var_reference(val_no, location);
1730 Type* var_type = type;
1731 if (var_type == NULL)
1732 var_type = Type::lookup_bool_type();
1733 Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1735 Expression* present_var = Expression::make_var_reference(no, location);
1737 if (is_coloneq && !any_new)
1738 error_at(location, "variables redeclared but no variable is new");
1740 Statement* s = Statement::make_tuple_map_assignment(val_var, present_var,
1743 if (!this->gogo_->in_global_scope())
1744 this->gogo_->add_statement(s);
1745 else if (!val_no->is_sink())
1747 if (val_no->is_variable())
1748 val_no->var_value()->add_preinit_statement(this->gogo_, s);
1750 else if (!no->is_sink())
1752 if (no->is_variable())
1753 no->var_value()->add_preinit_statement(this->gogo_, s);
1757 // Execute the map index expression just so that we can fail if
1759 Named_object* dummy = this->create_dummy_global(Type::lookup_bool_type(),
1761 dummy->var_value()->add_preinit_statement(this->gogo_, s);
1767 // See if we need to initialize a pair of values from a receive
1768 // expression. This returns true if we have set up the variables and
1769 // the initialization.
1772 Parse::init_vars_from_receive(const Typed_identifier_list* vars, Type* type,
1773 Expression* expr, bool is_coloneq,
1776 Receive_expression* receive = expr->receive_expression();
1777 if (receive == NULL)
1779 if (vars->size() != 2)
1782 // This is a receive expression which is being assigned to two
1783 // variables. Declare the variables, and then assign the results of
1785 bool any_new = false;
1786 Typed_identifier_list::const_iterator p = vars->begin();
1787 Expression* init = type == NULL ? receive : NULL;
1788 Named_object* val_no = this->init_var(*p, type, init, is_coloneq,
1789 type == NULL, &any_new);
1790 if (type == NULL && any_new && val_no->is_variable())
1791 val_no->var_value()->set_type_from_init_tuple();
1792 Expression* val_var = Expression::make_var_reference(val_no, location);
1795 Type* var_type = type;
1796 if (var_type == NULL)
1797 var_type = Type::lookup_bool_type();
1798 Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1800 Expression* received_var = Expression::make_var_reference(no, location);
1802 if (is_coloneq && !any_new)
1803 error_at(location, "variables redeclared but no variable is new");
1805 Statement* s = Statement::make_tuple_receive_assignment(val_var,
1810 if (!this->gogo_->in_global_scope())
1811 this->gogo_->add_statement(s);
1812 else if (!val_no->is_sink())
1814 if (val_no->is_variable())
1815 val_no->var_value()->add_preinit_statement(this->gogo_, s);
1817 else if (!no->is_sink())
1819 if (no->is_variable())
1820 no->var_value()->add_preinit_statement(this->gogo_, s);
1824 Named_object* dummy = this->create_dummy_global(Type::lookup_bool_type(),
1826 dummy->var_value()->add_preinit_statement(this->gogo_, s);
1832 // See if we need to initialize a pair of values from a type guard
1833 // expression. This returns true if we have set up the variables and
1834 // the initialization.
1837 Parse::init_vars_from_type_guard(const Typed_identifier_list* vars,
1838 Type* type, Expression* expr,
1839 bool is_coloneq, Location location)
1841 Type_guard_expression* type_guard = expr->type_guard_expression();
1842 if (type_guard == NULL)
1844 if (vars->size() != 2)
1847 // This is a type guard expression which is being assigned to two
1848 // variables. Declare the variables, and then assign the results of
1850 bool any_new = false;
1851 Typed_identifier_list::const_iterator p = vars->begin();
1852 Type* var_type = type;
1853 if (var_type == NULL)
1854 var_type = type_guard->type();
1855 Named_object* val_no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1857 Expression* val_var = Expression::make_var_reference(val_no, location);
1861 if (var_type == NULL)
1862 var_type = Type::lookup_bool_type();
1863 Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1865 Expression* ok_var = Expression::make_var_reference(no, location);
1867 Expression* texpr = type_guard->expr();
1868 Type* t = type_guard->type();
1869 Statement* s = Statement::make_tuple_type_guard_assignment(val_var, ok_var,
1873 if (is_coloneq && !any_new)
1874 error_at(location, "variables redeclared but no variable is new");
1876 if (!this->gogo_->in_global_scope())
1877 this->gogo_->add_statement(s);
1878 else if (!val_no->is_sink())
1880 if (val_no->is_variable())
1881 val_no->var_value()->add_preinit_statement(this->gogo_, s);
1883 else if (!no->is_sink())
1885 if (no->is_variable())
1886 no->var_value()->add_preinit_statement(this->gogo_, s);
1890 Named_object* dummy = this->create_dummy_global(type, NULL, location);
1891 dummy->var_value()->add_preinit_statement(this->gogo_, s);
1897 // Create a single variable. If IS_COLONEQ is true, we permit
1898 // redeclarations in the same block, and we set *IS_NEW when we find a
1899 // new variable which is not a redeclaration.
1902 Parse::init_var(const Typed_identifier& tid, Type* type, Expression* init,
1903 bool is_coloneq, bool type_from_init, bool* is_new)
1905 Location location = tid.location();
1907 if (Gogo::is_sink_name(tid.name()))
1909 if (!type_from_init && init != NULL)
1911 if (this->gogo_->in_global_scope())
1912 return this->create_dummy_global(type, init, location);
1913 else if (type == NULL)
1914 this->gogo_->add_statement(Statement::make_statement(init, true));
1917 // With both a type and an initializer, create a dummy
1918 // variable so that we will check whether the
1919 // initializer can be assigned to the type.
1920 Variable* var = new Variable(type, init, false, false, false,
1925 snprintf(buf, sizeof buf, "sink$%d", count);
1927 return this->gogo_->add_variable(buf, var);
1931 this->gogo_->add_type_to_verify(type);
1932 return this->gogo_->add_sink();
1937 Named_object* no = this->gogo_->lookup_in_block(tid.name());
1939 && (no->is_variable() || no->is_result_variable()))
1941 // INIT may be NULL even when IS_COLONEQ is true for cases
1942 // like v, ok := x.(int).
1943 if (!type_from_init && init != NULL)
1945 Expression *v = Expression::make_var_reference(no, location);
1946 Statement *s = Statement::make_assignment(v, init, location);
1947 this->gogo_->add_statement(s);
1953 Variable* var = new Variable(type, init, this->gogo_->in_global_scope(),
1954 false, false, location);
1955 Named_object* no = this->gogo_->add_variable(tid.name(), var);
1956 if (!no->is_variable())
1958 // The name is already defined, so we just gave an error.
1959 return this->gogo_->add_sink();
1964 // Create a dummy global variable to force an initializer to be run in
1965 // the right place. This is used when a sink variable is initialized
1969 Parse::create_dummy_global(Type* type, Expression* init,
1972 if (type == NULL && init == NULL)
1973 type = Type::lookup_bool_type();
1974 Variable* var = new Variable(type, init, true, false, false, location);
1977 snprintf(buf, sizeof buf, "_.%d", count);
1979 return this->gogo_->add_variable(buf, var);
1982 // SimpleVarDecl = identifier ":=" Expression .
1984 // We've already seen the identifier.
1986 // FIXME: We also have to implement
1987 // IdentifierList ":=" ExpressionList
1988 // In order to support both "a, b := 1, 0" and "a, b = 1, 0" we accept
1989 // tuple assignments here as well.
1991 // If P_RANGE_CLAUSE is not NULL, then this will recognize a
1994 // If P_TYPE_SWITCH is not NULL, this will recognize a type switch
1995 // guard (var := expr.("type") using the literal keyword "type").
1998 Parse::simple_var_decl_or_assignment(const std::string& name,
2000 Range_clause* p_range_clause,
2001 Type_switch* p_type_switch)
2003 Typed_identifier_list til;
2004 til.push_back(Typed_identifier(name, NULL, location));
2006 // We've seen one identifier. If we see a comma now, this could be
2008 if (this->peek_token()->is_op(OPERATOR_COMMA))
2010 go_assert(p_type_switch == NULL);
2013 const Token* token = this->advance_token();
2014 if (!token->is_identifier())
2017 std::string id = token->identifier();
2018 bool is_id_exported = token->is_identifier_exported();
2019 Location id_location = token->location();
2021 token = this->advance_token();
2022 if (!token->is_op(OPERATOR_COMMA))
2024 if (token->is_op(OPERATOR_COLONEQ))
2026 id = this->gogo_->pack_hidden_name(id, is_id_exported);
2027 til.push_back(Typed_identifier(id, NULL, location));
2030 this->unget_token(Token::make_identifier_token(id,
2036 id = this->gogo_->pack_hidden_name(id, is_id_exported);
2037 til.push_back(Typed_identifier(id, NULL, location));
2040 // We have a comma separated list of identifiers in TIL. If the
2041 // next token is COLONEQ, then this is a simple var decl, and we
2042 // have the complete list of identifiers. If the next token is
2043 // not COLONEQ, then the only valid parse is a tuple assignment.
2044 // The list of identifiers we have so far is really a list of
2045 // expressions. There are more expressions following.
2047 if (!this->peek_token()->is_op(OPERATOR_COLONEQ))
2049 Expression_list* exprs = new Expression_list;
2050 for (Typed_identifier_list::const_iterator p = til.begin();
2053 exprs->push_back(this->id_to_expression(p->name(),
2056 Expression_list* more_exprs = this->expression_list(NULL, true);
2057 for (Expression_list::const_iterator p = more_exprs->begin();
2058 p != more_exprs->end();
2060 exprs->push_back(*p);
2063 this->tuple_assignment(exprs, p_range_clause);
2068 go_assert(this->peek_token()->is_op(OPERATOR_COLONEQ));
2069 const Token* token = this->advance_token();
2071 if (p_range_clause != NULL && token->is_keyword(KEYWORD_RANGE))
2073 this->range_clause_decl(&til, p_range_clause);
2077 Expression_list* init;
2078 if (p_type_switch == NULL)
2079 init = this->expression_list(NULL, false);
2082 bool is_type_switch = false;
2083 Expression* expr = this->expression(PRECEDENCE_NORMAL, false, true,
2087 p_type_switch->found = true;
2088 p_type_switch->name = name;
2089 p_type_switch->location = location;
2090 p_type_switch->expr = expr;
2094 if (!this->peek_token()->is_op(OPERATOR_COMMA))
2096 init = new Expression_list();
2097 init->push_back(expr);
2101 this->advance_token();
2102 init = this->expression_list(expr, false);
2106 this->init_vars(&til, NULL, init, true, location);
2109 // FunctionDecl = "func" identifier Signature [ Block ] .
2110 // MethodDecl = "func" Receiver identifier Signature [ Block ] .
2112 // Deprecated gcc extension:
2113 // FunctionDecl = "func" identifier Signature
2114 // __asm__ "(" string_lit ")" .
2115 // This extension means a function whose real name is the identifier
2116 // inside the asm. This extension will be removed at some future
2117 // date. It has been replaced with //extern comments.
2120 Parse::function_decl()
2122 go_assert(this->peek_token()->is_keyword(KEYWORD_FUNC));
2123 Location location = this->location();
2124 std::string extern_name = this->lex_->extern_name();
2125 const Token* token = this->advance_token();
2127 Typed_identifier* rec = NULL;
2128 if (token->is_op(OPERATOR_LPAREN))
2130 rec = this->receiver();
2131 token = this->peek_token();
2134 if (!token->is_identifier())
2136 error_at(this->location(), "expected function name");
2141 this->gogo_->pack_hidden_name(token->identifier(),
2142 token->is_identifier_exported());
2144 this->advance_token();
2146 Function_type* fntype = this->signature(rec, this->location());
2148 Named_object* named_object = NULL;
2150 if (this->peek_token()->is_keyword(KEYWORD_ASM))
2152 if (!this->advance_token()->is_op(OPERATOR_LPAREN))
2154 error_at(this->location(), "expected %<(%>");
2157 token = this->advance_token();
2158 if (!token->is_string())
2160 error_at(this->location(), "expected string");
2163 std::string asm_name = token->string_value();
2164 if (!this->advance_token()->is_op(OPERATOR_RPAREN))
2166 error_at(this->location(), "expected %<)%>");
2169 this->advance_token();
2170 if (!Gogo::is_sink_name(name))
2172 named_object = this->gogo_->declare_function(name, fntype, location);
2173 if (named_object->is_function_declaration())
2174 named_object->func_declaration_value()->set_asm_name(asm_name);
2178 // Check for the easy error of a newline before the opening brace.
2179 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
2181 Location semi_loc = this->location();
2182 if (this->advance_token()->is_op(OPERATOR_LCURLY))
2183 error_at(this->location(),
2184 "unexpected semicolon or newline before %<{%>");
2186 this->unget_token(Token::make_operator_token(OPERATOR_SEMICOLON,
2190 if (!this->peek_token()->is_op(OPERATOR_LCURLY))
2192 if (named_object == NULL && !Gogo::is_sink_name(name))
2195 this->gogo_->add_erroneous_name(name);
2198 named_object = this->gogo_->declare_function(name, fntype,
2200 if (!extern_name.empty()
2201 && named_object->is_function_declaration())
2203 Function_declaration* fd =
2204 named_object->func_declaration_value();
2205 fd->set_asm_name(extern_name);
2212 bool hold_is_erroneous_function = this->is_erroneous_function_;
2215 fntype = Type::make_function_type(NULL, NULL, NULL, location);
2216 this->is_erroneous_function_ = true;
2217 if (!Gogo::is_sink_name(name))
2218 this->gogo_->add_erroneous_name(name);
2219 name = this->gogo_->pack_hidden_name("_", false);
2221 this->gogo_->start_function(name, fntype, true, location);
2222 Location end_loc = this->block();
2223 this->gogo_->finish_function(end_loc);
2224 this->is_erroneous_function_ = hold_is_erroneous_function;
2228 // Receiver = "(" [ identifier ] [ "*" ] BaseTypeName ")" .
2229 // BaseTypeName = identifier .
2234 go_assert(this->peek_token()->is_op(OPERATOR_LPAREN));
2237 const Token* token = this->advance_token();
2238 Location location = token->location();
2239 if (!token->is_op(OPERATOR_MULT))
2241 if (!token->is_identifier())
2243 error_at(this->location(), "method has no receiver");
2244 this->gogo_->mark_locals_used();
2245 while (!token->is_eof() && !token->is_op(OPERATOR_RPAREN))
2246 token = this->advance_token();
2247 if (!token->is_eof())
2248 this->advance_token();
2251 name = token->identifier();
2252 bool is_exported = token->is_identifier_exported();
2253 token = this->advance_token();
2254 if (!token->is_op(OPERATOR_DOT) && !token->is_op(OPERATOR_RPAREN))
2256 // An identifier followed by something other than a dot or a
2257 // right parenthesis must be a receiver name followed by a
2259 name = this->gogo_->pack_hidden_name(name, is_exported);
2263 // This must be a type name.
2264 this->unget_token(Token::make_identifier_token(name, is_exported,
2266 token = this->peek_token();
2271 // Here the receiver name is in NAME (it is empty if the receiver is
2272 // unnamed) and TOKEN is the first token in the type.
2274 bool is_pointer = false;
2275 if (token->is_op(OPERATOR_MULT))
2278 token = this->advance_token();
2281 if (!token->is_identifier())
2283 error_at(this->location(), "expected receiver name or type");
2284 this->gogo_->mark_locals_used();
2285 int c = token->is_op(OPERATOR_LPAREN) ? 1 : 0;
2286 while (!token->is_eof())
2288 token = this->advance_token();
2289 if (token->is_op(OPERATOR_LPAREN))
2291 else if (token->is_op(OPERATOR_RPAREN))
2298 if (!token->is_eof())
2299 this->advance_token();
2303 Type* type = this->type_name(true);
2305 if (is_pointer && !type->is_error_type())
2306 type = Type::make_pointer_type(type);
2308 if (this->peek_token()->is_op(OPERATOR_RPAREN))
2309 this->advance_token();
2312 if (this->peek_token()->is_op(OPERATOR_COMMA))
2313 error_at(this->location(), "method has multiple receivers");
2315 error_at(this->location(), "expected %<)%>");
2316 this->gogo_->mark_locals_used();
2317 while (!token->is_eof() && !token->is_op(OPERATOR_RPAREN))
2318 token = this->advance_token();
2319 if (!token->is_eof())
2320 this->advance_token();
2324 return new Typed_identifier(name, type, location);
2327 // Operand = Literal | QualifiedIdent | MethodExpr | "(" Expression ")" .
2328 // Literal = BasicLit | CompositeLit | FunctionLit .
2329 // BasicLit = int_lit | float_lit | imaginary_lit | char_lit | string_lit .
2331 // If MAY_BE_SINK is true, this operand may be "_".
2334 Parse::operand(bool may_be_sink)
2336 const Token* token = this->peek_token();
2338 switch (token->classification())
2340 case Token::TOKEN_IDENTIFIER:
2342 Location location = token->location();
2343 std::string id = token->identifier();
2344 bool is_exported = token->is_identifier_exported();
2345 std::string packed = this->gogo_->pack_hidden_name(id, is_exported);
2347 Named_object* in_function;
2348 Named_object* named_object = this->gogo_->lookup(packed, &in_function);
2350 Package* package = NULL;
2351 if (named_object != NULL && named_object->is_package())
2353 if (!this->advance_token()->is_op(OPERATOR_DOT)
2354 || !this->advance_token()->is_identifier())
2356 error_at(location, "unexpected reference to package");
2357 return Expression::make_error(location);
2359 package = named_object->package_value();
2360 package->set_used();
2361 id = this->peek_token()->identifier();
2362 is_exported = this->peek_token()->is_identifier_exported();
2363 packed = this->gogo_->pack_hidden_name(id, is_exported);
2364 named_object = package->lookup(packed);
2365 location = this->location();
2366 go_assert(in_function == NULL);
2369 this->advance_token();
2371 if (named_object != NULL
2372 && named_object->is_type()
2373 && !named_object->type_value()->is_visible())
2375 go_assert(package != NULL);
2376 error_at(location, "invalid reference to hidden type %<%s.%s%>",
2377 Gogo::message_name(package->name()).c_str(),
2378 Gogo::message_name(id).c_str());
2379 return Expression::make_error(location);
2383 if (named_object == NULL)
2385 if (package != NULL)
2387 std::string n1 = Gogo::message_name(package->name());
2388 std::string n2 = Gogo::message_name(id);
2391 ("invalid reference to unexported identifier "
2393 n1.c_str(), n2.c_str());
2396 "reference to undefined identifier %<%s.%s%>",
2397 n1.c_str(), n2.c_str());
2398 return Expression::make_error(location);
2401 named_object = this->gogo_->add_unknown_name(packed, location);
2404 if (in_function != NULL
2405 && in_function != this->gogo_->current_function()
2406 && (named_object->is_variable()
2407 || named_object->is_result_variable()))
2408 return this->enclosing_var_reference(in_function, named_object,
2411 switch (named_object->classification())
2413 case Named_object::NAMED_OBJECT_CONST:
2414 return Expression::make_const_reference(named_object, location);
2415 case Named_object::NAMED_OBJECT_TYPE:
2416 return Expression::make_type(named_object->type_value(), location);
2417 case Named_object::NAMED_OBJECT_TYPE_DECLARATION:
2419 Type* t = Type::make_forward_declaration(named_object);
2420 return Expression::make_type(t, location);
2422 case Named_object::NAMED_OBJECT_VAR:
2423 case Named_object::NAMED_OBJECT_RESULT_VAR:
2424 this->mark_var_used(named_object);
2425 return Expression::make_var_reference(named_object, location);
2426 case Named_object::NAMED_OBJECT_SINK:
2428 return Expression::make_sink(location);
2431 error_at(location, "cannot use _ as value");
2432 return Expression::make_error(location);
2434 case Named_object::NAMED_OBJECT_FUNC:
2435 case Named_object::NAMED_OBJECT_FUNC_DECLARATION:
2436 return Expression::make_func_reference(named_object, NULL,
2438 case Named_object::NAMED_OBJECT_UNKNOWN:
2440 Unknown_expression* ue =
2441 Expression::make_unknown_reference(named_object, location);
2442 if (this->is_erroneous_function_)
2443 ue->set_no_error_message();
2446 case Named_object::NAMED_OBJECT_ERRONEOUS:
2447 return Expression::make_error(location);
2454 case Token::TOKEN_STRING:
2455 ret = Expression::make_string(token->string_value(), token->location());
2456 this->advance_token();
2459 case Token::TOKEN_CHARACTER:
2460 ret = Expression::make_character(token->character_value(), NULL,
2462 this->advance_token();
2465 case Token::TOKEN_INTEGER:
2466 ret = Expression::make_integer(token->integer_value(), NULL,
2468 this->advance_token();
2471 case Token::TOKEN_FLOAT:
2472 ret = Expression::make_float(token->float_value(), NULL,
2474 this->advance_token();
2477 case Token::TOKEN_IMAGINARY:
2480 mpfr_init_set_ui(zero, 0, GMP_RNDN);
2481 ret = Expression::make_complex(&zero, token->imaginary_value(),
2482 NULL, token->location());
2484 this->advance_token();
2488 case Token::TOKEN_KEYWORD:
2489 switch (token->keyword())
2492 return this->function_lit();
2494 case KEYWORD_INTERFACE:
2496 case KEYWORD_STRUCT:
2498 Location location = token->location();
2499 return Expression::make_type(this->type(), location);
2506 case Token::TOKEN_OPERATOR:
2507 if (token->is_op(OPERATOR_LPAREN))
2509 this->advance_token();
2510 ret = this->expression(PRECEDENCE_NORMAL, may_be_sink, true, NULL);
2511 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
2512 error_at(this->location(), "missing %<)%>");
2514 this->advance_token();
2517 else if (token->is_op(OPERATOR_LSQUARE))
2519 // Here we call array_type directly, as this is the only
2520 // case where an ellipsis is permitted for an array type.
2521 Location location = token->location();
2522 return Expression::make_type(this->array_type(true), location);
2530 error_at(this->location(), "expected operand");
2531 return Expression::make_error(this->location());
2534 // Handle a reference to a variable in an enclosing function. We add
2535 // it to a list of such variables. We return a reference to a field
2536 // in a struct which will be passed on the static chain when calling
2537 // the current function.
2540 Parse::enclosing_var_reference(Named_object* in_function, Named_object* var,
2543 go_assert(var->is_variable() || var->is_result_variable());
2545 this->mark_var_used(var);
2547 Named_object* this_function = this->gogo_->current_function();
2548 Named_object* closure = this_function->func_value()->closure_var();
2550 Enclosing_var ev(var, in_function, this->enclosing_vars_.size());
2551 std::pair<Enclosing_vars::iterator, bool> ins =
2552 this->enclosing_vars_.insert(ev);
2555 // This is a variable we have not seen before. Add a new field
2556 // to the closure type.
2557 this_function->func_value()->add_closure_field(var, location);
2560 Expression* closure_ref = Expression::make_var_reference(closure,
2562 closure_ref = Expression::make_unary(OPERATOR_MULT, closure_ref, location);
2564 // The closure structure holds pointers to the variables, so we need
2565 // to introduce an indirection.
2566 Expression* e = Expression::make_field_reference(closure_ref,
2569 e = Expression::make_unary(OPERATOR_MULT, e, location);
2573 // CompositeLit = LiteralType LiteralValue .
2574 // LiteralType = StructType | ArrayType | "[" "..." "]" ElementType |
2575 // SliceType | MapType | TypeName .
2576 // LiteralValue = "{" [ ElementList [ "," ] ] "}" .
2577 // ElementList = Element { "," Element } .
2578 // Element = [ Key ":" ] Value .
2579 // Key = FieldName | ElementIndex .
2580 // FieldName = identifier .
2581 // ElementIndex = Expression .
2582 // Value = Expression | LiteralValue .
2584 // We have already seen the type if there is one, and we are now
2585 // looking at the LiteralValue. The case "[" "..." "]" ElementType
2586 // will be seen here as an array type whose length is "nil". The
2587 // DEPTH parameter is non-zero if this is an embedded composite
2588 // literal and the type was omitted. It gives the number of steps up
2589 // to the type which was provided. E.g., in [][]int{{1}} it will be
2590 // 1. In [][][]int{{{1}}} it will be 2.
2593 Parse::composite_lit(Type* type, int depth, Location location)
2595 go_assert(this->peek_token()->is_op(OPERATOR_LCURLY));
2596 this->advance_token();
2598 if (this->peek_token()->is_op(OPERATOR_RCURLY))
2600 this->advance_token();
2601 return Expression::make_composite_literal(type, depth, false, NULL,
2605 bool has_keys = false;
2606 Expression_list* vals = new Expression_list;
2610 bool is_type_omitted = false;
2612 const Token* token = this->peek_token();
2614 if (token->is_identifier())
2616 std::string identifier = token->identifier();
2617 bool is_exported = token->is_identifier_exported();
2618 Location location = token->location();
2620 if (this->advance_token()->is_op(OPERATOR_COLON))
2622 // This may be a field name. We don't know for sure--it
2623 // could also be an expression for an array index. We
2624 // don't want to parse it as an expression because may
2625 // trigger various errors, e.g., if this identifier
2626 // happens to be the name of a package.
2627 Gogo* gogo = this->gogo_;
2628 val = this->id_to_expression(gogo->pack_hidden_name(identifier,
2634 this->unget_token(Token::make_identifier_token(identifier,
2637 val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2640 else if (!token->is_op(OPERATOR_LCURLY))
2641 val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2644 // This must be a composite literal inside another composite
2645 // literal, with the type omitted for the inner one.
2646 val = this->composite_lit(type, depth + 1, token->location());
2647 is_type_omitted = true;
2650 token = this->peek_token();
2651 if (!token->is_op(OPERATOR_COLON))
2654 vals->push_back(NULL);
2658 if (is_type_omitted && !val->is_error_expression())
2660 error_at(this->location(), "unexpected %<:%>");
2661 val = Expression::make_error(this->location());
2664 this->advance_token();
2666 if (!has_keys && !vals->empty())
2668 Expression_list* newvals = new Expression_list;
2669 for (Expression_list::const_iterator p = vals->begin();
2673 newvals->push_back(NULL);
2674 newvals->push_back(*p);
2681 if (val->unknown_expression() != NULL)
2682 val->unknown_expression()->set_is_composite_literal_key();
2684 vals->push_back(val);
2686 if (!token->is_op(OPERATOR_LCURLY))
2687 val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2690 // This must be a composite literal inside another
2691 // composite literal, with the type omitted for the
2693 val = this->composite_lit(type, depth + 1, token->location());
2696 token = this->peek_token();
2699 vals->push_back(val);
2701 if (token->is_op(OPERATOR_COMMA))
2703 if (this->advance_token()->is_op(OPERATOR_RCURLY))
2705 this->advance_token();
2709 else if (token->is_op(OPERATOR_RCURLY))
2711 this->advance_token();
2716 error_at(this->location(), "expected %<,%> or %<}%>");
2718 this->gogo_->mark_locals_used();
2720 while (!token->is_eof()
2721 && (depth > 0 || !token->is_op(OPERATOR_RCURLY)))
2723 if (token->is_op(OPERATOR_LCURLY))
2725 else if (token->is_op(OPERATOR_RCURLY))
2727 token = this->advance_token();
2729 if (token->is_op(OPERATOR_RCURLY))
2730 this->advance_token();
2732 return Expression::make_error(location);
2736 return Expression::make_composite_literal(type, depth, has_keys, vals,
2740 // FunctionLit = "func" Signature Block .
2743 Parse::function_lit()
2745 Location location = this->location();
2746 go_assert(this->peek_token()->is_keyword(KEYWORD_FUNC));
2747 this->advance_token();
2749 Enclosing_vars hold_enclosing_vars;
2750 hold_enclosing_vars.swap(this->enclosing_vars_);
2752 Function_type* type = this->signature(NULL, location);
2753 bool fntype_is_error = false;
2756 type = Type::make_function_type(NULL, NULL, NULL, location);
2757 fntype_is_error = true;
2760 // For a function literal, the next token must be a '{'. If we
2761 // don't see that, then we may have a type expression.
2762 if (!this->peek_token()->is_op(OPERATOR_LCURLY))
2763 return Expression::make_type(type, location);
2765 bool hold_is_erroneous_function = this->is_erroneous_function_;
2766 if (fntype_is_error)
2767 this->is_erroneous_function_ = true;
2769 Bc_stack* hold_break_stack = this->break_stack_;
2770 Bc_stack* hold_continue_stack = this->continue_stack_;
2771 this->break_stack_ = NULL;
2772 this->continue_stack_ = NULL;
2774 Named_object* no = this->gogo_->start_function("", type, true, location);
2776 Location end_loc = this->block();
2778 this->gogo_->finish_function(end_loc);
2780 if (this->break_stack_ != NULL)
2781 delete this->break_stack_;
2782 if (this->continue_stack_ != NULL)
2783 delete this->continue_stack_;
2784 this->break_stack_ = hold_break_stack;
2785 this->continue_stack_ = hold_continue_stack;
2787 this->is_erroneous_function_ = hold_is_erroneous_function;
2789 hold_enclosing_vars.swap(this->enclosing_vars_);
2791 Expression* closure = this->create_closure(no, &hold_enclosing_vars,
2794 return Expression::make_func_reference(no, closure, location);
2797 // Create a closure for the nested function FUNCTION. This is based
2798 // on ENCLOSING_VARS, which is a list of all variables defined in
2799 // enclosing functions and referenced from FUNCTION. A closure is the
2800 // address of a struct which contains the addresses of all the
2801 // referenced variables. This returns NULL if no closure is required.
2804 Parse::create_closure(Named_object* function, Enclosing_vars* enclosing_vars,
2807 if (enclosing_vars->empty())
2810 // Get the variables in order by their field index.
2812 size_t enclosing_var_count = enclosing_vars->size();
2813 std::vector<Enclosing_var> ev(enclosing_var_count);
2814 for (Enclosing_vars::const_iterator p = enclosing_vars->begin();
2815 p != enclosing_vars->end();
2817 ev[p->index()] = *p;
2819 // Build an initializer for a composite literal of the closure's
2822 Named_object* enclosing_function = this->gogo_->current_function();
2823 Expression_list* initializer = new Expression_list;
2824 for (size_t i = 0; i < enclosing_var_count; ++i)
2826 go_assert(ev[i].index() == i);
2827 Named_object* var = ev[i].var();
2829 if (ev[i].in_function() == enclosing_function)
2830 ref = Expression::make_var_reference(var, location);
2832 ref = this->enclosing_var_reference(ev[i].in_function(), var,
2834 Expression* refaddr = Expression::make_unary(OPERATOR_AND, ref,
2836 initializer->push_back(refaddr);
2839 Named_object* closure_var = function->func_value()->closure_var();
2840 Struct_type* st = closure_var->var_value()->type()->deref()->struct_type();
2841 Expression* cv = Expression::make_struct_composite_literal(st, initializer,
2843 return Expression::make_heap_composite(cv, location);
2846 // PrimaryExpr = Operand { Selector | Index | Slice | TypeGuard | Call } .
2848 // If MAY_BE_SINK is true, this expression may be "_".
2850 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
2853 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
2854 // guard (var := expr.("type") using the literal keyword "type").
2857 Parse::primary_expr(bool may_be_sink, bool may_be_composite_lit,
2858 bool* is_type_switch)
2860 Location start_loc = this->location();
2861 bool is_parenthesized = this->peek_token()->is_op(OPERATOR_LPAREN);
2863 Expression* ret = this->operand(may_be_sink);
2865 // An unknown name followed by a curly brace must be a composite
2866 // literal, and the unknown name must be a type.
2867 if (may_be_composite_lit
2868 && !is_parenthesized
2869 && ret->unknown_expression() != NULL
2870 && this->peek_token()->is_op(OPERATOR_LCURLY))
2872 Named_object* no = ret->unknown_expression()->named_object();
2873 Type* type = Type::make_forward_declaration(no);
2874 ret = Expression::make_type(type, ret->location());
2877 // We handle composite literals and type casts here, as it is the
2878 // easiest way to handle types which are in parentheses, as in
2880 if (ret->is_type_expression())
2882 if (this->peek_token()->is_op(OPERATOR_LCURLY))
2884 if (!may_be_composite_lit)
2886 Type* t = ret->type();
2887 if (t->named_type() != NULL
2888 || t->forward_declaration_type() != NULL)
2890 _("parentheses required around this composite literal"
2891 "to avoid parsing ambiguity"));
2893 else if (is_parenthesized)
2895 "cannot parenthesize type in composite literal");
2896 ret = this->composite_lit(ret->type(), 0, ret->location());
2898 else if (this->peek_token()->is_op(OPERATOR_LPAREN))
2900 Location loc = this->location();
2901 this->advance_token();
2902 Expression* expr = this->expression(PRECEDENCE_NORMAL, false, true,
2904 if (this->peek_token()->is_op(OPERATOR_ELLIPSIS))
2906 error_at(this->location(),
2907 "invalid use of %<...%> in type conversion");
2908 this->advance_token();
2910 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
2911 error_at(this->location(), "expected %<)%>");
2913 this->advance_token();
2914 if (expr->is_error_expression())
2918 Type* t = ret->type();
2919 if (t->classification() == Type::TYPE_ARRAY
2920 && t->array_type()->length() != NULL
2921 && t->array_type()->length()->is_nil_expression())
2923 error_at(ret->location(),
2924 "invalid use of %<...%> in type conversion");
2925 ret = Expression::make_error(loc);
2928 ret = Expression::make_cast(t, expr, loc);
2935 const Token* token = this->peek_token();
2936 if (token->is_op(OPERATOR_LPAREN))
2937 ret = this->call(this->verify_not_sink(ret));
2938 else if (token->is_op(OPERATOR_DOT))
2940 ret = this->selector(this->verify_not_sink(ret), is_type_switch);
2941 if (is_type_switch != NULL && *is_type_switch)
2944 else if (token->is_op(OPERATOR_LSQUARE))
2945 ret = this->index(this->verify_not_sink(ret));
2953 // Selector = "." identifier .
2954 // TypeGuard = "." "(" QualifiedIdent ")" .
2956 // Note that Operand can expand to QualifiedIdent, which contains a
2957 // ".". That is handled directly in operand when it sees a package
2960 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
2961 // guard (var := expr.("type") using the literal keyword "type").
2964 Parse::selector(Expression* left, bool* is_type_switch)
2966 go_assert(this->peek_token()->is_op(OPERATOR_DOT));
2967 Location location = this->location();
2969 const Token* token = this->advance_token();
2970 if (token->is_identifier())
2972 // This could be a field in a struct, or a method in an
2973 // interface, or a method associated with a type. We can't know
2974 // which until we have seen all the types.
2976 this->gogo_->pack_hidden_name(token->identifier(),
2977 token->is_identifier_exported());
2978 if (token->identifier() == "_")
2980 error_at(this->location(), "invalid use of %<_%>");
2981 name = this->gogo_->pack_hidden_name("blank", false);
2983 this->advance_token();
2984 return Expression::make_selector(left, name, location);
2986 else if (token->is_op(OPERATOR_LPAREN))
2988 this->advance_token();
2990 if (!this->peek_token()->is_keyword(KEYWORD_TYPE))
2991 type = this->type();
2994 if (is_type_switch != NULL)
2995 *is_type_switch = true;
2998 error_at(this->location(),
2999 "use of %<.(type)%> outside type switch");
3000 type = Type::make_error_type();
3002 this->advance_token();
3004 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
3005 error_at(this->location(), "missing %<)%>");
3007 this->advance_token();
3008 if (is_type_switch != NULL && *is_type_switch)
3010 return Expression::make_type_guard(left, type, location);
3014 error_at(this->location(), "expected identifier or %<(%>");
3019 // Index = "[" Expression "]" .
3020 // Slice = "[" Expression ":" [ Expression ] "]" .
3023 Parse::index(Expression* expr)
3025 Location location = this->location();
3026 go_assert(this->peek_token()->is_op(OPERATOR_LSQUARE));
3027 this->advance_token();
3030 if (!this->peek_token()->is_op(OPERATOR_COLON))
3031 start = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
3035 mpz_init_set_ui(zero, 0);
3036 start = Expression::make_integer(&zero, NULL, location);
3040 Expression* end = NULL;
3041 if (this->peek_token()->is_op(OPERATOR_COLON))
3043 // We use nil to indicate a missing high expression.
3044 if (this->advance_token()->is_op(OPERATOR_RSQUARE))
3045 end = Expression::make_nil(this->location());
3047 end = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
3049 if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
3050 error_at(this->location(), "missing %<]%>");
3052 this->advance_token();
3053 return Expression::make_index(expr, start, end, location);
3056 // Call = "(" [ ArgumentList [ "," ] ] ")" .
3057 // ArgumentList = ExpressionList [ "..." ] .
3060 Parse::call(Expression* func)
3062 go_assert(this->peek_token()->is_op(OPERATOR_LPAREN));
3063 Expression_list* args = NULL;
3064 bool is_varargs = false;
3065 const Token* token = this->advance_token();
3066 if (!token->is_op(OPERATOR_RPAREN))
3068 args = this->expression_list(NULL, false);
3069 token = this->peek_token();
3070 if (token->is_op(OPERATOR_ELLIPSIS))
3073 token = this->advance_token();
3076 if (token->is_op(OPERATOR_COMMA))
3077 token = this->advance_token();
3078 if (!token->is_op(OPERATOR_RPAREN))
3079 error_at(this->location(), "missing %<)%>");
3081 this->advance_token();
3082 if (func->is_error_expression())
3084 return Expression::make_call(func, args, is_varargs, func->location());
3087 // Return an expression for a single unqualified identifier.
3090 Parse::id_to_expression(const std::string& name, Location location)
3092 Named_object* in_function;
3093 Named_object* named_object = this->gogo_->lookup(name, &in_function);
3094 if (named_object == NULL)
3095 named_object = this->gogo_->add_unknown_name(name, location);
3097 if (in_function != NULL
3098 && in_function != this->gogo_->current_function()
3099 && (named_object->is_variable() || named_object->is_result_variable()))
3100 return this->enclosing_var_reference(in_function, named_object,
3103 switch (named_object->classification())
3105 case Named_object::NAMED_OBJECT_CONST:
3106 return Expression::make_const_reference(named_object, location);
3107 case Named_object::NAMED_OBJECT_VAR:
3108 case Named_object::NAMED_OBJECT_RESULT_VAR:
3109 this->mark_var_used(named_object);
3110 return Expression::make_var_reference(named_object, location);
3111 case Named_object::NAMED_OBJECT_SINK:
3112 return Expression::make_sink(location);
3113 case Named_object::NAMED_OBJECT_FUNC:
3114 case Named_object::NAMED_OBJECT_FUNC_DECLARATION:
3115 return Expression::make_func_reference(named_object, NULL, location);
3116 case Named_object::NAMED_OBJECT_UNKNOWN:
3118 Unknown_expression* ue =
3119 Expression::make_unknown_reference(named_object, location);
3120 if (this->is_erroneous_function_)
3121 ue->set_no_error_message();
3124 case Named_object::NAMED_OBJECT_PACKAGE:
3125 case Named_object::NAMED_OBJECT_TYPE:
3126 case Named_object::NAMED_OBJECT_TYPE_DECLARATION:
3128 // These cases can arise for a field name in a composite
3130 Unknown_expression* ue =
3131 Expression::make_unknown_reference(named_object, location);
3132 if (this->is_erroneous_function_)
3133 ue->set_no_error_message();
3136 case Named_object::NAMED_OBJECT_ERRONEOUS:
3137 return Expression::make_error(location);
3139 error_at(this->location(), "unexpected type of identifier");
3140 return Expression::make_error(location);
3144 // Expression = UnaryExpr { binary_op Expression } .
3146 // PRECEDENCE is the precedence of the current operator.
3148 // If MAY_BE_SINK is true, this expression may be "_".
3150 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
3153 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
3154 // guard (var := expr.("type") using the literal keyword "type").
3157 Parse::expression(Precedence precedence, bool may_be_sink,
3158 bool may_be_composite_lit, bool* is_type_switch)
3160 Expression* left = this->unary_expr(may_be_sink, may_be_composite_lit,
3165 if (is_type_switch != NULL && *is_type_switch)
3168 const Token* token = this->peek_token();
3169 if (token->classification() != Token::TOKEN_OPERATOR)
3175 Precedence right_precedence;
3176 switch (token->op())
3179 right_precedence = PRECEDENCE_OROR;
3181 case OPERATOR_ANDAND:
3182 right_precedence = PRECEDENCE_ANDAND;
3185 case OPERATOR_NOTEQ:
3190 right_precedence = PRECEDENCE_RELOP;
3193 case OPERATOR_MINUS:
3196 right_precedence = PRECEDENCE_ADDOP;
3201 case OPERATOR_LSHIFT:
3202 case OPERATOR_RSHIFT:
3204 case OPERATOR_BITCLEAR:
3205 right_precedence = PRECEDENCE_MULOP;
3208 right_precedence = PRECEDENCE_INVALID;
3212 if (right_precedence == PRECEDENCE_INVALID)
3218 Operator op = token->op();
3219 Location binop_location = token->location();
3221 if (precedence >= right_precedence)
3223 // We've already seen A * B, and we see + C. We want to
3224 // return so that A * B becomes a group.
3228 this->advance_token();
3230 left = this->verify_not_sink(left);
3231 Expression* right = this->expression(right_precedence, false,
3232 may_be_composite_lit,
3234 left = Expression::make_binary(op, left, right, binop_location);
3239 Parse::expression_may_start_here()
3241 const Token* token = this->peek_token();
3242 switch (token->classification())
3244 case Token::TOKEN_INVALID:
3245 case Token::TOKEN_EOF:
3247 case Token::TOKEN_KEYWORD:
3248 switch (token->keyword())
3253 case KEYWORD_STRUCT:
3254 case KEYWORD_INTERFACE:
3259 case Token::TOKEN_IDENTIFIER:
3261 case Token::TOKEN_STRING:
3263 case Token::TOKEN_OPERATOR:
3264 switch (token->op())
3267 case OPERATOR_MINUS:
3271 case OPERATOR_CHANOP:
3273 case OPERATOR_LPAREN:
3274 case OPERATOR_LSQUARE:
3279 case Token::TOKEN_CHARACTER:
3280 case Token::TOKEN_INTEGER:
3281 case Token::TOKEN_FLOAT:
3282 case Token::TOKEN_IMAGINARY:
3289 // UnaryExpr = unary_op UnaryExpr | PrimaryExpr .
3291 // If MAY_BE_SINK is true, this expression may be "_".
3293 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
3296 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
3297 // guard (var := expr.("type") using the literal keyword "type").
3300 Parse::unary_expr(bool may_be_sink, bool may_be_composite_lit,
3301 bool* is_type_switch)
3303 const Token* token = this->peek_token();
3304 if (token->is_op(OPERATOR_PLUS)
3305 || token->is_op(OPERATOR_MINUS)
3306 || token->is_op(OPERATOR_NOT)
3307 || token->is_op(OPERATOR_XOR)
3308 || token->is_op(OPERATOR_CHANOP)
3309 || token->is_op(OPERATOR_MULT)
3310 || token->is_op(OPERATOR_AND))
3312 Location location = token->location();
3313 Operator op = token->op();
3314 this->advance_token();
3316 if (op == OPERATOR_CHANOP
3317 && this->peek_token()->is_keyword(KEYWORD_CHAN))
3319 // This is "<- chan" which must be the start of a type.
3320 this->unget_token(Token::make_operator_token(op, location));
3321 return Expression::make_type(this->type(), location);
3324 Expression* expr = this->unary_expr(false, may_be_composite_lit, NULL);
3325 if (expr->is_error_expression())
3327 else if (op == OPERATOR_MULT && expr->is_type_expression())
3328 expr = Expression::make_type(Type::make_pointer_type(expr->type()),
3330 else if (op == OPERATOR_AND && expr->is_composite_literal())
3331 expr = Expression::make_heap_composite(expr, location);
3332 else if (op != OPERATOR_CHANOP)
3333 expr = Expression::make_unary(op, expr, location);
3335 expr = Expression::make_receive(expr, location);
3339 return this->primary_expr(may_be_sink, may_be_composite_lit,
3344 // Declaration | LabeledStmt | SimpleStmt |
3345 // GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt |
3346 // FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt |
3349 // LABEL is the label of this statement if it has one.
3352 Parse::statement(Label* label)
3354 const Token* token = this->peek_token();
3355 switch (token->classification())
3357 case Token::TOKEN_KEYWORD:
3359 switch (token->keyword())
3364 this->declaration();
3368 case KEYWORD_STRUCT:
3369 case KEYWORD_INTERFACE:
3370 this->simple_stat(true, NULL, NULL, NULL);
3374 this->go_or_defer_stat();
3376 case KEYWORD_RETURN:
3377 this->return_stat();
3382 case KEYWORD_CONTINUE:
3383 this->continue_stat();
3391 case KEYWORD_SWITCH:
3392 this->switch_stat(label);
3394 case KEYWORD_SELECT:
3395 this->select_stat(label);
3398 this->for_stat(label);
3401 error_at(this->location(), "expected statement");
3402 this->advance_token();