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),
50 continue_stack_(NULL),
56 // Return the current token.
61 if (this->unget_token_valid_)
62 return &this->unget_token_;
63 if (this->token_.is_invalid())
64 this->token_ = this->lex_->next_token();
68 // Advance to the next token and return it.
71 Parse::advance_token()
73 if (this->unget_token_valid_)
75 this->unget_token_valid_ = false;
76 if (!this->token_.is_invalid())
79 this->token_ = this->lex_->next_token();
83 // Push a token back on the input stream.
86 Parse::unget_token(const Token& token)
88 go_assert(!this->unget_token_valid_);
89 this->unget_token_ = token;
90 this->unget_token_valid_ = true;
93 // The location of the current token.
98 return this->peek_token()->location();
101 // IdentifierList = identifier { "," identifier } .
104 Parse::identifier_list(Typed_identifier_list* til)
106 const Token* token = this->peek_token();
109 if (!token->is_identifier())
111 error_at(this->location(), "expected identifier");
115 this->gogo_->pack_hidden_name(token->identifier(),
116 token->is_identifier_exported());
117 til->push_back(Typed_identifier(name, NULL, token->location()));
118 token = this->advance_token();
119 if (!token->is_op(OPERATOR_COMMA))
121 token = this->advance_token();
125 // ExpressionList = Expression { "," Expression } .
127 // If MAY_BE_SINK is true, the expressions in the list may be "_".
130 Parse::expression_list(Expression* first, bool may_be_sink)
132 Expression_list* ret = new Expression_list();
134 ret->push_back(first);
137 ret->push_back(this->expression(PRECEDENCE_NORMAL, may_be_sink, true,
140 const Token* token = this->peek_token();
141 if (!token->is_op(OPERATOR_COMMA))
144 // Most expression lists permit a trailing comma.
145 Location location = token->location();
146 this->advance_token();
147 if (!this->expression_may_start_here())
149 this->unget_token(Token::make_operator_token(OPERATOR_COMMA,
156 // QualifiedIdent = [ PackageName "." ] identifier .
157 // PackageName = identifier .
159 // This sets *PNAME to the identifier and sets *PPACKAGE to the
160 // package or NULL if there isn't one. This returns true on success,
161 // false on failure in which case it will have emitted an error
165 Parse::qualified_ident(std::string* pname, Named_object** ppackage)
167 const Token* token = this->peek_token();
168 if (!token->is_identifier())
170 error_at(this->location(), "expected identifier");
174 std::string name = token->identifier();
175 bool is_exported = token->is_identifier_exported();
176 name = this->gogo_->pack_hidden_name(name, is_exported);
178 token = this->advance_token();
179 if (!token->is_op(OPERATOR_DOT))
186 Named_object* package = this->gogo_->lookup(name, NULL);
187 if (package == NULL || !package->is_package())
189 error_at(this->location(), "expected package");
190 // We expect . IDENTIFIER; skip both.
191 if (this->advance_token()->is_identifier())
192 this->advance_token();
196 package->package_value()->set_used();
198 token = this->advance_token();
199 if (!token->is_identifier())
201 error_at(this->location(), "expected identifier");
205 name = token->identifier();
209 error_at(this->location(), "invalid use of %<_%>");
213 if (package->name() == this->gogo_->package_name())
214 name = this->gogo_->pack_hidden_name(name,
215 token->is_identifier_exported());
220 this->advance_token();
225 // Type = TypeName | TypeLit | "(" Type ")" .
227 // ArrayType | StructType | PointerType | FunctionType | InterfaceType |
228 // SliceType | MapType | ChannelType .
233 const Token* token = this->peek_token();
234 if (token->is_identifier())
235 return this->type_name(true);
236 else if (token->is_op(OPERATOR_LSQUARE))
237 return this->array_type(false);
238 else if (token->is_keyword(KEYWORD_CHAN)
239 || token->is_op(OPERATOR_CHANOP))
240 return this->channel_type();
241 else if (token->is_keyword(KEYWORD_INTERFACE))
242 return this->interface_type();
243 else if (token->is_keyword(KEYWORD_FUNC))
245 Location location = token->location();
246 this->advance_token();
247 Type* type = this->signature(NULL, location);
249 return Type::make_error_type();
252 else if (token->is_keyword(KEYWORD_MAP))
253 return this->map_type();
254 else if (token->is_keyword(KEYWORD_STRUCT))
255 return this->struct_type();
256 else if (token->is_op(OPERATOR_MULT))
257 return this->pointer_type();
258 else if (token->is_op(OPERATOR_LPAREN))
260 this->advance_token();
261 Type* ret = this->type();
262 if (this->peek_token()->is_op(OPERATOR_RPAREN))
263 this->advance_token();
266 if (!ret->is_error_type())
267 error_at(this->location(), "expected %<)%>");
273 error_at(token->location(), "expected type");
274 return Type::make_error_type();
279 Parse::type_may_start_here()
281 const Token* token = this->peek_token();
282 return (token->is_identifier()
283 || token->is_op(OPERATOR_LSQUARE)
284 || token->is_op(OPERATOR_CHANOP)
285 || token->is_keyword(KEYWORD_CHAN)
286 || token->is_keyword(KEYWORD_INTERFACE)
287 || token->is_keyword(KEYWORD_FUNC)
288 || token->is_keyword(KEYWORD_MAP)
289 || token->is_keyword(KEYWORD_STRUCT)
290 || token->is_op(OPERATOR_MULT)
291 || token->is_op(OPERATOR_LPAREN));
294 // TypeName = QualifiedIdent .
296 // If MAY_BE_NIL is true, then an identifier with the value of the
297 // predefined constant nil is accepted, returning the nil type.
300 Parse::type_name(bool issue_error)
302 Location location = this->location();
305 Named_object* package;
306 if (!this->qualified_ident(&name, &package))
307 return Type::make_error_type();
309 Named_object* named_object;
311 named_object = this->gogo_->lookup(name, NULL);
314 named_object = package->package_value()->lookup(name);
315 if (named_object == NULL
317 && package->name() != this->gogo_->package_name())
319 // Check whether the name is there but hidden.
320 std::string s = ('.' + package->package_value()->unique_prefix()
321 + '.' + package->package_value()->name()
323 named_object = package->package_value()->lookup(s);
324 if (named_object != NULL)
326 const std::string& packname(package->package_value()->name());
327 error_at(location, "invalid reference to hidden type %<%s.%s%>",
328 Gogo::message_name(packname).c_str(),
329 Gogo::message_name(name).c_str());
336 if (named_object == NULL)
339 named_object = this->gogo_->add_unknown_name(name, location);
342 const std::string& packname(package->package_value()->name());
343 error_at(location, "reference to undefined identifier %<%s.%s%>",
344 Gogo::message_name(packname).c_str(),
345 Gogo::message_name(name).c_str());
350 else if (named_object->is_type())
352 if (!named_object->type_value()->is_visible())
355 else if (named_object->is_unknown() || named_object->is_type_declaration())
363 error_at(location, "expected type");
364 return Type::make_error_type();
367 if (named_object->is_type())
368 return named_object->type_value();
369 else if (named_object->is_unknown() || named_object->is_type_declaration())
370 return Type::make_forward_declaration(named_object);
375 // ArrayType = "[" [ ArrayLength ] "]" ElementType .
376 // ArrayLength = Expression .
377 // ElementType = CompleteType .
380 Parse::array_type(bool may_use_ellipsis)
382 go_assert(this->peek_token()->is_op(OPERATOR_LSQUARE));
383 const Token* token = this->advance_token();
385 Expression* length = NULL;
386 if (token->is_op(OPERATOR_RSQUARE))
387 this->advance_token();
390 if (!token->is_op(OPERATOR_ELLIPSIS))
391 length = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
392 else if (may_use_ellipsis)
394 // An ellipsis is used in composite literals to represent a
395 // fixed array of the size of the number of elements. We
396 // use a length of nil to represent this, and change the
397 // length when parsing the composite literal.
398 length = Expression::make_nil(this->location());
399 this->advance_token();
403 error_at(this->location(),
404 "use of %<[...]%> outside of array literal");
405 length = Expression::make_error(this->location());
406 this->advance_token();
408 if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
410 error_at(this->location(), "expected %<]%>");
411 return Type::make_error_type();
413 this->advance_token();
416 Type* element_type = this->type();
418 return Type::make_array_type(element_type, length);
421 // MapType = "map" "[" KeyType "]" ValueType .
422 // KeyType = CompleteType .
423 // ValueType = CompleteType .
428 Location location = this->location();
429 go_assert(this->peek_token()->is_keyword(KEYWORD_MAP));
430 if (!this->advance_token()->is_op(OPERATOR_LSQUARE))
432 error_at(this->location(), "expected %<[%>");
433 return Type::make_error_type();
435 this->advance_token();
437 Type* key_type = this->type();
439 if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
441 error_at(this->location(), "expected %<]%>");
442 return Type::make_error_type();
444 this->advance_token();
446 Type* value_type = this->type();
448 if (key_type->is_error_type() || value_type->is_error_type())
449 return Type::make_error_type();
451 return Type::make_map_type(key_type, value_type, location);
454 // StructType = "struct" "{" { FieldDecl ";" } "}" .
459 go_assert(this->peek_token()->is_keyword(KEYWORD_STRUCT));
460 Location location = this->location();
461 if (!this->advance_token()->is_op(OPERATOR_LCURLY))
463 Location token_loc = this->location();
464 if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
465 && this->advance_token()->is_op(OPERATOR_LCURLY))
466 error_at(token_loc, "unexpected semicolon or newline before %<{%>");
469 error_at(this->location(), "expected %<{%>");
470 return Type::make_error_type();
473 this->advance_token();
475 Struct_field_list* sfl = new Struct_field_list;
476 while (!this->peek_token()->is_op(OPERATOR_RCURLY))
478 this->field_decl(sfl);
479 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
480 this->advance_token();
481 else if (!this->peek_token()->is_op(OPERATOR_RCURLY))
483 error_at(this->location(), "expected %<;%> or %<}%> or newline");
484 if (!this->skip_past_error(OPERATOR_RCURLY))
485 return Type::make_error_type();
488 this->advance_token();
490 for (Struct_field_list::const_iterator pi = sfl->begin();
494 if (pi->type()->is_error_type())
496 for (Struct_field_list::const_iterator pj = pi + 1;
500 if (pi->field_name() == pj->field_name()
501 && !Gogo::is_sink_name(pi->field_name()))
502 error_at(pi->location(), "duplicate field name %<%s%>",
503 Gogo::message_name(pi->field_name()).c_str());
507 return Type::make_struct_type(sfl, location);
510 // FieldDecl = (IdentifierList CompleteType | TypeName) [ Tag ] .
511 // Tag = string_lit .
514 Parse::field_decl(Struct_field_list* sfl)
516 const Token* token = this->peek_token();
517 Location location = token->location();
519 bool is_anonymous_pointer;
520 if (token->is_op(OPERATOR_MULT))
523 is_anonymous_pointer = true;
525 else if (token->is_identifier())
527 std::string id = token->identifier();
528 bool is_id_exported = token->is_identifier_exported();
529 Location id_location = token->location();
530 token = this->advance_token();
531 is_anonymous = (token->is_op(OPERATOR_SEMICOLON)
532 || token->is_op(OPERATOR_RCURLY)
533 || token->is_op(OPERATOR_DOT)
534 || token->is_string());
535 is_anonymous_pointer = false;
536 this->unget_token(Token::make_identifier_token(id, is_id_exported,
541 error_at(this->location(), "expected field name");
542 while (!token->is_op(OPERATOR_SEMICOLON)
543 && !token->is_op(OPERATOR_RCURLY)
545 token = this->advance_token();
551 if (is_anonymous_pointer)
553 this->advance_token();
554 if (!this->peek_token()->is_identifier())
556 error_at(this->location(), "expected field name");
557 while (!token->is_op(OPERATOR_SEMICOLON)
558 && !token->is_op(OPERATOR_RCURLY)
560 token = this->advance_token();
564 Type* type = this->type_name(true);
567 if (this->peek_token()->is_string())
569 tag = this->peek_token()->string_value();
570 this->advance_token();
573 if (!type->is_error_type())
575 if (is_anonymous_pointer)
576 type = Type::make_pointer_type(type);
577 sfl->push_back(Struct_field(Typed_identifier("", type, location)));
579 sfl->back().set_tag(tag);
584 Typed_identifier_list til;
587 token = this->peek_token();
588 if (!token->is_identifier())
590 error_at(this->location(), "expected identifier");
594 this->gogo_->pack_hidden_name(token->identifier(),
595 token->is_identifier_exported());
596 til.push_back(Typed_identifier(name, NULL, token->location()));
597 if (!this->advance_token()->is_op(OPERATOR_COMMA))
599 this->advance_token();
602 Type* type = this->type();
605 if (this->peek_token()->is_string())
607 tag = this->peek_token()->string_value();
608 this->advance_token();
611 for (Typed_identifier_list::iterator p = til.begin();
616 sfl->push_back(Struct_field(*p));
618 sfl->back().set_tag(tag);
623 // PointerType = "*" Type .
626 Parse::pointer_type()
628 go_assert(this->peek_token()->is_op(OPERATOR_MULT));
629 this->advance_token();
630 Type* type = this->type();
631 if (type->is_error_type())
633 return Type::make_pointer_type(type);
636 // ChannelType = Channel | SendChannel | RecvChannel .
637 // Channel = "chan" ElementType .
638 // SendChannel = "chan" "<-" ElementType .
639 // RecvChannel = "<-" "chan" ElementType .
642 Parse::channel_type()
644 const Token* token = this->peek_token();
647 if (token->is_op(OPERATOR_CHANOP))
649 if (!this->advance_token()->is_keyword(KEYWORD_CHAN))
651 error_at(this->location(), "expected %<chan%>");
652 return Type::make_error_type();
655 this->advance_token();
659 go_assert(token->is_keyword(KEYWORD_CHAN));
660 if (this->advance_token()->is_op(OPERATOR_CHANOP))
663 this->advance_token();
667 // Better error messages for the common error of omitting the
668 // channel element type.
669 if (!this->type_may_start_here())
671 token = this->peek_token();
672 if (token->is_op(OPERATOR_RCURLY))
673 error_at(this->location(), "unexpected %<}%> in channel type");
674 else if (token->is_op(OPERATOR_RPAREN))
675 error_at(this->location(), "unexpected %<)%> in channel type");
676 else if (token->is_op(OPERATOR_COMMA))
677 error_at(this->location(), "unexpected comma in channel type");
679 error_at(this->location(), "expected channel element type");
680 return Type::make_error_type();
683 Type* element_type = this->type();
684 return Type::make_channel_type(send, receive, element_type);
687 // Give an error for a duplicate parameter or receiver name.
690 Parse::check_signature_names(const Typed_identifier_list* params,
693 for (Typed_identifier_list::const_iterator p = params->begin();
697 if (p->name().empty() || Gogo::is_sink_name(p->name()))
699 std::pair<std::string, const Typed_identifier*> val =
700 std::make_pair(p->name(), &*p);
701 std::pair<Parse::Names::iterator, bool> ins = names->insert(val);
704 error_at(p->location(), "redefinition of %qs",
705 Gogo::message_name(p->name()).c_str());
706 inform(ins.first->second->location(),
707 "previous definition of %qs was here",
708 Gogo::message_name(p->name()).c_str());
713 // Signature = Parameters [ Result ] .
715 // RECEIVER is the receiver if there is one, or NULL. LOCATION is the
716 // location of the start of the type.
718 // This returns NULL on a parse error.
721 Parse::signature(Typed_identifier* receiver, Location location)
723 bool is_varargs = false;
724 Typed_identifier_list* params;
725 bool params_ok = this->parameters(¶ms, &is_varargs);
727 Typed_identifier_list* results = NULL;
728 if (this->peek_token()->is_op(OPERATOR_LPAREN)
729 || this->type_may_start_here())
731 if (!this->result(&results))
740 this->check_signature_names(params, &names);
742 this->check_signature_names(results, &names);
744 Function_type* ret = Type::make_function_type(receiver, params, results,
747 ret->set_is_varargs();
751 // Parameters = "(" [ ParameterList [ "," ] ] ")" .
753 // This returns false on a parse error.
756 Parse::parameters(Typed_identifier_list** pparams, bool* is_varargs)
760 if (!this->peek_token()->is_op(OPERATOR_LPAREN))
762 error_at(this->location(), "expected %<(%>");
766 Typed_identifier_list* params = NULL;
767 bool saw_error = false;
769 const Token* token = this->advance_token();
770 if (!token->is_op(OPERATOR_RPAREN))
772 params = this->parameter_list(is_varargs);
775 token = this->peek_token();
778 // The optional trailing comma is picked up in parameter_list.
780 if (!token->is_op(OPERATOR_RPAREN))
781 error_at(this->location(), "expected %<)%>");
783 this->advance_token();
792 // ParameterList = ParameterDecl { "," ParameterDecl } .
794 // This sets *IS_VARARGS if the list ends with an ellipsis.
795 // IS_VARARGS will be NULL if varargs are not permitted.
797 // We pick up an optional trailing comma.
799 // This returns NULL if some error is seen.
801 Typed_identifier_list*
802 Parse::parameter_list(bool* is_varargs)
804 Location location = this->location();
805 Typed_identifier_list* ret = new Typed_identifier_list();
807 bool saw_error = false;
809 // If we see an identifier and then a comma, then we don't know
810 // whether we are looking at a list of identifiers followed by a
811 // type, or a list of types given by name. We have to do an
812 // arbitrary lookahead to figure it out.
814 bool parameters_have_names;
815 const Token* token = this->peek_token();
816 if (!token->is_identifier())
818 // This must be a type which starts with something like '*'.
819 parameters_have_names = false;
823 std::string name = token->identifier();
824 bool is_exported = token->is_identifier_exported();
825 Location location = token->location();
826 token = this->advance_token();
827 if (!token->is_op(OPERATOR_COMMA))
829 if (token->is_op(OPERATOR_DOT))
831 // This is a qualified identifier, which must turn out
833 parameters_have_names = false;
835 else if (token->is_op(OPERATOR_RPAREN))
837 // A single identifier followed by a parenthesis must be
839 parameters_have_names = false;
843 // An identifier followed by something other than a
844 // comma or a dot or a right parenthesis must be a
845 // parameter name followed by a type.
846 parameters_have_names = true;
849 this->unget_token(Token::make_identifier_token(name, is_exported,
854 // An identifier followed by a comma may be the first in a
855 // list of parameter names followed by a type, or it may be
856 // the first in a list of types without parameter names. To
857 // find out we gather as many identifiers separated by
859 std::string id_name = this->gogo_->pack_hidden_name(name,
861 ret->push_back(Typed_identifier(id_name, NULL, location));
862 bool just_saw_comma = true;
863 while (this->advance_token()->is_identifier())
865 name = this->peek_token()->identifier();
866 is_exported = this->peek_token()->is_identifier_exported();
867 location = this->peek_token()->location();
868 id_name = this->gogo_->pack_hidden_name(name, is_exported);
869 ret->push_back(Typed_identifier(id_name, NULL, location));
870 if (!this->advance_token()->is_op(OPERATOR_COMMA))
872 just_saw_comma = false;
879 // We saw ID1 "," ID2 "," followed by something which
880 // was not an identifier. We must be seeing the start
881 // of a type, and ID1 and ID2 must be types, and the
882 // parameters don't have names.
883 parameters_have_names = false;
885 else if (this->peek_token()->is_op(OPERATOR_RPAREN))
887 // We saw ID1 "," ID2 ")". ID1 and ID2 must be types,
888 // and the parameters don't have names.
889 parameters_have_names = false;
891 else if (this->peek_token()->is_op(OPERATOR_DOT))
893 // We saw ID1 "," ID2 ".". ID2 must be a package name,
894 // ID1 must be a type, and the parameters don't have
896 parameters_have_names = false;
897 this->unget_token(Token::make_identifier_token(name, is_exported,
900 just_saw_comma = true;
904 // We saw ID1 "," ID2 followed by something other than
905 // ",", ".", or ")". We must be looking at the start of
906 // a type, and ID1 and ID2 must be parameter names.
907 parameters_have_names = true;
910 if (parameters_have_names)
912 go_assert(!just_saw_comma);
913 // We have just seen ID1, ID2 xxx.
915 if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
919 error_at(this->location(), "%<...%> only permits one name");
921 this->advance_token();
924 for (size_t i = 0; i < ret->size(); ++i)
925 ret->set_type(i, type);
926 if (!this->peek_token()->is_op(OPERATOR_COMMA))
927 return saw_error ? NULL : ret;
928 if (this->advance_token()->is_op(OPERATOR_RPAREN))
929 return saw_error ? NULL : ret;
933 Typed_identifier_list* tret = new Typed_identifier_list();
934 for (Typed_identifier_list::const_iterator p = ret->begin();
938 Named_object* no = this->gogo_->lookup(p->name(), NULL);
941 no = this->gogo_->add_unknown_name(p->name(),
945 type = no->type_value();
946 else if (no->is_unknown() || no->is_type_declaration())
947 type = Type::make_forward_declaration(no);
950 error_at(p->location(), "expected %<%s%> to be a type",
951 Gogo::message_name(p->name()).c_str());
953 type = Type::make_error_type();
955 tret->push_back(Typed_identifier("", type, p->location()));
960 || this->peek_token()->is_op(OPERATOR_RPAREN))
961 return saw_error ? NULL : ret;
966 bool mix_error = false;
967 this->parameter_decl(parameters_have_names, ret, is_varargs, &mix_error);
968 while (this->peek_token()->is_op(OPERATOR_COMMA))
970 if (is_varargs != NULL && *is_varargs)
972 error_at(this->location(), "%<...%> must be last parameter");
975 if (this->advance_token()->is_op(OPERATOR_RPAREN))
977 this->parameter_decl(parameters_have_names, ret, is_varargs, &mix_error);
981 error_at(location, "invalid named/anonymous mix");
992 // ParameterDecl = [ IdentifierList ] [ "..." ] Type .
995 Parse::parameter_decl(bool parameters_have_names,
996 Typed_identifier_list* til,
1000 if (!parameters_have_names)
1003 Location location = this->location();
1004 if (!this->peek_token()->is_identifier())
1006 if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
1007 type = this->type();
1010 if (is_varargs == NULL)
1011 error_at(this->location(), "invalid use of %<...%>");
1014 this->advance_token();
1015 if (is_varargs == NULL
1016 && this->peek_token()->is_op(OPERATOR_RPAREN))
1017 type = Type::make_error_type();
1020 Type* element_type = this->type();
1021 type = Type::make_array_type(element_type, NULL);
1027 type = this->type_name(false);
1028 if (type->is_error_type()
1029 || (!this->peek_token()->is_op(OPERATOR_COMMA)
1030 && !this->peek_token()->is_op(OPERATOR_RPAREN)))
1033 while (!this->peek_token()->is_op(OPERATOR_COMMA)
1034 && !this->peek_token()->is_op(OPERATOR_RPAREN))
1035 this->advance_token();
1038 if (!type->is_error_type())
1039 til->push_back(Typed_identifier("", type, location));
1043 size_t orig_count = til->size();
1044 if (this->peek_token()->is_identifier())
1045 this->identifier_list(til);
1048 size_t new_count = til->size();
1051 if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
1052 type = this->type();
1055 if (is_varargs == NULL)
1056 error_at(this->location(), "invalid use of %<...%>");
1057 else if (new_count > orig_count + 1)
1058 error_at(this->location(), "%<...%> only permits one name");
1061 this->advance_token();
1062 Type* element_type = this->type();
1063 type = Type::make_array_type(element_type, NULL);
1065 for (size_t i = orig_count; i < new_count; ++i)
1066 til->set_type(i, type);
1070 // Result = Parameters | Type .
1072 // This returns false on a parse error.
1075 Parse::result(Typed_identifier_list** presults)
1077 if (this->peek_token()->is_op(OPERATOR_LPAREN))
1078 return this->parameters(presults, NULL);
1081 Location location = this->location();
1082 Type* type = this->type();
1083 if (type->is_error_type())
1088 Typed_identifier_list* til = new Typed_identifier_list();
1089 til->push_back(Typed_identifier("", type, location));
1095 // Block = "{" [ StatementList ] "}" .
1097 // Returns the location of the closing brace.
1102 if (!this->peek_token()->is_op(OPERATOR_LCURLY))
1104 Location loc = this->location();
1105 if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1106 && this->advance_token()->is_op(OPERATOR_LCURLY))
1107 error_at(loc, "unexpected semicolon or newline before %<{%>");
1110 error_at(this->location(), "expected %<{%>");
1111 return Linemap::unknown_location();
1115 const Token* token = this->advance_token();
1117 if (!token->is_op(OPERATOR_RCURLY))
1119 this->statement_list();
1120 token = this->peek_token();
1121 if (!token->is_op(OPERATOR_RCURLY))
1123 if (!token->is_eof() || !saw_errors())
1124 error_at(this->location(), "expected %<}%>");
1126 // Skip ahead to the end of the block, in hopes of avoiding
1127 // lots of meaningless errors.
1128 Location ret = token->location();
1130 while (!token->is_eof())
1132 if (token->is_op(OPERATOR_LCURLY))
1134 else if (token->is_op(OPERATOR_RCURLY))
1139 this->advance_token();
1143 token = this->advance_token();
1144 ret = token->location();
1150 Location ret = token->location();
1151 this->advance_token();
1155 // InterfaceType = "interface" "{" [ MethodSpecList ] "}" .
1156 // MethodSpecList = MethodSpec { ";" MethodSpec } [ ";" ] .
1159 Parse::interface_type()
1161 go_assert(this->peek_token()->is_keyword(KEYWORD_INTERFACE));
1162 Location location = this->location();
1164 if (!this->advance_token()->is_op(OPERATOR_LCURLY))
1166 Location token_loc = this->location();
1167 if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1168 && this->advance_token()->is_op(OPERATOR_LCURLY))
1169 error_at(token_loc, "unexpected semicolon or newline before %<{%>");
1172 error_at(this->location(), "expected %<{%>");
1173 return Type::make_error_type();
1176 this->advance_token();
1178 Typed_identifier_list* methods = new Typed_identifier_list();
1179 if (!this->peek_token()->is_op(OPERATOR_RCURLY))
1181 this->method_spec(methods);
1182 while (this->peek_token()->is_op(OPERATOR_SEMICOLON))
1184 if (this->advance_token()->is_op(OPERATOR_RCURLY))
1186 this->method_spec(methods);
1188 if (!this->peek_token()->is_op(OPERATOR_RCURLY))
1190 error_at(this->location(), "expected %<}%>");
1191 while (!this->advance_token()->is_op(OPERATOR_RCURLY))
1193 if (this->peek_token()->is_eof())
1194 return Type::make_error_type();
1198 this->advance_token();
1200 if (methods->empty())
1206 Interface_type* ret = Type::make_interface_type(methods, location);
1207 this->gogo_->record_interface_type(ret);
1211 // MethodSpec = MethodName Signature | InterfaceTypeName .
1212 // MethodName = identifier .
1213 // InterfaceTypeName = TypeName .
1216 Parse::method_spec(Typed_identifier_list* methods)
1218 const Token* token = this->peek_token();
1219 if (!token->is_identifier())
1221 error_at(this->location(), "expected identifier");
1225 std::string name = token->identifier();
1226 bool is_exported = token->is_identifier_exported();
1227 Location location = token->location();
1229 if (this->advance_token()->is_op(OPERATOR_LPAREN))
1231 // This is a MethodName.
1232 name = this->gogo_->pack_hidden_name(name, is_exported);
1233 Type* type = this->signature(NULL, location);
1236 methods->push_back(Typed_identifier(name, type, location));
1240 this->unget_token(Token::make_identifier_token(name, is_exported,
1242 Type* type = this->type_name(false);
1243 if (type->is_error_type()
1244 || (!this->peek_token()->is_op(OPERATOR_SEMICOLON)
1245 && !this->peek_token()->is_op(OPERATOR_RCURLY)))
1247 if (this->peek_token()->is_op(OPERATOR_COMMA))
1248 error_at(this->location(),
1249 "name list not allowed in interface type");
1251 error_at(location, "expected signature or type name");
1252 token = this->peek_token();
1253 while (!token->is_eof()
1254 && !token->is_op(OPERATOR_SEMICOLON)
1255 && !token->is_op(OPERATOR_RCURLY))
1256 token = this->advance_token();
1259 // This must be an interface type, but we can't check that now.
1260 // We check it and pull out the methods in
1261 // Interface_type::do_verify.
1262 methods->push_back(Typed_identifier("", type, location));
1266 // Declaration = ConstDecl | TypeDecl | VarDecl | FunctionDecl | MethodDecl .
1269 Parse::declaration()
1271 const Token* token = this->peek_token();
1272 if (token->is_keyword(KEYWORD_CONST))
1274 else if (token->is_keyword(KEYWORD_TYPE))
1276 else if (token->is_keyword(KEYWORD_VAR))
1278 else if (token->is_keyword(KEYWORD_FUNC))
1279 this->function_decl();
1282 error_at(this->location(), "expected declaration");
1283 this->advance_token();
1288 Parse::declaration_may_start_here()
1290 const Token* token = this->peek_token();
1291 return (token->is_keyword(KEYWORD_CONST)
1292 || token->is_keyword(KEYWORD_TYPE)
1293 || token->is_keyword(KEYWORD_VAR)
1294 || token->is_keyword(KEYWORD_FUNC));
1297 // Decl<P> = P | "(" [ List<P> ] ")" .
1300 Parse::decl(void (Parse::*pfn)(void*), void* varg)
1302 if (this->peek_token()->is_eof())
1305 error_at(this->location(), "unexpected end of file");
1309 if (!this->peek_token()->is_op(OPERATOR_LPAREN))
1313 if (!this->advance_token()->is_op(OPERATOR_RPAREN))
1315 this->list(pfn, varg, true);
1316 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
1318 error_at(this->location(), "missing %<)%>");
1319 while (!this->advance_token()->is_op(OPERATOR_RPAREN))
1321 if (this->peek_token()->is_eof())
1326 this->advance_token();
1330 // List<P> = P { ";" P } [ ";" ] .
1332 // In order to pick up the trailing semicolon we need to know what
1333 // might follow. This is either a '}' or a ')'.
1336 Parse::list(void (Parse::*pfn)(void*), void* varg, bool follow_is_paren)
1339 Operator follow = follow_is_paren ? OPERATOR_RPAREN : OPERATOR_RCURLY;
1340 while (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1341 || this->peek_token()->is_op(OPERATOR_COMMA))
1343 if (this->peek_token()->is_op(OPERATOR_COMMA))
1344 error_at(this->location(), "unexpected comma");
1345 if (this->advance_token()->is_op(follow))
1351 // ConstDecl = "const" ( ConstSpec | "(" { ConstSpec ";" } ")" ) .
1356 go_assert(this->peek_token()->is_keyword(KEYWORD_CONST));
1357 this->advance_token();
1360 Type* last_type = NULL;
1361 Expression_list* last_expr_list = NULL;
1363 if (!this->peek_token()->is_op(OPERATOR_LPAREN))
1364 this->const_spec(&last_type, &last_expr_list);
1367 this->advance_token();
1368 while (!this->peek_token()->is_op(OPERATOR_RPAREN))
1370 this->const_spec(&last_type, &last_expr_list);
1371 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
1372 this->advance_token();
1373 else if (!this->peek_token()->is_op(OPERATOR_RPAREN))
1375 error_at(this->location(), "expected %<;%> or %<)%> or newline");
1376 if (!this->skip_past_error(OPERATOR_RPAREN))
1380 this->advance_token();
1383 if (last_expr_list != NULL)
1384 delete last_expr_list;
1387 // ConstSpec = IdentifierList [ [ CompleteType ] "=" ExpressionList ] .
1390 Parse::const_spec(Type** last_type, Expression_list** last_expr_list)
1392 Typed_identifier_list til;
1393 this->identifier_list(&til);
1396 if (this->type_may_start_here())
1398 type = this->type();
1400 *last_expr_list = NULL;
1403 Expression_list *expr_list;
1404 if (!this->peek_token()->is_op(OPERATOR_EQ))
1406 if (*last_expr_list == NULL)
1408 error_at(this->location(), "expected %<=%>");
1412 expr_list = new Expression_list;
1413 for (Expression_list::const_iterator p = (*last_expr_list)->begin();
1414 p != (*last_expr_list)->end();
1416 expr_list->push_back((*p)->copy());
1420 this->advance_token();
1421 expr_list = this->expression_list(NULL, false);
1423 if (*last_expr_list != NULL)
1424 delete *last_expr_list;
1425 *last_expr_list = expr_list;
1428 Expression_list::const_iterator pe = expr_list->begin();
1429 for (Typed_identifier_list::iterator pi = til.begin();
1433 if (pe == expr_list->end())
1435 error_at(this->location(), "not enough initializers");
1441 if (!Gogo::is_sink_name(pi->name()))
1442 this->gogo_->add_constant(*pi, *pe, this->iota_value());
1444 if (pe != expr_list->end())
1445 error_at(this->location(), "too many initializers");
1447 this->increment_iota();
1452 // TypeDecl = "type" Decl<TypeSpec> .
1457 go_assert(this->peek_token()->is_keyword(KEYWORD_TYPE));
1458 this->advance_token();
1459 this->decl(&Parse::type_spec, NULL);
1462 // TypeSpec = identifier Type .
1465 Parse::type_spec(void*)
1467 const Token* token = this->peek_token();
1468 if (!token->is_identifier())
1470 error_at(this->location(), "expected identifier");
1473 std::string name = token->identifier();
1474 bool is_exported = token->is_identifier_exported();
1475 Location location = token->location();
1476 token = this->advance_token();
1478 // The scope of the type name starts at the point where the
1479 // identifier appears in the source code. We implement this by
1480 // declaring the type before we read the type definition.
1481 Named_object* named_type = NULL;
1484 name = this->gogo_->pack_hidden_name(name, is_exported);
1485 named_type = this->gogo_->declare_type(name, location);
1489 if (!this->peek_token()->is_op(OPERATOR_SEMICOLON))
1490 type = this->type();
1493 error_at(this->location(),
1494 "unexpected semicolon or newline in type declaration");
1495 type = Type::make_error_type();
1496 this->advance_token();
1499 if (type->is_error_type())
1501 while (!this->peek_token()->is_op(OPERATOR_SEMICOLON)
1502 && !this->peek_token()->is_eof())
1503 this->advance_token();
1508 if (named_type->is_type_declaration())
1510 Type* ftype = type->forwarded();
1511 if (ftype->forward_declaration_type() != NULL
1512 && (ftype->forward_declaration_type()->named_object()
1515 error_at(location, "invalid recursive type");
1516 type = Type::make_error_type();
1519 this->gogo_->define_type(named_type,
1520 Type::make_named_type(named_type, type,
1522 go_assert(named_type->package() == NULL);
1526 // This will probably give a redefinition error.
1527 this->gogo_->add_type(name, type, location);
1532 // VarDecl = "var" Decl<VarSpec> .
1537 go_assert(this->peek_token()->is_keyword(KEYWORD_VAR));
1538 this->advance_token();
1539 this->decl(&Parse::var_spec, NULL);
1542 // VarSpec = IdentifierList
1543 // ( CompleteType [ "=" ExpressionList ] | "=" ExpressionList ) .
1546 Parse::var_spec(void*)
1548 // Get the variable names.
1549 Typed_identifier_list til;
1550 this->identifier_list(&til);
1552 Location location = this->location();
1555 Expression_list* init = NULL;
1556 if (!this->peek_token()->is_op(OPERATOR_EQ))
1558 type = this->type();
1559 if (type->is_error_type())
1561 while (!this->peek_token()->is_op(OPERATOR_EQ)
1562 && !this->peek_token()->is_op(OPERATOR_SEMICOLON)
1563 && !this->peek_token()->is_eof())
1564 this->advance_token();
1566 if (this->peek_token()->is_op(OPERATOR_EQ))
1568 this->advance_token();
1569 init = this->expression_list(NULL, false);
1574 this->advance_token();
1575 init = this->expression_list(NULL, false);
1578 this->init_vars(&til, type, init, false, location);
1584 // Create variables. TIL is a list of variable names. If TYPE is not
1585 // NULL, it is the type of all the variables. If INIT is not NULL, it
1586 // is an initializer list for the variables.
1589 Parse::init_vars(const Typed_identifier_list* til, Type* type,
1590 Expression_list* init, bool is_coloneq,
1593 // Check for an initialization which can yield multiple values.
1594 if (init != NULL && init->size() == 1 && til->size() > 1)
1596 if (this->init_vars_from_call(til, type, *init->begin(), is_coloneq,
1599 if (this->init_vars_from_map(til, type, *init->begin(), is_coloneq,
1602 if (this->init_vars_from_receive(til, type, *init->begin(), is_coloneq,
1605 if (this->init_vars_from_type_guard(til, type, *init->begin(),
1606 is_coloneq, location))
1610 if (init != NULL && init->size() != til->size())
1612 if (init->empty() || !init->front()->is_error_expression())
1613 error_at(location, "wrong number of initializations");
1616 type = Type::make_error_type();
1619 // Note that INIT was already parsed with the old name bindings, so
1620 // we don't have to worry that it will accidentally refer to the
1621 // newly declared variables.
1623 Expression_list::const_iterator pexpr;
1625 pexpr = init->begin();
1626 bool any_new = false;
1627 for (Typed_identifier_list::const_iterator p = til->begin();
1632 go_assert(pexpr != init->end());
1633 this->init_var(*p, type, init == NULL ? NULL : *pexpr, is_coloneq,
1639 go_assert(pexpr == init->end());
1640 if (is_coloneq && !any_new)
1641 error_at(location, "variables redeclared but no variable is new");
1644 // See if we need to initialize a list of variables from a function
1645 // call. This returns true if we have set up the variables and the
1649 Parse::init_vars_from_call(const Typed_identifier_list* vars, Type* type,
1650 Expression* expr, bool is_coloneq,
1653 Call_expression* call = expr->call_expression();
1657 // This is a function call. We can't check here whether it returns
1658 // the right number of values, but it might. Declare the variables,
1659 // and then assign the results of the call to them.
1661 unsigned int index = 0;
1662 bool any_new = false;
1663 for (Typed_identifier_list::const_iterator pv = vars->begin();
1667 Expression* init = Expression::make_call_result(call, index);
1668 this->init_var(*pv, type, init, is_coloneq, false, &any_new);
1671 if (is_coloneq && !any_new)
1672 error_at(location, "variables redeclared but no variable is new");
1677 // See if we need to initialize a pair of values from a map index
1678 // expression. This returns true if we have set up the variables and
1679 // the initialization.
1682 Parse::init_vars_from_map(const Typed_identifier_list* vars, Type* type,
1683 Expression* expr, bool is_coloneq,
1686 Index_expression* index = expr->index_expression();
1689 if (vars->size() != 2)
1692 // This is an index which is being assigned to two variables. It
1693 // must be a map index. Declare the variables, and then assign the
1694 // results of the map index.
1695 bool any_new = false;
1696 Typed_identifier_list::const_iterator p = vars->begin();
1697 Expression* init = type == NULL ? index : NULL;
1698 Named_object* val_no = this->init_var(*p, type, init, is_coloneq,
1699 type == NULL, &any_new);
1700 if (type == NULL && any_new && val_no->is_variable())
1701 val_no->var_value()->set_type_from_init_tuple();
1702 Expression* val_var = Expression::make_var_reference(val_no, location);
1705 Type* var_type = type;
1706 if (var_type == NULL)
1707 var_type = Type::lookup_bool_type();
1708 Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1710 Expression* present_var = Expression::make_var_reference(no, location);
1712 if (is_coloneq && !any_new)
1713 error_at(location, "variables redeclared but no variable is new");
1715 Statement* s = Statement::make_tuple_map_assignment(val_var, present_var,
1718 if (!this->gogo_->in_global_scope())
1719 this->gogo_->add_statement(s);
1720 else if (!val_no->is_sink())
1722 if (val_no->is_variable())
1723 val_no->var_value()->add_preinit_statement(this->gogo_, s);
1725 else if (!no->is_sink())
1727 if (no->is_variable())
1728 no->var_value()->add_preinit_statement(this->gogo_, s);
1732 // Execute the map index expression just so that we can fail if
1734 Named_object* dummy = this->create_dummy_global(Type::lookup_bool_type(),
1736 dummy->var_value()->add_preinit_statement(this->gogo_, s);
1742 // See if we need to initialize a pair of values from a receive
1743 // expression. This returns true if we have set up the variables and
1744 // the initialization.
1747 Parse::init_vars_from_receive(const Typed_identifier_list* vars, Type* type,
1748 Expression* expr, bool is_coloneq,
1751 Receive_expression* receive = expr->receive_expression();
1752 if (receive == NULL)
1754 if (vars->size() != 2)
1757 // This is a receive expression which is being assigned to two
1758 // variables. Declare the variables, and then assign the results of
1760 bool any_new = false;
1761 Typed_identifier_list::const_iterator p = vars->begin();
1762 Expression* init = type == NULL ? receive : NULL;
1763 Named_object* val_no = this->init_var(*p, type, init, is_coloneq,
1764 type == NULL, &any_new);
1765 if (type == NULL && any_new && val_no->is_variable())
1766 val_no->var_value()->set_type_from_init_tuple();
1767 Expression* val_var = Expression::make_var_reference(val_no, location);
1770 Type* var_type = type;
1771 if (var_type == NULL)
1772 var_type = Type::lookup_bool_type();
1773 Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1775 Expression* received_var = Expression::make_var_reference(no, location);
1777 if (is_coloneq && !any_new)
1778 error_at(location, "variables redeclared but no variable is new");
1780 Statement* s = Statement::make_tuple_receive_assignment(val_var,
1785 if (!this->gogo_->in_global_scope())
1786 this->gogo_->add_statement(s);
1787 else if (!val_no->is_sink())
1789 if (val_no->is_variable())
1790 val_no->var_value()->add_preinit_statement(this->gogo_, s);
1792 else if (!no->is_sink())
1794 if (no->is_variable())
1795 no->var_value()->add_preinit_statement(this->gogo_, s);
1799 Named_object* dummy = this->create_dummy_global(Type::lookup_bool_type(),
1801 dummy->var_value()->add_preinit_statement(this->gogo_, s);
1807 // See if we need to initialize a pair of values from a type guard
1808 // expression. This returns true if we have set up the variables and
1809 // the initialization.
1812 Parse::init_vars_from_type_guard(const Typed_identifier_list* vars,
1813 Type* type, Expression* expr,
1814 bool is_coloneq, Location location)
1816 Type_guard_expression* type_guard = expr->type_guard_expression();
1817 if (type_guard == NULL)
1819 if (vars->size() != 2)
1822 // This is a type guard expression which is being assigned to two
1823 // variables. Declare the variables, and then assign the results of
1825 bool any_new = false;
1826 Typed_identifier_list::const_iterator p = vars->begin();
1827 Type* var_type = type;
1828 if (var_type == NULL)
1829 var_type = type_guard->type();
1830 Named_object* val_no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1832 Expression* val_var = Expression::make_var_reference(val_no, location);
1836 if (var_type == NULL)
1837 var_type = Type::lookup_bool_type();
1838 Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1840 Expression* ok_var = Expression::make_var_reference(no, location);
1842 Expression* texpr = type_guard->expr();
1843 Type* t = type_guard->type();
1844 Statement* s = Statement::make_tuple_type_guard_assignment(val_var, ok_var,
1848 if (is_coloneq && !any_new)
1849 error_at(location, "variables redeclared but no variable is new");
1851 if (!this->gogo_->in_global_scope())
1852 this->gogo_->add_statement(s);
1853 else if (!val_no->is_sink())
1855 if (val_no->is_variable())
1856 val_no->var_value()->add_preinit_statement(this->gogo_, s);
1858 else if (!no->is_sink())
1860 if (no->is_variable())
1861 no->var_value()->add_preinit_statement(this->gogo_, s);
1865 Named_object* dummy = this->create_dummy_global(type, NULL, location);
1866 dummy->var_value()->add_preinit_statement(this->gogo_, s);
1872 // Create a single variable. If IS_COLONEQ is true, we permit
1873 // redeclarations in the same block, and we set *IS_NEW when we find a
1874 // new variable which is not a redeclaration.
1877 Parse::init_var(const Typed_identifier& tid, Type* type, Expression* init,
1878 bool is_coloneq, bool type_from_init, bool* is_new)
1880 Location location = tid.location();
1882 if (Gogo::is_sink_name(tid.name()))
1884 if (!type_from_init && init != NULL)
1886 if (this->gogo_->in_global_scope())
1887 return this->create_dummy_global(type, init, location);
1888 else if (type == NULL)
1889 this->gogo_->add_statement(Statement::make_statement(init, true));
1892 // With both a type and an initializer, create a dummy
1893 // variable so that we will check whether the
1894 // initializer can be assigned to the type.
1895 Variable* var = new Variable(type, init, false, false, false,
1899 snprintf(buf, sizeof buf, "sink$%d", count);
1901 return this->gogo_->add_variable(buf, var);
1904 return this->gogo_->add_sink();
1909 Named_object* no = this->gogo_->lookup_in_block(tid.name());
1911 && (no->is_variable() || no->is_result_variable()))
1913 // INIT may be NULL even when IS_COLONEQ is true for cases
1914 // like v, ok := x.(int).
1915 if (!type_from_init && init != NULL)
1917 Expression *v = Expression::make_var_reference(no, location);
1918 Statement *s = Statement::make_assignment(v, init, location);
1919 this->gogo_->add_statement(s);
1925 Variable* var = new Variable(type, init, this->gogo_->in_global_scope(),
1926 false, false, location);
1927 Named_object* no = this->gogo_->add_variable(tid.name(), var);
1928 if (!no->is_variable())
1930 // The name is already defined, so we just gave an error.
1931 return this->gogo_->add_sink();
1936 // Create a dummy global variable to force an initializer to be run in
1937 // the right place. This is used when a sink variable is initialized
1941 Parse::create_dummy_global(Type* type, Expression* init,
1944 if (type == NULL && init == NULL)
1945 type = Type::lookup_bool_type();
1946 Variable* var = new Variable(type, init, true, false, false, location);
1949 snprintf(buf, sizeof buf, "_.%d", count);
1951 return this->gogo_->add_variable(buf, var);
1954 // SimpleVarDecl = identifier ":=" Expression .
1956 // We've already seen the identifier.
1958 // FIXME: We also have to implement
1959 // IdentifierList ":=" ExpressionList
1960 // In order to support both "a, b := 1, 0" and "a, b = 1, 0" we accept
1961 // tuple assignments here as well.
1963 // If P_RANGE_CLAUSE is not NULL, then this will recognize a
1966 // If P_TYPE_SWITCH is not NULL, this will recognize a type switch
1967 // guard (var := expr.("type") using the literal keyword "type").
1970 Parse::simple_var_decl_or_assignment(const std::string& name,
1972 Range_clause* p_range_clause,
1973 Type_switch* p_type_switch)
1975 Typed_identifier_list til;
1976 til.push_back(Typed_identifier(name, NULL, location));
1978 // We've seen one identifier. If we see a comma now, this could be
1980 if (this->peek_token()->is_op(OPERATOR_COMMA))
1982 go_assert(p_type_switch == NULL);
1985 const Token* token = this->advance_token();
1986 if (!token->is_identifier())
1989 std::string id = token->identifier();
1990 bool is_id_exported = token->is_identifier_exported();
1991 Location id_location = token->location();
1993 token = this->advance_token();
1994 if (!token->is_op(OPERATOR_COMMA))
1996 if (token->is_op(OPERATOR_COLONEQ))
1998 id = this->gogo_->pack_hidden_name(id, is_id_exported);
1999 til.push_back(Typed_identifier(id, NULL, location));
2002 this->unget_token(Token::make_identifier_token(id,
2008 id = this->gogo_->pack_hidden_name(id, is_id_exported);
2009 til.push_back(Typed_identifier(id, NULL, location));
2012 // We have a comma separated list of identifiers in TIL. If the
2013 // next token is COLONEQ, then this is a simple var decl, and we
2014 // have the complete list of identifiers. If the next token is
2015 // not COLONEQ, then the only valid parse is a tuple assignment.
2016 // The list of identifiers we have so far is really a list of
2017 // expressions. There are more expressions following.
2019 if (!this->peek_token()->is_op(OPERATOR_COLONEQ))
2021 Expression_list* exprs = new Expression_list;
2022 for (Typed_identifier_list::const_iterator p = til.begin();
2025 exprs->push_back(this->id_to_expression(p->name(),
2028 Expression_list* more_exprs = this->expression_list(NULL, true);
2029 for (Expression_list::const_iterator p = more_exprs->begin();
2030 p != more_exprs->end();
2032 exprs->push_back(*p);
2035 this->tuple_assignment(exprs, p_range_clause);
2040 go_assert(this->peek_token()->is_op(OPERATOR_COLONEQ));
2041 const Token* token = this->advance_token();
2043 if (p_range_clause != NULL && token->is_keyword(KEYWORD_RANGE))
2045 this->range_clause_decl(&til, p_range_clause);
2049 Expression_list* init;
2050 if (p_type_switch == NULL)
2051 init = this->expression_list(NULL, false);
2054 bool is_type_switch = false;
2055 Expression* expr = this->expression(PRECEDENCE_NORMAL, false, true,
2059 p_type_switch->found = true;
2060 p_type_switch->name = name;
2061 p_type_switch->location = location;
2062 p_type_switch->expr = expr;
2066 if (!this->peek_token()->is_op(OPERATOR_COMMA))
2068 init = new Expression_list();
2069 init->push_back(expr);
2073 this->advance_token();
2074 init = this->expression_list(expr, false);
2078 this->init_vars(&til, NULL, init, true, location);
2081 // FunctionDecl = "func" identifier Signature [ Block ] .
2082 // MethodDecl = "func" Receiver identifier Signature [ Block ] .
2085 // FunctionDecl = "func" identifier Signature
2086 // __asm__ "(" string_lit ")" .
2087 // This extension means a function whose real name is the identifier
2091 Parse::function_decl()
2093 go_assert(this->peek_token()->is_keyword(KEYWORD_FUNC));
2094 Location location = this->location();
2095 const Token* token = this->advance_token();
2097 Typed_identifier* rec = NULL;
2098 if (token->is_op(OPERATOR_LPAREN))
2100 rec = this->receiver();
2101 token = this->peek_token();
2104 if (!token->is_identifier())
2106 error_at(this->location(), "expected function name");
2111 this->gogo_->pack_hidden_name(token->identifier(),
2112 token->is_identifier_exported());
2114 this->advance_token();
2116 Function_type* fntype = this->signature(rec, this->location());
2120 Named_object* named_object = NULL;
2122 if (this->peek_token()->is_keyword(KEYWORD_ASM))
2124 if (!this->advance_token()->is_op(OPERATOR_LPAREN))
2126 error_at(this->location(), "expected %<(%>");
2129 token = this->advance_token();
2130 if (!token->is_string())
2132 error_at(this->location(), "expected string");
2135 std::string asm_name = token->string_value();
2136 if (!this->advance_token()->is_op(OPERATOR_RPAREN))
2138 error_at(this->location(), "expected %<)%>");
2141 this->advance_token();
2142 if (!Gogo::is_sink_name(name))
2144 named_object = this->gogo_->declare_function(name, fntype, location);
2145 if (named_object->is_function_declaration())
2146 named_object->func_declaration_value()->set_asm_name(asm_name);
2150 // Check for the easy error of a newline before the opening brace.
2151 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
2153 Location semi_loc = this->location();
2154 if (this->advance_token()->is_op(OPERATOR_LCURLY))
2155 error_at(this->location(),
2156 "unexpected semicolon or newline before %<{%>");
2158 this->unget_token(Token::make_operator_token(OPERATOR_SEMICOLON,
2162 if (!this->peek_token()->is_op(OPERATOR_LCURLY))
2164 if (named_object == NULL && !Gogo::is_sink_name(name))
2165 this->gogo_->declare_function(name, fntype, location);
2169 this->gogo_->start_function(name, fntype, true, location);
2170 Location end_loc = this->block();
2171 this->gogo_->finish_function(end_loc);
2175 // Receiver = "(" [ identifier ] [ "*" ] BaseTypeName ")" .
2176 // BaseTypeName = identifier .
2181 go_assert(this->peek_token()->is_op(OPERATOR_LPAREN));
2184 const Token* token = this->advance_token();
2185 Location location = token->location();
2186 if (!token->is_op(OPERATOR_MULT))
2188 if (!token->is_identifier())
2190 error_at(this->location(), "method has no receiver");
2191 while (!token->is_eof() && !token->is_op(OPERATOR_RPAREN))
2192 token = this->advance_token();
2193 if (!token->is_eof())
2194 this->advance_token();
2197 name = token->identifier();
2198 bool is_exported = token->is_identifier_exported();
2199 token = this->advance_token();
2200 if (!token->is_op(OPERATOR_DOT) && !token->is_op(OPERATOR_RPAREN))
2202 // An identifier followed by something other than a dot or a
2203 // right parenthesis must be a receiver name followed by a
2205 name = this->gogo_->pack_hidden_name(name, is_exported);
2209 // This must be a type name.
2210 this->unget_token(Token::make_identifier_token(name, is_exported,
2212 token = this->peek_token();
2217 // Here the receiver name is in NAME (it is empty if the receiver is
2218 // unnamed) and TOKEN is the first token in the type.
2220 bool is_pointer = false;
2221 if (token->is_op(OPERATOR_MULT))
2224 token = this->advance_token();
2227 if (!token->is_identifier())
2229 error_at(this->location(), "expected receiver name or type");
2230 int c = token->is_op(OPERATOR_LPAREN) ? 1 : 0;
2231 while (!token->is_eof())
2233 token = this->advance_token();
2234 if (token->is_op(OPERATOR_LPAREN))
2236 else if (token->is_op(OPERATOR_RPAREN))
2243 if (!token->is_eof())
2244 this->advance_token();
2248 Type* type = this->type_name(true);
2250 if (is_pointer && !type->is_error_type())
2251 type = Type::make_pointer_type(type);
2253 if (this->peek_token()->is_op(OPERATOR_RPAREN))
2254 this->advance_token();
2257 if (this->peek_token()->is_op(OPERATOR_COMMA))
2258 error_at(this->location(), "method has multiple receivers");
2260 error_at(this->location(), "expected %<)%>");
2261 while (!token->is_eof() && !token->is_op(OPERATOR_RPAREN))
2262 token = this->advance_token();
2263 if (!token->is_eof())
2264 this->advance_token();
2268 return new Typed_identifier(name, type, location);
2271 // Operand = Literal | QualifiedIdent | MethodExpr | "(" Expression ")" .
2272 // Literal = BasicLit | CompositeLit | FunctionLit .
2273 // BasicLit = int_lit | float_lit | imaginary_lit | char_lit | string_lit .
2275 // If MAY_BE_SINK is true, this operand may be "_".
2278 Parse::operand(bool may_be_sink)
2280 const Token* token = this->peek_token();
2282 switch (token->classification())
2284 case Token::TOKEN_IDENTIFIER:
2286 Location location = token->location();
2287 std::string id = token->identifier();
2288 bool is_exported = token->is_identifier_exported();
2289 std::string packed = this->gogo_->pack_hidden_name(id, is_exported);
2291 Named_object* in_function;
2292 Named_object* named_object = this->gogo_->lookup(packed, &in_function);
2294 Package* package = NULL;
2295 if (named_object != NULL && named_object->is_package())
2297 if (!this->advance_token()->is_op(OPERATOR_DOT)
2298 || !this->advance_token()->is_identifier())
2300 error_at(location, "unexpected reference to package");
2301 return Expression::make_error(location);
2303 package = named_object->package_value();
2304 package->set_used();
2305 id = this->peek_token()->identifier();
2306 is_exported = this->peek_token()->is_identifier_exported();
2307 packed = this->gogo_->pack_hidden_name(id, is_exported);
2308 named_object = package->lookup(packed);
2309 location = this->location();
2310 go_assert(in_function == NULL);
2313 this->advance_token();
2315 if (named_object != NULL
2316 && named_object->is_type()
2317 && !named_object->type_value()->is_visible())
2319 go_assert(package != NULL);
2320 error_at(location, "invalid reference to hidden type %<%s.%s%>",
2321 Gogo::message_name(package->name()).c_str(),
2322 Gogo::message_name(id).c_str());
2323 return Expression::make_error(location);
2327 if (named_object == NULL)
2329 if (package != NULL)
2331 std::string n1 = Gogo::message_name(package->name());
2332 std::string n2 = Gogo::message_name(id);
2335 ("invalid reference to unexported identifier "
2337 n1.c_str(), n2.c_str());
2340 "reference to undefined identifier %<%s.%s%>",
2341 n1.c_str(), n2.c_str());
2342 return Expression::make_error(location);
2345 named_object = this->gogo_->add_unknown_name(packed, location);
2348 if (in_function != NULL
2349 && in_function != this->gogo_->current_function()
2350 && (named_object->is_variable()
2351 || named_object->is_result_variable()))
2352 return this->enclosing_var_reference(in_function, named_object,
2355 switch (named_object->classification())
2357 case Named_object::NAMED_OBJECT_CONST:
2358 return Expression::make_const_reference(named_object, location);
2359 case Named_object::NAMED_OBJECT_TYPE:
2360 return Expression::make_type(named_object->type_value(), location);
2361 case Named_object::NAMED_OBJECT_TYPE_DECLARATION:
2363 Type* t = Type::make_forward_declaration(named_object);
2364 return Expression::make_type(t, location);
2366 case Named_object::NAMED_OBJECT_VAR:
2367 case Named_object::NAMED_OBJECT_RESULT_VAR:
2368 return Expression::make_var_reference(named_object, location);
2369 case Named_object::NAMED_OBJECT_SINK:
2371 return Expression::make_sink(location);
2374 error_at(location, "cannot use _ as value");
2375 return Expression::make_error(location);
2377 case Named_object::NAMED_OBJECT_FUNC:
2378 case Named_object::NAMED_OBJECT_FUNC_DECLARATION:
2379 return Expression::make_func_reference(named_object, NULL,
2381 case Named_object::NAMED_OBJECT_UNKNOWN:
2382 return Expression::make_unknown_reference(named_object, location);
2389 case Token::TOKEN_STRING:
2390 ret = Expression::make_string(token->string_value(), token->location());
2391 this->advance_token();
2394 case Token::TOKEN_CHARACTER:
2395 ret = Expression::make_character(token->character_value(), NULL,
2397 this->advance_token();
2400 case Token::TOKEN_INTEGER:
2401 ret = Expression::make_integer(token->integer_value(), NULL,
2403 this->advance_token();
2406 case Token::TOKEN_FLOAT:
2407 ret = Expression::make_float(token->float_value(), NULL,
2409 this->advance_token();
2412 case Token::TOKEN_IMAGINARY:
2415 mpfr_init_set_ui(zero, 0, GMP_RNDN);
2416 ret = Expression::make_complex(&zero, token->imaginary_value(),
2417 NULL, token->location());
2419 this->advance_token();
2423 case Token::TOKEN_KEYWORD:
2424 switch (token->keyword())
2427 return this->function_lit();
2429 case KEYWORD_INTERFACE:
2431 case KEYWORD_STRUCT:
2433 Location location = token->location();
2434 return Expression::make_type(this->type(), location);
2441 case Token::TOKEN_OPERATOR:
2442 if (token->is_op(OPERATOR_LPAREN))
2444 this->advance_token();
2445 ret = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2446 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
2447 error_at(this->location(), "missing %<)%>");
2449 this->advance_token();
2452 else if (token->is_op(OPERATOR_LSQUARE))
2454 // Here we call array_type directly, as this is the only
2455 // case where an ellipsis is permitted for an array type.
2456 Location location = token->location();
2457 return Expression::make_type(this->array_type(true), location);
2465 error_at(this->location(), "expected operand");
2466 return Expression::make_error(this->location());
2469 // Handle a reference to a variable in an enclosing function. We add
2470 // it to a list of such variables. We return a reference to a field
2471 // in a struct which will be passed on the static chain when calling
2472 // the current function.
2475 Parse::enclosing_var_reference(Named_object* in_function, Named_object* var,
2478 go_assert(var->is_variable() || var->is_result_variable());
2480 Named_object* this_function = this->gogo_->current_function();
2481 Named_object* closure = this_function->func_value()->closure_var();
2483 Enclosing_var ev(var, in_function, this->enclosing_vars_.size());
2484 std::pair<Enclosing_vars::iterator, bool> ins =
2485 this->enclosing_vars_.insert(ev);
2488 // This is a variable we have not seen before. Add a new field
2489 // to the closure type.
2490 this_function->func_value()->add_closure_field(var, location);
2493 Expression* closure_ref = Expression::make_var_reference(closure,
2495 closure_ref = Expression::make_unary(OPERATOR_MULT, closure_ref, location);
2497 // The closure structure holds pointers to the variables, so we need
2498 // to introduce an indirection.
2499 Expression* e = Expression::make_field_reference(closure_ref,
2502 e = Expression::make_unary(OPERATOR_MULT, e, location);
2506 // CompositeLit = LiteralType LiteralValue .
2507 // LiteralType = StructType | ArrayType | "[" "..." "]" ElementType |
2508 // SliceType | MapType | TypeName .
2509 // LiteralValue = "{" [ ElementList [ "," ] ] "}" .
2510 // ElementList = Element { "," Element } .
2511 // Element = [ Key ":" ] Value .
2512 // Key = FieldName | ElementIndex .
2513 // FieldName = identifier .
2514 // ElementIndex = Expression .
2515 // Value = Expression | LiteralValue .
2517 // We have already seen the type if there is one, and we are now
2518 // looking at the LiteralValue. The case "[" "..." "]" ElementType
2519 // will be seen here as an array type whose length is "nil". The
2520 // DEPTH parameter is non-zero if this is an embedded composite
2521 // literal and the type was omitted. It gives the number of steps up
2522 // to the type which was provided. E.g., in [][]int{{1}} it will be
2523 // 1. In [][][]int{{{1}}} it will be 2.
2526 Parse::composite_lit(Type* type, int depth, Location location)
2528 go_assert(this->peek_token()->is_op(OPERATOR_LCURLY));
2529 this->advance_token();
2531 if (this->peek_token()->is_op(OPERATOR_RCURLY))
2533 this->advance_token();
2534 return Expression::make_composite_literal(type, depth, false, NULL,
2538 bool has_keys = false;
2539 Expression_list* vals = new Expression_list;
2543 bool is_type_omitted = false;
2545 const Token* token = this->peek_token();
2547 if (token->is_identifier())
2549 std::string identifier = token->identifier();
2550 bool is_exported = token->is_identifier_exported();
2551 Location location = token->location();
2553 if (this->advance_token()->is_op(OPERATOR_COLON))
2555 // This may be a field name. We don't know for sure--it
2556 // could also be an expression for an array index. We
2557 // don't want to parse it as an expression because may
2558 // trigger various errors, e.g., if this identifier
2559 // happens to be the name of a package.
2560 Gogo* gogo = this->gogo_;
2561 val = this->id_to_expression(gogo->pack_hidden_name(identifier,
2567 this->unget_token(Token::make_identifier_token(identifier,
2570 val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2573 else if (!token->is_op(OPERATOR_LCURLY))
2574 val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2577 // This must be a composite literal inside another composite
2578 // literal, with the type omitted for the inner one.
2579 val = this->composite_lit(type, depth + 1, token->location());
2580 is_type_omitted = true;
2583 token = this->peek_token();
2584 if (!token->is_op(OPERATOR_COLON))
2587 vals->push_back(NULL);
2591 if (is_type_omitted && !val->is_error_expression())
2593 error_at(this->location(), "unexpected %<:%>");
2594 val = Expression::make_error(this->location());
2597 this->advance_token();
2599 if (!has_keys && !vals->empty())
2601 Expression_list* newvals = new Expression_list;
2602 for (Expression_list::const_iterator p = vals->begin();
2606 newvals->push_back(NULL);
2607 newvals->push_back(*p);
2614 if (val->unknown_expression() != NULL)
2615 val->unknown_expression()->set_is_composite_literal_key();
2617 vals->push_back(val);
2619 if (!token->is_op(OPERATOR_LCURLY))
2620 val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2623 // This must be a composite literal inside another
2624 // composite literal, with the type omitted for the
2626 val = this->composite_lit(type, depth + 1, token->location());
2629 token = this->peek_token();
2632 vals->push_back(val);
2634 if (token->is_op(OPERATOR_COMMA))
2636 if (this->advance_token()->is_op(OPERATOR_RCURLY))
2638 this->advance_token();
2642 else if (token->is_op(OPERATOR_RCURLY))
2644 this->advance_token();
2649 error_at(this->location(), "expected %<,%> or %<}%>");
2652 while (!token->is_eof()
2653 && (depth > 0 || !token->is_op(OPERATOR_RCURLY)))
2655 if (token->is_op(OPERATOR_LCURLY))
2657 else if (token->is_op(OPERATOR_RCURLY))
2659 token = this->advance_token();
2661 if (token->is_op(OPERATOR_RCURLY))
2662 this->advance_token();
2664 return Expression::make_error(location);
2668 return Expression::make_composite_literal(type, depth, has_keys, vals,
2672 // FunctionLit = "func" Signature Block .
2675 Parse::function_lit()
2677 Location location = this->location();
2678 go_assert(this->peek_token()->is_keyword(KEYWORD_FUNC));
2679 this->advance_token();
2681 Enclosing_vars hold_enclosing_vars;
2682 hold_enclosing_vars.swap(this->enclosing_vars_);
2684 Function_type* type = this->signature(NULL, location);
2686 type = Type::make_function_type(NULL, NULL, NULL, location);
2688 // For a function literal, the next token must be a '{'. If we
2689 // don't see that, then we may have a type expression.
2690 if (!this->peek_token()->is_op(OPERATOR_LCURLY))
2691 return Expression::make_type(type, location);
2693 Bc_stack* hold_break_stack = this->break_stack_;
2694 Bc_stack* hold_continue_stack = this->continue_stack_;
2695 this->break_stack_ = NULL;
2696 this->continue_stack_ = NULL;
2698 Named_object* no = this->gogo_->start_function("", type, true, location);
2700 Location end_loc = this->block();
2702 this->gogo_->finish_function(end_loc);
2704 if (this->break_stack_ != NULL)
2705 delete this->break_stack_;
2706 if (this->continue_stack_ != NULL)
2707 delete this->continue_stack_;
2708 this->break_stack_ = hold_break_stack;
2709 this->continue_stack_ = hold_continue_stack;
2711 hold_enclosing_vars.swap(this->enclosing_vars_);
2713 Expression* closure = this->create_closure(no, &hold_enclosing_vars,
2716 return Expression::make_func_reference(no, closure, location);
2719 // Create a closure for the nested function FUNCTION. This is based
2720 // on ENCLOSING_VARS, which is a list of all variables defined in
2721 // enclosing functions and referenced from FUNCTION. A closure is the
2722 // address of a struct which contains the addresses of all the
2723 // referenced variables. This returns NULL if no closure is required.
2726 Parse::create_closure(Named_object* function, Enclosing_vars* enclosing_vars,
2729 if (enclosing_vars->empty())
2732 // Get the variables in order by their field index.
2734 size_t enclosing_var_count = enclosing_vars->size();
2735 std::vector<Enclosing_var> ev(enclosing_var_count);
2736 for (Enclosing_vars::const_iterator p = enclosing_vars->begin();
2737 p != enclosing_vars->end();
2739 ev[p->index()] = *p;
2741 // Build an initializer for a composite literal of the closure's
2744 Named_object* enclosing_function = this->gogo_->current_function();
2745 Expression_list* initializer = new Expression_list;
2746 for (size_t i = 0; i < enclosing_var_count; ++i)
2748 go_assert(ev[i].index() == i);
2749 Named_object* var = ev[i].var();
2751 if (ev[i].in_function() == enclosing_function)
2752 ref = Expression::make_var_reference(var, location);
2754 ref = this->enclosing_var_reference(ev[i].in_function(), var,
2756 Expression* refaddr = Expression::make_unary(OPERATOR_AND, ref,
2758 initializer->push_back(refaddr);
2761 Named_object* closure_var = function->func_value()->closure_var();
2762 Struct_type* st = closure_var->var_value()->type()->deref()->struct_type();
2763 Expression* cv = Expression::make_struct_composite_literal(st, initializer,
2765 return Expression::make_heap_composite(cv, location);
2768 // PrimaryExpr = Operand { Selector | Index | Slice | TypeGuard | Call } .
2770 // If MAY_BE_SINK is true, this expression may be "_".
2772 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
2775 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
2776 // guard (var := expr.("type") using the literal keyword "type").
2779 Parse::primary_expr(bool may_be_sink, bool may_be_composite_lit,
2780 bool* is_type_switch)
2782 Location start_loc = this->location();
2783 bool is_parenthesized = this->peek_token()->is_op(OPERATOR_LPAREN);
2785 Expression* ret = this->operand(may_be_sink);
2787 // An unknown name followed by a curly brace must be a composite
2788 // literal, and the unknown name must be a type.
2789 if (may_be_composite_lit
2790 && !is_parenthesized
2791 && ret->unknown_expression() != NULL
2792 && this->peek_token()->is_op(OPERATOR_LCURLY))
2794 Named_object* no = ret->unknown_expression()->named_object();
2795 Type* type = Type::make_forward_declaration(no);
2796 ret = Expression::make_type(type, ret->location());
2799 // We handle composite literals and type casts here, as it is the
2800 // easiest way to handle types which are in parentheses, as in
2802 if (ret->is_type_expression())
2804 if (this->peek_token()->is_op(OPERATOR_LCURLY))
2806 if (is_parenthesized)
2808 "cannot parenthesize type in composite literal");
2809 ret = this->composite_lit(ret->type(), 0, ret->location());
2811 else if (this->peek_token()->is_op(OPERATOR_LPAREN))
2813 Location loc = this->location();
2814 this->advance_token();
2815 Expression* expr = this->expression(PRECEDENCE_NORMAL, false, true,
2817 if (this->peek_token()->is_op(OPERATOR_ELLIPSIS))
2819 error_at(this->location(),
2820 "invalid use of %<...%> in type conversion");
2821 this->advance_token();
2823 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
2824 error_at(this->location(), "expected %<)%>");
2826 this->advance_token();
2827 if (expr->is_error_expression())
2831 Type* t = ret->type();
2832 if (t->classification() == Type::TYPE_ARRAY
2833 && t->array_type()->length() != NULL
2834 && t->array_type()->length()->is_nil_expression())
2836 error_at(ret->location(),
2837 "invalid use of %<...%> in type conversion");
2838 ret = Expression::make_error(loc);
2841 ret = Expression::make_cast(t, expr, loc);
2848 const Token* token = this->peek_token();
2849 if (token->is_op(OPERATOR_LPAREN))
2850 ret = this->call(this->verify_not_sink(ret));
2851 else if (token->is_op(OPERATOR_DOT))
2853 ret = this->selector(this->verify_not_sink(ret), is_type_switch);
2854 if (is_type_switch != NULL && *is_type_switch)
2857 else if (token->is_op(OPERATOR_LSQUARE))
2858 ret = this->index(this->verify_not_sink(ret));
2866 // Selector = "." identifier .
2867 // TypeGuard = "." "(" QualifiedIdent ")" .
2869 // Note that Operand can expand to QualifiedIdent, which contains a
2870 // ".". That is handled directly in operand when it sees a package
2873 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
2874 // guard (var := expr.("type") using the literal keyword "type").
2877 Parse::selector(Expression* left, bool* is_type_switch)
2879 go_assert(this->peek_token()->is_op(OPERATOR_DOT));
2880 Location location = this->location();
2882 const Token* token = this->advance_token();
2883 if (token->is_identifier())
2885 // This could be a field in a struct, or a method in an
2886 // interface, or a method associated with a type. We can't know
2887 // which until we have seen all the types.
2889 this->gogo_->pack_hidden_name(token->identifier(),
2890 token->is_identifier_exported());
2891 if (token->identifier() == "_")
2893 error_at(this->location(), "invalid use of %<_%>");
2894 name = this->gogo_->pack_hidden_name("blank", false);
2896 this->advance_token();
2897 return Expression::make_selector(left, name, location);
2899 else if (token->is_op(OPERATOR_LPAREN))
2901 this->advance_token();
2903 if (!this->peek_token()->is_keyword(KEYWORD_TYPE))
2904 type = this->type();
2907 if (is_type_switch != NULL)
2908 *is_type_switch = true;
2911 error_at(this->location(),
2912 "use of %<.(type)%> outside type switch");
2913 type = Type::make_error_type();
2915 this->advance_token();
2917 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
2918 error_at(this->location(), "missing %<)%>");
2920 this->advance_token();
2921 if (is_type_switch != NULL && *is_type_switch)
2923 return Expression::make_type_guard(left, type, location);
2927 error_at(this->location(), "expected identifier or %<(%>");
2932 // Index = "[" Expression "]" .
2933 // Slice = "[" Expression ":" [ Expression ] "]" .
2936 Parse::index(Expression* expr)
2938 Location location = this->location();
2939 go_assert(this->peek_token()->is_op(OPERATOR_LSQUARE));
2940 this->advance_token();
2943 if (!this->peek_token()->is_op(OPERATOR_COLON))
2944 start = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2948 mpz_init_set_ui(zero, 0);
2949 start = Expression::make_integer(&zero, NULL, location);
2953 Expression* end = NULL;
2954 if (this->peek_token()->is_op(OPERATOR_COLON))
2956 // We use nil to indicate a missing high expression.
2957 if (this->advance_token()->is_op(OPERATOR_RSQUARE))
2958 end = Expression::make_nil(this->location());
2960 end = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2962 if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
2963 error_at(this->location(), "missing %<]%>");
2965 this->advance_token();
2966 return Expression::make_index(expr, start, end, location);
2969 // Call = "(" [ ArgumentList [ "," ] ] ")" .
2970 // ArgumentList = ExpressionList [ "..." ] .
2973 Parse::call(Expression* func)
2975 go_assert(this->peek_token()->is_op(OPERATOR_LPAREN));
2976 Expression_list* args = NULL;
2977 bool is_varargs = false;
2978 const Token* token = this->advance_token();
2979 if (!token->is_op(OPERATOR_RPAREN))
2981 args = this->expression_list(NULL, false);
2982 token = this->peek_token();
2983 if (token->is_op(OPERATOR_ELLIPSIS))
2986 token = this->advance_token();
2989 if (token->is_op(OPERATOR_COMMA))
2990 token = this->advance_token();
2991 if (!token->is_op(OPERATOR_RPAREN))
2992 error_at(this->location(), "missing %<)%>");
2994 this->advance_token();
2995 if (func->is_error_expression())
2997 return Expression::make_call(func, args, is_varargs, func->location());
3000 // Return an expression for a single unqualified identifier.
3003 Parse::id_to_expression(const std::string& name, Location location)
3005 Named_object* in_function;
3006 Named_object* named_object = this->gogo_->lookup(name, &in_function);
3007 if (named_object == NULL)
3008 named_object = this->gogo_->add_unknown_name(name, location);
3010 if (in_function != NULL
3011 && in_function != this->gogo_->current_function()
3012 && (named_object->is_variable() || named_object->is_result_variable()))
3013 return this->enclosing_var_reference(in_function, named_object,
3016 switch (named_object->classification())
3018 case Named_object::NAMED_OBJECT_CONST:
3019 return Expression::make_const_reference(named_object, location);
3020 case Named_object::NAMED_OBJECT_VAR:
3021 case Named_object::NAMED_OBJECT_RESULT_VAR:
3022 return Expression::make_var_reference(named_object, location);
3023 case Named_object::NAMED_OBJECT_SINK:
3024 return Expression::make_sink(location);
3025 case Named_object::NAMED_OBJECT_FUNC:
3026 case Named_object::NAMED_OBJECT_FUNC_DECLARATION:
3027 return Expression::make_func_reference(named_object, NULL, location);
3028 case Named_object::NAMED_OBJECT_UNKNOWN:
3029 return Expression::make_unknown_reference(named_object, location);
3030 case Named_object::NAMED_OBJECT_PACKAGE:
3031 case Named_object::NAMED_OBJECT_TYPE:
3032 case Named_object::NAMED_OBJECT_TYPE_DECLARATION:
3033 // These cases can arise for a field name in a composite
3035 return Expression::make_unknown_reference(named_object, location);
3037 error_at(this->location(), "unexpected type of identifier");
3038 return Expression::make_error(location);
3042 // Expression = UnaryExpr { binary_op Expression } .
3044 // PRECEDENCE is the precedence of the current operator.
3046 // If MAY_BE_SINK is true, this expression may be "_".
3048 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
3051 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
3052 // guard (var := expr.("type") using the literal keyword "type").
3055 Parse::expression(Precedence precedence, bool may_be_sink,
3056 bool may_be_composite_lit, bool* is_type_switch)
3058 Expression* left = this->unary_expr(may_be_sink, may_be_composite_lit,
3063 if (is_type_switch != NULL && *is_type_switch)
3066 const Token* token = this->peek_token();
3067 if (token->classification() != Token::TOKEN_OPERATOR)
3073 Precedence right_precedence;
3074 switch (token->op())
3077 right_precedence = PRECEDENCE_OROR;
3079 case OPERATOR_ANDAND:
3080 right_precedence = PRECEDENCE_ANDAND;
3083 case OPERATOR_NOTEQ:
3088 right_precedence = PRECEDENCE_RELOP;
3091 case OPERATOR_MINUS:
3094 right_precedence = PRECEDENCE_ADDOP;
3099 case OPERATOR_LSHIFT:
3100 case OPERATOR_RSHIFT:
3102 case OPERATOR_BITCLEAR:
3103 right_precedence = PRECEDENCE_MULOP;
3106 right_precedence = PRECEDENCE_INVALID;
3110 if (right_precedence == PRECEDENCE_INVALID)
3116 Operator op = token->op();
3117 Location binop_location = token->location();
3119 if (precedence >= right_precedence)
3121 // We've already seen A * B, and we see + C. We want to
3122 // return so that A * B becomes a group.
3126 this->advance_token();
3128 left = this->verify_not_sink(left);
3129 Expression* right = this->expression(right_precedence, false,
3130 may_be_composite_lit,
3132 left = Expression::make_binary(op, left, right, binop_location);
3137 Parse::expression_may_start_here()
3139 const Token* token = this->peek_token();
3140 switch (token->classification())
3142 case Token::TOKEN_INVALID:
3143 case Token::TOKEN_EOF:
3145 case Token::TOKEN_KEYWORD:
3146 switch (token->keyword())
3151 case KEYWORD_STRUCT:
3152 case KEYWORD_INTERFACE:
3157 case Token::TOKEN_IDENTIFIER:
3159 case Token::TOKEN_STRING:
3161 case Token::TOKEN_OPERATOR:
3162 switch (token->op())
3165 case OPERATOR_MINUS:
3169 case OPERATOR_CHANOP:
3171 case OPERATOR_LPAREN:
3172 case OPERATOR_LSQUARE:
3177 case Token::TOKEN_CHARACTER:
3178 case Token::TOKEN_INTEGER:
3179 case Token::TOKEN_FLOAT:
3180 case Token::TOKEN_IMAGINARY:
3187 // UnaryExpr = unary_op UnaryExpr | PrimaryExpr .
3189 // If MAY_BE_SINK is true, this expression may be "_".
3191 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
3194 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
3195 // guard (var := expr.("type") using the literal keyword "type").
3198 Parse::unary_expr(bool may_be_sink, bool may_be_composite_lit,
3199 bool* is_type_switch)
3201 const Token* token = this->peek_token();
3202 if (token->is_op(OPERATOR_PLUS)
3203 || token->is_op(OPERATOR_MINUS)
3204 || token->is_op(OPERATOR_NOT)
3205 || token->is_op(OPERATOR_XOR)
3206 || token->is_op(OPERATOR_CHANOP)
3207 || token->is_op(OPERATOR_MULT)
3208 || token->is_op(OPERATOR_AND))
3210 Location location = token->location();
3211 Operator op = token->op();
3212 this->advance_token();
3214 if (op == OPERATOR_CHANOP
3215 && this->peek_token()->is_keyword(KEYWORD_CHAN))
3217 // This is "<- chan" which must be the start of a type.
3218 this->unget_token(Token::make_operator_token(op, location));
3219 return Expression::make_type(this->type(), location);
3222 Expression* expr = this->unary_expr(false, may_be_composite_lit, NULL);
3223 if (expr->is_error_expression())
3225 else if (op == OPERATOR_MULT && expr->is_type_expression())
3226 expr = Expression::make_type(Type::make_pointer_type(expr->type()),
3228 else if (op == OPERATOR_AND && expr->is_composite_literal())
3229 expr = Expression::make_heap_composite(expr, location);
3230 else if (op != OPERATOR_CHANOP)
3231 expr = Expression::make_unary(op, expr, location);
3233 expr = Expression::make_receive(expr, location);
3237 return this->primary_expr(may_be_sink, may_be_composite_lit,
3242 // Declaration | LabeledStmt | SimpleStmt |
3243 // GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt |
3244 // FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt |
3247 // LABEL is the label of this statement if it has one.
3250 Parse::statement(Label* label)
3252 const Token* token = this->peek_token();
3253 switch (token->classification())
3255 case Token::TOKEN_KEYWORD:
3257 switch (token->keyword())
3262 this->declaration();
3266 case KEYWORD_STRUCT:
3267 case KEYWORD_INTERFACE:
3268 this->simple_stat(true, NULL, NULL, NULL);
3272 this->go_or_defer_stat();
3274 case KEYWORD_RETURN:
3275 this->return_stat();
3280 case KEYWORD_CONTINUE:
3281 this->continue_stat();
3289 case KEYWORD_SWITCH:
3290 this->switch_stat(label);
3292 case KEYWORD_SELECT:
3293 this->select_stat(label);
3296 this->for_stat(label);
3299 error_at(this->location(), "expected statement");
3300 this->advance_token();
3306 case Token::TOKEN_IDENTIFIER:
3308 std::string identifier = token->identifier();
3309 bool is_exported = token->is_identifier_exported();
3310 Location location = token->location();
3311 if (this->advance_token()->is_op(OPERATOR_COLON))
3313 this->advance_token();
3314 this->labeled_stmt(identifier, location);
3318 this->unget_token(Token::make_identifier_token(identifier,
3321 this->simple_stat(true, NULL, NULL, NULL);
3326 case Token::TOKEN_OPERATOR:
3327 if (token->is_op(OPERATOR_LCURLY))
3329 Location location = token->location();
3330 this->gogo_->start_block(location);
3331 Location end_loc = this->block();
3332 this->gogo_->add_block(this->gogo_->finish_block(end_loc),
3335 else if (!token->is_op(OPERATOR_SEMICOLON))
3336 this->simple_stat(true, NULL, NULL, NULL);
3339 case Token::TOKEN_STRING:
3340 case Token::TOKEN_CHARACTER:
3341 case Token::TOKEN_INTEGER:
3342 case Token::TOKEN_FLOAT:
3343 case Token::TOKEN_IMAGINARY:
3344 this->simple_stat(true, NULL, NULL, NULL);
3348 error_at(this->location(), "expected statement");
3349 this->advance_token();
3355 Parse::statement_may_start_here()
3357 const Token* token = this->peek_token();
3358 switch (token->classification())
3360 case Token::TOKEN_KEYWORD:
3362 switch (token->keyword())
3369 case KEYWORD_STRUCT:
3370 case KEYWORD_INTERFACE:
3373 case KEYWORD_RETURN:
3375 case KEYWORD_CONTINUE:
3378 case KEYWORD_SWITCH:
3379 case KEYWORD_SELECT:
3389 case Token::TOKEN_IDENTIFIER:
3392 case Token::TOKEN_OPERATOR:
3393 if (token->is_op(OPERATOR_LCURLY)
3394 || token->is_op(OPERATOR_SEMICOLON))
3397 return this->expression_may_start_here();
3399 case Token::TOKEN_STRING:
3400 case Token::TOKEN_CHARACTER:
3401 case Token::TOKEN_INTEGER:
3402 case Token::TOKEN_FLOAT:
3403 case Token::TOKEN_IMAGINARY:
3411 // LabeledStmt = Label ":" Statement .
3412 // Label = identifier .
3415 Parse::labeled_stmt(const std::string& label_name, Location location)
3417 Label* label = this->gogo_->add_label_definition(label_name, location);
3419 if (this->peek_token()->is_op(OPERATOR_RCURLY))
3421 // This is a label at the end of a block. A program is
3422 // permitted to omit a semicolon here.
3426 if (!this->statement_may_start_here())
3428 // Mark the label as used to avoid a useless error about an
3430 label->set_is_used();
3432 error_at(location, "missing statement after label");
3433 this->unget_token(Token::make_operator_token(OPERATOR_SEMICOLON,
3438 this->statement(label);
3441 // SimpleStmt = EmptyStmt | ExpressionStmt | SendStmt | IncDecStmt |
3442 // Assignment | ShortVarDecl .
3444 // EmptyStmt was handled in Parse::statement.
3446 // In order to make this work for if and switch statements, if
3447 // RETURN_EXP is not NULL, and we see an ExpressionStat, we return the
3448 // expression rather than adding an expression statement to the
3449 // current block. If we see something other than an ExpressionStat,
3450 // we add the statement, set *RETURN_EXP to true if we saw a send
3451 // statement, and return NULL. The handling of send statements is for
3452 // better error messages.
3454 // If P_RANGE_CLAUSE is not NULL, then this will recognize a
3457 // If P_TYPE_SWITCH is not NULL, this will recognize a type switch
3458 // guard (var := expr.("type") using the literal keyword "type").
3461 Parse::simple_stat(bool may_be_composite_lit, bool* return_exp,
3462 Range_clause* p_range_clause, Type_switch* p_type_switch)
3464 const Token* token = this->peek_token();
3466 // An identifier follow by := is a SimpleVarDecl.
3467 if (token->is_identifier())
3469 std::string identifier = token->identifier();
3470 bool is_exported = token->is_identifier_exported();
3471 Location location = token->location();
3473 token = this->advance_token();
3474 if (token->is_op(OPERATOR_COLONEQ)
3475 || token->is_op(OPERATOR_COMMA))
3477 identifier = this->gogo_->pack_hidden_name(identifier, is_exported);
3478 this->simple_var_decl_or_assignment(identifier, location,
3480 (token->is_op(OPERATOR_COLONEQ)
3486 this->unget_token(Token::make_identifier_token(identifier, is_exported,
3490 Expression* exp = this->expression(PRECEDENCE_NORMAL, true,
3491 may_be_composite_lit,
3492 (p_type_switch == NULL
3494 : &p_type_switch->found));
3495 if (p_type_switch != NULL && p_type_switch->found)
3497 p_type_switch->name.clear();
3498 p_type_switch->location = exp->location();
3499 p_type_switch->expr = this->verify_not_sink(exp);
3502 token = this->peek_token();
3503 if (token->is_op(OPERATOR_CHANOP))
3505 this->send_stmt(this->verify_not_sink(exp));
3506 if (return_exp != NULL)
3509 else if (token->is_op(OPERATOR_PLUSPLUS)
3510 || token->is_op(OPERATOR_MINUSMINUS))
3511 this->inc_dec_stat(this->verify_not_sink(exp));
3512 else if (token->is_op(OPERATOR_COMMA)
3513 || token->is_op(OPERATOR_EQ))
3514 this->assignment(exp, p_range_clause);
3515 else if (token->is_op(OPERATOR_PLUSEQ)
3516 || token->is_op(OPERATOR_MINUSEQ)
3517 || token->is_op(OPERATOR_OREQ)
3518 || token->is_op(OPERATOR_XOREQ)
3519 || token->is_op(OPERATOR_MULTEQ)
3520 || token->is_op(OPERATOR_DIVEQ)
3521 || token->is_op(OPERATOR_MODEQ)
3522 || token->is_op(OPERATOR_LSHIFTEQ)
3523 || token->is_op(OPERATOR_RSHIFTEQ)
3524 || token->is_op(OPERATOR_ANDEQ)
3525 || token->is_op(OPERATOR_BITCLEAREQ))
3526 this->assignment(this->verify_not_sink(exp), p_range_clause);
3527 else if (return_exp != NULL)
3528 return this->verify_not_sink(exp);
3531 exp = this->verify_not_sink(exp);
3533 if (token->is_op(OPERATOR_COLONEQ))
3535 if (!exp->is_error_expression())
3536 error_at(token->location(), "non-name on left side of %<:=%>");
3537 while (!token->is_op(OPERATOR_SEMICOLON)
3538 && !token->is_eof())
3539 token = this->advance_token();
3543 this->expression_stat(exp);
3550 Parse::simple_stat_may_start_here()
3552 return this->expression_may_start_here();
3555 // Parse { Statement ";" } which is used in a few places. The list of
3556 // statements may end with a right curly brace, in which case the
3557 // semicolon may be omitted.
3560 Parse::statement_list()
3562 while (this->statement_may_start_here())
3564 this->statement(NULL);
3565 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
3566 this->advance_token();
3567 else if (this->peek_token()->is_op(OPERATOR_RCURLY))
3571 if (!this->peek_token()->is_eof() || !saw_errors())
3572 error_at(this->location(), "expected %<;%> or %<}%> or newline");
3573 if (!this->skip_past_error(OPERATOR_RCURLY))
3580 Parse::statement_list_may_start_here()
3582 return this->statement_may_start_here();
3585 // ExpressionStat = Expression .
3588 Parse::expression_stat(Expression* exp)
3590 this->gogo_->add_statement(Statement::make_statement(exp, false));
3593 // SendStmt = Channel "<-" Expression .
3594 // Channel = Expression .
3597 Parse::send_stmt(Expression* channel)
3599 go_assert(this->peek_token()->is_op(OPERATOR_CHANOP));
3600 Location loc = this->location();
3601 this->advance_token();
3602 Expression* val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
3603 Statement* s = Statement::make_send_statement(channel, val, loc);
3604 this->gogo_->add_statement(s);
3607 // IncDecStat = Expression ( "++" | "--" ) .
3610 Parse::inc_dec_stat(Expression* exp)
3612 const Token* token = this->peek_token();
3614 // Lvalue maps require special handling.
3615 if (exp->index_expression() != NULL)
3616 exp->index_expression()->set_is_lvalue();
3618 if (token->is_op(OPERATOR_PLUSPLUS))
3619 this->gogo_->add_statement(Statement::make_inc_statement(exp));
3620 else if (token->is_op(OPERATOR_MINUSMINUS))
3621 this->gogo_->add_statement(Statement::make_dec_statement(exp));
3624 this->advance_token();
3627 // Assignment = ExpressionList assign_op ExpressionList .
3629 // EXP is an expression that we have already parsed.
3631 // If RANGE_CLAUSE is not NULL, then this will recognize a
3635 Parse::assignment(Expression* expr, Range_clause* p_range_clause)
3637 Expression_list* vars;
3638 if (!this->peek_token()->is_op(OPERATOR_COMMA))
3640 vars = new Expression_list();
3641 vars->push_back(expr);
3645 this->advance_token();
3646 vars = this->expression_list(expr, true);
3649 this->tuple_assignment(vars, p_range_clause);
3652 // An assignment statement. LHS is the list of expressions which
3653 // appear on the left hand side.
3655 // If RANGE_CLAUSE is not NULL, then this will recognize a
3659 Parse::tuple_assignment(Expression_list* lhs, Range_clause* p_range_clause)
3661 const Token* token = this->peek_token();
3662 if (!token->is_op(OPERATOR_EQ)
3663 && !token->is_op(OPERATOR_PLUSEQ)
3664 && !token->is_op(OPERATOR_MINUSEQ)
3665 && !token->is_op(OPERATOR_OREQ)
3666 && !token->is_op(OPERATOR_XOREQ)
3667 && !token->is_op(OPERATOR_MULTEQ)
3668 && !token->is_op(OPERATOR_DIVEQ)
3669 && !token->is_op(OPERATOR_MODEQ)
3670 && !token->is_op(OPERATOR_LSHIFTEQ)
3671 && !token->is_op(OPERATOR_RSHIFTEQ)
3672 && !token->is_op(OPERATOR_ANDEQ)
3673 && !token->is_op(OPERATOR_BITCLEAREQ))
3675 error_at(this->location(), "expected assignment operator");
3678 Operator op = token->op();
3679 Location location = token->location();
3681 token = this->advance_token();
3683 if (p_range_clause != NULL && token->is_keyword(KEYWORD_RANGE))
3685 if (op != OPERATOR_EQ)
3686 error_at(this->location(), "range clause requires %<=%>");
3687 this->range_clause_expr(lhs, p_range_clause);
3691 Expression_list* vals = this->expression_list(NULL, false);
3693 // We've parsed everything; check for errors.
3694 if (lhs == NULL || vals == NULL)
3696 for (Expression_list::const_iterator pe = lhs->begin();
3700 if ((*pe)->is_error_expression())
3702 if (op != OPERATOR_EQ && (*pe)->is_sink_expression())
3703 error_at((*pe)->location(), "cannot use _ as value");
3705 for (Expression_list::const_iterator pe = vals->begin();
3709 if ((*pe)->is_error_expression())
3713 // Map expressions act differently when they are lvalues.
3714 for (Expression_list::iterator plv = lhs->begin();
3717 if ((*plv)->index_expression() != NULL)
3718 (*plv)->index_expression()->set_is_lvalue();
3720 Call_expression* call;
3721 Index_expression* map_index;
3722 Receive_expression* receive;
3723 Type_guard_expression* type_guard;
3724 if (lhs->size() == vals->size())
3727 if (lhs->size() > 1)
3729 if (op != OPERATOR_EQ)
3730 error_at(location, "multiple values only permitted with %<=%>");
3731 s = Statement::make_tuple_assignment(lhs, vals, location);
3735 if (op == OPERATOR_EQ)
3736 s = Statement::make_assignment(lhs->front(), vals->front(),
3739 s = Statement::make_assignment_operation(op, lhs->front(),
3740 vals->front(), location);
3744 this->gogo_->add_statement(s);
3746 else if (vals->size() == 1
3747 && (call = (*vals->begin())->call_expression()) != NULL)
3749 if (op != OPERATOR_EQ)
3750 error_at(location, "multiple results only permitted with %<=%>");
3752 vals = new Expression_list;
3753 for (unsigned int i = 0; i < lhs->size(); ++i)
3754 vals->push_back(Expression::make_call_result(call, i));
3755 Statement* s = Statement::make_tuple_assignment(lhs, vals, location);
3756 this->gogo_->add_statement(s);
3758 else if (lhs->size() == 2
3759 && vals->size() == 1
3760 && (map_index = (*vals->begin())->index_expression()) != NULL)
3762 if (op != OPERATOR_EQ)
3763 error_at(location, "two values from map requires %<=%>");
3764 Expression* val = lhs->front();
3765 Expression* present = lhs->back();
3766 Statement* s = Statement::make_tuple_map_assignment(val, present,
3767 map_index, location);
3768 this->gogo_->add_statement(s);
3770 else if (lhs->size() == 1
3771 && vals->size() == 2
3772 && (map_index = lhs->front()->index_expression()) != NULL)
3774 if (op != OPERATOR_EQ)
3775 error_at(location, "assigning tuple to map index requires %<=%>");
3776 Expression* val = vals->front();
3777 Expression* should_set = vals->back();
3778 Statement* s = Statement::make_map_assignment(map_index, val, should_set,
3780 this->gogo_->add_statement(s);
3782 else if (lhs->size() == 2
3783 && vals->size() == 1
3784 && (receive = (*vals->begin())->receive_expression()) != NULL)
3786 if (op != OPERATOR_EQ)
3787 error_at(location, "two values from receive requires %<=%>");
3788 Expression* val = lhs->front();
3789 Expression* success = lhs->back();
3790 Expression* channel = receive->channel();
3791 Statement* s = Statement::make_tuple_receive_assignment(val, success,
3794 this->gogo_->add_statement(s);
3796 else if (lhs->size() == 2
3797 && vals->size() == 1
3798 && (type_guard = (*vals->begin())->type_guard_expression()) != NULL)
3800 if (op != OPERATOR_EQ)
3801 error_at(location, "two values from type guard requires %<=%>");
3802 Expression* val = lhs->front();
3803 Expression* ok = lhs->back();
3804 Expression* expr = type_guard->expr();
3805 Type* type = type_guard->type();
3806 Statement* s = Statement::make_tuple_type_guard_assignment(val, ok,
3809 this->gogo_->add_statement(s);
3813 error_at(location, "number of variables does not match number of values");
3817 // GoStat = "go" Expression .
3818 // DeferStat = "defer" Expression .
3821 Parse::go_or_defer_stat()
3823 go_assert(this->peek_token()->is_keyword(KEYWORD_GO)
3824 || this->peek_token()->is_keyword(KEYWORD_DEFER));
3825 bool is_go = this->peek_token()->is_keyword(KEYWORD_GO);
3826 Location stat_location = this->location();
3827 this->advance_token();
3828 Location expr_location = this->location();
3829 Expression* expr = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
3830 Call_expression* call_expr = expr->call_expression();
3831 if (call_expr == NULL)
3833 error_at(expr_location, "expected call expression");
3837 // Make it easier to simplify go/defer statements by putting every
3838 // statement in its own block.
3839 this->gogo_->start_block(stat_location);
3842 stat = Statement::make_go_statement(call_expr, stat_location);
3844 stat = Statement::make_defer_statement(call_expr, stat_location);
3845 this->gogo_->add_statement(stat);
3846 this->gogo_->add_block(this->gogo_->finish_block(stat_location),
3850 // ReturnStat = "return" [ ExpressionList ] .
3853 Parse::return_stat()
3855 go_assert(this->peek_token()->is_keyword(KEYWORD_RETURN));
3856 Location location = this->location();
3857 this->advance_token();
3858 Expression_list* vals = NULL;
3859 if (this->expression_may_start_here())
3860 vals = this->expression_list(NULL, false);
3861 this->gogo_->add_statement(Statement::make_return_statement(vals, location));
3864 && this->gogo_->current_function()->func_value()->results_are_named())
3866 Named_object* function = this->gogo_->current_function();
3867 Function::Results* results = function->func_value()->result_variables();
3868 for (Function::Results::const_iterator p = results->begin();
3869 p != results->end();
3872 Named_object* no = this->gogo_->lookup((*p)->name(), NULL);
3873 go_assert(no != NULL);
3874 if (!no->is_result_variable())
3875 error_at(location, "%qs is shadowed during return",
3876 (*p)->message_name().c_str());
3881 // IfStmt = "if" [ SimpleStmt ";" ] Expression Block
3882 // [ "else" ( IfStmt | Block ) ] .
3887 go_assert(this->peek_token()->is_keyword(KEYWORD_IF));
3888 Location location = this->location();
3889 this->advance_token();
3891 this->gogo_->start_block(location);
3893 bool saw_simple_stat = false;
3894 Expression* cond = NULL;
3896 if (this->simple_stat_may_start_here())
3898 cond = this->simple_stat(false, &saw_send_stmt, NULL, NULL);
3899 saw_simple_stat = true;
3901 if (cond != NULL && this->peek_token()->is_op(OPERATOR_SEMICOLON))
3903 // The SimpleStat is an expression statement.
3904 this->expression_stat(cond);
3909 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
3910 this->advance_token();
3911 else if (saw_simple_stat)
3914 error_at(this->location(),
3915 ("send statement used as value; "
3916 "use select for non-blocking send"));
3918 error_at(this->location(),
3919 "expected %<;%> after statement in if expression");
3920 if (!this->expression_may_start_here())
3921 cond = Expression::make_error(this->location());
3923 if (cond == NULL && this->peek_token()->is_op(OPERATOR_LCURLY))
3925 error_at(this->location(),
3926 "missing condition in if statement");
3927 cond = Expression::make_error(this->location());
3930 cond = this->expression(PRECEDENCE_NORMAL, false, false, NULL);
3933 this->gogo_->start_block(this->location());
3934 Location end_loc = this->block();
3935 Block* then_block = this->gogo_->finish_block(end_loc);
3937 // Check for the easy error of a newline before "else".
3938 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
3940 Location semi_loc = this->location();
3941 if (this->advance_token()->is_keyword(KEYWORD_ELSE))
3942 error_at(this->location(),
3943 "unexpected semicolon or newline before %<else%>");
3945 this->unget_token(Token::make_operator_token(OPERATOR_SEMICOLON,
3949 Block* else_block = NULL;
3950 if (this->peek_token()->is_keyword(KEYWORD_ELSE))
3952 this->gogo_->start_block(this->location());
3953 const Token* token = this->advance_token();
3954 if (token->is_keyword(KEYWORD_IF))
3956 else if (token->is_op(OPERATOR_LCURLY))
3960 error_at(this->location(), "expected %<if%> or %<{%>");
3961 this->statement(NULL);
3963 else_block = this->gogo_->finish_block(this->location());
3966 this->gogo_->add_statement(Statement::make_if_statement(cond, then_block,
3970 this->gogo_->add_block(this->gogo_->finish_block(this->location()),
3974 // SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
3975 // ExprSwitchStmt = "switch" [ [ SimpleStat ] ";" ] [ Expression ]
3976 // "{" { ExprCaseClause } "}" .
3977 // TypeSwitchStmt = "switch" [ [ SimpleStat ] ";" ] TypeSwitchGuard
3978 // "{" { TypeCaseClause } "}" .
3979 // TypeSwitchGuard = [ identifier ":=" ] Expression "." "(" "type" ")" .
3982 Parse::switch_stat(Label* label)
3984 go_assert(this->peek_token()->is_keyword(KEYWORD_SWITCH));
3985 Location location = this->location();
3986 this->advance_token();
3988 this->gogo_->start_block(location);
3990 bool saw_simple_stat = false;
3991 Expression* switch_val = NULL;
3993 Type_switch type_switch;
3994 if (this->simple_stat_may_start_here())
3996 switch_val = this->simple_stat(false, &saw_send_stmt, NULL,