1 // parse.cc -- Go frontend parser.
3 // Copyright 2009 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
12 #include "statements.h"
13 #include "expressions.h"
16 // Struct Parse::Enclosing_var_comparison.
18 // Return true if v1 should be considered to be less than v2.
21 Parse::Enclosing_var_comparison::operator()(const Enclosing_var& v1,
22 const Enclosing_var& v2)
24 if (v1.var() == v2.var())
27 const std::string& n1(v1.var()->name());
28 const std::string& n2(v2.var()->name());
29 int i = n1.compare(n2);
35 // If we get here it means that a single nested function refers to
36 // two different variables defined in enclosing functions, and both
37 // variables have the same name. I think this is impossible.
43 Parse::Parse(Lex* lex, Gogo* gogo)
45 token_(Token::make_invalid_token(Linemap::unknown_location())),
46 unget_token_(Token::make_invalid_token(Linemap::unknown_location())),
47 unget_token_valid_(false),
48 is_erroneous_function_(false),
51 continue_stack_(NULL),
58 // Return the current token.
63 if (this->unget_token_valid_)
64 return &this->unget_token_;
65 if (this->token_.is_invalid())
66 this->token_ = this->lex_->next_token();
70 // Advance to the next token and return it.
73 Parse::advance_token()
75 if (this->unget_token_valid_)
77 this->unget_token_valid_ = false;
78 if (!this->token_.is_invalid())
81 this->token_ = this->lex_->next_token();
85 // Push a token back on the input stream.
88 Parse::unget_token(const Token& token)
90 go_assert(!this->unget_token_valid_);
91 this->unget_token_ = token;
92 this->unget_token_valid_ = true;
95 // The location of the current token.
100 return this->peek_token()->location();
103 // IdentifierList = identifier { "," identifier } .
106 Parse::identifier_list(Typed_identifier_list* til)
108 const Token* token = this->peek_token();
111 if (!token->is_identifier())
113 error_at(this->location(), "expected identifier");
117 this->gogo_->pack_hidden_name(token->identifier(),
118 token->is_identifier_exported());
119 til->push_back(Typed_identifier(name, NULL, token->location()));
120 token = this->advance_token();
121 if (!token->is_op(OPERATOR_COMMA))
123 token = this->advance_token();
127 // ExpressionList = Expression { "," Expression } .
129 // If MAY_BE_SINK is true, the expressions in the list may be "_".
132 Parse::expression_list(Expression* first, bool may_be_sink)
134 Expression_list* ret = new Expression_list();
136 ret->push_back(first);
139 ret->push_back(this->expression(PRECEDENCE_NORMAL, may_be_sink, true,
142 const Token* token = this->peek_token();
143 if (!token->is_op(OPERATOR_COMMA))
146 // Most expression lists permit a trailing comma.
147 Location location = token->location();
148 this->advance_token();
149 if (!this->expression_may_start_here())
151 this->unget_token(Token::make_operator_token(OPERATOR_COMMA,
158 // QualifiedIdent = [ PackageName "." ] identifier .
159 // PackageName = identifier .
161 // This sets *PNAME to the identifier and sets *PPACKAGE to the
162 // package or NULL if there isn't one. This returns true on success,
163 // false on failure in which case it will have emitted an error
167 Parse::qualified_ident(std::string* pname, Named_object** ppackage)
169 const Token* token = this->peek_token();
170 if (!token->is_identifier())
172 error_at(this->location(), "expected identifier");
176 std::string name = token->identifier();
177 bool is_exported = token->is_identifier_exported();
178 name = this->gogo_->pack_hidden_name(name, is_exported);
180 token = this->advance_token();
181 if (!token->is_op(OPERATOR_DOT))
188 Named_object* package = this->gogo_->lookup(name, NULL);
189 if (package == NULL || !package->is_package())
191 error_at(this->location(), "expected package");
192 // We expect . IDENTIFIER; skip both.
193 if (this->advance_token()->is_identifier())
194 this->advance_token();
198 package->package_value()->set_used();
200 token = this->advance_token();
201 if (!token->is_identifier())
203 error_at(this->location(), "expected identifier");
207 name = token->identifier();
211 error_at(this->location(), "invalid use of %<_%>");
215 if (package->name() == this->gogo_->package_name())
216 name = this->gogo_->pack_hidden_name(name,
217 token->is_identifier_exported());
222 this->advance_token();
227 // Type = TypeName | TypeLit | "(" Type ")" .
229 // ArrayType | StructType | PointerType | FunctionType | InterfaceType |
230 // SliceType | MapType | ChannelType .
235 const Token* token = this->peek_token();
236 if (token->is_identifier())
237 return this->type_name(true);
238 else if (token->is_op(OPERATOR_LSQUARE))
239 return this->array_type(false);
240 else if (token->is_keyword(KEYWORD_CHAN)
241 || token->is_op(OPERATOR_CHANOP))
242 return this->channel_type();
243 else if (token->is_keyword(KEYWORD_INTERFACE))
244 return this->interface_type();
245 else if (token->is_keyword(KEYWORD_FUNC))
247 Location location = token->location();
248 this->advance_token();
249 Type* type = this->signature(NULL, location);
251 return Type::make_error_type();
254 else if (token->is_keyword(KEYWORD_MAP))
255 return this->map_type();
256 else if (token->is_keyword(KEYWORD_STRUCT))
257 return this->struct_type();
258 else if (token->is_op(OPERATOR_MULT))
259 return this->pointer_type();
260 else if (token->is_op(OPERATOR_LPAREN))
262 this->advance_token();
263 Type* ret = this->type();
264 if (this->peek_token()->is_op(OPERATOR_RPAREN))
265 this->advance_token();
268 if (!ret->is_error_type())
269 error_at(this->location(), "expected %<)%>");
275 error_at(token->location(), "expected type");
276 return Type::make_error_type();
281 Parse::type_may_start_here()
283 const Token* token = this->peek_token();
284 return (token->is_identifier()
285 || token->is_op(OPERATOR_LSQUARE)
286 || token->is_op(OPERATOR_CHANOP)
287 || token->is_keyword(KEYWORD_CHAN)
288 || token->is_keyword(KEYWORD_INTERFACE)
289 || token->is_keyword(KEYWORD_FUNC)
290 || token->is_keyword(KEYWORD_MAP)
291 || token->is_keyword(KEYWORD_STRUCT)
292 || token->is_op(OPERATOR_MULT)
293 || token->is_op(OPERATOR_LPAREN));
296 // TypeName = QualifiedIdent .
298 // If MAY_BE_NIL is true, then an identifier with the value of the
299 // predefined constant nil is accepted, returning the nil type.
302 Parse::type_name(bool issue_error)
304 Location location = this->location();
307 Named_object* package;
308 if (!this->qualified_ident(&name, &package))
309 return Type::make_error_type();
311 Named_object* named_object;
313 named_object = this->gogo_->lookup(name, NULL);
316 named_object = package->package_value()->lookup(name);
317 if (named_object == NULL
319 && package->name() != this->gogo_->package_name())
321 // Check whether the name is there but hidden.
322 std::string s = ('.' + package->package_value()->unique_prefix()
323 + '.' + package->package_value()->name()
325 named_object = package->package_value()->lookup(s);
326 if (named_object != NULL)
328 const std::string& packname(package->package_value()->name());
329 error_at(location, "invalid reference to hidden type %<%s.%s%>",
330 Gogo::message_name(packname).c_str(),
331 Gogo::message_name(name).c_str());
338 if (named_object == NULL)
341 named_object = this->gogo_->add_unknown_name(name, location);
344 const std::string& packname(package->package_value()->name());
345 error_at(location, "reference to undefined identifier %<%s.%s%>",
346 Gogo::message_name(packname).c_str(),
347 Gogo::message_name(name).c_str());
352 else if (named_object->is_type())
354 if (!named_object->type_value()->is_visible())
357 else if (named_object->is_unknown() || named_object->is_type_declaration())
365 error_at(location, "expected type");
366 return Type::make_error_type();
369 if (named_object->is_type())
370 return named_object->type_value();
371 else if (named_object->is_unknown() || named_object->is_type_declaration())
372 return Type::make_forward_declaration(named_object);
377 // ArrayType = "[" [ ArrayLength ] "]" ElementType .
378 // ArrayLength = Expression .
379 // ElementType = CompleteType .
382 Parse::array_type(bool may_use_ellipsis)
384 go_assert(this->peek_token()->is_op(OPERATOR_LSQUARE));
385 const Token* token = this->advance_token();
387 Expression* length = NULL;
388 if (token->is_op(OPERATOR_RSQUARE))
389 this->advance_token();
392 if (!token->is_op(OPERATOR_ELLIPSIS))
393 length = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
394 else if (may_use_ellipsis)
396 // An ellipsis is used in composite literals to represent a
397 // fixed array of the size of the number of elements. We
398 // use a length of nil to represent this, and change the
399 // length when parsing the composite literal.
400 length = Expression::make_nil(this->location());
401 this->advance_token();
405 error_at(this->location(),
406 "use of %<[...]%> outside of array literal");
407 length = Expression::make_error(this->location());
408 this->advance_token();
410 if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
412 error_at(this->location(), "expected %<]%>");
413 return Type::make_error_type();
415 this->advance_token();
418 Type* element_type = this->type();
420 return Type::make_array_type(element_type, length);
423 // MapType = "map" "[" KeyType "]" ValueType .
424 // KeyType = CompleteType .
425 // ValueType = CompleteType .
430 Location location = this->location();
431 go_assert(this->peek_token()->is_keyword(KEYWORD_MAP));
432 if (!this->advance_token()->is_op(OPERATOR_LSQUARE))
434 error_at(this->location(), "expected %<[%>");
435 return Type::make_error_type();
437 this->advance_token();
439 Type* key_type = this->type();
441 if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
443 error_at(this->location(), "expected %<]%>");
444 return Type::make_error_type();
446 this->advance_token();
448 Type* value_type = this->type();
450 if (key_type->is_error_type() || value_type->is_error_type())
451 return Type::make_error_type();
453 return Type::make_map_type(key_type, value_type, location);
456 // StructType = "struct" "{" { FieldDecl ";" } "}" .
461 go_assert(this->peek_token()->is_keyword(KEYWORD_STRUCT));
462 Location location = this->location();
463 if (!this->advance_token()->is_op(OPERATOR_LCURLY))
465 Location token_loc = this->location();
466 if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
467 && this->advance_token()->is_op(OPERATOR_LCURLY))
468 error_at(token_loc, "unexpected semicolon or newline before %<{%>");
471 error_at(this->location(), "expected %<{%>");
472 return Type::make_error_type();
475 this->advance_token();
477 Struct_field_list* sfl = new Struct_field_list;
478 while (!this->peek_token()->is_op(OPERATOR_RCURLY))
480 this->field_decl(sfl);
481 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
482 this->advance_token();
483 else if (!this->peek_token()->is_op(OPERATOR_RCURLY))
485 error_at(this->location(), "expected %<;%> or %<}%> or newline");
486 if (!this->skip_past_error(OPERATOR_RCURLY))
487 return Type::make_error_type();
490 this->advance_token();
492 for (Struct_field_list::const_iterator pi = sfl->begin();
496 if (pi->type()->is_error_type())
498 for (Struct_field_list::const_iterator pj = pi + 1;
502 if (pi->field_name() == pj->field_name()
503 && !Gogo::is_sink_name(pi->field_name()))
504 error_at(pi->location(), "duplicate field name %<%s%>",
505 Gogo::message_name(pi->field_name()).c_str());
509 return Type::make_struct_type(sfl, location);
512 // FieldDecl = (IdentifierList CompleteType | TypeName) [ Tag ] .
513 // Tag = string_lit .
516 Parse::field_decl(Struct_field_list* sfl)
518 const Token* token = this->peek_token();
519 Location location = token->location();
521 bool is_anonymous_pointer;
522 if (token->is_op(OPERATOR_MULT))
525 is_anonymous_pointer = true;
527 else if (token->is_identifier())
529 std::string id = token->identifier();
530 bool is_id_exported = token->is_identifier_exported();
531 Location id_location = token->location();
532 token = this->advance_token();
533 is_anonymous = (token->is_op(OPERATOR_SEMICOLON)
534 || token->is_op(OPERATOR_RCURLY)
535 || token->is_op(OPERATOR_DOT)
536 || token->is_string());
537 is_anonymous_pointer = false;
538 this->unget_token(Token::make_identifier_token(id, is_id_exported,
543 error_at(this->location(), "expected field name");
544 this->gogo_->mark_locals_used();
545 while (!token->is_op(OPERATOR_SEMICOLON)
546 && !token->is_op(OPERATOR_RCURLY)
548 token = this->advance_token();
554 if (is_anonymous_pointer)
556 this->advance_token();
557 if (!this->peek_token()->is_identifier())
559 error_at(this->location(), "expected field name");
560 this->gogo_->mark_locals_used();
561 while (!token->is_op(OPERATOR_SEMICOLON)
562 && !token->is_op(OPERATOR_RCURLY)
564 token = this->advance_token();
568 Type* type = this->type_name(true);
571 if (this->peek_token()->is_string())
573 tag = this->peek_token()->string_value();
574 this->advance_token();
577 if (!type->is_error_type())
579 if (is_anonymous_pointer)
580 type = Type::make_pointer_type(type);
581 sfl->push_back(Struct_field(Typed_identifier("", type, location)));
583 sfl->back().set_tag(tag);
588 Typed_identifier_list til;
591 token = this->peek_token();
592 if (!token->is_identifier())
594 error_at(this->location(), "expected identifier");
598 this->gogo_->pack_hidden_name(token->identifier(),
599 token->is_identifier_exported());
600 til.push_back(Typed_identifier(name, NULL, token->location()));
601 if (!this->advance_token()->is_op(OPERATOR_COMMA))
603 this->advance_token();
606 Type* type = this->type();
609 if (this->peek_token()->is_string())
611 tag = this->peek_token()->string_value();
612 this->advance_token();
615 for (Typed_identifier_list::iterator p = til.begin();
620 sfl->push_back(Struct_field(*p));
622 sfl->back().set_tag(tag);
627 // PointerType = "*" Type .
630 Parse::pointer_type()
632 go_assert(this->peek_token()->is_op(OPERATOR_MULT));
633 this->advance_token();
634 Type* type = this->type();
635 if (type->is_error_type())
637 return Type::make_pointer_type(type);
640 // ChannelType = Channel | SendChannel | RecvChannel .
641 // Channel = "chan" ElementType .
642 // SendChannel = "chan" "<-" ElementType .
643 // RecvChannel = "<-" "chan" ElementType .
646 Parse::channel_type()
648 const Token* token = this->peek_token();
651 if (token->is_op(OPERATOR_CHANOP))
653 if (!this->advance_token()->is_keyword(KEYWORD_CHAN))
655 error_at(this->location(), "expected %<chan%>");
656 return Type::make_error_type();
659 this->advance_token();
663 go_assert(token->is_keyword(KEYWORD_CHAN));
664 if (this->advance_token()->is_op(OPERATOR_CHANOP))
667 this->advance_token();
671 // Better error messages for the common error of omitting the
672 // channel element type.
673 if (!this->type_may_start_here())
675 token = this->peek_token();
676 if (token->is_op(OPERATOR_RCURLY))
677 error_at(this->location(), "unexpected %<}%> in channel type");
678 else if (token->is_op(OPERATOR_RPAREN))
679 error_at(this->location(), "unexpected %<)%> in channel type");
680 else if (token->is_op(OPERATOR_COMMA))
681 error_at(this->location(), "unexpected comma in channel type");
683 error_at(this->location(), "expected channel element type");
684 return Type::make_error_type();
687 Type* element_type = this->type();
688 return Type::make_channel_type(send, receive, element_type);
691 // Give an error for a duplicate parameter or receiver name.
694 Parse::check_signature_names(const Typed_identifier_list* params,
697 for (Typed_identifier_list::const_iterator p = params->begin();
701 if (p->name().empty() || Gogo::is_sink_name(p->name()))
703 std::pair<std::string, const Typed_identifier*> val =
704 std::make_pair(p->name(), &*p);
705 std::pair<Parse::Names::iterator, bool> ins = names->insert(val);
708 error_at(p->location(), "redefinition of %qs",
709 Gogo::message_name(p->name()).c_str());
710 inform(ins.first->second->location(),
711 "previous definition of %qs was here",
712 Gogo::message_name(p->name()).c_str());
717 // Signature = Parameters [ Result ] .
719 // RECEIVER is the receiver if there is one, or NULL. LOCATION is the
720 // location of the start of the type.
722 // This returns NULL on a parse error.
725 Parse::signature(Typed_identifier* receiver, Location location)
727 bool is_varargs = false;
728 Typed_identifier_list* params;
729 bool params_ok = this->parameters(¶ms, &is_varargs);
731 Typed_identifier_list* results = NULL;
732 if (this->peek_token()->is_op(OPERATOR_LPAREN)
733 || this->type_may_start_here())
735 if (!this->result(&results))
744 this->check_signature_names(params, &names);
746 this->check_signature_names(results, &names);
748 Function_type* ret = Type::make_function_type(receiver, params, results,
751 ret->set_is_varargs();
755 // Parameters = "(" [ ParameterList [ "," ] ] ")" .
757 // This returns false on a parse error.
760 Parse::parameters(Typed_identifier_list** pparams, bool* is_varargs)
764 if (!this->peek_token()->is_op(OPERATOR_LPAREN))
766 error_at(this->location(), "expected %<(%>");
770 Typed_identifier_list* params = NULL;
771 bool saw_error = false;
773 const Token* token = this->advance_token();
774 if (!token->is_op(OPERATOR_RPAREN))
776 params = this->parameter_list(is_varargs);
779 token = this->peek_token();
782 // The optional trailing comma is picked up in parameter_list.
784 if (!token->is_op(OPERATOR_RPAREN))
785 error_at(this->location(), "expected %<)%>");
787 this->advance_token();
796 // ParameterList = ParameterDecl { "," ParameterDecl } .
798 // This sets *IS_VARARGS if the list ends with an ellipsis.
799 // IS_VARARGS will be NULL if varargs are not permitted.
801 // We pick up an optional trailing comma.
803 // This returns NULL if some error is seen.
805 Typed_identifier_list*
806 Parse::parameter_list(bool* is_varargs)
808 Location location = this->location();
809 Typed_identifier_list* ret = new Typed_identifier_list();
811 bool saw_error = false;
813 // If we see an identifier and then a comma, then we don't know
814 // whether we are looking at a list of identifiers followed by a
815 // type, or a list of types given by name. We have to do an
816 // arbitrary lookahead to figure it out.
818 bool parameters_have_names;
819 const Token* token = this->peek_token();
820 if (!token->is_identifier())
822 // This must be a type which starts with something like '*'.
823 parameters_have_names = false;
827 std::string name = token->identifier();
828 bool is_exported = token->is_identifier_exported();
829 Location location = token->location();
830 token = this->advance_token();
831 if (!token->is_op(OPERATOR_COMMA))
833 if (token->is_op(OPERATOR_DOT))
835 // This is a qualified identifier, which must turn out
837 parameters_have_names = false;
839 else if (token->is_op(OPERATOR_RPAREN))
841 // A single identifier followed by a parenthesis must be
843 parameters_have_names = false;
847 // An identifier followed by something other than a
848 // comma or a dot or a right parenthesis must be a
849 // parameter name followed by a type.
850 parameters_have_names = true;
853 this->unget_token(Token::make_identifier_token(name, is_exported,
858 // An identifier followed by a comma may be the first in a
859 // list of parameter names followed by a type, or it may be
860 // the first in a list of types without parameter names. To
861 // find out we gather as many identifiers separated by
863 std::string id_name = this->gogo_->pack_hidden_name(name,
865 ret->push_back(Typed_identifier(id_name, NULL, location));
866 bool just_saw_comma = true;
867 while (this->advance_token()->is_identifier())
869 name = this->peek_token()->identifier();
870 is_exported = this->peek_token()->is_identifier_exported();
871 location = this->peek_token()->location();
872 id_name = this->gogo_->pack_hidden_name(name, is_exported);
873 ret->push_back(Typed_identifier(id_name, NULL, location));
874 if (!this->advance_token()->is_op(OPERATOR_COMMA))
876 just_saw_comma = false;
883 // We saw ID1 "," ID2 "," followed by something which
884 // was not an identifier. We must be seeing the start
885 // of a type, and ID1 and ID2 must be types, and the
886 // parameters don't have names.
887 parameters_have_names = false;
889 else if (this->peek_token()->is_op(OPERATOR_RPAREN))
891 // We saw ID1 "," ID2 ")". ID1 and ID2 must be types,
892 // and the parameters don't have names.
893 parameters_have_names = false;
895 else if (this->peek_token()->is_op(OPERATOR_DOT))
897 // We saw ID1 "," ID2 ".". ID2 must be a package name,
898 // ID1 must be a type, and the parameters don't have
900 parameters_have_names = false;
901 this->unget_token(Token::make_identifier_token(name, is_exported,
904 just_saw_comma = true;
908 // We saw ID1 "," ID2 followed by something other than
909 // ",", ".", or ")". We must be looking at the start of
910 // a type, and ID1 and ID2 must be parameter names.
911 parameters_have_names = true;
914 if (parameters_have_names)
916 go_assert(!just_saw_comma);
917 // We have just seen ID1, ID2 xxx.
919 if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
923 error_at(this->location(), "%<...%> only permits one name");
925 this->advance_token();
928 for (size_t i = 0; i < ret->size(); ++i)
929 ret->set_type(i, type);
930 if (!this->peek_token()->is_op(OPERATOR_COMMA))
931 return saw_error ? NULL : ret;
932 if (this->advance_token()->is_op(OPERATOR_RPAREN))
933 return saw_error ? NULL : ret;
937 Typed_identifier_list* tret = new Typed_identifier_list();
938 for (Typed_identifier_list::const_iterator p = ret->begin();
942 Named_object* no = this->gogo_->lookup(p->name(), NULL);
945 no = this->gogo_->add_unknown_name(p->name(),
949 type = no->type_value();
950 else if (no->is_unknown() || no->is_type_declaration())
951 type = Type::make_forward_declaration(no);
954 error_at(p->location(), "expected %<%s%> to be a type",
955 Gogo::message_name(p->name()).c_str());
957 type = Type::make_error_type();
959 tret->push_back(Typed_identifier("", type, p->location()));
964 || this->peek_token()->is_op(OPERATOR_RPAREN))
965 return saw_error ? NULL : ret;
970 bool mix_error = false;
971 this->parameter_decl(parameters_have_names, ret, is_varargs, &mix_error);
972 while (this->peek_token()->is_op(OPERATOR_COMMA))
974 if (is_varargs != NULL && *is_varargs)
976 error_at(this->location(), "%<...%> must be last parameter");
979 if (this->advance_token()->is_op(OPERATOR_RPAREN))
981 this->parameter_decl(parameters_have_names, ret, is_varargs, &mix_error);
985 error_at(location, "invalid named/anonymous mix");
996 // ParameterDecl = [ IdentifierList ] [ "..." ] Type .
999 Parse::parameter_decl(bool parameters_have_names,
1000 Typed_identifier_list* til,
1004 if (!parameters_have_names)
1007 Location location = this->location();
1008 if (!this->peek_token()->is_identifier())
1010 if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
1011 type = this->type();
1014 if (is_varargs == NULL)
1015 error_at(this->location(), "invalid use of %<...%>");
1018 this->advance_token();
1019 if (is_varargs == NULL
1020 && this->peek_token()->is_op(OPERATOR_RPAREN))
1021 type = Type::make_error_type();
1024 Type* element_type = this->type();
1025 type = Type::make_array_type(element_type, NULL);
1031 type = this->type_name(false);
1032 if (type->is_error_type()
1033 || (!this->peek_token()->is_op(OPERATOR_COMMA)
1034 && !this->peek_token()->is_op(OPERATOR_RPAREN)))
1037 while (!this->peek_token()->is_op(OPERATOR_COMMA)
1038 && !this->peek_token()->is_op(OPERATOR_RPAREN))
1039 this->advance_token();
1042 if (!type->is_error_type())
1043 til->push_back(Typed_identifier("", type, location));
1047 size_t orig_count = til->size();
1048 if (this->peek_token()->is_identifier())
1049 this->identifier_list(til);
1052 size_t new_count = til->size();
1055 if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
1056 type = this->type();
1059 if (is_varargs == NULL)
1060 error_at(this->location(), "invalid use of %<...%>");
1061 else if (new_count > orig_count + 1)
1062 error_at(this->location(), "%<...%> only permits one name");
1065 this->advance_token();
1066 Type* element_type = this->type();
1067 type = Type::make_array_type(element_type, NULL);
1069 for (size_t i = orig_count; i < new_count; ++i)
1070 til->set_type(i, type);
1074 // Result = Parameters | Type .
1076 // This returns false on a parse error.
1079 Parse::result(Typed_identifier_list** presults)
1081 if (this->peek_token()->is_op(OPERATOR_LPAREN))
1082 return this->parameters(presults, NULL);
1085 Location location = this->location();
1086 Type* type = this->type();
1087 if (type->is_error_type())
1092 Typed_identifier_list* til = new Typed_identifier_list();
1093 til->push_back(Typed_identifier("", type, location));
1099 // Block = "{" [ StatementList ] "}" .
1101 // Returns the location of the closing brace.
1106 if (!this->peek_token()->is_op(OPERATOR_LCURLY))
1108 Location loc = this->location();
1109 if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1110 && this->advance_token()->is_op(OPERATOR_LCURLY))
1111 error_at(loc, "unexpected semicolon or newline before %<{%>");
1114 error_at(this->location(), "expected %<{%>");
1115 return Linemap::unknown_location();
1119 const Token* token = this->advance_token();
1121 if (!token->is_op(OPERATOR_RCURLY))
1123 this->statement_list();
1124 token = this->peek_token();
1125 if (!token->is_op(OPERATOR_RCURLY))
1127 if (!token->is_eof() || !saw_errors())
1128 error_at(this->location(), "expected %<}%>");
1130 this->gogo_->mark_locals_used();
1132 // Skip ahead to the end of the block, in hopes of avoiding
1133 // lots of meaningless errors.
1134 Location ret = token->location();
1136 while (!token->is_eof())
1138 if (token->is_op(OPERATOR_LCURLY))
1140 else if (token->is_op(OPERATOR_RCURLY))
1145 this->advance_token();
1149 token = this->advance_token();
1150 ret = token->location();
1156 Location ret = token->location();
1157 this->advance_token();
1161 // InterfaceType = "interface" "{" [ MethodSpecList ] "}" .
1162 // MethodSpecList = MethodSpec { ";" MethodSpec } [ ";" ] .
1165 Parse::interface_type()
1167 go_assert(this->peek_token()->is_keyword(KEYWORD_INTERFACE));
1168 Location location = this->location();
1170 if (!this->advance_token()->is_op(OPERATOR_LCURLY))
1172 Location token_loc = this->location();
1173 if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1174 && this->advance_token()->is_op(OPERATOR_LCURLY))
1175 error_at(token_loc, "unexpected semicolon or newline before %<{%>");
1178 error_at(this->location(), "expected %<{%>");
1179 return Type::make_error_type();
1182 this->advance_token();
1184 Typed_identifier_list* methods = new Typed_identifier_list();
1185 if (!this->peek_token()->is_op(OPERATOR_RCURLY))
1187 this->method_spec(methods);
1188 while (this->peek_token()->is_op(OPERATOR_SEMICOLON))
1190 if (this->advance_token()->is_op(OPERATOR_RCURLY))
1192 this->method_spec(methods);
1194 if (!this->peek_token()->is_op(OPERATOR_RCURLY))
1196 error_at(this->location(), "expected %<}%>");
1197 while (!this->advance_token()->is_op(OPERATOR_RCURLY))
1199 if (this->peek_token()->is_eof())
1200 return Type::make_error_type();
1204 this->advance_token();
1206 if (methods->empty())
1212 Interface_type* ret = Type::make_interface_type(methods, location);
1213 this->gogo_->record_interface_type(ret);
1217 // MethodSpec = MethodName Signature | InterfaceTypeName .
1218 // MethodName = identifier .
1219 // InterfaceTypeName = TypeName .
1222 Parse::method_spec(Typed_identifier_list* methods)
1224 const Token* token = this->peek_token();
1225 if (!token->is_identifier())
1227 error_at(this->location(), "expected identifier");
1231 std::string name = token->identifier();
1232 bool is_exported = token->is_identifier_exported();
1233 Location location = token->location();
1235 if (this->advance_token()->is_op(OPERATOR_LPAREN))
1237 // This is a MethodName.
1238 name = this->gogo_->pack_hidden_name(name, is_exported);
1239 Type* type = this->signature(NULL, location);
1242 methods->push_back(Typed_identifier(name, type, location));
1246 this->unget_token(Token::make_identifier_token(name, is_exported,
1248 Type* type = this->type_name(false);
1249 if (type->is_error_type()
1250 || (!this->peek_token()->is_op(OPERATOR_SEMICOLON)
1251 && !this->peek_token()->is_op(OPERATOR_RCURLY)))
1253 if (this->peek_token()->is_op(OPERATOR_COMMA))
1254 error_at(this->location(),
1255 "name list not allowed in interface type");
1257 error_at(location, "expected signature or type name");
1258 this->gogo_->mark_locals_used();
1259 token = this->peek_token();
1260 while (!token->is_eof()
1261 && !token->is_op(OPERATOR_SEMICOLON)
1262 && !token->is_op(OPERATOR_RCURLY))
1263 token = this->advance_token();
1266 // This must be an interface type, but we can't check that now.
1267 // We check it and pull out the methods in
1268 // Interface_type::do_verify.
1269 methods->push_back(Typed_identifier("", type, location));
1273 // Declaration = ConstDecl | TypeDecl | VarDecl | FunctionDecl | MethodDecl .
1276 Parse::declaration()
1278 const Token* token = this->peek_token();
1279 if (token->is_keyword(KEYWORD_CONST))
1281 else if (token->is_keyword(KEYWORD_TYPE))
1283 else if (token->is_keyword(KEYWORD_VAR))
1285 else if (token->is_keyword(KEYWORD_FUNC))
1286 this->function_decl();
1289 error_at(this->location(), "expected declaration");
1290 this->advance_token();
1295 Parse::declaration_may_start_here()
1297 const Token* token = this->peek_token();
1298 return (token->is_keyword(KEYWORD_CONST)
1299 || token->is_keyword(KEYWORD_TYPE)
1300 || token->is_keyword(KEYWORD_VAR)
1301 || token->is_keyword(KEYWORD_FUNC));
1304 // Decl<P> = P | "(" [ List<P> ] ")" .
1307 Parse::decl(void (Parse::*pfn)(void*), void* varg)
1309 if (this->peek_token()->is_eof())
1312 error_at(this->location(), "unexpected end of file");
1316 if (!this->peek_token()->is_op(OPERATOR_LPAREN))
1320 if (!this->advance_token()->is_op(OPERATOR_RPAREN))
1322 this->list(pfn, varg, true);
1323 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
1325 error_at(this->location(), "missing %<)%>");
1326 while (!this->advance_token()->is_op(OPERATOR_RPAREN))
1328 if (this->peek_token()->is_eof())
1333 this->advance_token();
1337 // List<P> = P { ";" P } [ ";" ] .
1339 // In order to pick up the trailing semicolon we need to know what
1340 // might follow. This is either a '}' or a ')'.
1343 Parse::list(void (Parse::*pfn)(void*), void* varg, bool follow_is_paren)
1346 Operator follow = follow_is_paren ? OPERATOR_RPAREN : OPERATOR_RCURLY;
1347 while (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1348 || this->peek_token()->is_op(OPERATOR_COMMA))
1350 if (this->peek_token()->is_op(OPERATOR_COMMA))
1351 error_at(this->location(), "unexpected comma");
1352 if (this->advance_token()->is_op(follow))
1358 // ConstDecl = "const" ( ConstSpec | "(" { ConstSpec ";" } ")" ) .
1363 go_assert(this->peek_token()->is_keyword(KEYWORD_CONST));
1364 this->advance_token();
1367 Type* last_type = NULL;
1368 Expression_list* last_expr_list = NULL;
1370 if (!this->peek_token()->is_op(OPERATOR_LPAREN))
1371 this->const_spec(&last_type, &last_expr_list);
1374 this->advance_token();
1375 while (!this->peek_token()->is_op(OPERATOR_RPAREN))
1377 this->const_spec(&last_type, &last_expr_list);
1378 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
1379 this->advance_token();
1380 else if (!this->peek_token()->is_op(OPERATOR_RPAREN))
1382 error_at(this->location(), "expected %<;%> or %<)%> or newline");
1383 if (!this->skip_past_error(OPERATOR_RPAREN))
1387 this->advance_token();
1390 if (last_expr_list != NULL)
1391 delete last_expr_list;
1394 // ConstSpec = IdentifierList [ [ CompleteType ] "=" ExpressionList ] .
1397 Parse::const_spec(Type** last_type, Expression_list** last_expr_list)
1399 Typed_identifier_list til;
1400 this->identifier_list(&til);
1403 if (this->type_may_start_here())
1405 type = this->type();
1407 *last_expr_list = NULL;
1410 Expression_list *expr_list;
1411 if (!this->peek_token()->is_op(OPERATOR_EQ))
1413 if (*last_expr_list == NULL)
1415 error_at(this->location(), "expected %<=%>");
1419 expr_list = new Expression_list;
1420 for (Expression_list::const_iterator p = (*last_expr_list)->begin();
1421 p != (*last_expr_list)->end();
1423 expr_list->push_back((*p)->copy());
1427 this->advance_token();
1428 expr_list = this->expression_list(NULL, false);
1430 if (*last_expr_list != NULL)
1431 delete *last_expr_list;
1432 *last_expr_list = expr_list;
1435 Expression_list::const_iterator pe = expr_list->begin();
1436 for (Typed_identifier_list::iterator pi = til.begin();
1440 if (pe == expr_list->end())
1442 error_at(this->location(), "not enough initializers");
1448 if (!Gogo::is_sink_name(pi->name()))
1449 this->gogo_->add_constant(*pi, *pe, this->iota_value());
1451 if (pe != expr_list->end())
1452 error_at(this->location(), "too many initializers");
1454 this->increment_iota();
1459 // TypeDecl = "type" Decl<TypeSpec> .
1464 go_assert(this->peek_token()->is_keyword(KEYWORD_TYPE));
1465 this->advance_token();
1466 this->decl(&Parse::type_spec, NULL);
1469 // TypeSpec = identifier Type .
1472 Parse::type_spec(void*)
1474 const Token* token = this->peek_token();
1475 if (!token->is_identifier())
1477 error_at(this->location(), "expected identifier");
1480 std::string name = token->identifier();
1481 bool is_exported = token->is_identifier_exported();
1482 Location location = token->location();
1483 token = this->advance_token();
1485 // The scope of the type name starts at the point where the
1486 // identifier appears in the source code. We implement this by
1487 // declaring the type before we read the type definition.
1488 Named_object* named_type = NULL;
1491 name = this->gogo_->pack_hidden_name(name, is_exported);
1492 named_type = this->gogo_->declare_type(name, location);
1496 if (!this->peek_token()->is_op(OPERATOR_SEMICOLON))
1497 type = this->type();
1500 error_at(this->location(),
1501 "unexpected semicolon or newline in type declaration");
1502 type = Type::make_error_type();
1503 this->advance_token();
1506 if (type->is_error_type())
1508 this->gogo_->mark_locals_used();
1509 while (!this->peek_token()->is_op(OPERATOR_SEMICOLON)
1510 && !this->peek_token()->is_eof())
1511 this->advance_token();
1516 if (named_type->is_type_declaration())
1518 Type* ftype = type->forwarded();
1519 if (ftype->forward_declaration_type() != NULL
1520 && (ftype->forward_declaration_type()->named_object()
1523 error_at(location, "invalid recursive type");
1524 type = Type::make_error_type();
1527 this->gogo_->define_type(named_type,
1528 Type::make_named_type(named_type, type,
1530 go_assert(named_type->package() == NULL);
1534 // This will probably give a redefinition error.
1535 this->gogo_->add_type(name, type, location);
1540 // VarDecl = "var" Decl<VarSpec> .
1545 go_assert(this->peek_token()->is_keyword(KEYWORD_VAR));
1546 this->advance_token();
1547 this->decl(&Parse::var_spec, NULL);
1550 // VarSpec = IdentifierList
1551 // ( CompleteType [ "=" ExpressionList ] | "=" ExpressionList ) .
1554 Parse::var_spec(void*)
1556 // Get the variable names.
1557 Typed_identifier_list til;
1558 this->identifier_list(&til);
1560 Location location = this->location();
1563 Expression_list* init = NULL;
1564 if (!this->peek_token()->is_op(OPERATOR_EQ))
1566 type = this->type();
1567 if (type->is_error_type())
1569 this->gogo_->mark_locals_used();
1570 while (!this->peek_token()->is_op(OPERATOR_EQ)
1571 && !this->peek_token()->is_op(OPERATOR_SEMICOLON)
1572 && !this->peek_token()->is_eof())
1573 this->advance_token();
1575 if (this->peek_token()->is_op(OPERATOR_EQ))
1577 this->advance_token();
1578 init = this->expression_list(NULL, false);
1583 this->advance_token();
1584 init = this->expression_list(NULL, false);
1587 this->init_vars(&til, type, init, false, location);
1593 // Create variables. TIL is a list of variable names. If TYPE is not
1594 // NULL, it is the type of all the variables. If INIT is not NULL, it
1595 // is an initializer list for the variables.
1598 Parse::init_vars(const Typed_identifier_list* til, Type* type,
1599 Expression_list* init, bool is_coloneq,
1602 // Check for an initialization which can yield multiple values.
1603 if (init != NULL && init->size() == 1 && til->size() > 1)
1605 if (this->init_vars_from_call(til, type, *init->begin(), is_coloneq,
1608 if (this->init_vars_from_map(til, type, *init->begin(), is_coloneq,
1611 if (this->init_vars_from_receive(til, type, *init->begin(), is_coloneq,
1614 if (this->init_vars_from_type_guard(til, type, *init->begin(),
1615 is_coloneq, location))
1619 if (init != NULL && init->size() != til->size())
1621 if (init->empty() || !init->front()->is_error_expression())
1622 error_at(location, "wrong number of initializations");
1625 type = Type::make_error_type();
1628 // Note that INIT was already parsed with the old name bindings, so
1629 // we don't have to worry that it will accidentally refer to the
1630 // newly declared variables.
1632 Expression_list::const_iterator pexpr;
1634 pexpr = init->begin();
1635 bool any_new = false;
1636 for (Typed_identifier_list::const_iterator p = til->begin();
1641 go_assert(pexpr != init->end());
1642 this->init_var(*p, type, init == NULL ? NULL : *pexpr, is_coloneq,
1648 go_assert(pexpr == init->end());
1649 if (is_coloneq && !any_new)
1650 error_at(location, "variables redeclared but no variable is new");
1653 // See if we need to initialize a list of variables from a function
1654 // call. This returns true if we have set up the variables and the
1658 Parse::init_vars_from_call(const Typed_identifier_list* vars, Type* type,
1659 Expression* expr, bool is_coloneq,
1662 Call_expression* call = expr->call_expression();
1666 // This is a function call. We can't check here whether it returns
1667 // the right number of values, but it might. Declare the variables,
1668 // and then assign the results of the call to them.
1670 unsigned int index = 0;
1671 bool any_new = false;
1672 for (Typed_identifier_list::const_iterator pv = vars->begin();
1676 Expression* init = Expression::make_call_result(call, index);
1677 this->init_var(*pv, type, init, is_coloneq, false, &any_new);
1680 if (is_coloneq && !any_new)
1681 error_at(location, "variables redeclared but no variable is new");
1686 // See if we need to initialize a pair of values from a map index
1687 // expression. This returns true if we have set up the variables and
1688 // the initialization.
1691 Parse::init_vars_from_map(const Typed_identifier_list* vars, Type* type,
1692 Expression* expr, bool is_coloneq,
1695 Index_expression* index = expr->index_expression();
1698 if (vars->size() != 2)
1701 // This is an index which is being assigned to two variables. It
1702 // must be a map index. Declare the variables, and then assign the
1703 // results of the map index.
1704 bool any_new = false;
1705 Typed_identifier_list::const_iterator p = vars->begin();
1706 Expression* init = type == NULL ? index : NULL;
1707 Named_object* val_no = this->init_var(*p, type, init, is_coloneq,
1708 type == NULL, &any_new);
1709 if (type == NULL && any_new && val_no->is_variable())
1710 val_no->var_value()->set_type_from_init_tuple();
1711 Expression* val_var = Expression::make_var_reference(val_no, location);
1714 Type* var_type = type;
1715 if (var_type == NULL)
1716 var_type = Type::lookup_bool_type();
1717 Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1719 Expression* present_var = Expression::make_var_reference(no, location);
1721 if (is_coloneq && !any_new)
1722 error_at(location, "variables redeclared but no variable is new");
1724 Statement* s = Statement::make_tuple_map_assignment(val_var, present_var,
1727 if (!this->gogo_->in_global_scope())
1728 this->gogo_->add_statement(s);
1729 else if (!val_no->is_sink())
1731 if (val_no->is_variable())
1732 val_no->var_value()->add_preinit_statement(this->gogo_, s);
1734 else if (!no->is_sink())
1736 if (no->is_variable())
1737 no->var_value()->add_preinit_statement(this->gogo_, s);
1741 // Execute the map index expression just so that we can fail if
1743 Named_object* dummy = this->create_dummy_global(Type::lookup_bool_type(),
1745 dummy->var_value()->add_preinit_statement(this->gogo_, s);
1751 // See if we need to initialize a pair of values from a receive
1752 // expression. This returns true if we have set up the variables and
1753 // the initialization.
1756 Parse::init_vars_from_receive(const Typed_identifier_list* vars, Type* type,
1757 Expression* expr, bool is_coloneq,
1760 Receive_expression* receive = expr->receive_expression();
1761 if (receive == NULL)
1763 if (vars->size() != 2)
1766 // This is a receive expression which is being assigned to two
1767 // variables. Declare the variables, and then assign the results of
1769 bool any_new = false;
1770 Typed_identifier_list::const_iterator p = vars->begin();
1771 Expression* init = type == NULL ? receive : NULL;
1772 Named_object* val_no = this->init_var(*p, type, init, is_coloneq,
1773 type == NULL, &any_new);
1774 if (type == NULL && any_new && val_no->is_variable())
1775 val_no->var_value()->set_type_from_init_tuple();
1776 Expression* val_var = Expression::make_var_reference(val_no, location);
1779 Type* var_type = type;
1780 if (var_type == NULL)
1781 var_type = Type::lookup_bool_type();
1782 Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1784 Expression* received_var = Expression::make_var_reference(no, location);
1786 if (is_coloneq && !any_new)
1787 error_at(location, "variables redeclared but no variable is new");
1789 Statement* s = Statement::make_tuple_receive_assignment(val_var,
1794 if (!this->gogo_->in_global_scope())
1795 this->gogo_->add_statement(s);
1796 else if (!val_no->is_sink())
1798 if (val_no->is_variable())
1799 val_no->var_value()->add_preinit_statement(this->gogo_, s);
1801 else if (!no->is_sink())
1803 if (no->is_variable())
1804 no->var_value()->add_preinit_statement(this->gogo_, s);
1808 Named_object* dummy = this->create_dummy_global(Type::lookup_bool_type(),
1810 dummy->var_value()->add_preinit_statement(this->gogo_, s);
1816 // See if we need to initialize a pair of values from a type guard
1817 // expression. This returns true if we have set up the variables and
1818 // the initialization.
1821 Parse::init_vars_from_type_guard(const Typed_identifier_list* vars,
1822 Type* type, Expression* expr,
1823 bool is_coloneq, Location location)
1825 Type_guard_expression* type_guard = expr->type_guard_expression();
1826 if (type_guard == NULL)
1828 if (vars->size() != 2)
1831 // This is a type guard expression which is being assigned to two
1832 // variables. Declare the variables, and then assign the results of
1834 bool any_new = false;
1835 Typed_identifier_list::const_iterator p = vars->begin();
1836 Type* var_type = type;
1837 if (var_type == NULL)
1838 var_type = type_guard->type();
1839 Named_object* val_no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1841 Expression* val_var = Expression::make_var_reference(val_no, location);
1845 if (var_type == NULL)
1846 var_type = Type::lookup_bool_type();
1847 Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1849 Expression* ok_var = Expression::make_var_reference(no, location);
1851 Expression* texpr = type_guard->expr();
1852 Type* t = type_guard->type();
1853 Statement* s = Statement::make_tuple_type_guard_assignment(val_var, ok_var,
1857 if (is_coloneq && !any_new)
1858 error_at(location, "variables redeclared but no variable is new");
1860 if (!this->gogo_->in_global_scope())
1861 this->gogo_->add_statement(s);
1862 else if (!val_no->is_sink())
1864 if (val_no->is_variable())
1865 val_no->var_value()->add_preinit_statement(this->gogo_, s);
1867 else if (!no->is_sink())
1869 if (no->is_variable())
1870 no->var_value()->add_preinit_statement(this->gogo_, s);
1874 Named_object* dummy = this->create_dummy_global(type, NULL, location);
1875 dummy->var_value()->add_preinit_statement(this->gogo_, s);
1881 // Create a single variable. If IS_COLONEQ is true, we permit
1882 // redeclarations in the same block, and we set *IS_NEW when we find a
1883 // new variable which is not a redeclaration.
1886 Parse::init_var(const Typed_identifier& tid, Type* type, Expression* init,
1887 bool is_coloneq, bool type_from_init, bool* is_new)
1889 Location location = tid.location();
1891 if (Gogo::is_sink_name(tid.name()))
1893 if (!type_from_init && init != NULL)
1895 if (this->gogo_->in_global_scope())
1896 return this->create_dummy_global(type, init, location);
1897 else if (type == NULL)
1898 this->gogo_->add_statement(Statement::make_statement(init, true));
1901 // With both a type and an initializer, create a dummy
1902 // variable so that we will check whether the
1903 // initializer can be assigned to the type.
1904 Variable* var = new Variable(type, init, false, false, false,
1909 snprintf(buf, sizeof buf, "sink$%d", count);
1911 return this->gogo_->add_variable(buf, var);
1915 this->gogo_->add_type_to_verify(type);
1916 return this->gogo_->add_sink();
1921 Named_object* no = this->gogo_->lookup_in_block(tid.name());
1923 && (no->is_variable() || no->is_result_variable()))
1925 // INIT may be NULL even when IS_COLONEQ is true for cases
1926 // like v, ok := x.(int).
1927 if (!type_from_init && init != NULL)
1929 Expression *v = Expression::make_var_reference(no, location);
1930 Statement *s = Statement::make_assignment(v, init, location);
1931 this->gogo_->add_statement(s);
1937 Variable* var = new Variable(type, init, this->gogo_->in_global_scope(),
1938 false, false, location);
1939 Named_object* no = this->gogo_->add_variable(tid.name(), var);
1940 if (!no->is_variable())
1942 // The name is already defined, so we just gave an error.
1943 return this->gogo_->add_sink();
1948 // Create a dummy global variable to force an initializer to be run in
1949 // the right place. This is used when a sink variable is initialized
1953 Parse::create_dummy_global(Type* type, Expression* init,
1956 if (type == NULL && init == NULL)
1957 type = Type::lookup_bool_type();
1958 Variable* var = new Variable(type, init, true, false, false, location);
1961 snprintf(buf, sizeof buf, "_.%d", count);
1963 return this->gogo_->add_variable(buf, var);
1966 // SimpleVarDecl = identifier ":=" Expression .
1968 // We've already seen the identifier.
1970 // FIXME: We also have to implement
1971 // IdentifierList ":=" ExpressionList
1972 // In order to support both "a, b := 1, 0" and "a, b = 1, 0" we accept
1973 // tuple assignments here as well.
1975 // If P_RANGE_CLAUSE is not NULL, then this will recognize a
1978 // If P_TYPE_SWITCH is not NULL, this will recognize a type switch
1979 // guard (var := expr.("type") using the literal keyword "type").
1982 Parse::simple_var_decl_or_assignment(const std::string& name,
1984 Range_clause* p_range_clause,
1985 Type_switch* p_type_switch)
1987 Typed_identifier_list til;
1988 til.push_back(Typed_identifier(name, NULL, location));
1990 // We've seen one identifier. If we see a comma now, this could be
1992 if (this->peek_token()->is_op(OPERATOR_COMMA))
1994 go_assert(p_type_switch == NULL);
1997 const Token* token = this->advance_token();
1998 if (!token->is_identifier())
2001 std::string id = token->identifier();
2002 bool is_id_exported = token->is_identifier_exported();
2003 Location id_location = token->location();
2005 token = this->advance_token();
2006 if (!token->is_op(OPERATOR_COMMA))
2008 if (token->is_op(OPERATOR_COLONEQ))
2010 id = this->gogo_->pack_hidden_name(id, is_id_exported);
2011 til.push_back(Typed_identifier(id, NULL, location));
2014 this->unget_token(Token::make_identifier_token(id,
2020 id = this->gogo_->pack_hidden_name(id, is_id_exported);
2021 til.push_back(Typed_identifier(id, NULL, location));
2024 // We have a comma separated list of identifiers in TIL. If the
2025 // next token is COLONEQ, then this is a simple var decl, and we
2026 // have the complete list of identifiers. If the next token is
2027 // not COLONEQ, then the only valid parse is a tuple assignment.
2028 // The list of identifiers we have so far is really a list of
2029 // expressions. There are more expressions following.
2031 if (!this->peek_token()->is_op(OPERATOR_COLONEQ))
2033 Expression_list* exprs = new Expression_list;
2034 for (Typed_identifier_list::const_iterator p = til.begin();
2037 exprs->push_back(this->id_to_expression(p->name(),
2040 Expression_list* more_exprs = this->expression_list(NULL, true);
2041 for (Expression_list::const_iterator p = more_exprs->begin();
2042 p != more_exprs->end();
2044 exprs->push_back(*p);
2047 this->tuple_assignment(exprs, p_range_clause);
2052 go_assert(this->peek_token()->is_op(OPERATOR_COLONEQ));
2053 const Token* token = this->advance_token();
2055 if (p_range_clause != NULL && token->is_keyword(KEYWORD_RANGE))
2057 this->range_clause_decl(&til, p_range_clause);
2061 Expression_list* init;
2062 if (p_type_switch == NULL)
2063 init = this->expression_list(NULL, false);
2066 bool is_type_switch = false;
2067 Expression* expr = this->expression(PRECEDENCE_NORMAL, false, true,
2071 p_type_switch->found = true;
2072 p_type_switch->name = name;
2073 p_type_switch->location = location;
2074 p_type_switch->expr = expr;
2078 if (!this->peek_token()->is_op(OPERATOR_COMMA))
2080 init = new Expression_list();
2081 init->push_back(expr);
2085 this->advance_token();
2086 init = this->expression_list(expr, false);
2090 this->init_vars(&til, NULL, init, true, location);
2093 // FunctionDecl = "func" identifier Signature [ Block ] .
2094 // MethodDecl = "func" Receiver identifier Signature [ Block ] .
2097 // FunctionDecl = "func" identifier Signature
2098 // __asm__ "(" string_lit ")" .
2099 // This extension means a function whose real name is the identifier
2103 Parse::function_decl()
2105 go_assert(this->peek_token()->is_keyword(KEYWORD_FUNC));
2106 Location location = this->location();
2107 const Token* token = this->advance_token();
2109 Typed_identifier* rec = NULL;
2110 if (token->is_op(OPERATOR_LPAREN))
2112 rec = this->receiver();
2113 token = this->peek_token();
2116 if (!token->is_identifier())
2118 error_at(this->location(), "expected function name");
2123 this->gogo_->pack_hidden_name(token->identifier(),
2124 token->is_identifier_exported());
2126 this->advance_token();
2128 Function_type* fntype = this->signature(rec, this->location());
2130 Named_object* named_object = NULL;
2132 if (this->peek_token()->is_keyword(KEYWORD_ASM))
2134 if (!this->advance_token()->is_op(OPERATOR_LPAREN))
2136 error_at(this->location(), "expected %<(%>");
2139 token = this->advance_token();
2140 if (!token->is_string())
2142 error_at(this->location(), "expected string");
2145 std::string asm_name = token->string_value();
2146 if (!this->advance_token()->is_op(OPERATOR_RPAREN))
2148 error_at(this->location(), "expected %<)%>");
2151 this->advance_token();
2152 if (!Gogo::is_sink_name(name))
2154 named_object = this->gogo_->declare_function(name, fntype, location);
2155 if (named_object->is_function_declaration())
2156 named_object->func_declaration_value()->set_asm_name(asm_name);
2160 // Check for the easy error of a newline before the opening brace.
2161 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
2163 Location semi_loc = this->location();
2164 if (this->advance_token()->is_op(OPERATOR_LCURLY))
2165 error_at(this->location(),
2166 "unexpected semicolon or newline before %<{%>");
2168 this->unget_token(Token::make_operator_token(OPERATOR_SEMICOLON,
2172 if (!this->peek_token()->is_op(OPERATOR_LCURLY))
2174 if (named_object == NULL && !Gogo::is_sink_name(name))
2177 this->gogo_->declare_function(name, fntype, location);
2179 this->gogo_->add_erroneous_name(name);
2184 bool hold_is_erroneous_function = this->is_erroneous_function_;
2187 fntype = Type::make_function_type(NULL, NULL, NULL, location);
2188 this->is_erroneous_function_ = true;
2189 if (!Gogo::is_sink_name(name))
2190 this->gogo_->add_erroneous_name(name);
2191 name = this->gogo_->pack_hidden_name("_", false);
2193 this->gogo_->start_function(name, fntype, true, location);
2194 Location end_loc = this->block();
2195 this->gogo_->finish_function(end_loc);
2196 this->is_erroneous_function_ = hold_is_erroneous_function;
2200 // Receiver = "(" [ identifier ] [ "*" ] BaseTypeName ")" .
2201 // BaseTypeName = identifier .
2206 go_assert(this->peek_token()->is_op(OPERATOR_LPAREN));
2209 const Token* token = this->advance_token();
2210 Location location = token->location();
2211 if (!token->is_op(OPERATOR_MULT))
2213 if (!token->is_identifier())
2215 error_at(this->location(), "method has no receiver");
2216 this->gogo_->mark_locals_used();
2217 while (!token->is_eof() && !token->is_op(OPERATOR_RPAREN))
2218 token = this->advance_token();
2219 if (!token->is_eof())
2220 this->advance_token();
2223 name = token->identifier();
2224 bool is_exported = token->is_identifier_exported();
2225 token = this->advance_token();
2226 if (!token->is_op(OPERATOR_DOT) && !token->is_op(OPERATOR_RPAREN))
2228 // An identifier followed by something other than a dot or a
2229 // right parenthesis must be a receiver name followed by a
2231 name = this->gogo_->pack_hidden_name(name, is_exported);
2235 // This must be a type name.
2236 this->unget_token(Token::make_identifier_token(name, is_exported,
2238 token = this->peek_token();
2243 // Here the receiver name is in NAME (it is empty if the receiver is
2244 // unnamed) and TOKEN is the first token in the type.
2246 bool is_pointer = false;
2247 if (token->is_op(OPERATOR_MULT))
2250 token = this->advance_token();
2253 if (!token->is_identifier())
2255 error_at(this->location(), "expected receiver name or type");
2256 this->gogo_->mark_locals_used();
2257 int c = token->is_op(OPERATOR_LPAREN) ? 1 : 0;
2258 while (!token->is_eof())
2260 token = this->advance_token();
2261 if (token->is_op(OPERATOR_LPAREN))
2263 else if (token->is_op(OPERATOR_RPAREN))
2270 if (!token->is_eof())
2271 this->advance_token();
2275 Type* type = this->type_name(true);
2277 if (is_pointer && !type->is_error_type())
2278 type = Type::make_pointer_type(type);
2280 if (this->peek_token()->is_op(OPERATOR_RPAREN))
2281 this->advance_token();
2284 if (this->peek_token()->is_op(OPERATOR_COMMA))
2285 error_at(this->location(), "method has multiple receivers");
2287 error_at(this->location(), "expected %<)%>");
2288 this->gogo_->mark_locals_used();
2289 while (!token->is_eof() && !token->is_op(OPERATOR_RPAREN))
2290 token = this->advance_token();
2291 if (!token->is_eof())
2292 this->advance_token();
2296 return new Typed_identifier(name, type, location);
2299 // Operand = Literal | QualifiedIdent | MethodExpr | "(" Expression ")" .
2300 // Literal = BasicLit | CompositeLit | FunctionLit .
2301 // BasicLit = int_lit | float_lit | imaginary_lit | char_lit | string_lit .
2303 // If MAY_BE_SINK is true, this operand may be "_".
2306 Parse::operand(bool may_be_sink)
2308 const Token* token = this->peek_token();
2310 switch (token->classification())
2312 case Token::TOKEN_IDENTIFIER:
2314 Location location = token->location();
2315 std::string id = token->identifier();
2316 bool is_exported = token->is_identifier_exported();
2317 std::string packed = this->gogo_->pack_hidden_name(id, is_exported);
2319 Named_object* in_function;
2320 Named_object* named_object = this->gogo_->lookup(packed, &in_function);
2322 Package* package = NULL;
2323 if (named_object != NULL && named_object->is_package())
2325 if (!this->advance_token()->is_op(OPERATOR_DOT)
2326 || !this->advance_token()->is_identifier())
2328 error_at(location, "unexpected reference to package");
2329 return Expression::make_error(location);
2331 package = named_object->package_value();
2332 package->set_used();
2333 id = this->peek_token()->identifier();
2334 is_exported = this->peek_token()->is_identifier_exported();
2335 packed = this->gogo_->pack_hidden_name(id, is_exported);
2336 named_object = package->lookup(packed);
2337 location = this->location();
2338 go_assert(in_function == NULL);
2341 this->advance_token();
2343 if (named_object != NULL
2344 && named_object->is_type()
2345 && !named_object->type_value()->is_visible())
2347 go_assert(package != NULL);
2348 error_at(location, "invalid reference to hidden type %<%s.%s%>",
2349 Gogo::message_name(package->name()).c_str(),
2350 Gogo::message_name(id).c_str());
2351 return Expression::make_error(location);
2355 if (named_object == NULL)
2357 if (package != NULL)
2359 std::string n1 = Gogo::message_name(package->name());
2360 std::string n2 = Gogo::message_name(id);
2363 ("invalid reference to unexported identifier "
2365 n1.c_str(), n2.c_str());
2368 "reference to undefined identifier %<%s.%s%>",
2369 n1.c_str(), n2.c_str());
2370 return Expression::make_error(location);
2373 named_object = this->gogo_->add_unknown_name(packed, location);
2376 if (in_function != NULL
2377 && in_function != this->gogo_->current_function()
2378 && (named_object->is_variable()
2379 || named_object->is_result_variable()))
2380 return this->enclosing_var_reference(in_function, named_object,
2383 switch (named_object->classification())
2385 case Named_object::NAMED_OBJECT_CONST:
2386 return Expression::make_const_reference(named_object, location);
2387 case Named_object::NAMED_OBJECT_TYPE:
2388 return Expression::make_type(named_object->type_value(), location);
2389 case Named_object::NAMED_OBJECT_TYPE_DECLARATION:
2391 Type* t = Type::make_forward_declaration(named_object);
2392 return Expression::make_type(t, location);
2394 case Named_object::NAMED_OBJECT_VAR:
2395 case Named_object::NAMED_OBJECT_RESULT_VAR:
2396 this->mark_var_used(named_object);
2397 return Expression::make_var_reference(named_object, location);
2398 case Named_object::NAMED_OBJECT_SINK:
2400 return Expression::make_sink(location);
2403 error_at(location, "cannot use _ as value");
2404 return Expression::make_error(location);
2406 case Named_object::NAMED_OBJECT_FUNC:
2407 case Named_object::NAMED_OBJECT_FUNC_DECLARATION:
2408 return Expression::make_func_reference(named_object, NULL,
2410 case Named_object::NAMED_OBJECT_UNKNOWN:
2412 Unknown_expression* ue =
2413 Expression::make_unknown_reference(named_object, location);
2414 if (this->is_erroneous_function_)
2415 ue->set_no_error_message();
2418 case Named_object::NAMED_OBJECT_ERRONEOUS:
2419 return Expression::make_error(location);
2426 case Token::TOKEN_STRING:
2427 ret = Expression::make_string(token->string_value(), token->location());
2428 this->advance_token();
2431 case Token::TOKEN_CHARACTER:
2432 ret = Expression::make_character(token->character_value(), NULL,
2434 this->advance_token();
2437 case Token::TOKEN_INTEGER:
2438 ret = Expression::make_integer(token->integer_value(), NULL,
2440 this->advance_token();
2443 case Token::TOKEN_FLOAT:
2444 ret = Expression::make_float(token->float_value(), NULL,
2446 this->advance_token();
2449 case Token::TOKEN_IMAGINARY:
2452 mpfr_init_set_ui(zero, 0, GMP_RNDN);
2453 ret = Expression::make_complex(&zero, token->imaginary_value(),
2454 NULL, token->location());
2456 this->advance_token();
2460 case Token::TOKEN_KEYWORD:
2461 switch (token->keyword())
2464 return this->function_lit();
2466 case KEYWORD_INTERFACE:
2468 case KEYWORD_STRUCT:
2470 Location location = token->location();
2471 return Expression::make_type(this->type(), location);
2478 case Token::TOKEN_OPERATOR:
2479 if (token->is_op(OPERATOR_LPAREN))
2481 this->advance_token();
2482 ret = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2483 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
2484 error_at(this->location(), "missing %<)%>");
2486 this->advance_token();
2489 else if (token->is_op(OPERATOR_LSQUARE))
2491 // Here we call array_type directly, as this is the only
2492 // case where an ellipsis is permitted for an array type.
2493 Location location = token->location();
2494 return Expression::make_type(this->array_type(true), location);
2502 error_at(this->location(), "expected operand");
2503 return Expression::make_error(this->location());
2506 // Handle a reference to a variable in an enclosing function. We add
2507 // it to a list of such variables. We return a reference to a field
2508 // in a struct which will be passed on the static chain when calling
2509 // the current function.
2512 Parse::enclosing_var_reference(Named_object* in_function, Named_object* var,
2515 go_assert(var->is_variable() || var->is_result_variable());
2517 this->mark_var_used(var);
2519 Named_object* this_function = this->gogo_->current_function();
2520 Named_object* closure = this_function->func_value()->closure_var();
2522 Enclosing_var ev(var, in_function, this->enclosing_vars_.size());
2523 std::pair<Enclosing_vars::iterator, bool> ins =
2524 this->enclosing_vars_.insert(ev);
2527 // This is a variable we have not seen before. Add a new field
2528 // to the closure type.
2529 this_function->func_value()->add_closure_field(var, location);
2532 Expression* closure_ref = Expression::make_var_reference(closure,
2534 closure_ref = Expression::make_unary(OPERATOR_MULT, closure_ref, location);
2536 // The closure structure holds pointers to the variables, so we need
2537 // to introduce an indirection.
2538 Expression* e = Expression::make_field_reference(closure_ref,
2541 e = Expression::make_unary(OPERATOR_MULT, e, location);
2545 // CompositeLit = LiteralType LiteralValue .
2546 // LiteralType = StructType | ArrayType | "[" "..." "]" ElementType |
2547 // SliceType | MapType | TypeName .
2548 // LiteralValue = "{" [ ElementList [ "," ] ] "}" .
2549 // ElementList = Element { "," Element } .
2550 // Element = [ Key ":" ] Value .
2551 // Key = FieldName | ElementIndex .
2552 // FieldName = identifier .
2553 // ElementIndex = Expression .
2554 // Value = Expression | LiteralValue .
2556 // We have already seen the type if there is one, and we are now
2557 // looking at the LiteralValue. The case "[" "..." "]" ElementType
2558 // will be seen here as an array type whose length is "nil". The
2559 // DEPTH parameter is non-zero if this is an embedded composite
2560 // literal and the type was omitted. It gives the number of steps up
2561 // to the type which was provided. E.g., in [][]int{{1}} it will be
2562 // 1. In [][][]int{{{1}}} it will be 2.
2565 Parse::composite_lit(Type* type, int depth, Location location)
2567 go_assert(this->peek_token()->is_op(OPERATOR_LCURLY));
2568 this->advance_token();
2570 if (this->peek_token()->is_op(OPERATOR_RCURLY))
2572 this->advance_token();
2573 return Expression::make_composite_literal(type, depth, false, NULL,
2577 bool has_keys = false;
2578 Expression_list* vals = new Expression_list;
2582 bool is_type_omitted = false;
2584 const Token* token = this->peek_token();
2586 if (token->is_identifier())
2588 std::string identifier = token->identifier();
2589 bool is_exported = token->is_identifier_exported();
2590 Location location = token->location();
2592 if (this->advance_token()->is_op(OPERATOR_COLON))
2594 // This may be a field name. We don't know for sure--it
2595 // could also be an expression for an array index. We
2596 // don't want to parse it as an expression because may
2597 // trigger various errors, e.g., if this identifier
2598 // happens to be the name of a package.
2599 Gogo* gogo = this->gogo_;
2600 val = this->id_to_expression(gogo->pack_hidden_name(identifier,
2606 this->unget_token(Token::make_identifier_token(identifier,
2609 val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2612 else if (!token->is_op(OPERATOR_LCURLY))
2613 val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2616 // This must be a composite literal inside another composite
2617 // literal, with the type omitted for the inner one.
2618 val = this->composite_lit(type, depth + 1, token->location());
2619 is_type_omitted = true;
2622 token = this->peek_token();
2623 if (!token->is_op(OPERATOR_COLON))
2626 vals->push_back(NULL);
2630 if (is_type_omitted && !val->is_error_expression())
2632 error_at(this->location(), "unexpected %<:%>");
2633 val = Expression::make_error(this->location());
2636 this->advance_token();
2638 if (!has_keys && !vals->empty())
2640 Expression_list* newvals = new Expression_list;
2641 for (Expression_list::const_iterator p = vals->begin();
2645 newvals->push_back(NULL);
2646 newvals->push_back(*p);
2653 if (val->unknown_expression() != NULL)
2654 val->unknown_expression()->set_is_composite_literal_key();
2656 vals->push_back(val);
2658 if (!token->is_op(OPERATOR_LCURLY))
2659 val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2662 // This must be a composite literal inside another
2663 // composite literal, with the type omitted for the
2665 val = this->composite_lit(type, depth + 1, token->location());
2668 token = this->peek_token();
2671 vals->push_back(val);
2673 if (token->is_op(OPERATOR_COMMA))
2675 if (this->advance_token()->is_op(OPERATOR_RCURLY))
2677 this->advance_token();
2681 else if (token->is_op(OPERATOR_RCURLY))
2683 this->advance_token();
2688 error_at(this->location(), "expected %<,%> or %<}%>");
2690 this->gogo_->mark_locals_used();
2692 while (!token->is_eof()
2693 && (depth > 0 || !token->is_op(OPERATOR_RCURLY)))
2695 if (token->is_op(OPERATOR_LCURLY))
2697 else if (token->is_op(OPERATOR_RCURLY))
2699 token = this->advance_token();
2701 if (token->is_op(OPERATOR_RCURLY))
2702 this->advance_token();
2704 return Expression::make_error(location);
2708 return Expression::make_composite_literal(type, depth, has_keys, vals,
2712 // FunctionLit = "func" Signature Block .
2715 Parse::function_lit()
2717 Location location = this->location();
2718 go_assert(this->peek_token()->is_keyword(KEYWORD_FUNC));
2719 this->advance_token();
2721 Enclosing_vars hold_enclosing_vars;
2722 hold_enclosing_vars.swap(this->enclosing_vars_);
2724 Function_type* type = this->signature(NULL, location);
2725 bool fntype_is_error = false;
2728 type = Type::make_function_type(NULL, NULL, NULL, location);
2729 fntype_is_error = true;
2732 // For a function literal, the next token must be a '{'. If we
2733 // don't see that, then we may have a type expression.
2734 if (!this->peek_token()->is_op(OPERATOR_LCURLY))
2735 return Expression::make_type(type, location);
2737 bool hold_is_erroneous_function = this->is_erroneous_function_;
2738 if (fntype_is_error)
2739 this->is_erroneous_function_ = true;
2741 Bc_stack* hold_break_stack = this->break_stack_;
2742 Bc_stack* hold_continue_stack = this->continue_stack_;
2743 this->break_stack_ = NULL;
2744 this->continue_stack_ = NULL;
2746 Named_object* no = this->gogo_->start_function("", type, true, location);
2748 Location end_loc = this->block();
2750 this->gogo_->finish_function(end_loc);
2752 if (this->break_stack_ != NULL)
2753 delete this->break_stack_;
2754 if (this->continue_stack_ != NULL)
2755 delete this->continue_stack_;
2756 this->break_stack_ = hold_break_stack;
2757 this->continue_stack_ = hold_continue_stack;
2759 this->is_erroneous_function_ = hold_is_erroneous_function;
2761 hold_enclosing_vars.swap(this->enclosing_vars_);
2763 Expression* closure = this->create_closure(no, &hold_enclosing_vars,
2766 return Expression::make_func_reference(no, closure, location);
2769 // Create a closure for the nested function FUNCTION. This is based
2770 // on ENCLOSING_VARS, which is a list of all variables defined in
2771 // enclosing functions and referenced from FUNCTION. A closure is the
2772 // address of a struct which contains the addresses of all the
2773 // referenced variables. This returns NULL if no closure is required.
2776 Parse::create_closure(Named_object* function, Enclosing_vars* enclosing_vars,
2779 if (enclosing_vars->empty())
2782 // Get the variables in order by their field index.
2784 size_t enclosing_var_count = enclosing_vars->size();
2785 std::vector<Enclosing_var> ev(enclosing_var_count);
2786 for (Enclosing_vars::const_iterator p = enclosing_vars->begin();
2787 p != enclosing_vars->end();
2789 ev[p->index()] = *p;
2791 // Build an initializer for a composite literal of the closure's
2794 Named_object* enclosing_function = this->gogo_->current_function();
2795 Expression_list* initializer = new Expression_list;
2796 for (size_t i = 0; i < enclosing_var_count; ++i)
2798 go_assert(ev[i].index() == i);
2799 Named_object* var = ev[i].var();
2801 if (ev[i].in_function() == enclosing_function)
2802 ref = Expression::make_var_reference(var, location);
2804 ref = this->enclosing_var_reference(ev[i].in_function(), var,
2806 Expression* refaddr = Expression::make_unary(OPERATOR_AND, ref,
2808 initializer->push_back(refaddr);
2811 Named_object* closure_var = function->func_value()->closure_var();
2812 Struct_type* st = closure_var->var_value()->type()->deref()->struct_type();
2813 Expression* cv = Expression::make_struct_composite_literal(st, initializer,
2815 return Expression::make_heap_composite(cv, location);
2818 // PrimaryExpr = Operand { Selector | Index | Slice | TypeGuard | Call } .
2820 // If MAY_BE_SINK is true, this expression may be "_".
2822 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
2825 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
2826 // guard (var := expr.("type") using the literal keyword "type").
2829 Parse::primary_expr(bool may_be_sink, bool may_be_composite_lit,
2830 bool* is_type_switch)
2832 Location start_loc = this->location();
2833 bool is_parenthesized = this->peek_token()->is_op(OPERATOR_LPAREN);
2835 Expression* ret = this->operand(may_be_sink);
2837 // An unknown name followed by a curly brace must be a composite
2838 // literal, and the unknown name must be a type.
2839 if (may_be_composite_lit
2840 && !is_parenthesized
2841 && ret->unknown_expression() != NULL
2842 && this->peek_token()->is_op(OPERATOR_LCURLY))
2844 Named_object* no = ret->unknown_expression()->named_object();
2845 Type* type = Type::make_forward_declaration(no);
2846 ret = Expression::make_type(type, ret->location());
2849 // We handle composite literals and type casts here, as it is the
2850 // easiest way to handle types which are in parentheses, as in
2852 if (ret->is_type_expression())
2854 if (this->peek_token()->is_op(OPERATOR_LCURLY))
2856 if (is_parenthesized)
2858 "cannot parenthesize type in composite literal");
2859 ret = this->composite_lit(ret->type(), 0, ret->location());
2861 else if (this->peek_token()->is_op(OPERATOR_LPAREN))
2863 Location loc = this->location();
2864 this->advance_token();
2865 Expression* expr = this->expression(PRECEDENCE_NORMAL, false, true,
2867 if (this->peek_token()->is_op(OPERATOR_ELLIPSIS))
2869 error_at(this->location(),
2870 "invalid use of %<...%> in type conversion");
2871 this->advance_token();
2873 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
2874 error_at(this->location(), "expected %<)%>");
2876 this->advance_token();
2877 if (expr->is_error_expression())
2881 Type* t = ret->type();
2882 if (t->classification() == Type::TYPE_ARRAY
2883 && t->array_type()->length() != NULL
2884 && t->array_type()->length()->is_nil_expression())
2886 error_at(ret->location(),
2887 "invalid use of %<...%> in type conversion");
2888 ret = Expression::make_error(loc);
2891 ret = Expression::make_cast(t, expr, loc);
2898 const Token* token = this->peek_token();
2899 if (token->is_op(OPERATOR_LPAREN))
2900 ret = this->call(this->verify_not_sink(ret));
2901 else if (token->is_op(OPERATOR_DOT))
2903 ret = this->selector(this->verify_not_sink(ret), is_type_switch);
2904 if (is_type_switch != NULL && *is_type_switch)
2907 else if (token->is_op(OPERATOR_LSQUARE))
2908 ret = this->index(this->verify_not_sink(ret));
2916 // Selector = "." identifier .
2917 // TypeGuard = "." "(" QualifiedIdent ")" .
2919 // Note that Operand can expand to QualifiedIdent, which contains a
2920 // ".". That is handled directly in operand when it sees a package
2923 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
2924 // guard (var := expr.("type") using the literal keyword "type").
2927 Parse::selector(Expression* left, bool* is_type_switch)
2929 go_assert(this->peek_token()->is_op(OPERATOR_DOT));
2930 Location location = this->location();
2932 const Token* token = this->advance_token();
2933 if (token->is_identifier())
2935 // This could be a field in a struct, or a method in an
2936 // interface, or a method associated with a type. We can't know
2937 // which until we have seen all the types.
2939 this->gogo_->pack_hidden_name(token->identifier(),
2940 token->is_identifier_exported());
2941 if (token->identifier() == "_")
2943 error_at(this->location(), "invalid use of %<_%>");
2944 name = this->gogo_->pack_hidden_name("blank", false);
2946 this->advance_token();
2947 return Expression::make_selector(left, name, location);
2949 else if (token->is_op(OPERATOR_LPAREN))
2951 this->advance_token();
2953 if (!this->peek_token()->is_keyword(KEYWORD_TYPE))
2954 type = this->type();
2957 if (is_type_switch != NULL)
2958 *is_type_switch = true;
2961 error_at(this->location(),
2962 "use of %<.(type)%> outside type switch");
2963 type = Type::make_error_type();
2965 this->advance_token();
2967 if (!this->peek_token()->is_op(OPERATOR_RPAREN))
2968 error_at(this->location(), "missing %<)%>");
2970 this->advance_token();
2971 if (is_type_switch != NULL && *is_type_switch)
2973 return Expression::make_type_guard(left, type, location);
2977 error_at(this->location(), "expected identifier or %<(%>");
2982 // Index = "[" Expression "]" .
2983 // Slice = "[" Expression ":" [ Expression ] "]" .
2986 Parse::index(Expression* expr)
2988 Location location = this->location();
2989 go_assert(this->peek_token()->is_op(OPERATOR_LSQUARE));
2990 this->advance_token();
2993 if (!this->peek_token()->is_op(OPERATOR_COLON))
2994 start = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2998 mpz_init_set_ui(zero, 0);
2999 start = Expression::make_integer(&zero, NULL, location);
3003 Expression* end = NULL;
3004 if (this->peek_token()->is_op(OPERATOR_COLON))
3006 // We use nil to indicate a missing high expression.
3007 if (this->advance_token()->is_op(OPERATOR_RSQUARE))
3008 end = Expression::make_nil(this->location());
3010 end = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
3012 if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
3013 error_at(this->location(), "missing %<]%>");
3015 this->advance_token();
3016 return Expression::make_index(expr, start, end, location);
3019 // Call = "(" [ ArgumentList [ "," ] ] ")" .
3020 // ArgumentList = ExpressionList [ "..." ] .
3023 Parse::call(Expression* func)
3025 go_assert(this->peek_token()->is_op(OPERATOR_LPAREN));
3026 Expression_list* args = NULL;
3027 bool is_varargs = false;
3028 const Token* token = this->advance_token();
3029 if (!token->is_op(OPERATOR_RPAREN))
3031 args = this->expression_list(NULL, false);
3032 token = this->peek_token();
3033 if (token->is_op(OPERATOR_ELLIPSIS))
3036 token = this->advance_token();
3039 if (token->is_op(OPERATOR_COMMA))
3040 token = this->advance_token();
3041 if (!token->is_op(OPERATOR_RPAREN))
3042 error_at(this->location(), "missing %<)%>");
3044 this->advance_token();
3045 if (func->is_error_expression())
3047 return Expression::make_call(func, args, is_varargs, func->location());
3050 // Return an expression for a single unqualified identifier.
3053 Parse::id_to_expression(const std::string& name, Location location)
3055 Named_object* in_function;
3056 Named_object* named_object = this->gogo_->lookup(name, &in_function);
3057 if (named_object == NULL)
3058 named_object = this->gogo_->add_unknown_name(name, location);
3060 if (in_function != NULL
3061 && in_function != this->gogo_->current_function()
3062 && (named_object->is_variable() || named_object->is_result_variable()))
3063 return this->enclosing_var_reference(in_function, named_object,
3066 switch (named_object->classification())
3068 case Named_object::NAMED_OBJECT_CONST:
3069 return Expression::make_const_reference(named_object, location);
3070 case Named_object::NAMED_OBJECT_VAR:
3071 case Named_object::NAMED_OBJECT_RESULT_VAR:
3072 this->mark_var_used(named_object);
3073 return Expression::make_var_reference(named_object, location);
3074 case Named_object::NAMED_OBJECT_SINK:
3075 return Expression::make_sink(location);
3076 case Named_object::NAMED_OBJECT_FUNC:
3077 case Named_object::NAMED_OBJECT_FUNC_DECLARATION:
3078 return Expression::make_func_reference(named_object, NULL, location);
3079 case Named_object::NAMED_OBJECT_UNKNOWN:
3081 Unknown_expression* ue =
3082 Expression::make_unknown_reference(named_object, location);
3083 if (this->is_erroneous_function_)
3084 ue->set_no_error_message();
3087 case Named_object::NAMED_OBJECT_PACKAGE:
3088 case Named_object::NAMED_OBJECT_TYPE:
3089 case Named_object::NAMED_OBJECT_TYPE_DECLARATION:
3091 // These cases can arise for a field name in a composite
3093 Unknown_expression* ue =
3094 Expression::make_unknown_reference(named_object, location);
3095 if (this->is_erroneous_function_)
3096 ue->set_no_error_message();
3099 case Named_object::NAMED_OBJECT_ERRONEOUS:
3100 return Expression::make_error(location);
3102 error_at(this->location(), "unexpected type of identifier");
3103 return Expression::make_error(location);
3107 // Expression = UnaryExpr { binary_op Expression } .
3109 // PRECEDENCE is the precedence of the current operator.
3111 // If MAY_BE_SINK is true, this expression may be "_".
3113 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
3116 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
3117 // guard (var := expr.("type") using the literal keyword "type").
3120 Parse::expression(Precedence precedence, bool may_be_sink,
3121 bool may_be_composite_lit, bool* is_type_switch)
3123 Expression* left = this->unary_expr(may_be_sink, may_be_composite_lit,
3128 if (is_type_switch != NULL && *is_type_switch)
3131 const Token* token = this->peek_token();
3132 if (token->classification() != Token::TOKEN_OPERATOR)
3138 Precedence right_precedence;
3139 switch (token->op())
3142 right_precedence = PRECEDENCE_OROR;
3144 case OPERATOR_ANDAND:
3145 right_precedence = PRECEDENCE_ANDAND;
3148 case OPERATOR_NOTEQ:
3153 right_precedence = PRECEDENCE_RELOP;
3156 case OPERATOR_MINUS:
3159 right_precedence = PRECEDENCE_ADDOP;
3164 case OPERATOR_LSHIFT:
3165 case OPERATOR_RSHIFT:
3167 case OPERATOR_BITCLEAR:
3168 right_precedence = PRECEDENCE_MULOP;
3171 right_precedence = PRECEDENCE_INVALID;
3175 if (right_precedence == PRECEDENCE_INVALID)
3181 Operator op = token->op();
3182 Location binop_location = token->location();
3184 if (precedence >= right_precedence)
3186 // We've already seen A * B, and we see + C. We want to
3187 // return so that A * B becomes a group.
3191 this->advance_token();
3193 left = this->verify_not_sink(left);
3194 Expression* right = this->expression(right_precedence, false,
3195 may_be_composite_lit,
3197 left = Expression::make_binary(op, left, right, binop_location);
3202 Parse::expression_may_start_here()
3204 const Token* token = this->peek_token();
3205 switch (token->classification())
3207 case Token::TOKEN_INVALID:
3208 case Token::TOKEN_EOF:
3210 case Token::TOKEN_KEYWORD:
3211 switch (token->keyword())
3216 case KEYWORD_STRUCT:
3217 case KEYWORD_INTERFACE:
3222 case Token::TOKEN_IDENTIFIER:
3224 case Token::TOKEN_STRING:
3226 case Token::TOKEN_OPERATOR:
3227 switch (token->op())
3230 case OPERATOR_MINUS:
3234 case OPERATOR_CHANOP:
3236 case OPERATOR_LPAREN:
3237 case OPERATOR_LSQUARE:
3242 case Token::TOKEN_CHARACTER:
3243 case Token::TOKEN_INTEGER:
3244 case Token::TOKEN_FLOAT:
3245 case Token::TOKEN_IMAGINARY:
3252 // UnaryExpr = unary_op UnaryExpr | PrimaryExpr .
3254 // If MAY_BE_SINK is true, this expression may be "_".
3256 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
3259 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
3260 // guard (var := expr.("type") using the literal keyword "type").
3263 Parse::unary_expr(bool may_be_sink, bool may_be_composite_lit,
3264 bool* is_type_switch)
3266 const Token* token = this->peek_token();
3267 if (token->is_op(OPERATOR_PLUS)
3268 || token->is_op(OPERATOR_MINUS)
3269 || token->is_op(OPERATOR_NOT)
3270 || token->is_op(OPERATOR_XOR)
3271 || token->is_op(OPERATOR_CHANOP)
3272 || token->is_op(OPERATOR_MULT)
3273 || token->is_op(OPERATOR_AND))
3275 Location location = token->location();
3276 Operator op = token->op();
3277 this->advance_token();
3279 if (op == OPERATOR_CHANOP
3280 && this->peek_token()->is_keyword(KEYWORD_CHAN))
3282 // This is "<- chan" which must be the start of a type.
3283 this->unget_token(Token::make_operator_token(op, location));
3284 return Expression::make_type(this->type(), location);
3287 Expression* expr = this->unary_expr(false, may_be_composite_lit, NULL);
3288 if (expr->is_error_expression())
3290 else if (op == OPERATOR_MULT && expr->is_type_expression())
3291 expr = Expression::make_type(Type::make_pointer_type(expr->type()),
3293 else if (op == OPERATOR_AND && expr->is_composite_literal())
3294 expr = Expression::make_heap_composite(expr, location);
3295 else if (op != OPERATOR_CHANOP)
3296 expr = Expression::make_unary(op, expr, location);
3298 expr = Expression::make_receive(expr, location);
3302 return this->primary_expr(may_be_sink, may_be_composite_lit,
3307 // Declaration | LabeledStmt | SimpleStmt |
3308 // GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt |
3309 // FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt |
3312 // LABEL is the label of this statement if it has one.
3315 Parse::statement(Label* label)
3317 const Token* token = this->peek_token();
3318 switch (token->classification())
3320 case Token::TOKEN_KEYWORD:
3322 switch (token->keyword())
3327 this->declaration();
3331 case KEYWORD_STRUCT:
3332 case KEYWORD_INTERFACE:
3333 this->simple_stat(true, NULL, NULL, NULL);
3337 this->go_or_defer_stat();
3339 case KEYWORD_RETURN:
3340 this->return_stat();
3345 case KEYWORD_CONTINUE:
3346 this->continue_stat();
3354 case KEYWORD_SWITCH:
3355 this->switch_stat(label);
3357 case KEYWORD_SELECT:
3358 this->select_stat(label);
3361 this->for_stat(label);
3364 error_at(this->location(), "expected statement");
3365 this->advance_token();
3371 case Token::TOKEN_IDENTIFIER:
3373 std::string identifier = token->identifier();
3374 bool is_exported = token->is_identifier_exported();
3375 Location location = token->location();
3376 if (this->advance_token()->is_op(OPERATOR_COLON))
3378 this->advance_token();
3379 this->labeled_stmt(identifier, location);
3383 this->unget_token(Token::make_identifier_token(identifier,
3386 this->simple_stat(true, NULL, NULL, NULL);
3391 case Token::TOKEN_OPERATOR:
3392 if (token->is_op(OPERATOR_LCURLY))
3394 Location location = token->location();
3395 this->gogo_->start_block(location);
3396 Location end_loc = this->block();
3397 this->gogo_->add_block(this->gogo_->finish_block(end_loc),
3400 else if (!token->is_op(OPERATOR_SEMICOLON))
3401 this->simple_stat(true, NULL, NULL, NULL);
3404 case Token::TOKEN_STRING:
3405 case Token::TOKEN_CHARACTER:
3406 case Token::TOKEN_INTEGER:
3407 case Token::TOKEN_FLOAT:
3408 case Token::TOKEN_IMAGINARY:
3409 this->simple_stat(true, NULL, NULL, NULL);
3413 error_at(this->location(), "expected statement");
3414 this->advance_token();
3420 Parse::statement_may_start_here()
3422 const Token* token = this->peek_token();
3423 switch (token->classification())
3425 case Token::TOKEN_KEYWORD:
3427 switch (token->keyword())
3434 case KEYWORD_STRUCT:
3435 case KEYWORD_INTERFACE:
3438 case KEYWORD_RETURN:
3440 case KEYWORD_CONTINUE:
3443 case KEYWORD_SWITCH:
3444 case KEYWORD_SELECT:
3454 case Token::TOKEN_IDENTIFIER:
3457 case Token::TOKEN_OPERATOR:
3458 if (token->is_op(OPERATOR_LCURLY)
3459 || token->is_op(OPERATOR_SEMICOLON))
3462 return this->expression_may_start_here();
3464 case Token::TOKEN_STRING:
3465 case Token::TOKEN_CHARACTER:
3466 case Token::TOKEN_INTEGER:
3467 case Token::TOKEN_FLOAT:
3468 case Token::TOKEN_IMAGINARY:
3476 // LabeledStmt = Label ":" Statement .
3477 // Label = identifier .
3480 Parse::labeled_stmt(const std::string& label_name, Location location)
3482 Label* label = this->gogo_->add_label_definition(label_name, location);
3484 if (this->peek_token()->is_op(OPERATOR_RCURLY))
3486 // This is a label at the end of a block. A program is
3487 // permitted to omit a semicolon here.
3491 if (!this->statement_may_start_here())
3493 // Mark the label as used to avoid a useless error about an
3495 label->set_is_used();
3497 error_at(location, "missing statement after label");
3498 this->unget_token(Token::make_operator_token(OPERATOR_SEMICOLON,
3503 this->statement(label);
3506 // SimpleStmt = EmptyStmt | ExpressionStmt | SendStmt | IncDecStmt |
3507 // Assignment | ShortVarDecl .
3509 // EmptyStmt was handled in Parse::statement.
3511 // In order to make this work for if and switch statements, if
3512 // RETURN_EXP is not NULL, and we see an ExpressionStat, we return the
3513 // expression rather than adding an expression statement to the
3514 // current block. If we see something other than an ExpressionStat,
3515 // we add the statement, set *RETURN_EXP to true if we saw a send
3516 // statement, and return NULL. The handling of send statements is for
3517 // better error messages.
3519 // If P_RANGE_CLAUSE is not NULL, then this will recognize a
3522 // If P_TYPE_SWITCH is not NULL, this will recognize a type switch
3523 // guard (var := expr.("type") using the literal keyword "type").
3526 Parse::simple_stat(bool may_be_composite_lit, bool* return_exp,
3527 Range_clause* p_range_clause, Type_switch* p_type_switch)
3529 const Token* token = this->peek_token();
3531 // An identifier follow by := is a SimpleVarDecl.
3532 if (token->is_identifier())
3534 std::string identifier = token->identifier();
3535 bool is_exported = token->is_identifier_exported();
3536 Location location = token->location();
3538 token = this->advance_token();
3539 if (token->is_op(OPERATOR_COLONEQ)
3540 || token->is_op(OPERATOR_COMMA))
3542 identifier = this->gogo_->pack_hidden_name(identifier, is_exported);
3543 this->simple_var_decl_or_assignment(identifier, location,
3545 (token->is_op(OPERATOR_COLONEQ)
3551 this->unget_token(Token::make_identifier_token(identifier, is_exported,
3555 Expression* exp = this->expression(PRECEDENCE_NORMAL, true,
3556 may_be_composite_lit,
3557 (p_type_switch == NULL
3559 : &p_type_switch->found));
3560 if (p_type_switch != NULL && p_type_switch->found)
3562 p_type_switch->name.clear();
3563 p_type_switch->location = exp->location();
3564 p_type_switch->expr = this->verify_not_sink(exp);
3567 token = this->peek_token();
3568 if (token->is_op(OPERATOR_CHANOP))
3570 this->send_stmt(this->verify_not_sink(exp));
3571 if (return_exp != NULL)
3574 else if (token->is_op(OPERATOR_PLUSPLUS)
3575 || token->is_op(OPERATOR_MINUSMINUS))
3576 this->inc_dec_stat(this->verify_not_sink(exp));
3577 else if (token->is_op(OPERATOR_COMMA)
3578 || token->is_op(OPERATOR_EQ))
3579 this->assignment(exp, p_range_clause);
3580 else if (token->is_op(OPERATOR_PLUSEQ)
3581 || token->is_op(OPERATOR_MINUSEQ)
3582 || token->is_op(OPERATOR_OREQ)
3583 || token->is_op(OPERATOR_XOREQ)
3584 || token->is_op(OPERATOR_MULTEQ)
3585 || token->is_op(OPERATOR_DIVEQ)
3586 || token->is_op(OPERATOR_MODEQ)
3587 || token->is_op(OPERATOR_LSHIFTEQ)
3588 || token->is_op(OPERATOR_RSHIFTEQ)
3589 || token->is_op(OPERATOR_ANDEQ)
3590 || token->is_op(OPERATOR_BITCLEAREQ))
3591 this->assignment(this->verify_not_sink(exp), p_range_clause);
3592 else if (return_exp != NULL)
3593 return this->verify_not_sink(exp);
3596 exp = this->verify_not_sink(exp);
3598 if (token->is_op(OPERATOR_COLONEQ))
3600 if (!exp->is_error_expression())
3601 error_at(token->location(), "non-name on left side of %<:=%>");
3602 this->gogo_->mark_locals_used();
3603 while (!token->is_op(OPERATOR_SEMICOLON)
3604 && !token->is_eof())
3605 token = this->advance_token();
3609 this->expression_stat(exp);
3616 Parse::simple_stat_may_start_here()
3618 return this->expression_may_start_here();
3621 // Parse { Statement ";" } which is used in a few places. The list of
3622 // statements may end with a right curly brace, in which case the
3623 // semicolon may be omitted.
3626 Parse::statement_list()
3628 while (this->statement_may_start_here())
3630 this->statement(NULL);
3631 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
3632 this->advance_token();
3633 else if (this->peek_token()->is_op(OPERATOR_RCURLY))
3637 if (!this->peek_token()->is_eof() || !saw_errors())
3638 error_at(this->location(), "expected %<;%> or %<}%> or newline");
3639 if (!this->skip_past_error(OPERATOR_RCURLY))
3646 Parse::statement_list_may_start_here()
3648 return this->statement_may_start_here();
3651 // ExpressionStat = Expression .
3654 Parse::expression_stat(Expression* exp)
3656 this->gogo_->add_statement(Statement::make_statement(exp, false));
3659 // SendStmt = Channel "<-" Expression .
3660 // Channel = Expression .
3663 Parse::send_stmt(Expression* channel)
3665 go_assert(this->peek_token()->is_op(OPERATOR_CHANOP));
3666 Location loc = this->location();
3667 this->advance_token();
3668 Expression* val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
3669 Statement* s = Statement::make_send_statement(channel, val, loc);
3670 this->gogo_->add_statement(s);
3673 // IncDecStat = Expression ( "++" | "--" ) .
3676 Parse::inc_dec_stat(Expression* exp)
3678 const Token* token = this->peek_token();
3680 // Lvalue maps require special handling.
3681 if (exp->index_expression() != NULL)
3682 exp->index_expression()->set_is_lvalue();
3684 if (token->is_op(OPERATOR_PLUSPLUS))
3685 this->gogo_->add_statement(Statement::make_inc_statement(exp));
3686 else if (token->is_op(OPERATOR_MINUSMINUS))
3687 this->gogo_->add_statement(Statement::make_dec_statement(exp));
3690 this->advance_token();
3693 // Assignment = ExpressionList assign_op ExpressionList .
3695 // EXP is an expression that we have already parsed.
3697 // If RANGE_CLAUSE is not NULL, then this will recognize a
3701 Parse::assignment(Expression* expr, Range_clause* p_range_clause)
3703 Expression_list* vars;
3704 if (!this->peek_token()->is_op(OPERATOR_COMMA))
3706 vars = new Expression_list();
3707 vars->push_back(expr);
3711 this->advance_token();
3712 vars = this->expression_list(expr, true);
3715 this->tuple_assignment(vars, p_range_clause);
3718 // An assignment statement. LHS is the list of expressions which
3719 // appear on the left hand side.
3721 // If RANGE_CLAUSE is not NULL, then this will recognize a
3725 Parse::tuple_assignment(Expression_list* lhs, Range_clause* p_range_clause)
3727 const Token* token = this->peek_token();
3728 if (!token->is_op(OPERATOR_EQ)
3729 && !token->is_op(OPERATOR_PLUSEQ)
3730 && !token->is_op(OPERATOR_MINUSEQ)
3731 && !token->is_op(OPERATOR_OREQ)
3732 && !token->is_op(OPERATOR_XOREQ)
3733 && !token->is_op(OPERATOR_MULTEQ)
3734 && !token->is_op(OPERATOR_DIVEQ)
3735 && !token->is_op(OPERATOR_MODEQ)
3736 && !token->is_op(OPERATOR_LSHIFTEQ)
3737 && !token->is_op(OPERATOR_RSHIFTEQ)
3738 && !token->is_op(OPERATOR_ANDEQ)
3739 && !token->is_op(OPERATOR_BITCLEAREQ))
3741 error_at(this->location(), "expected assignment operator");
3744 Operator op = token->op();
3745 Location location = token->location();
3747 token = this->advance_token();
3749 if (p_range_clause != NULL && token->is_keyword(KEYWORD_RANGE))
3751 if (op != OPERATOR_EQ)
3752 error_at(this->location(), "range clause requires %<=%>");
3753 this->range_clause_expr(lhs, p_range_clause);
3757 Expression_list* vals = this->expression_list(NULL, false);
3759 // We've parsed everything; check for errors.
3760 if (lhs == NULL || vals == NULL)
3762 for (Expression_list::const_iterator pe = lhs->begin();
3766 if ((*pe)->is_error_expression())
3768 if (op != OPERATOR_EQ && (*pe)->is_sink_expression())
3769 error_at((*pe)->location(), "cannot use _ as value");
3771 for (Expression_list::const_iterator pe = vals->begin();
3775 if ((*pe)->is_error_expression())
3779 // Map expressions act differently when they are lvalues.
3780 for (Expression_list::iterator plv = lhs->begin();
3783 if ((*plv)->index_expression() != NULL)
3784 (*plv)->index_expression()->set_is_lvalue();
3786 Call_expression* call;
3787 Index_expression* map_index;
3788 Receive_expression* receive;
3789 Type_guard_expression* type_guard;
3790 if (lhs->size() == vals->size())
3793 if (lhs->size() > 1)
3795 if (op != OPERATOR_EQ)
3796 error_at(location, "multiple values only permitted with %<=%>");
3797 s = Statement::make_tuple_assignment(lhs, vals, location);
3801 if (op == OPERATOR_EQ)
3802 s = Statement::make_assignment(lhs->front(), vals->front(),
3805 s = Statement::make_assignment_operation(op, lhs->front(),
3806 vals->front(), location);
3810 this->gogo_->add_statement(s);
3812 else if (vals->size() == 1
3813 && (call = (*vals->begin())->call_expression()) != NULL)
3815 if (op != OPERATOR_EQ)
3816 error_at(location, "multiple results only permitted with %<=%>");
3818 vals = new Expression_list;
3819 for (unsigned int i = 0; i < lhs->size(); ++i)
3820 vals->push_back(Expression::make_call_result(call, i));
3821 Statement* s = Statement::make_tuple_assignment(lhs, vals, location);
3822 this->gogo_->add_statement(s);
3824 else if (lhs->size() == 2
3825 && vals->size() == 1
3826 && (map_index = (*vals->begin())->index_expression()) != NULL)
3828 if (op != OPERATOR_EQ)
3829 error_at(location, "two values from map requires %<=%>");
3830 Expression* val = lhs->front();
3831 Expression* present = lhs->back();
3832 Statement* s = Statement::make_tuple_map_assignment(val, present,
3833 map_index, location);
3834 this->gogo_->add_statement(s);
3836 else if (lhs->size() == 1
3837 && vals->size() == 2
3838 && (map_index = lhs->front()->index_expression()) != NULL)
3840 if (op != OPERATOR_EQ)
3841 error_at(location, "assigning tuple to map index requires %<=%>");
3842 Expression* val = vals->front();
3843 Expression* should_set = vals->back();
3844 Statement* s = Statement::make_map_assignment(map_index, val, should_set,
3846 this->gogo_->add_statement(s);
3848 else if (lhs->size() == 2
3849 && vals->size() == 1
3850 && (receive = (*vals->begin())->receive_expression()) != NULL)
3852 if (op != OPERATOR_EQ)
3853 error_at(location, "two values from receive requires %<=%>");
3854 Expression* val = lhs->front();
3855 Expression* success = lhs->back();
3856 Expression* channel = receive->channel();
3857 Statement* s = Statement::make_tuple_receive_assignment(val, success,
3860 this->gogo_->add_statement(s);
3862 else if (lhs->size() == 2
3863 && vals->size() == 1
3864 && (type_guard = (*vals->begin())->type_guard_expression()) != NULL)
3866 if (op != OPERATOR_EQ)
3867 error_at(location, "two values from type guard requires %<=%>");
3868 Expression* val = lhs->front();
3869 Expression* ok = lhs->back();
3870 Expression* expr = type_guard->expr();
3871 Type* type = type_guard->type();
3872 Statement* s = Statement::make_tuple_type_guard_assignment(val, ok,
3875 this->gogo_->add_statement(s);
3879 error_at(location, "number of variables does not match number of values");
3883 // GoStat = "go" Expression .
3884 // DeferStat = "defer" Expression .
3887 Parse::go_or_defer_stat()
3889 go_assert(this->peek_token()->is_keyword(KEYWORD_GO)
3890 || this->peek_token()->is_keyword(KEYWORD_DEFER));
3891 bool is_go = this->peek_token()->is_keyword(KEYWORD_GO);
3892 Location stat_location = this->location();
3893 this->advance_token();
3894 Location expr_location = this->location();
3895 Expression* expr = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
3896 Call_expression* call_expr = expr->call_expression();
3897 if (call_expr == NULL)
3899 error_at(expr_location, "expected call expression");
3903 // Make it easier to simplify go/defer statements by putting every
3904 // statement in its own block.
3905 this->gogo_->start_block(stat_location);
3908 stat = Statement::make_go_statement(call_expr, stat_location);
3910 stat = Statement::make_defer_statement(call_expr, stat_location);
3911 this->gogo_->add_statement(stat);
3912 this->gogo_->add_block(this->gogo_->finish_block(stat_location),
3916 // ReturnStat = "return" [ ExpressionList ] .
3919 Parse::return_stat()
3921 go_assert(this->peek_token()->is_keyword(KEYWORD_RETURN));
3922 Location location = this->location();
3923 this->advance_token();
3924 Expression_list* vals = NULL;
3925 if (this->expression_may_start_here())
3926 vals = this->expression_list(NULL, false);
3927 this->gogo_->add_statement(Statement::make_return_statement(vals, location));
3930 && this->gogo_->current_function()->func_value()->results_are_named())
3932 Named_object* function = this->gogo_->current_function();
3933 Function::Results* results = function->func_value()->result_variables();
3934 for (Function::Results::const_iterator p = results->begin();
3935 p != results->end();
3938 Named_object* no = this->gogo_->lookup((*p)->name(), NULL);
3939 go_assert(no != NULL);
3940 if (!no->is_result_variable())
3941 error_at(location, "%qs is shadowed during return",
3942 (*p)->message_name().c_str());
3947 // IfStmt = "if" [ SimpleStmt ";" ] Expression Block
3948 // [ "else" ( IfStmt | Block ) ] .
3953 go_assert(this->peek_token()->is_keyword(KEYWORD_IF));
3954 Location location = this->location();
3955 this->advance_token();
3957 this->gogo_->start_block(location);
3959 bool saw_simple_stat = false;
3960 Expression* cond = NULL;
3962 if (this->simple_stat_may_start_here())
3964 cond = this->simple_stat(false, &saw_send_stmt, NULL, NULL);
3965 saw_simple_stat = true;
3967 if (cond != NULL && this->peek_token()->is_op(OPERATOR_SEMICOLON))
3969 // The SimpleStat is an expression statement.
3970 this->expression_stat(cond);
3975 if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
3976 this->advance_token();
3977 else if (saw_simple_stat)
3980 error_at(this->location(),
3981 ("send statement used as value; "
3982 "use select for non-blocking send"));
3984 error_at(this->location(),
3985 "expected %<;%> after statement in if expression");
3986 if (!this->expression_may_start_here())
3987 cond = Expression::make_error(this->location());
3989 if (cond == NULL && this->peek_token()->is_op(OPERATOR_LCURLY))
3991 error_at(this->location(),
3992 "missing condition in if statement");
3993 cond = Expression::make_error(this->location());
3996 cond = this->expression(PRECEDENCE_NORMAL, false, false, NULL);