OSDN Git Service

Fix struct with array of struct with field that points to first struct.
[pf3gnuchains/gcc-fork.git] / gcc / go / gofrontend / parse.cc
1 // parse.cc -- Go frontend parser.
2
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.
6
7 #include "go-system.h"
8
9 #include "lex.h"
10 #include "gogo.h"
11 #include "types.h"
12 #include "statements.h"
13 #include "expressions.h"
14 #include "parse.h"
15
16 // Struct Parse::Enclosing_var_comparison.
17
18 // Return true if v1 should be considered to be less than v2.
19
20 bool
21 Parse::Enclosing_var_comparison::operator()(const Enclosing_var& v1,
22                                             const Enclosing_var& v2)
23 {
24   if (v1.var() == v2.var())
25     return false;
26
27   const std::string& n1(v1.var()->name());
28   const std::string& n2(v2.var()->name());
29   int i = n1.compare(n2);
30   if (i < 0)
31     return true;
32   else if (i > 0)
33     return false;
34
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.
38   gcc_unreachable();
39 }
40
41 // Class Parse.
42
43 Parse::Parse(Lex* lex, Gogo* gogo)
44   : lex_(lex),
45     token_(Token::make_invalid_token(0)),
46     unget_token_(Token::make_invalid_token(0)),
47     unget_token_valid_(false),
48     gogo_(gogo),
49     break_stack_(NULL),
50     continue_stack_(NULL),
51     iota_(0),
52     enclosing_vars_()
53 {
54 }
55
56 // Return the current token.
57
58 const Token*
59 Parse::peek_token()
60 {
61   if (this->unget_token_valid_)
62     return &this->unget_token_;
63   if (this->token_.is_invalid())
64     this->token_ = this->lex_->next_token();
65   return &this->token_;
66 }
67
68 // Advance to the next token and return it.
69
70 const Token*
71 Parse::advance_token()
72 {
73   if (this->unget_token_valid_)
74     {
75       this->unget_token_valid_ = false;
76       if (!this->token_.is_invalid())
77         return &this->token_;
78     }
79   this->token_ = this->lex_->next_token();
80   return &this->token_;
81 }
82
83 // Push a token back on the input stream.
84
85 void
86 Parse::unget_token(const Token& token)
87 {
88   gcc_assert(!this->unget_token_valid_);
89   this->unget_token_ = token;
90   this->unget_token_valid_ = true;
91 }
92
93 // The location of the current token.
94
95 source_location
96 Parse::location()
97 {
98   return this->peek_token()->location();
99 }
100
101 // IdentifierList = identifier { "," identifier } .
102
103 void
104 Parse::identifier_list(Typed_identifier_list* til)
105 {
106   const Token* token = this->peek_token();
107   while (true)
108     {
109       if (!token->is_identifier())
110         {
111           error_at(this->location(), "expected identifier");
112           return;
113         }
114       std::string name =
115         this->gogo_->pack_hidden_name(token->identifier(),
116                                       token->is_identifier_exported());
117       til->push_back(Typed_identifier(name, NULL, token->location()));
118       token = this->advance_token();
119       if (!token->is_op(OPERATOR_COMMA))
120         return;
121       token = this->advance_token();
122     }
123 }
124
125 // ExpressionList = Expression { "," Expression } .
126
127 // If MAY_BE_SINK is true, the expressions in the list may be "_".
128
129 Expression_list*
130 Parse::expression_list(Expression* first, bool may_be_sink)
131 {
132   Expression_list* ret = new Expression_list();
133   if (first != NULL)
134     ret->push_back(first);
135   while (true)
136     {
137       ret->push_back(this->expression(PRECEDENCE_NORMAL, may_be_sink, true,
138                                       NULL));
139
140       const Token* token = this->peek_token();
141       if (!token->is_op(OPERATOR_COMMA))
142         return ret;
143
144       // Most expression lists permit a trailing comma.
145       source_location location = token->location();
146       this->advance_token();
147       if (!this->expression_may_start_here())
148         {
149           this->unget_token(Token::make_operator_token(OPERATOR_COMMA,
150                                                        location));
151           return ret;
152         }
153     }
154 }
155
156 // QualifiedIdent = [ PackageName "." ] identifier .
157 // PackageName = identifier .
158
159 // This sets *PNAME to the identifier and sets *PPACKAGE to the
160 // package or NULL if there isn't one.  This returns true on success,
161 // false on failure in which case it will have emitted an error
162 // message.
163
164 bool
165 Parse::qualified_ident(std::string* pname, Named_object** ppackage)
166 {
167   const Token* token = this->peek_token();
168   if (!token->is_identifier())
169     {
170       error_at(this->location(), "expected identifier");
171       return false;
172     }
173
174   std::string name = token->identifier();
175   bool is_exported = token->is_identifier_exported();
176   name = this->gogo_->pack_hidden_name(name, is_exported);
177
178   token = this->advance_token();
179   if (!token->is_op(OPERATOR_DOT))
180     {
181       *pname = name;
182       *ppackage = NULL;
183       return true;
184     }
185
186   Named_object* package = this->gogo_->lookup(name, NULL);
187   if (package == NULL || !package->is_package())
188     {
189       error_at(this->location(), "expected package");
190       // We expect . IDENTIFIER; skip both.
191       if (this->advance_token()->is_identifier())
192         this->advance_token();
193       return false;
194     }
195
196   package->package_value()->set_used();
197
198   token = this->advance_token();
199   if (!token->is_identifier())
200     {
201       error_at(this->location(), "expected identifier");
202       return false;
203     }
204
205   name = token->identifier();
206
207   if (name == "_")
208     {
209       error_at(this->location(), "invalid use of %<_%>");
210       name = "blank";
211     }
212
213   if (package->name() == this->gogo_->package_name())
214     name = this->gogo_->pack_hidden_name(name,
215                                          token->is_identifier_exported());
216
217   *pname = name;
218   *ppackage = package;
219
220   this->advance_token();
221
222   return true;
223 }
224
225 // Type = TypeName | TypeLit | "(" Type ")" .
226 // TypeLit =
227 //      ArrayType | StructType | PointerType | FunctionType | InterfaceType |
228 //      SliceType | MapType | ChannelType .
229
230 Type*
231 Parse::type()
232 {
233   const Token* token = this->peek_token();
234   if (token->is_identifier())
235     return this->type_name(true);
236   else if (token->is_op(OPERATOR_LSQUARE))
237     return this->array_type(false);
238   else if (token->is_keyword(KEYWORD_CHAN)
239            || token->is_op(OPERATOR_CHANOP))
240     return this->channel_type();
241   else if (token->is_keyword(KEYWORD_INTERFACE))
242     return this->interface_type();
243   else if (token->is_keyword(KEYWORD_FUNC))
244     {
245       source_location location = token->location();
246       this->advance_token();
247       Type* type = this->signature(NULL, location);
248       if (type == NULL)
249         return Type::make_error_type();
250       return type;
251     }
252   else if (token->is_keyword(KEYWORD_MAP))
253     return this->map_type();
254   else if (token->is_keyword(KEYWORD_STRUCT))
255     return this->struct_type();
256   else if (token->is_op(OPERATOR_MULT))
257     return this->pointer_type();
258   else if (token->is_op(OPERATOR_LPAREN))
259     {
260       this->advance_token();
261       Type* ret = this->type();
262       if (this->peek_token()->is_op(OPERATOR_RPAREN))
263         this->advance_token();
264       else
265         {
266           if (!ret->is_error_type())
267             error_at(this->location(), "expected %<)%>");
268         }
269       return ret;
270     }
271   else
272     {
273       error_at(token->location(), "expected type");
274       return Type::make_error_type();
275     }
276 }
277
278 bool
279 Parse::type_may_start_here()
280 {
281   const Token* token = this->peek_token();
282   return (token->is_identifier()
283           || token->is_op(OPERATOR_LSQUARE)
284           || token->is_op(OPERATOR_CHANOP)
285           || token->is_keyword(KEYWORD_CHAN)
286           || token->is_keyword(KEYWORD_INTERFACE)
287           || token->is_keyword(KEYWORD_FUNC)
288           || token->is_keyword(KEYWORD_MAP)
289           || token->is_keyword(KEYWORD_STRUCT)
290           || token->is_op(OPERATOR_MULT)
291           || token->is_op(OPERATOR_LPAREN));
292 }
293
294 // TypeName = QualifiedIdent .
295
296 // If MAY_BE_NIL is true, then an identifier with the value of the
297 // predefined constant nil is accepted, returning the nil type.
298
299 Type*
300 Parse::type_name(bool issue_error)
301 {
302   source_location location = this->location();
303
304   std::string name;
305   Named_object* package;
306   if (!this->qualified_ident(&name, &package))
307     return Type::make_error_type();
308
309   Named_object* named_object;
310   if (package == NULL)
311     named_object = this->gogo_->lookup(name, NULL);
312   else
313     {
314       named_object = package->package_value()->lookup(name);
315       if (named_object == NULL
316           && issue_error
317           && package->name() != this->gogo_->package_name())
318         {
319           // Check whether the name is there but hidden.
320           std::string s = ('.' + package->package_value()->unique_prefix()
321                            + '.' + package->package_value()->name()
322                            + '.' + name);
323           named_object = package->package_value()->lookup(s);
324           if (named_object != NULL)
325             {
326               const std::string& packname(package->package_value()->name());
327               error_at(location, "invalid reference to hidden type %<%s.%s%>",
328                        Gogo::message_name(packname).c_str(),
329                        Gogo::message_name(name).c_str());
330               issue_error = false;
331             }
332         }
333     }
334
335   bool ok = true;
336   if (named_object == NULL)
337     {
338       if (package != NULL)
339         ok = false;
340       else
341         named_object = this->gogo_->add_unknown_name(name, location);
342     }
343   else if (named_object->is_type())
344     {
345       if (!named_object->type_value()->is_visible())
346         ok = false;
347     }
348   else if (named_object->is_unknown() || named_object->is_type_declaration())
349     ;
350   else
351     ok = false;
352
353   if (!ok)
354     {
355       if (issue_error)
356         error_at(location, "expected type");
357       return Type::make_error_type();
358     }
359
360   if (named_object->is_type())
361     return named_object->type_value();
362   else if (named_object->is_unknown() || named_object->is_type_declaration())
363     return Type::make_forward_declaration(named_object);
364   else
365     gcc_unreachable();
366 }
367
368 // ArrayType = "[" [ ArrayLength ] "]" ElementType .
369 // ArrayLength = Expression .
370 // ElementType = CompleteType .
371
372 Type*
373 Parse::array_type(bool may_use_ellipsis)
374 {
375   gcc_assert(this->peek_token()->is_op(OPERATOR_LSQUARE));
376   const Token* token = this->advance_token();
377
378   Expression* length = NULL;
379   if (token->is_op(OPERATOR_RSQUARE))
380     this->advance_token();
381   else
382     {
383       if (!token->is_op(OPERATOR_ELLIPSIS))
384         length = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
385       else if (may_use_ellipsis)
386         {
387           // An ellipsis is used in composite literals to represent a
388           // fixed array of the size of the number of elements.  We
389           // use a length of nil to represent this, and change the
390           // length when parsing the composite literal.
391           length = Expression::make_nil(this->location());
392           this->advance_token();
393         }
394       else
395         {
396           error_at(this->location(),
397                    "use of %<[...]%> outside of array literal");
398           length = Expression::make_error(this->location());
399           this->advance_token();
400         }
401       if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
402         {
403           error_at(this->location(), "expected %<]%>");
404           return Type::make_error_type();
405         }
406       this->advance_token();
407     }
408
409   Type* element_type = this->type();
410
411   return Type::make_array_type(element_type, length);
412 }
413
414 // MapType = "map" "[" KeyType "]" ValueType .
415 // KeyType = CompleteType .
416 // ValueType = CompleteType .
417
418 Type*
419 Parse::map_type()
420 {
421   source_location location = this->location();
422   gcc_assert(this->peek_token()->is_keyword(KEYWORD_MAP));
423   if (!this->advance_token()->is_op(OPERATOR_LSQUARE))
424     {
425       error_at(this->location(), "expected %<[%>");
426       return Type::make_error_type();
427     }
428   this->advance_token();
429
430   Type* key_type = this->type();
431
432   if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
433     {
434       error_at(this->location(), "expected %<]%>");
435       return Type::make_error_type();
436     }
437   this->advance_token();
438
439   Type* value_type = this->type();
440
441   if (key_type->is_error_type() || value_type->is_error_type())
442     return Type::make_error_type();
443
444   return Type::make_map_type(key_type, value_type, location);
445 }
446
447 // StructType     = "struct" "{" { FieldDecl ";" } "}" .
448
449 Type*
450 Parse::struct_type()
451 {
452   gcc_assert(this->peek_token()->is_keyword(KEYWORD_STRUCT));
453   source_location location = this->location();
454   if (!this->advance_token()->is_op(OPERATOR_LCURLY))
455     {
456       source_location token_loc = this->location();
457       if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
458           && this->advance_token()->is_op(OPERATOR_LCURLY))
459         error_at(token_loc, "unexpected semicolon or newline before %<{%>");
460       else
461         {
462           error_at(this->location(), "expected %<{%>");
463           return Type::make_error_type();
464         }
465     }
466   this->advance_token();
467
468   Struct_field_list* sfl = new Struct_field_list;
469   while (!this->peek_token()->is_op(OPERATOR_RCURLY))
470     {
471       this->field_decl(sfl);
472       if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
473         this->advance_token();
474       else if (!this->peek_token()->is_op(OPERATOR_RCURLY))
475         {
476           error_at(this->location(), "expected %<;%> or %<}%> or newline");
477           if (!this->skip_past_error(OPERATOR_RCURLY))
478             return Type::make_error_type();
479         }
480     }
481   this->advance_token();
482
483   for (Struct_field_list::const_iterator pi = sfl->begin();
484        pi != sfl->end();
485        ++pi)
486     {
487       if (pi->type()->is_error_type())
488         return pi->type();
489       for (Struct_field_list::const_iterator pj = pi + 1;
490            pj != sfl->end();
491            ++pj)
492         {
493           if (pi->field_name() == pj->field_name()
494               && !Gogo::is_sink_name(pi->field_name()))
495             error_at(pi->location(), "duplicate field name %<%s%>",
496                      Gogo::message_name(pi->field_name()).c_str());
497         }
498     }
499
500   return Type::make_struct_type(sfl, location);
501 }
502
503 // FieldDecl = (IdentifierList CompleteType | TypeName) [ Tag ] .
504 // Tag = string_lit .
505
506 void
507 Parse::field_decl(Struct_field_list* sfl)
508 {
509   const Token* token = this->peek_token();
510   source_location location = token->location();
511   bool is_anonymous;
512   bool is_anonymous_pointer;
513   if (token->is_op(OPERATOR_MULT))
514     {
515       is_anonymous = true;
516       is_anonymous_pointer = true;
517     }
518   else if (token->is_identifier())
519     {
520       std::string id = token->identifier();
521       bool is_id_exported = token->is_identifier_exported();
522       source_location id_location = token->location();
523       token = this->advance_token();
524       is_anonymous = (token->is_op(OPERATOR_SEMICOLON)
525                       || token->is_op(OPERATOR_RCURLY)
526                       || token->is_op(OPERATOR_DOT)
527                       || token->is_string());
528       is_anonymous_pointer = false;
529       this->unget_token(Token::make_identifier_token(id, is_id_exported,
530                                                      id_location));
531     }
532   else
533     {
534       error_at(this->location(), "expected field name");
535       while (!token->is_op(OPERATOR_SEMICOLON)
536              && !token->is_op(OPERATOR_RCURLY)
537              && !token->is_eof())
538         token = this->advance_token();
539       return;
540     }
541
542   if (is_anonymous)
543     {
544       if (is_anonymous_pointer)
545         {
546           this->advance_token();
547           if (!this->peek_token()->is_identifier())
548             {
549               error_at(this->location(), "expected field name");
550               while (!token->is_op(OPERATOR_SEMICOLON)
551                      && !token->is_op(OPERATOR_RCURLY)
552                      && !token->is_eof())
553                 token = this->advance_token();
554               return;
555             }
556         }
557       Type* type = this->type_name(true);
558
559       std::string tag;
560       if (this->peek_token()->is_string())
561         {
562           tag = this->peek_token()->string_value();
563           this->advance_token();
564         }
565
566       if (!type->is_error_type())
567         {
568           if (is_anonymous_pointer)
569             type = Type::make_pointer_type(type);
570           sfl->push_back(Struct_field(Typed_identifier("", type, location)));
571           if (!tag.empty())
572             sfl->back().set_tag(tag);
573         }
574     }
575   else
576     {
577       Typed_identifier_list til;
578       while (true)
579         {
580           token = this->peek_token();
581           if (!token->is_identifier())
582             {
583               error_at(this->location(), "expected identifier");
584               return;
585             }
586           std::string name =
587             this->gogo_->pack_hidden_name(token->identifier(),
588                                           token->is_identifier_exported());
589           til.push_back(Typed_identifier(name, NULL, token->location()));
590           if (!this->advance_token()->is_op(OPERATOR_COMMA))
591             break;
592           this->advance_token();
593         }
594
595       Type* type = this->type();
596
597       std::string tag;
598       if (this->peek_token()->is_string())
599         {
600           tag = this->peek_token()->string_value();
601           this->advance_token();
602         }
603
604       for (Typed_identifier_list::iterator p = til.begin();
605            p != til.end();
606            ++p)
607         {
608           p->set_type(type);
609           sfl->push_back(Struct_field(*p));
610           if (!tag.empty())
611             sfl->back().set_tag(tag);
612         }
613     }
614 }
615
616 // PointerType = "*" Type .
617
618 Type*
619 Parse::pointer_type()
620 {
621   gcc_assert(this->peek_token()->is_op(OPERATOR_MULT));
622   this->advance_token();
623   Type* type = this->type();
624   if (type->is_error_type())
625     return type;
626   return Type::make_pointer_type(type);
627 }
628
629 // ChannelType   = Channel | SendChannel | RecvChannel .
630 // Channel       = "chan" ElementType .
631 // SendChannel   = "chan" "<-" ElementType .
632 // RecvChannel   = "<-" "chan" ElementType .
633
634 Type*
635 Parse::channel_type()
636 {
637   const Token* token = this->peek_token();
638   bool send = true;
639   bool receive = true;
640   if (token->is_op(OPERATOR_CHANOP))
641     {
642       if (!this->advance_token()->is_keyword(KEYWORD_CHAN))
643         {
644           error_at(this->location(), "expected %<chan%>");
645           return Type::make_error_type();
646         }
647       send = false;
648       this->advance_token();
649     }
650   else
651     {
652       gcc_assert(token->is_keyword(KEYWORD_CHAN));
653       if (this->advance_token()->is_op(OPERATOR_CHANOP))
654         {
655           receive = false;
656           this->advance_token();
657         }
658     }
659   Type* element_type = this->type();
660   return Type::make_channel_type(send, receive, element_type);
661 }
662
663 // Signature      = Parameters [ Result ] .
664
665 // RECEIVER is the receiver if there is one, or NULL.  LOCATION is the
666 // location of the start of the type.
667
668 // This returns NULL on a parse error.
669
670 Function_type*
671 Parse::signature(Typed_identifier* receiver, source_location location)
672 {
673   bool is_varargs = false;
674   Typed_identifier_list* params;
675   bool params_ok = this->parameters(&params, &is_varargs);
676
677   Typed_identifier_list* result = NULL;
678   if (this->peek_token()->is_op(OPERATOR_LPAREN)
679       || this->type_may_start_here())
680     {
681       if (!this->result(&result))
682         return NULL;
683     }
684
685   if (!params_ok)
686     return NULL;
687
688   Function_type* ret = Type::make_function_type(receiver, params, result,
689                                                 location);
690   if (is_varargs)
691     ret->set_is_varargs();
692   return ret;
693 }
694
695 // Parameters     = "(" [ ParameterList [ "," ] ] ")" .
696
697 // This returns false on a parse error.
698
699 bool
700 Parse::parameters(Typed_identifier_list** pparams, bool* is_varargs)
701 {
702   *pparams = NULL;
703
704   if (!this->peek_token()->is_op(OPERATOR_LPAREN))
705     {
706       error_at(this->location(), "expected %<(%>");
707       return false;
708     }
709
710   Typed_identifier_list* params = NULL;
711   bool saw_error = false;
712
713   const Token* token = this->advance_token();
714   if (!token->is_op(OPERATOR_RPAREN))
715     {
716       params = this->parameter_list(is_varargs);
717       if (params == NULL)
718         saw_error = true;
719       token = this->peek_token();
720     }
721
722   // The optional trailing comma is picked up in parameter_list.
723
724   if (!token->is_op(OPERATOR_RPAREN))
725     error_at(this->location(), "expected %<)%>");
726   else
727     this->advance_token();
728
729   if (saw_error)
730     return false;
731
732   *pparams = params;
733   return true;
734 }
735
736 // ParameterList  = ParameterDecl { "," ParameterDecl } .
737
738 // This sets *IS_VARARGS if the list ends with an ellipsis.
739 // IS_VARARGS will be NULL if varargs are not permitted.
740
741 // We pick up an optional trailing comma.
742
743 // This returns NULL if some error is seen.
744
745 Typed_identifier_list*
746 Parse::parameter_list(bool* is_varargs)
747 {
748   source_location location = this->location();
749   Typed_identifier_list* ret = new Typed_identifier_list();
750
751   bool saw_error = false;
752
753   // If we see an identifier and then a comma, then we don't know
754   // whether we are looking at a list of identifiers followed by a
755   // type, or a list of types given by name.  We have to do an
756   // arbitrary lookahead to figure it out.
757
758   bool parameters_have_names;
759   const Token* token = this->peek_token();
760   if (!token->is_identifier())
761     {
762       // This must be a type which starts with something like '*'.
763       parameters_have_names = false;
764     }
765   else
766     {
767       std::string name = token->identifier();
768       bool is_exported = token->is_identifier_exported();
769       source_location location = token->location();
770       token = this->advance_token();
771       if (!token->is_op(OPERATOR_COMMA))
772         {
773           if (token->is_op(OPERATOR_DOT))
774             {
775               // This is a qualified identifier, which must turn out
776               // to be a type.
777               parameters_have_names = false;
778             }
779           else if (token->is_op(OPERATOR_RPAREN))
780             {
781               // A single identifier followed by a parenthesis must be
782               // a type name.
783               parameters_have_names = false;
784             }
785           else
786             {
787               // An identifier followed by something other than a
788               // comma or a dot or a right parenthesis must be a
789               // parameter name followed by a type.
790               parameters_have_names = true;
791             }
792
793           this->unget_token(Token::make_identifier_token(name, is_exported,
794                                                          location));
795         }
796       else
797         {
798           // An identifier followed by a comma may be the first in a
799           // list of parameter names followed by a type, or it may be
800           // the first in a list of types without parameter names.  To
801           // find out we gather as many identifiers separated by
802           // commas as we can.
803           std::string id_name = this->gogo_->pack_hidden_name(name,
804                                                               is_exported);
805           ret->push_back(Typed_identifier(id_name, NULL, location));
806           bool just_saw_comma = true;
807           while (this->advance_token()->is_identifier())
808             {
809               name = this->peek_token()->identifier();
810               is_exported = this->peek_token()->is_identifier_exported();
811               location = this->peek_token()->location();
812               id_name = this->gogo_->pack_hidden_name(name, is_exported);
813               ret->push_back(Typed_identifier(id_name, NULL, location));
814               if (!this->advance_token()->is_op(OPERATOR_COMMA))
815                 {
816                   just_saw_comma = false;
817                   break;
818                 }
819             }
820
821           if (just_saw_comma)
822             {
823               // We saw ID1 "," ID2 "," followed by something which
824               // was not an identifier.  We must be seeing the start
825               // of a type, and ID1 and ID2 must be types, and the
826               // parameters don't have names.
827               parameters_have_names = false;
828             }
829           else if (this->peek_token()->is_op(OPERATOR_RPAREN))
830             {
831               // We saw ID1 "," ID2 ")".  ID1 and ID2 must be types,
832               // and the parameters don't have names.
833               parameters_have_names = false;
834             }
835           else if (this->peek_token()->is_op(OPERATOR_DOT))
836             {
837               // We saw ID1 "," ID2 ".".  ID2 must be a package name,
838               // ID1 must be a type, and the parameters don't have
839               // names.
840               parameters_have_names = false;
841               this->unget_token(Token::make_identifier_token(name, is_exported,
842                                                              location));
843               ret->pop_back();
844               just_saw_comma = true;
845             }
846           else
847             {
848               // We saw ID1 "," ID2 followed by something other than
849               // ",", ".", or ")".  We must be looking at the start of
850               // a type, and ID1 and ID2 must be parameter names.
851               parameters_have_names = true;
852             }
853
854           if (parameters_have_names)
855             {
856               gcc_assert(!just_saw_comma);
857               // We have just seen ID1, ID2 xxx.
858               Type* type;
859               if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
860                 type = this->type();
861               else
862                 {
863                   error_at(this->location(), "%<...%> only permits one name");
864                   saw_error = true;
865                   this->advance_token();
866                   type = this->type();
867                 }
868               for (size_t i = 0; i < ret->size(); ++i)
869                 ret->set_type(i, type);
870               if (!this->peek_token()->is_op(OPERATOR_COMMA))
871                 return saw_error ? NULL : ret;
872               if (this->advance_token()->is_op(OPERATOR_RPAREN))
873                 return saw_error ? NULL : ret;
874             }
875           else
876             {
877               Typed_identifier_list* tret = new Typed_identifier_list();
878               for (Typed_identifier_list::const_iterator p = ret->begin();
879                    p != ret->end();
880                    ++p)
881                 {
882                   Named_object* no = this->gogo_->lookup(p->name(), NULL);
883                   Type* type;
884                   if (no == NULL)
885                     no = this->gogo_->add_unknown_name(p->name(),
886                                                        p->location());
887
888                   if (no->is_type())
889                     type = no->type_value();
890                   else if (no->is_unknown() || no->is_type_declaration())
891                     type = Type::make_forward_declaration(no);
892                   else
893                     {
894                       error_at(p->location(), "expected %<%s%> to be a type",
895                                Gogo::message_name(p->name()).c_str());
896                       saw_error = true;
897                       type = Type::make_error_type();
898                     }
899                   tret->push_back(Typed_identifier("", type, p->location()));
900                 }
901               delete ret;
902               ret = tret;
903               if (!just_saw_comma
904                   || this->peek_token()->is_op(OPERATOR_RPAREN))
905                 return saw_error ? NULL : ret;
906             }
907         }
908     }
909
910   bool mix_error = false;
911   this->parameter_decl(parameters_have_names, ret, is_varargs, &mix_error);
912   while (this->peek_token()->is_op(OPERATOR_COMMA))
913     {
914       if (is_varargs != NULL && *is_varargs)
915         {
916           error_at(this->location(), "%<...%> must be last parameter");
917           saw_error = true;
918         }
919       if (this->advance_token()->is_op(OPERATOR_RPAREN))
920         break;
921       this->parameter_decl(parameters_have_names, ret, is_varargs, &mix_error);
922     }
923   if (mix_error)
924     {
925       error_at(location, "invalid named/anonymous mix");
926       saw_error = true;
927     }
928   if (saw_error)
929     {
930       delete ret;
931       return NULL;
932     }
933   return ret;
934 }
935
936 // ParameterDecl  = [ IdentifierList ] [ "..." ] Type .
937
938 void
939 Parse::parameter_decl(bool parameters_have_names,
940                       Typed_identifier_list* til,
941                       bool* is_varargs,
942                       bool* mix_error)
943 {
944   if (!parameters_have_names)
945     {
946       Type* type;
947       source_location location = this->location();
948       if (!this->peek_token()->is_identifier())
949         {
950           if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
951             type = this->type();
952           else
953             {
954               if (is_varargs == NULL)
955                 error_at(this->location(), "invalid use of %<...%>");
956               else
957                 *is_varargs = true;
958               this->advance_token();
959               if (is_varargs == NULL
960                   && this->peek_token()->is_op(OPERATOR_RPAREN))
961                 type = Type::make_error_type();
962               else
963                 {
964                   Type* element_type = this->type();
965                   type = Type::make_array_type(element_type, NULL);
966                 }
967             }
968         }
969       else
970         {
971           type = this->type_name(false);
972           if (type->is_error_type()
973               || (!this->peek_token()->is_op(OPERATOR_COMMA)
974                   && !this->peek_token()->is_op(OPERATOR_RPAREN)))
975             {
976               *mix_error = true;
977               while (!this->peek_token()->is_op(OPERATOR_COMMA)
978                      && !this->peek_token()->is_op(OPERATOR_RPAREN))
979                 this->advance_token();
980             }
981         }
982       if (!type->is_error_type())
983         til->push_back(Typed_identifier("", type, location));
984     }
985   else
986     {
987       size_t orig_count = til->size();
988       if (this->peek_token()->is_identifier())
989         this->identifier_list(til);
990       else
991         *mix_error = true;
992       size_t new_count = til->size();
993
994       Type* type;
995       if (!this->peek_token()->is_op(OPERATOR_ELLIPSIS))
996         type = this->type();
997       else
998         {
999           if (is_varargs == NULL)
1000             error_at(this->location(), "invalid use of %<...%>");
1001           else if (new_count > orig_count + 1)
1002             error_at(this->location(), "%<...%> only permits one name");
1003           else
1004             *is_varargs = true;
1005           this->advance_token();
1006           Type* element_type = this->type();
1007           type = Type::make_array_type(element_type, NULL);
1008         }
1009       for (size_t i = orig_count; i < new_count; ++i)
1010         til->set_type(i, type);
1011     }
1012 }
1013
1014 // Result         = Parameters | Type .
1015
1016 // This returns false on a parse error.
1017
1018 bool
1019 Parse::result(Typed_identifier_list** presults)
1020 {
1021   if (this->peek_token()->is_op(OPERATOR_LPAREN))
1022     return this->parameters(presults, NULL);
1023   else
1024     {
1025       source_location location = this->location();
1026       Type* type = this->type();
1027       if (type->is_error_type())
1028         {
1029           *presults = NULL;
1030           return false;
1031         }
1032       Typed_identifier_list* til = new Typed_identifier_list();
1033       til->push_back(Typed_identifier("", type, location));
1034       *presults = til;
1035       return true;
1036     }
1037 }
1038
1039 // Block = "{" [ StatementList ] "}" .
1040
1041 // Returns the location of the closing brace.
1042
1043 source_location
1044 Parse::block()
1045 {
1046   if (!this->peek_token()->is_op(OPERATOR_LCURLY))
1047     {
1048       source_location loc = this->location();
1049       if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1050           && this->advance_token()->is_op(OPERATOR_LCURLY))
1051         error_at(loc, "unexpected semicolon or newline before %<{%>");
1052       else
1053         {
1054           error_at(this->location(), "expected %<{%>");
1055           return UNKNOWN_LOCATION;
1056         }
1057     }
1058
1059   const Token* token = this->advance_token();
1060
1061   if (!token->is_op(OPERATOR_RCURLY))
1062     {
1063       this->statement_list();
1064       token = this->peek_token();
1065       if (!token->is_op(OPERATOR_RCURLY))
1066         {
1067           if (!token->is_eof() || !saw_errors())
1068             error_at(this->location(), "expected %<}%>");
1069
1070           // Skip ahead to the end of the block, in hopes of avoiding
1071           // lots of meaningless errors.
1072           source_location ret = token->location();
1073           int nest = 0;
1074           while (!token->is_eof())
1075             {
1076               if (token->is_op(OPERATOR_LCURLY))
1077                 ++nest;
1078               else if (token->is_op(OPERATOR_RCURLY))
1079                 {
1080                   --nest;
1081                   if (nest < 0)
1082                     {
1083                       this->advance_token();
1084                       break;
1085                     }
1086                 }
1087               token = this->advance_token();
1088               ret = token->location();
1089             }
1090           return ret;
1091         }
1092     }
1093
1094   source_location ret = token->location();
1095   this->advance_token();
1096   return ret;
1097 }
1098
1099 // InterfaceType      = "interface" "{" [ MethodSpecList ] "}" .
1100 // MethodSpecList     = MethodSpec { ";" MethodSpec } [ ";" ] .
1101
1102 Type*
1103 Parse::interface_type()
1104 {
1105   gcc_assert(this->peek_token()->is_keyword(KEYWORD_INTERFACE));
1106   source_location location = this->location();
1107
1108   if (!this->advance_token()->is_op(OPERATOR_LCURLY))
1109     {
1110       source_location token_loc = this->location();
1111       if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1112           && this->advance_token()->is_op(OPERATOR_LCURLY))
1113         error_at(token_loc, "unexpected semicolon or newline before %<{%>");
1114       else
1115         {
1116           error_at(this->location(), "expected %<{%>");
1117           return Type::make_error_type();
1118         }
1119     }
1120   this->advance_token();
1121
1122   Typed_identifier_list* methods = new Typed_identifier_list();
1123   if (!this->peek_token()->is_op(OPERATOR_RCURLY))
1124     {
1125       this->method_spec(methods);
1126       while (this->peek_token()->is_op(OPERATOR_SEMICOLON))
1127         {
1128           if (this->advance_token()->is_op(OPERATOR_RCURLY))
1129             break;
1130           this->method_spec(methods);
1131         }
1132       if (!this->peek_token()->is_op(OPERATOR_RCURLY))
1133         {
1134           error_at(this->location(), "expected %<}%>");
1135           while (!this->advance_token()->is_op(OPERATOR_RCURLY))
1136             {
1137               if (this->peek_token()->is_eof())
1138                 return Type::make_error_type();
1139             }
1140         }
1141     }
1142   this->advance_token();
1143
1144   if (methods->empty())
1145     {
1146       delete methods;
1147       methods = NULL;
1148     }
1149
1150   Interface_type* ret = Type::make_interface_type(methods, location);
1151   this->gogo_->record_interface_type(ret);
1152   return ret;
1153 }
1154
1155 // MethodSpec         = MethodName Signature | InterfaceTypeName .
1156 // MethodName         = identifier .
1157 // InterfaceTypeName  = TypeName .
1158
1159 void
1160 Parse::method_spec(Typed_identifier_list* methods)
1161 {
1162   const Token* token = this->peek_token();
1163   if (!token->is_identifier())
1164     {
1165       error_at(this->location(), "expected identifier");
1166       return;
1167     }
1168
1169   std::string name = token->identifier();
1170   bool is_exported = token->is_identifier_exported();
1171   source_location location = token->location();
1172
1173   if (this->advance_token()->is_op(OPERATOR_LPAREN))
1174     {
1175       // This is a MethodName.
1176       name = this->gogo_->pack_hidden_name(name, is_exported);
1177       Type* type = this->signature(NULL, location);
1178       if (type == NULL)
1179         return;
1180       methods->push_back(Typed_identifier(name, type, location));
1181     }
1182   else
1183     {
1184       this->unget_token(Token::make_identifier_token(name, is_exported,
1185                                                      location));
1186       Type* type = this->type_name(false);
1187       if (type->is_error_type()
1188           || (!this->peek_token()->is_op(OPERATOR_SEMICOLON)
1189               && !this->peek_token()->is_op(OPERATOR_RCURLY)))
1190         {
1191           if (this->peek_token()->is_op(OPERATOR_COMMA))
1192             error_at(this->location(),
1193                      "name list not allowed in interface type");
1194           else
1195             error_at(location, "expected signature or type name");
1196           token = this->peek_token();
1197           while (!token->is_eof()
1198                  && !token->is_op(OPERATOR_SEMICOLON)
1199                  && !token->is_op(OPERATOR_RCURLY))
1200             token = this->advance_token();
1201           return;
1202         }
1203       // This must be an interface type, but we can't check that now.
1204       // We check it and pull out the methods in
1205       // Interface_type::do_verify.
1206       methods->push_back(Typed_identifier("", type, location));
1207     }
1208 }
1209
1210 // Declaration = ConstDecl | TypeDecl | VarDecl | FunctionDecl | MethodDecl .
1211
1212 void
1213 Parse::declaration()
1214 {
1215   const Token* token = this->peek_token();
1216   if (token->is_keyword(KEYWORD_CONST))
1217     this->const_decl();
1218   else if (token->is_keyword(KEYWORD_TYPE))
1219     this->type_decl();
1220   else if (token->is_keyword(KEYWORD_VAR))
1221     this->var_decl();
1222   else if (token->is_keyword(KEYWORD_FUNC))
1223     this->function_decl();
1224   else
1225     {
1226       error_at(this->location(), "expected declaration");
1227       this->advance_token();
1228     }
1229 }
1230
1231 bool
1232 Parse::declaration_may_start_here()
1233 {
1234   const Token* token = this->peek_token();
1235   return (token->is_keyword(KEYWORD_CONST)
1236           || token->is_keyword(KEYWORD_TYPE)
1237           || token->is_keyword(KEYWORD_VAR)
1238           || token->is_keyword(KEYWORD_FUNC));
1239 }
1240
1241 // Decl<P> = P | "(" [ List<P> ] ")" .
1242
1243 void
1244 Parse::decl(void (Parse::*pfn)(void*), void* varg)
1245 {
1246   if (!this->peek_token()->is_op(OPERATOR_LPAREN))
1247     (this->*pfn)(varg);
1248   else
1249     {
1250       if (!this->advance_token()->is_op(OPERATOR_RPAREN))
1251         {
1252           this->list(pfn, varg, true);
1253           if (!this->peek_token()->is_op(OPERATOR_RPAREN))
1254             {
1255               error_at(this->location(), "missing %<)%>");
1256               while (!this->advance_token()->is_op(OPERATOR_RPAREN))
1257                 {
1258                   if (this->peek_token()->is_eof())
1259                     return;
1260                 }
1261             }
1262         }
1263       this->advance_token();
1264     }
1265 }
1266
1267 // List<P> = P { ";" P } [ ";" ] .
1268
1269 // In order to pick up the trailing semicolon we need to know what
1270 // might follow.  This is either a '}' or a ')'.
1271
1272 void
1273 Parse::list(void (Parse::*pfn)(void*), void* varg, bool follow_is_paren)
1274 {
1275   (this->*pfn)(varg);
1276   Operator follow = follow_is_paren ? OPERATOR_RPAREN : OPERATOR_RCURLY;
1277   while (this->peek_token()->is_op(OPERATOR_SEMICOLON)
1278          || this->peek_token()->is_op(OPERATOR_COMMA))
1279     {
1280       if (this->peek_token()->is_op(OPERATOR_COMMA))
1281         error_at(this->location(), "unexpected comma");
1282       if (this->advance_token()->is_op(follow))
1283         break;
1284       (this->*pfn)(varg);
1285     }
1286 }
1287
1288 // ConstDecl      = "const" ( ConstSpec | "(" { ConstSpec ";" } ")" ) .
1289
1290 void
1291 Parse::const_decl()
1292 {
1293   gcc_assert(this->peek_token()->is_keyword(KEYWORD_CONST));
1294   this->advance_token();
1295   this->reset_iota();
1296
1297   Type* last_type = NULL;
1298   Expression_list* last_expr_list = NULL;
1299
1300   if (!this->peek_token()->is_op(OPERATOR_LPAREN))
1301     this->const_spec(&last_type, &last_expr_list);
1302   else
1303     {
1304       this->advance_token();
1305       while (!this->peek_token()->is_op(OPERATOR_RPAREN))
1306         {
1307           this->const_spec(&last_type, &last_expr_list);
1308           if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
1309             this->advance_token();
1310           else if (!this->peek_token()->is_op(OPERATOR_RPAREN))
1311             {
1312               error_at(this->location(), "expected %<;%> or %<)%> or newline");
1313               if (!this->skip_past_error(OPERATOR_RPAREN))
1314                 return;
1315             }
1316         }
1317       this->advance_token();
1318     }
1319
1320   if (last_expr_list != NULL)
1321     delete last_expr_list;
1322 }
1323
1324 // ConstSpec = IdentifierList [ [ CompleteType ] "=" ExpressionList ] .
1325
1326 void
1327 Parse::const_spec(Type** last_type, Expression_list** last_expr_list)
1328 {
1329   Typed_identifier_list til;
1330   this->identifier_list(&til);
1331
1332   Type* type = NULL;
1333   if (this->type_may_start_here())
1334     {
1335       type = this->type();
1336       *last_type = NULL;
1337       *last_expr_list = NULL;
1338     }
1339
1340   Expression_list *expr_list;
1341   if (!this->peek_token()->is_op(OPERATOR_EQ))
1342     {
1343       if (*last_expr_list == NULL)
1344         {
1345           error_at(this->location(), "expected %<=%>");
1346           return;
1347         }
1348       type = *last_type;
1349       expr_list = new Expression_list;
1350       for (Expression_list::const_iterator p = (*last_expr_list)->begin();
1351            p != (*last_expr_list)->end();
1352            ++p)
1353         expr_list->push_back((*p)->copy());
1354     }
1355   else
1356     {
1357       this->advance_token();
1358       expr_list = this->expression_list(NULL, false);
1359       *last_type = type;
1360       if (*last_expr_list != NULL)
1361         delete *last_expr_list;
1362       *last_expr_list = expr_list;
1363     }
1364
1365   Expression_list::const_iterator pe = expr_list->begin();
1366   for (Typed_identifier_list::iterator pi = til.begin();
1367        pi != til.end();
1368        ++pi, ++pe)
1369     {
1370       if (pe == expr_list->end())
1371         {
1372           error_at(this->location(), "not enough initializers");
1373           return;
1374         }
1375       if (type != NULL)
1376         pi->set_type(type);
1377
1378       if (!Gogo::is_sink_name(pi->name()))
1379         this->gogo_->add_constant(*pi, *pe, this->iota_value());
1380     }
1381   if (pe != expr_list->end())
1382     error_at(this->location(), "too many initializers");
1383
1384   this->increment_iota();
1385
1386   return;
1387 }
1388
1389 // TypeDecl = "type" Decl<TypeSpec> .
1390
1391 void
1392 Parse::type_decl()
1393 {
1394   gcc_assert(this->peek_token()->is_keyword(KEYWORD_TYPE));
1395   this->advance_token();
1396   this->decl(&Parse::type_spec, NULL);
1397 }
1398
1399 // TypeSpec = identifier Type .
1400
1401 void
1402 Parse::type_spec(void*)
1403 {
1404   const Token* token = this->peek_token();
1405   if (!token->is_identifier())
1406     {
1407       error_at(this->location(), "expected identifier");
1408       return;
1409     }
1410   std::string name = token->identifier();
1411   bool is_exported = token->is_identifier_exported();
1412   source_location location = token->location();
1413   token = this->advance_token();
1414
1415   // The scope of the type name starts at the point where the
1416   // identifier appears in the source code.  We implement this by
1417   // declaring the type before we read the type definition.
1418   Named_object* named_type = NULL;
1419   if (name != "_")
1420     {
1421       name = this->gogo_->pack_hidden_name(name, is_exported);
1422       named_type = this->gogo_->declare_type(name, location);
1423     }
1424
1425   Type* type;
1426   if (!this->peek_token()->is_op(OPERATOR_SEMICOLON))
1427     type = this->type();
1428   else
1429     {
1430       error_at(this->location(),
1431                "unexpected semicolon or newline in type declaration");
1432       type = Type::make_error_type();
1433       this->advance_token();
1434     }
1435
1436   if (type->is_error_type())
1437     {
1438       while (!this->peek_token()->is_op(OPERATOR_SEMICOLON)
1439              && !this->peek_token()->is_eof())
1440         this->advance_token();
1441     }
1442
1443   if (name != "_")
1444     {
1445       if (named_type->is_type_declaration())
1446         {
1447           Type* ftype = type->forwarded();
1448           if (ftype->forward_declaration_type() != NULL
1449               && (ftype->forward_declaration_type()->named_object()
1450                   == named_type))
1451             {
1452               error_at(location, "invalid recursive type");
1453               type = Type::make_error_type();
1454             }
1455
1456           this->gogo_->define_type(named_type,
1457                                    Type::make_named_type(named_type, type,
1458                                                          location));
1459           gcc_assert(named_type->package() == NULL);
1460         }
1461       else
1462         {
1463           // This will probably give a redefinition error.
1464           this->gogo_->add_type(name, type, location);
1465         }
1466     }
1467 }
1468
1469 // VarDecl = "var" Decl<VarSpec> .
1470
1471 void
1472 Parse::var_decl()
1473 {
1474   gcc_assert(this->peek_token()->is_keyword(KEYWORD_VAR));
1475   this->advance_token();
1476   this->decl(&Parse::var_spec, NULL);
1477 }
1478
1479 // VarSpec = IdentifierList
1480 //             ( CompleteType [ "=" ExpressionList ] | "=" ExpressionList ) .
1481
1482 void
1483 Parse::var_spec(void*)
1484 {
1485   // Get the variable names.
1486   Typed_identifier_list til;
1487   this->identifier_list(&til);
1488
1489   source_location location = this->location();
1490
1491   Type* type = NULL;
1492   Expression_list* init = NULL;
1493   if (!this->peek_token()->is_op(OPERATOR_EQ))
1494     {
1495       type = this->type();
1496       if (type->is_error_type())
1497         {
1498           while (!this->peek_token()->is_op(OPERATOR_EQ)
1499                  && !this->peek_token()->is_op(OPERATOR_SEMICOLON)
1500                  && !this->peek_token()->is_eof())
1501             this->advance_token();
1502         }
1503       if (this->peek_token()->is_op(OPERATOR_EQ))
1504         {
1505           this->advance_token();
1506           init = this->expression_list(NULL, false);
1507         }
1508     }
1509   else
1510     {
1511       this->advance_token();
1512       init = this->expression_list(NULL, false);
1513     }
1514
1515   this->init_vars(&til, type, init, false, location);
1516
1517   if (init != NULL)
1518     delete init;
1519 }
1520
1521 // Create variables.  TIL is a list of variable names.  If TYPE is not
1522 // NULL, it is the type of all the variables.  If INIT is not NULL, it
1523 // is an initializer list for the variables.
1524
1525 void
1526 Parse::init_vars(const Typed_identifier_list* til, Type* type,
1527                  Expression_list* init, bool is_coloneq,
1528                  source_location location)
1529 {
1530   // Check for an initialization which can yield multiple values.
1531   if (init != NULL && init->size() == 1 && til->size() > 1)
1532     {
1533       if (this->init_vars_from_call(til, type, *init->begin(), is_coloneq,
1534                                     location))
1535         return;
1536       if (this->init_vars_from_map(til, type, *init->begin(), is_coloneq,
1537                                    location))
1538         return;
1539       if (this->init_vars_from_receive(til, type, *init->begin(), is_coloneq,
1540                                        location))
1541         return;
1542       if (this->init_vars_from_type_guard(til, type, *init->begin(),
1543                                           is_coloneq, location))
1544         return;
1545     }
1546
1547   if (init != NULL && init->size() != til->size())
1548     {
1549       if (init->empty() || !init->front()->is_error_expression())
1550         error_at(location, "wrong number of initializations");
1551       init = NULL;
1552       if (type == NULL)
1553         type = Type::make_error_type();
1554     }
1555
1556   // Note that INIT was already parsed with the old name bindings, so
1557   // we don't have to worry that it will accidentally refer to the
1558   // newly declared variables.
1559
1560   Expression_list::const_iterator pexpr;
1561   if (init != NULL)
1562     pexpr = init->begin();
1563   bool any_new = false;
1564   for (Typed_identifier_list::const_iterator p = til->begin();
1565        p != til->end();
1566        ++p)
1567     {
1568       if (init != NULL)
1569         gcc_assert(pexpr != init->end());
1570       this->init_var(*p, type, init == NULL ? NULL : *pexpr, is_coloneq,
1571                      false, &any_new);
1572       if (init != NULL)
1573         ++pexpr;
1574     }
1575   if (init != NULL)
1576     gcc_assert(pexpr == init->end());
1577   if (is_coloneq && !any_new)
1578     error_at(location, "variables redeclared but no variable is new");
1579 }
1580
1581 // See if we need to initialize a list of variables from a function
1582 // call.  This returns true if we have set up the variables and the
1583 // initialization.
1584
1585 bool
1586 Parse::init_vars_from_call(const Typed_identifier_list* vars, Type* type,
1587                            Expression* expr, bool is_coloneq,
1588                            source_location location)
1589 {
1590   Call_expression* call = expr->call_expression();
1591   if (call == NULL)
1592     return false;
1593
1594   // This is a function call.  We can't check here whether it returns
1595   // the right number of values, but it might.  Declare the variables,
1596   // and then assign the results of the call to them.
1597
1598   unsigned int index = 0;
1599   bool any_new = false;
1600   for (Typed_identifier_list::const_iterator pv = vars->begin();
1601        pv != vars->end();
1602        ++pv, ++index)
1603     {
1604       Expression* init = Expression::make_call_result(call, index);
1605       this->init_var(*pv, type, init, is_coloneq, false, &any_new);
1606     }
1607
1608   if (is_coloneq && !any_new)
1609     error_at(location, "variables redeclared but no variable is new");
1610
1611   return true;
1612 }
1613
1614 // See if we need to initialize a pair of values from a map index
1615 // expression.  This returns true if we have set up the variables and
1616 // the initialization.
1617
1618 bool
1619 Parse::init_vars_from_map(const Typed_identifier_list* vars, Type* type,
1620                           Expression* expr, bool is_coloneq,
1621                           source_location location)
1622 {
1623   Index_expression* index = expr->index_expression();
1624   if (index == NULL)
1625     return false;
1626   if (vars->size() != 2)
1627     return false;
1628
1629   // This is an index which is being assigned to two variables.  It
1630   // must be a map index.  Declare the variables, and then assign the
1631   // results of the map index.
1632   bool any_new = false;
1633   Typed_identifier_list::const_iterator p = vars->begin();
1634   Expression* init = type == NULL ? index : NULL;
1635   Named_object* val_no = this->init_var(*p, type, init, is_coloneq,
1636                                         type == NULL, &any_new);
1637   if (type == NULL && any_new && val_no->is_variable())
1638     val_no->var_value()->set_type_from_init_tuple();
1639   Expression* val_var = Expression::make_var_reference(val_no, location);
1640
1641   ++p;
1642   Type* var_type = type;
1643   if (var_type == NULL)
1644     var_type = Type::lookup_bool_type();
1645   Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1646                                     &any_new);
1647   Expression* present_var = Expression::make_var_reference(no, location);
1648
1649   if (is_coloneq && !any_new)
1650     error_at(location, "variables redeclared but no variable is new");
1651
1652   Statement* s = Statement::make_tuple_map_assignment(val_var, present_var,
1653                                                       index, location);
1654
1655   if (!this->gogo_->in_global_scope())
1656     this->gogo_->add_statement(s);
1657   else if (!val_no->is_sink())
1658     {
1659       if (val_no->is_variable())
1660         val_no->var_value()->add_preinit_statement(this->gogo_, s);
1661     }
1662   else if (!no->is_sink())
1663     {
1664       if (no->is_variable())
1665         no->var_value()->add_preinit_statement(this->gogo_, s);
1666     }
1667   else
1668     {
1669       // Execute the map index expression just so that we can fail if
1670       // the map is nil.
1671       Named_object* dummy = this->create_dummy_global(Type::lookup_bool_type(),
1672                                                       NULL, location);
1673       dummy->var_value()->add_preinit_statement(this->gogo_, s);
1674     }
1675
1676   return true;
1677 }
1678
1679 // See if we need to initialize a pair of values from a receive
1680 // expression.  This returns true if we have set up the variables and
1681 // the initialization.
1682
1683 bool
1684 Parse::init_vars_from_receive(const Typed_identifier_list* vars, Type* type,
1685                               Expression* expr, bool is_coloneq,
1686                               source_location location)
1687 {
1688   Receive_expression* receive = expr->receive_expression();
1689   if (receive == NULL)
1690     return false;
1691   if (vars->size() != 2)
1692     return false;
1693
1694   // This is a receive expression which is being assigned to two
1695   // variables.  Declare the variables, and then assign the results of
1696   // the receive.
1697   bool any_new = false;
1698   Typed_identifier_list::const_iterator p = vars->begin();
1699   Expression* init = type == NULL ? receive : NULL;
1700   Named_object* val_no = this->init_var(*p, type, init, is_coloneq,
1701                                         type == NULL, &any_new);
1702   if (type == NULL && any_new && val_no->is_variable())
1703     val_no->var_value()->set_type_from_init_tuple();
1704   Expression* val_var = Expression::make_var_reference(val_no, location);
1705
1706   ++p;
1707   Type* var_type = type;
1708   if (var_type == NULL)
1709     var_type = Type::lookup_bool_type();
1710   Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1711                                     &any_new);
1712   Expression* received_var = Expression::make_var_reference(no, location);
1713
1714   if (is_coloneq && !any_new)
1715     error_at(location, "variables redeclared but no variable is new");
1716
1717   Statement* s = Statement::make_tuple_receive_assignment(val_var,
1718                                                           received_var,
1719                                                           receive->channel(),
1720                                                           location);
1721
1722   if (!this->gogo_->in_global_scope())
1723     this->gogo_->add_statement(s);
1724   else if (!val_no->is_sink())
1725     {
1726       if (val_no->is_variable())
1727         val_no->var_value()->add_preinit_statement(this->gogo_, s);
1728     }
1729   else if (!no->is_sink())
1730     {
1731       if (no->is_variable())
1732         no->var_value()->add_preinit_statement(this->gogo_, s);
1733     }
1734   else
1735     {
1736       Named_object* dummy = this->create_dummy_global(Type::lookup_bool_type(),
1737                                                       NULL, location);
1738       dummy->var_value()->add_preinit_statement(this->gogo_, s);
1739     }
1740
1741   return true;
1742 }
1743
1744 // See if we need to initialize a pair of values from a type guard
1745 // expression.  This returns true if we have set up the variables and
1746 // the initialization.
1747
1748 bool
1749 Parse::init_vars_from_type_guard(const Typed_identifier_list* vars,
1750                                  Type* type, Expression* expr,
1751                                  bool is_coloneq, source_location location)
1752 {
1753   Type_guard_expression* type_guard = expr->type_guard_expression();
1754   if (type_guard == NULL)
1755     return false;
1756   if (vars->size() != 2)
1757     return false;
1758
1759   // This is a type guard expression which is being assigned to two
1760   // variables.  Declare the variables, and then assign the results of
1761   // the type guard.
1762   bool any_new = false;
1763   Typed_identifier_list::const_iterator p = vars->begin();
1764   Type* var_type = type;
1765   if (var_type == NULL)
1766     var_type = type_guard->type();
1767   Named_object* val_no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1768                                         &any_new);
1769   Expression* val_var = Expression::make_var_reference(val_no, location);
1770
1771   ++p;
1772   var_type = type;
1773   if (var_type == NULL)
1774     var_type = Type::lookup_bool_type();
1775   Named_object* no = this->init_var(*p, var_type, NULL, is_coloneq, false,
1776                                     &any_new);
1777   Expression* ok_var = Expression::make_var_reference(no, location);
1778
1779   Expression* texpr = type_guard->expr();
1780   Type* t = type_guard->type();
1781   Statement* s = Statement::make_tuple_type_guard_assignment(val_var, ok_var,
1782                                                              texpr, t,
1783                                                              location);
1784
1785   if (is_coloneq && !any_new)
1786     error_at(location, "variables redeclared but no variable is new");
1787
1788   if (!this->gogo_->in_global_scope())
1789     this->gogo_->add_statement(s);
1790   else if (!val_no->is_sink())
1791     {
1792       if (val_no->is_variable())
1793         val_no->var_value()->add_preinit_statement(this->gogo_, s);
1794     }
1795   else if (!no->is_sink())
1796     {
1797       if (no->is_variable())
1798         no->var_value()->add_preinit_statement(this->gogo_, s);
1799     }
1800   else
1801     {
1802       Named_object* dummy = this->create_dummy_global(type, NULL, location);
1803       dummy->var_value()->add_preinit_statement(this->gogo_, s);
1804     }
1805
1806   return true;
1807 }
1808
1809 // Create a single variable.  If IS_COLONEQ is true, we permit
1810 // redeclarations in the same block, and we set *IS_NEW when we find a
1811 // new variable which is not a redeclaration.
1812
1813 Named_object*
1814 Parse::init_var(const Typed_identifier& tid, Type* type, Expression* init,
1815                 bool is_coloneq, bool type_from_init, bool* is_new)
1816 {
1817   source_location location = tid.location();
1818
1819   if (Gogo::is_sink_name(tid.name()))
1820     {
1821       if (!type_from_init && init != NULL)
1822         {
1823           if (!this->gogo_->in_global_scope())
1824             this->gogo_->add_statement(Statement::make_statement(init));
1825           else
1826             return this->create_dummy_global(type, init, location);
1827         }
1828       return this->gogo_->add_sink();
1829     }
1830
1831   if (is_coloneq)
1832     {
1833       Named_object* no = this->gogo_->lookup_in_block(tid.name());
1834       if (no != NULL
1835           && (no->is_variable() || no->is_result_variable()))
1836         {
1837           // INIT may be NULL even when IS_COLONEQ is true for cases
1838           // like v, ok := x.(int).
1839           if (!type_from_init && init != NULL)
1840             {
1841               Expression *v = Expression::make_var_reference(no, location);
1842               Statement *s = Statement::make_assignment(v, init, location);
1843               this->gogo_->add_statement(s);
1844             }
1845           return no;
1846         }
1847     }
1848   *is_new = true;
1849   Variable* var = new Variable(type, init, this->gogo_->in_global_scope(),
1850                                false, false, location);
1851   Named_object* no = this->gogo_->add_variable(tid.name(), var);
1852   if (!no->is_variable())
1853     {
1854       // The name is already defined, so we just gave an error.
1855       return this->gogo_->add_sink();
1856     }
1857   return no;
1858 }
1859
1860 // Create a dummy global variable to force an initializer to be run in
1861 // the right place.  This is used when a sink variable is initialized
1862 // at global scope.
1863
1864 Named_object*
1865 Parse::create_dummy_global(Type* type, Expression* init,
1866                            source_location location)
1867 {
1868   if (type == NULL && init == NULL)
1869     type = Type::lookup_bool_type();
1870   Variable* var = new Variable(type, init, true, false, false, location);
1871   static int count;
1872   char buf[30];
1873   snprintf(buf, sizeof buf, "_.%d", count);
1874   ++count;
1875   return this->gogo_->add_variable(buf, var);
1876 }
1877
1878 // SimpleVarDecl = identifier ":=" Expression .
1879
1880 // We've already seen the identifier.
1881
1882 // FIXME: We also have to implement
1883 //  IdentifierList ":=" ExpressionList
1884 // In order to support both "a, b := 1, 0" and "a, b = 1, 0" we accept
1885 // tuple assignments here as well.
1886
1887 // If P_RANGE_CLAUSE is not NULL, then this will recognize a
1888 // RangeClause.
1889
1890 // If P_TYPE_SWITCH is not NULL, this will recognize a type switch
1891 // guard (var := expr.("type") using the literal keyword "type").
1892
1893 void
1894 Parse::simple_var_decl_or_assignment(const std::string& name,
1895                                      source_location location,
1896                                      Range_clause* p_range_clause,
1897                                      Type_switch* p_type_switch)
1898 {
1899   Typed_identifier_list til;
1900   til.push_back(Typed_identifier(name, NULL, location));
1901
1902   // We've seen one identifier.  If we see a comma now, this could be
1903   // "a, *p = 1, 2".
1904   if (this->peek_token()->is_op(OPERATOR_COMMA))
1905     {
1906       gcc_assert(p_type_switch == NULL);
1907       while (true)
1908         {
1909           const Token* token = this->advance_token();
1910           if (!token->is_identifier())
1911             break;
1912
1913           std::string id = token->identifier();
1914           bool is_id_exported = token->is_identifier_exported();
1915           source_location id_location = token->location();
1916
1917           token = this->advance_token();
1918           if (!token->is_op(OPERATOR_COMMA))
1919             {
1920               if (token->is_op(OPERATOR_COLONEQ))
1921                 {
1922                   id = this->gogo_->pack_hidden_name(id, is_id_exported);
1923                   til.push_back(Typed_identifier(id, NULL, location));
1924                 }
1925               else
1926                 this->unget_token(Token::make_identifier_token(id,
1927                                                                is_id_exported,
1928                                                                id_location));
1929               break;
1930             }
1931
1932           id = this->gogo_->pack_hidden_name(id, is_id_exported);
1933           til.push_back(Typed_identifier(id, NULL, location));
1934         }
1935
1936       // We have a comma separated list of identifiers in TIL.  If the
1937       // next token is COLONEQ, then this is a simple var decl, and we
1938       // have the complete list of identifiers.  If the next token is
1939       // not COLONEQ, then the only valid parse is a tuple assignment.
1940       // The list of identifiers we have so far is really a list of
1941       // expressions.  There are more expressions following.
1942
1943       if (!this->peek_token()->is_op(OPERATOR_COLONEQ))
1944         {
1945           Expression_list* exprs = new Expression_list;
1946           for (Typed_identifier_list::const_iterator p = til.begin();
1947                p != til.end();
1948                ++p)
1949             exprs->push_back(this->id_to_expression(p->name(),
1950                                                     p->location()));
1951
1952           Expression_list* more_exprs = this->expression_list(NULL, true);
1953           for (Expression_list::const_iterator p = more_exprs->begin();
1954                p != more_exprs->end();
1955                ++p)
1956             exprs->push_back(*p);
1957           delete more_exprs;
1958
1959           this->tuple_assignment(exprs, p_range_clause);
1960           return;
1961         }
1962     }
1963
1964   gcc_assert(this->peek_token()->is_op(OPERATOR_COLONEQ));
1965   const Token* token = this->advance_token();
1966
1967   if (p_range_clause != NULL && token->is_keyword(KEYWORD_RANGE))
1968     {
1969       this->range_clause_decl(&til, p_range_clause);
1970       return;
1971     }
1972
1973   Expression_list* init;
1974   if (p_type_switch == NULL)
1975     init = this->expression_list(NULL, false);
1976   else
1977     {
1978       bool is_type_switch = false;
1979       Expression* expr = this->expression(PRECEDENCE_NORMAL, false, true,
1980                                           &is_type_switch);
1981       if (is_type_switch)
1982         {
1983           p_type_switch->found = true;
1984           p_type_switch->name = name;
1985           p_type_switch->location = location;
1986           p_type_switch->expr = expr;
1987           return;
1988         }
1989
1990       if (!this->peek_token()->is_op(OPERATOR_COMMA))
1991         {
1992           init = new Expression_list();
1993           init->push_back(expr);
1994         }
1995       else
1996         {
1997           this->advance_token();
1998           init = this->expression_list(expr, false);
1999         }
2000     }
2001
2002   this->init_vars(&til, NULL, init, true, location);
2003 }
2004
2005 // FunctionDecl = "func" identifier Signature [ Block ] .
2006 // MethodDecl = "func" Receiver identifier Signature [ Block ] .
2007
2008 // gcc extension:
2009 //   FunctionDecl = "func" identifier Signature
2010 //                    __asm__ "(" string_lit ")" .
2011 // This extension means a function whose real name is the identifier
2012 // inside the asm.
2013
2014 void
2015 Parse::function_decl()
2016 {
2017   gcc_assert(this->peek_token()->is_keyword(KEYWORD_FUNC));
2018   source_location location = this->location();
2019   const Token* token = this->advance_token();
2020
2021   Typed_identifier* rec = NULL;
2022   if (token->is_op(OPERATOR_LPAREN))
2023     {
2024       rec = this->receiver();
2025       token = this->peek_token();
2026     }
2027
2028   if (!token->is_identifier())
2029     {
2030       error_at(this->location(), "expected function name");
2031       return;
2032     }
2033
2034   std::string name =
2035     this->gogo_->pack_hidden_name(token->identifier(),
2036                                   token->is_identifier_exported());
2037
2038   this->advance_token();
2039
2040   Function_type* fntype = this->signature(rec, this->location());
2041   if (fntype == NULL)
2042     return;
2043
2044   Named_object* named_object = NULL;
2045
2046   if (this->peek_token()->is_keyword(KEYWORD_ASM))
2047     {
2048       if (!this->advance_token()->is_op(OPERATOR_LPAREN))
2049         {
2050           error_at(this->location(), "expected %<(%>");
2051           return;
2052         }
2053       token = this->advance_token();
2054       if (!token->is_string())
2055         {
2056           error_at(this->location(), "expected string");
2057           return;
2058         }
2059       std::string asm_name = token->string_value();
2060       if (!this->advance_token()->is_op(OPERATOR_RPAREN))
2061         {
2062           error_at(this->location(), "expected %<)%>");
2063           return;
2064         }
2065       this->advance_token();
2066       named_object = this->gogo_->declare_function(name, fntype, location);
2067       if (named_object->is_function_declaration())
2068         named_object->func_declaration_value()->set_asm_name(asm_name);
2069     }
2070
2071   // Check for the easy error of a newline before the opening brace.
2072   if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
2073     {
2074       source_location semi_loc = this->location();
2075       if (this->advance_token()->is_op(OPERATOR_LCURLY))
2076         error_at(this->location(),
2077                  "unexpected semicolon or newline before %<{%>");
2078       else
2079         this->unget_token(Token::make_operator_token(OPERATOR_SEMICOLON,
2080                                                      semi_loc));
2081     }
2082
2083   if (!this->peek_token()->is_op(OPERATOR_LCURLY))
2084     {
2085       if (named_object == NULL)
2086         named_object = this->gogo_->declare_function(name, fntype, location);
2087     }
2088   else
2089     {
2090       this->gogo_->start_function(name, fntype, true, location);
2091       source_location end_loc = this->block();
2092       this->gogo_->finish_function(end_loc);
2093     }
2094 }
2095
2096 // Receiver     = "(" [ identifier ] [ "*" ] BaseTypeName ")" .
2097 // BaseTypeName = identifier .
2098
2099 Typed_identifier*
2100 Parse::receiver()
2101 {
2102   gcc_assert(this->peek_token()->is_op(OPERATOR_LPAREN));
2103
2104   std::string name;
2105   const Token* token = this->advance_token();
2106   source_location location = token->location();
2107   if (!token->is_op(OPERATOR_MULT))
2108     {
2109       if (!token->is_identifier())
2110         {
2111           error_at(this->location(), "method has no receiver");
2112           while (!token->is_eof() && !token->is_op(OPERATOR_RPAREN))
2113             token = this->advance_token();
2114           if (!token->is_eof())
2115             this->advance_token();
2116           return NULL;
2117         }
2118       name = token->identifier();
2119       bool is_exported = token->is_identifier_exported();
2120       token = this->advance_token();
2121       if (!token->is_op(OPERATOR_DOT) && !token->is_op(OPERATOR_RPAREN))
2122         {
2123           // An identifier followed by something other than a dot or a
2124           // right parenthesis must be a receiver name followed by a
2125           // type.
2126           name = this->gogo_->pack_hidden_name(name, is_exported);
2127         }
2128       else
2129         {
2130           // This must be a type name.
2131           this->unget_token(Token::make_identifier_token(name, is_exported,
2132                                                          location));
2133           token = this->peek_token();
2134           name.clear();
2135         }
2136     }
2137
2138   // Here the receiver name is in NAME (it is empty if the receiver is
2139   // unnamed) and TOKEN is the first token in the type.
2140
2141   bool is_pointer = false;
2142   if (token->is_op(OPERATOR_MULT))
2143     {
2144       is_pointer = true;
2145       token = this->advance_token();
2146     }
2147
2148   if (!token->is_identifier())
2149     {
2150       error_at(this->location(), "expected receiver name or type");
2151       int c = token->is_op(OPERATOR_LPAREN) ? 1 : 0;
2152       while (!token->is_eof())
2153         {
2154           token = this->advance_token();
2155           if (token->is_op(OPERATOR_LPAREN))
2156             ++c;
2157           else if (token->is_op(OPERATOR_RPAREN))
2158             {
2159               if (c == 0)
2160                 break;
2161               --c;
2162             }
2163         }
2164       if (!token->is_eof())
2165         this->advance_token();
2166       return NULL;
2167     }
2168
2169   Type* type = this->type_name(true);
2170
2171   if (is_pointer && !type->is_error_type())
2172     type = Type::make_pointer_type(type);
2173
2174   if (this->peek_token()->is_op(OPERATOR_RPAREN))
2175     this->advance_token();
2176   else
2177     {
2178       if (this->peek_token()->is_op(OPERATOR_COMMA))
2179         error_at(this->location(), "method has multiple receivers");
2180       else
2181         error_at(this->location(), "expected %<)%>");
2182       while (!token->is_eof() && !token->is_op(OPERATOR_RPAREN))
2183         token = this->advance_token();
2184       if (!token->is_eof())
2185         this->advance_token();
2186       return NULL;
2187     }
2188
2189   return new Typed_identifier(name, type, location);
2190 }
2191
2192 // Operand    = Literal | QualifiedIdent | MethodExpr | "(" Expression ")" .
2193 // Literal    = BasicLit | CompositeLit | FunctionLit .
2194 // BasicLit   = int_lit | float_lit | imaginary_lit | char_lit | string_lit .
2195
2196 // If MAY_BE_SINK is true, this operand may be "_".
2197
2198 Expression*
2199 Parse::operand(bool may_be_sink)
2200 {
2201   const Token* token = this->peek_token();
2202   Expression* ret;
2203   switch (token->classification())
2204     {
2205     case Token::TOKEN_IDENTIFIER:
2206       {
2207         source_location location = token->location();
2208         std::string id = token->identifier();
2209         bool is_exported = token->is_identifier_exported();
2210         std::string packed = this->gogo_->pack_hidden_name(id, is_exported);
2211
2212         Named_object* in_function;
2213         Named_object* named_object = this->gogo_->lookup(packed, &in_function);
2214
2215         Package* package = NULL;
2216         if (named_object != NULL && named_object->is_package())
2217           {
2218             if (!this->advance_token()->is_op(OPERATOR_DOT)
2219                 || !this->advance_token()->is_identifier())
2220               {
2221                 error_at(location, "unexpected reference to package");
2222                 return Expression::make_error(location);
2223               }
2224             package = named_object->package_value();
2225             package->set_used();
2226             id = this->peek_token()->identifier();
2227             is_exported = this->peek_token()->is_identifier_exported();
2228             packed = this->gogo_->pack_hidden_name(id, is_exported);
2229             named_object = package->lookup(packed);
2230             location = this->location();
2231             gcc_assert(in_function == NULL);
2232           }
2233
2234         this->advance_token();
2235
2236         if (named_object != NULL
2237             && named_object->is_type()
2238             && !named_object->type_value()->is_visible())
2239           {
2240             gcc_assert(package != NULL);
2241             error_at(location, "invalid reference to hidden type %<%s.%s%>",
2242                      Gogo::message_name(package->name()).c_str(),
2243                      Gogo::message_name(id).c_str());
2244             return Expression::make_error(location);
2245           }
2246
2247
2248         if (named_object == NULL)
2249           {
2250             if (package != NULL)
2251               {
2252                 std::string n1 = Gogo::message_name(package->name());
2253                 std::string n2 = Gogo::message_name(id);
2254                 if (!is_exported)
2255                   error_at(location,
2256                            ("invalid reference to unexported identifier "
2257                             "%<%s.%s%>"),
2258                            n1.c_str(), n2.c_str());
2259                 else
2260                   error_at(location,
2261                            "reference to undefined identifier %<%s.%s%>",
2262                            n1.c_str(), n2.c_str());
2263                 return Expression::make_error(location);
2264               }
2265
2266             named_object = this->gogo_->add_unknown_name(packed, location);
2267           }
2268
2269         if (in_function != NULL
2270             && in_function != this->gogo_->current_function()
2271             && (named_object->is_variable()
2272                 || named_object->is_result_variable()))
2273           return this->enclosing_var_reference(in_function, named_object,
2274                                                location);
2275
2276         switch (named_object->classification())
2277           {
2278           case Named_object::NAMED_OBJECT_CONST:
2279             return Expression::make_const_reference(named_object, location);
2280           case Named_object::NAMED_OBJECT_TYPE:
2281             return Expression::make_type(named_object->type_value(), location);
2282           case Named_object::NAMED_OBJECT_TYPE_DECLARATION:
2283             {
2284               Type* t = Type::make_forward_declaration(named_object);
2285               return Expression::make_type(t, location);
2286             }
2287           case Named_object::NAMED_OBJECT_VAR:
2288           case Named_object::NAMED_OBJECT_RESULT_VAR:
2289             return Expression::make_var_reference(named_object, location);
2290           case Named_object::NAMED_OBJECT_SINK:
2291             if (may_be_sink)
2292               return Expression::make_sink(location);
2293             else
2294               {
2295                 error_at(location, "cannot use _ as value");
2296                 return Expression::make_error(location);
2297               }
2298           case Named_object::NAMED_OBJECT_FUNC:
2299           case Named_object::NAMED_OBJECT_FUNC_DECLARATION:
2300             return Expression::make_func_reference(named_object, NULL,
2301                                                    location);
2302           case Named_object::NAMED_OBJECT_UNKNOWN:
2303             return Expression::make_unknown_reference(named_object, location);
2304           default:
2305             gcc_unreachable();
2306           }
2307       }
2308       gcc_unreachable();
2309
2310     case Token::TOKEN_STRING:
2311       ret = Expression::make_string(token->string_value(), token->location());
2312       this->advance_token();
2313       return ret;
2314
2315     case Token::TOKEN_INTEGER:
2316       ret = Expression::make_integer(token->integer_value(), NULL,
2317                                      token->location());
2318       this->advance_token();
2319       return ret;
2320
2321     case Token::TOKEN_FLOAT:
2322       ret = Expression::make_float(token->float_value(), NULL,
2323                                    token->location());
2324       this->advance_token();
2325       return ret;
2326
2327     case Token::TOKEN_IMAGINARY:
2328       {
2329         mpfr_t zero;
2330         mpfr_init_set_ui(zero, 0, GMP_RNDN);
2331         ret = Expression::make_complex(&zero, token->imaginary_value(),
2332                                        NULL, token->location());
2333         mpfr_clear(zero);
2334         this->advance_token();
2335         return ret;
2336       }
2337
2338     case Token::TOKEN_KEYWORD:
2339       switch (token->keyword())
2340         {
2341         case KEYWORD_FUNC:
2342           return this->function_lit();
2343         case KEYWORD_CHAN:
2344         case KEYWORD_INTERFACE:
2345         case KEYWORD_MAP:
2346         case KEYWORD_STRUCT:
2347           {
2348             source_location location = token->location();
2349             return Expression::make_type(this->type(), location);
2350           }
2351         default:
2352           break;
2353         }
2354       break;
2355
2356     case Token::TOKEN_OPERATOR:
2357       if (token->is_op(OPERATOR_LPAREN))
2358         {
2359           this->advance_token();
2360           ret = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2361           if (!this->peek_token()->is_op(OPERATOR_RPAREN))
2362             error_at(this->location(), "missing %<)%>");
2363           else
2364             this->advance_token();
2365           return ret;
2366         }
2367       else if (token->is_op(OPERATOR_LSQUARE))
2368         {
2369           // Here we call array_type directly, as this is the only
2370           // case where an ellipsis is permitted for an array type.
2371           source_location location = token->location();
2372           return Expression::make_type(this->array_type(true), location);
2373         }
2374       break;
2375
2376     default:
2377       break;
2378     }
2379
2380   error_at(this->location(), "expected operand");
2381   return Expression::make_error(this->location());
2382 }
2383
2384 // Handle a reference to a variable in an enclosing function.  We add
2385 // it to a list of such variables.  We return a reference to a field
2386 // in a struct which will be passed on the static chain when calling
2387 // the current function.
2388
2389 Expression*
2390 Parse::enclosing_var_reference(Named_object* in_function, Named_object* var,
2391                                source_location location)
2392 {
2393   gcc_assert(var->is_variable() || var->is_result_variable());
2394
2395   Named_object* this_function = this->gogo_->current_function();
2396   Named_object* closure = this_function->func_value()->closure_var();
2397
2398   Enclosing_var ev(var, in_function, this->enclosing_vars_.size());
2399   std::pair<Enclosing_vars::iterator, bool> ins =
2400     this->enclosing_vars_.insert(ev);
2401   if (ins.second)
2402     {
2403       // This is a variable we have not seen before.  Add a new field
2404       // to the closure type.
2405       this_function->func_value()->add_closure_field(var, location);
2406     }
2407
2408   Expression* closure_ref = Expression::make_var_reference(closure,
2409                                                            location);
2410   closure_ref = Expression::make_unary(OPERATOR_MULT, closure_ref, location);
2411
2412   // The closure structure holds pointers to the variables, so we need
2413   // to introduce an indirection.
2414   Expression* e = Expression::make_field_reference(closure_ref,
2415                                                    ins.first->index(),
2416                                                    location);
2417   e = Expression::make_unary(OPERATOR_MULT, e, location);
2418   return e;
2419 }
2420
2421 // CompositeLit  = LiteralType LiteralValue .
2422 // LiteralType   = StructType | ArrayType | "[" "..." "]" ElementType |
2423 //                 SliceType | MapType | TypeName .
2424 // LiteralValue  = "{" [ ElementList [ "," ] ] "}" .
2425 // ElementList   = Element { "," Element } .
2426 // Element       = [ Key ":" ] Value .
2427 // Key           = Expression .
2428 // Value         = Expression | LiteralValue .
2429
2430 // We have already seen the type if there is one, and we are now
2431 // looking at the LiteralValue.  The case "[" "..."  "]" ElementType
2432 // will be seen here as an array type whose length is "nil".  The
2433 // DEPTH parameter is non-zero if this is an embedded composite
2434 // literal and the type was omitted.  It gives the number of steps up
2435 // to the type which was provided.  E.g., in [][]int{{1}} it will be
2436 // 1.  In [][][]int{{{1}}} it will be 2.
2437
2438 Expression*
2439 Parse::composite_lit(Type* type, int depth, source_location location)
2440 {
2441   gcc_assert(this->peek_token()->is_op(OPERATOR_LCURLY));
2442   this->advance_token();
2443
2444   if (this->peek_token()->is_op(OPERATOR_RCURLY))
2445     {
2446       this->advance_token();
2447       return Expression::make_composite_literal(type, depth, false, NULL,
2448                                                 location);
2449     }
2450
2451   bool has_keys = false;
2452   Expression_list* vals = new Expression_list;
2453   while (true)
2454     {
2455       Expression* val;
2456       bool is_type_omitted = false;
2457
2458       const Token* token = this->peek_token();
2459
2460       if (!token->is_op(OPERATOR_LCURLY))
2461         val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2462       else
2463         {
2464           // This must be a composite literal inside another composite
2465           // literal, with the type omitted for the inner one.
2466           val = this->composite_lit(type, depth + 1, token->location());
2467           is_type_omitted = true;
2468         }
2469
2470       token = this->peek_token();
2471       if (!token->is_op(OPERATOR_COLON))
2472         {
2473           if (has_keys)
2474             vals->push_back(NULL);
2475         }
2476       else
2477         {
2478           if (is_type_omitted && !val->is_error_expression())
2479             {
2480               error_at(this->location(), "unexpected %<:%>");
2481               val = Expression::make_error(this->location());
2482             }
2483
2484           this->advance_token();
2485
2486           if (!has_keys && !vals->empty())
2487             {
2488               Expression_list* newvals = new Expression_list;
2489               for (Expression_list::const_iterator p = vals->begin();
2490                    p != vals->end();
2491                    ++p)
2492                 {
2493                   newvals->push_back(NULL);
2494                   newvals->push_back(*p);
2495                 }
2496               delete vals;
2497               vals = newvals;
2498             }
2499           has_keys = true;
2500
2501           if (val->unknown_expression() != NULL)
2502             val->unknown_expression()->set_is_composite_literal_key();
2503
2504           vals->push_back(val);
2505
2506           if (!token->is_op(OPERATOR_LCURLY))
2507             val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2508           else
2509             {
2510               // This must be a composite literal inside another
2511               // composite literal, with the type omitted for the
2512               // inner one.
2513               val = this->composite_lit(type, depth + 1, token->location());
2514             }
2515
2516           token = this->peek_token();
2517         }
2518
2519       vals->push_back(val);
2520
2521       if (token->is_op(OPERATOR_COMMA))
2522         {
2523           if (this->advance_token()->is_op(OPERATOR_RCURLY))
2524             {
2525               this->advance_token();
2526               break;
2527             }
2528         }
2529       else if (token->is_op(OPERATOR_RCURLY))
2530         {
2531           this->advance_token();
2532           break;
2533         }
2534       else
2535         {
2536           error_at(this->location(), "expected %<,%> or %<}%>");
2537
2538           int depth = 0;
2539           while (!token->is_eof()
2540                  && (depth > 0 || !token->is_op(OPERATOR_RCURLY)))
2541             {
2542               if (token->is_op(OPERATOR_LCURLY))
2543                 ++depth;
2544               else if (token->is_op(OPERATOR_RCURLY))
2545                 --depth;
2546               token = this->advance_token();
2547             }
2548           if (token->is_op(OPERATOR_RCURLY))
2549             this->advance_token();
2550
2551           return Expression::make_error(location);
2552         }
2553     }
2554
2555   return Expression::make_composite_literal(type, depth, has_keys, vals,
2556                                             location);
2557 }
2558
2559 // FunctionLit = "func" Signature Block .
2560
2561 Expression*
2562 Parse::function_lit()
2563 {
2564   source_location location = this->location();
2565   gcc_assert(this->peek_token()->is_keyword(KEYWORD_FUNC));
2566   this->advance_token();
2567
2568   Enclosing_vars hold_enclosing_vars;
2569   hold_enclosing_vars.swap(this->enclosing_vars_);
2570
2571   Function_type* type = this->signature(NULL, location);
2572   if (type == NULL)
2573     type = Type::make_function_type(NULL, NULL, NULL, location);
2574
2575   // For a function literal, the next token must be a '{'.  If we
2576   // don't see that, then we may have a type expression.
2577   if (!this->peek_token()->is_op(OPERATOR_LCURLY))
2578     return Expression::make_type(type, location);
2579
2580   Bc_stack* hold_break_stack = this->break_stack_;
2581   Bc_stack* hold_continue_stack = this->continue_stack_;
2582   this->break_stack_ = NULL;
2583   this->continue_stack_ = NULL;
2584
2585   Named_object* no = this->gogo_->start_function("", type, true, location);
2586
2587   source_location end_loc = this->block();
2588
2589   this->gogo_->finish_function(end_loc);
2590
2591   if (this->break_stack_ != NULL)
2592     delete this->break_stack_;
2593   if (this->continue_stack_ != NULL)
2594     delete this->continue_stack_;
2595   this->break_stack_ = hold_break_stack;
2596   this->continue_stack_ = hold_continue_stack;
2597
2598   hold_enclosing_vars.swap(this->enclosing_vars_);
2599
2600   Expression* closure = this->create_closure(no, &hold_enclosing_vars,
2601                                              location);
2602
2603   return Expression::make_func_reference(no, closure, location);
2604 }
2605
2606 // Create a closure for the nested function FUNCTION.  This is based
2607 // on ENCLOSING_VARS, which is a list of all variables defined in
2608 // enclosing functions and referenced from FUNCTION.  A closure is the
2609 // address of a struct which contains the addresses of all the
2610 // referenced variables.  This returns NULL if no closure is required.
2611
2612 Expression*
2613 Parse::create_closure(Named_object* function, Enclosing_vars* enclosing_vars,
2614                       source_location location)
2615 {
2616   if (enclosing_vars->empty())
2617     return NULL;
2618
2619   // Get the variables in order by their field index.
2620
2621   size_t enclosing_var_count = enclosing_vars->size();
2622   std::vector<Enclosing_var> ev(enclosing_var_count);
2623   for (Enclosing_vars::const_iterator p = enclosing_vars->begin();
2624        p != enclosing_vars->end();
2625        ++p)
2626     ev[p->index()] = *p;
2627
2628   // Build an initializer for a composite literal of the closure's
2629   // type.
2630
2631   Named_object* enclosing_function = this->gogo_->current_function();
2632   Expression_list* initializer = new Expression_list;
2633   for (size_t i = 0; i < enclosing_var_count; ++i)
2634     {
2635       gcc_assert(ev[i].index() == i);
2636       Named_object* var = ev[i].var();
2637       Expression* ref;
2638       if (ev[i].in_function() == enclosing_function)
2639         ref = Expression::make_var_reference(var, location);
2640       else
2641         ref = this->enclosing_var_reference(ev[i].in_function(), var,
2642                                             location);
2643       Expression* refaddr = Expression::make_unary(OPERATOR_AND, ref,
2644                                                    location);
2645       initializer->push_back(refaddr);
2646     }
2647
2648   Named_object* closure_var = function->func_value()->closure_var();
2649   Struct_type* st = closure_var->var_value()->type()->deref()->struct_type();
2650   Expression* cv = Expression::make_struct_composite_literal(st, initializer,
2651                                                              location);
2652   return Expression::make_heap_composite(cv, location);
2653 }
2654
2655 // PrimaryExpr = Operand { Selector | Index | Slice | TypeGuard | Call } .
2656
2657 // If MAY_BE_SINK is true, this expression may be "_".
2658
2659 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
2660 // literal.
2661
2662 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
2663 // guard (var := expr.("type") using the literal keyword "type").
2664
2665 Expression*
2666 Parse::primary_expr(bool may_be_sink, bool may_be_composite_lit,
2667                     bool* is_type_switch)
2668 {
2669   source_location start_loc = this->location();
2670   bool is_parenthesized = this->peek_token()->is_op(OPERATOR_LPAREN);
2671
2672   Expression* ret = this->operand(may_be_sink);
2673
2674   // An unknown name followed by a curly brace must be a composite
2675   // literal, and the unknown name must be a type.
2676   if (may_be_composite_lit
2677       && !is_parenthesized
2678       && ret->unknown_expression() != NULL
2679       && this->peek_token()->is_op(OPERATOR_LCURLY))
2680     {
2681       Named_object* no = ret->unknown_expression()->named_object();
2682       Type* type = Type::make_forward_declaration(no);
2683       ret = Expression::make_type(type, ret->location());
2684     }
2685
2686   // We handle composite literals and type casts here, as it is the
2687   // easiest way to handle types which are in parentheses, as in
2688   // "((uint))(1)".
2689   if (ret->is_type_expression())
2690     {
2691       if (this->peek_token()->is_op(OPERATOR_LCURLY))
2692         {
2693           if (is_parenthesized)
2694             error_at(start_loc,
2695                      "cannot parenthesize type in composite literal");
2696           ret = this->composite_lit(ret->type(), 0, ret->location());
2697         }
2698       else if (this->peek_token()->is_op(OPERATOR_LPAREN))
2699         {
2700           source_location loc = this->location();
2701           this->advance_token();
2702           Expression* expr = this->expression(PRECEDENCE_NORMAL, false, true,
2703                                               NULL);
2704           if (!this->peek_token()->is_op(OPERATOR_RPAREN))
2705             error_at(this->location(), "expected %<)%>");
2706           else
2707             this->advance_token();
2708           if (expr->is_error_expression())
2709             return expr;
2710           ret = Expression::make_cast(ret->type(), expr, loc);
2711         }
2712     }
2713
2714   while (true)
2715     {
2716       const Token* token = this->peek_token();
2717       if (token->is_op(OPERATOR_LPAREN))
2718         ret = this->call(this->verify_not_sink(ret));
2719       else if (token->is_op(OPERATOR_DOT))
2720         {
2721           ret = this->selector(this->verify_not_sink(ret), is_type_switch);
2722           if (is_type_switch != NULL && *is_type_switch)
2723             break;
2724         }
2725       else if (token->is_op(OPERATOR_LSQUARE))
2726         ret = this->index(this->verify_not_sink(ret));
2727       else
2728         break;
2729     }
2730
2731   return ret;
2732 }
2733
2734 // Selector = "." identifier .
2735 // TypeGuard = "." "(" QualifiedIdent ")" .
2736
2737 // Note that Operand can expand to QualifiedIdent, which contains a
2738 // ".".  That is handled directly in operand when it sees a package
2739 // name.
2740
2741 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
2742 // guard (var := expr.("type") using the literal keyword "type").
2743
2744 Expression*
2745 Parse::selector(Expression* left, bool* is_type_switch)
2746 {
2747   gcc_assert(this->peek_token()->is_op(OPERATOR_DOT));
2748   source_location location = this->location();
2749
2750   const Token* token = this->advance_token();
2751   if (token->is_identifier())
2752     {
2753       // This could be a field in a struct, or a method in an
2754       // interface, or a method associated with a type.  We can't know
2755       // which until we have seen all the types.
2756       std::string name =
2757         this->gogo_->pack_hidden_name(token->identifier(),
2758                                       token->is_identifier_exported());
2759       if (token->identifier() == "_")
2760         {
2761           error_at(this->location(), "invalid use of %<_%>");
2762           name = this->gogo_->pack_hidden_name("blank", false);
2763         }
2764       this->advance_token();
2765       return Expression::make_selector(left, name, location);
2766     }
2767   else if (token->is_op(OPERATOR_LPAREN))
2768     {
2769       this->advance_token();
2770       Type* type = NULL;
2771       if (!this->peek_token()->is_keyword(KEYWORD_TYPE))
2772         type = this->type();
2773       else
2774         {
2775           if (is_type_switch != NULL)
2776             *is_type_switch = true;
2777           else
2778             {
2779               error_at(this->location(),
2780                        "use of %<.(type)%> outside type switch");
2781               type = Type::make_error_type();
2782             }
2783           this->advance_token();
2784         }
2785       if (!this->peek_token()->is_op(OPERATOR_RPAREN))
2786         error_at(this->location(), "missing %<)%>");
2787       else
2788         this->advance_token();
2789       if (is_type_switch != NULL && *is_type_switch)
2790         return left;
2791       return Expression::make_type_guard(left, type, location);
2792     }
2793   else
2794     {
2795       error_at(this->location(), "expected identifier or %<(%>");
2796       return left;
2797     }
2798 }
2799
2800 // Index          = "[" Expression "]" .
2801 // Slice          = "[" Expression ":" [ Expression ] "]" .
2802
2803 Expression*
2804 Parse::index(Expression* expr)
2805 {
2806   source_location location = this->location();
2807   gcc_assert(this->peek_token()->is_op(OPERATOR_LSQUARE));
2808   this->advance_token();
2809
2810   Expression* start;
2811   if (!this->peek_token()->is_op(OPERATOR_COLON))
2812     start = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2813   else
2814     {
2815       mpz_t zero;
2816       mpz_init_set_ui(zero, 0);
2817       start = Expression::make_integer(&zero, NULL, location);
2818       mpz_clear(zero);
2819     }
2820
2821   Expression* end = NULL;
2822   if (this->peek_token()->is_op(OPERATOR_COLON))
2823     {
2824       // We use nil to indicate a missing high expression.
2825       if (this->advance_token()->is_op(OPERATOR_RSQUARE))
2826         end = Expression::make_nil(this->location());
2827       else
2828         end = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
2829     }
2830   if (!this->peek_token()->is_op(OPERATOR_RSQUARE))
2831     error_at(this->location(), "missing %<]%>");
2832   else
2833     this->advance_token();
2834   return Expression::make_index(expr, start, end, location);
2835 }
2836
2837 // Call           = "(" [ ArgumentList [ "," ] ] ")" .
2838 // ArgumentList   = ExpressionList [ "..." ] .
2839
2840 Expression*
2841 Parse::call(Expression* func)
2842 {
2843   gcc_assert(this->peek_token()->is_op(OPERATOR_LPAREN));
2844   Expression_list* args = NULL;
2845   bool is_varargs = false;
2846   const Token* token = this->advance_token();
2847   if (!token->is_op(OPERATOR_RPAREN))
2848     {
2849       args = this->expression_list(NULL, false);
2850       token = this->peek_token();
2851       if (token->is_op(OPERATOR_ELLIPSIS))
2852         {
2853           is_varargs = true;
2854           token = this->advance_token();
2855         }
2856     }
2857   if (token->is_op(OPERATOR_COMMA))
2858     token = this->advance_token();
2859   if (!token->is_op(OPERATOR_RPAREN))
2860     error_at(this->location(), "missing %<)%>");
2861   else
2862     this->advance_token();
2863   if (func->is_error_expression())
2864     return func;
2865   return Expression::make_call(func, args, is_varargs, func->location());
2866 }
2867
2868 // Return an expression for a single unqualified identifier.
2869
2870 Expression*
2871 Parse::id_to_expression(const std::string& name, source_location location)
2872 {
2873   Named_object* in_function;
2874   Named_object* named_object = this->gogo_->lookup(name, &in_function);
2875   if (named_object == NULL)
2876     named_object = this->gogo_->add_unknown_name(name, location);
2877
2878   if (in_function != NULL
2879       && in_function != this->gogo_->current_function()
2880       && (named_object->is_variable() || named_object->is_result_variable()))
2881     return this->enclosing_var_reference(in_function, named_object,
2882                                          location);
2883
2884   switch (named_object->classification())
2885     {
2886     case Named_object::NAMED_OBJECT_CONST:
2887       return Expression::make_const_reference(named_object, location);
2888     case Named_object::NAMED_OBJECT_VAR:
2889     case Named_object::NAMED_OBJECT_RESULT_VAR:
2890       return Expression::make_var_reference(named_object, location);
2891     case Named_object::NAMED_OBJECT_SINK:
2892       return Expression::make_sink(location);
2893     case Named_object::NAMED_OBJECT_FUNC:
2894     case Named_object::NAMED_OBJECT_FUNC_DECLARATION:
2895       return Expression::make_func_reference(named_object, NULL, location);
2896     case Named_object::NAMED_OBJECT_UNKNOWN:
2897       return Expression::make_unknown_reference(named_object, location);
2898     default:
2899       error_at(this->location(), "unexpected type of identifier");
2900       return Expression::make_error(location);
2901     }
2902 }
2903
2904 // Expression = UnaryExpr { binary_op Expression } .
2905
2906 // PRECEDENCE is the precedence of the current operator.
2907
2908 // If MAY_BE_SINK is true, this expression may be "_".
2909
2910 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
2911 // literal.
2912
2913 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
2914 // guard (var := expr.("type") using the literal keyword "type").
2915
2916 Expression*
2917 Parse::expression(Precedence precedence, bool may_be_sink,
2918                   bool may_be_composite_lit, bool* is_type_switch)
2919 {
2920   Expression* left = this->unary_expr(may_be_sink, may_be_composite_lit,
2921                                       is_type_switch);
2922
2923   while (true)
2924     {
2925       if (is_type_switch != NULL && *is_type_switch)
2926         return left;
2927
2928       const Token* token = this->peek_token();
2929       if (token->classification() != Token::TOKEN_OPERATOR)
2930         {
2931           // Not a binary_op.
2932           return left;
2933         }
2934
2935       Precedence right_precedence;
2936       switch (token->op())
2937         {
2938         case OPERATOR_OROR:
2939           right_precedence = PRECEDENCE_OROR;
2940           break;
2941         case OPERATOR_ANDAND:
2942           right_precedence = PRECEDENCE_ANDAND;
2943           break;
2944         case OPERATOR_CHANOP:
2945           right_precedence = PRECEDENCE_CHANOP;
2946           break;
2947         case OPERATOR_EQEQ:
2948         case OPERATOR_NOTEQ:
2949         case OPERATOR_LT:
2950         case OPERATOR_LE:
2951         case OPERATOR_GT:
2952         case OPERATOR_GE:
2953           right_precedence = PRECEDENCE_RELOP;
2954           break;
2955         case OPERATOR_PLUS:
2956         case OPERATOR_MINUS:
2957         case OPERATOR_OR:
2958         case OPERATOR_XOR:
2959           right_precedence = PRECEDENCE_ADDOP;
2960           break;
2961         case OPERATOR_MULT:
2962         case OPERATOR_DIV:
2963         case OPERATOR_MOD:
2964         case OPERATOR_LSHIFT:
2965         case OPERATOR_RSHIFT:
2966         case OPERATOR_AND:
2967         case OPERATOR_BITCLEAR:
2968           right_precedence = PRECEDENCE_MULOP;
2969           break;
2970         default:
2971           right_precedence = PRECEDENCE_INVALID;
2972           break;
2973         }
2974
2975       if (right_precedence == PRECEDENCE_INVALID)
2976         {
2977           // Not a binary_op.
2978           return left;
2979         }
2980
2981       Operator op = token->op();
2982       source_location binop_location = token->location();
2983
2984       if (precedence >= right_precedence)
2985         {
2986           // We've already seen A * B, and we see + C.  We want to
2987           // return so that A * B becomes a group.
2988           return left;
2989         }
2990
2991       this->advance_token();
2992
2993       left = this->verify_not_sink(left);
2994       Expression* right = this->expression(right_precedence, false,
2995                                            may_be_composite_lit,
2996                                            NULL);
2997       if (op == OPERATOR_CHANOP)
2998         left = Expression::make_send(left, right, binop_location);
2999       else
3000         left = Expression::make_binary(op, left, right, binop_location);
3001     }
3002 }
3003
3004 bool
3005 Parse::expression_may_start_here()
3006 {
3007   const Token* token = this->peek_token();
3008   switch (token->classification())
3009     {
3010     case Token::TOKEN_INVALID:
3011     case Token::TOKEN_EOF:
3012       return false;
3013     case Token::TOKEN_KEYWORD:
3014       switch (token->keyword())
3015         {
3016         case KEYWORD_CHAN:
3017         case KEYWORD_FUNC:
3018         case KEYWORD_MAP:
3019         case KEYWORD_STRUCT:
3020         case KEYWORD_INTERFACE:
3021           return true;
3022         default:
3023           return false;
3024         }
3025     case Token::TOKEN_IDENTIFIER:
3026       return true;
3027     case Token::TOKEN_STRING:
3028       return true;
3029     case Token::TOKEN_OPERATOR:
3030       switch (token->op())
3031         {
3032         case OPERATOR_PLUS:
3033         case OPERATOR_MINUS:
3034         case OPERATOR_NOT:
3035         case OPERATOR_XOR:
3036         case OPERATOR_MULT:
3037         case OPERATOR_CHANOP:
3038         case OPERATOR_AND:
3039         case OPERATOR_LPAREN:
3040         case OPERATOR_LSQUARE:
3041           return true;
3042         default:
3043           return false;
3044         }
3045     case Token::TOKEN_INTEGER:
3046     case Token::TOKEN_FLOAT:
3047     case Token::TOKEN_IMAGINARY:
3048       return true;
3049     default:
3050       gcc_unreachable();
3051     }
3052 }
3053
3054 // UnaryExpr = unary_op UnaryExpr | PrimaryExpr .
3055
3056 // If MAY_BE_SINK is true, this expression may be "_".
3057
3058 // If MAY_BE_COMPOSITE_LIT is true, this expression may be a composite
3059 // literal.
3060
3061 // If IS_TYPE_SWITCH is not NULL, this will recognize a type switch
3062 // guard (var := expr.("type") using the literal keyword "type").
3063
3064 Expression*
3065 Parse::unary_expr(bool may_be_sink, bool may_be_composite_lit,
3066                   bool* is_type_switch)
3067 {
3068   const Token* token = this->peek_token();
3069   if (token->is_op(OPERATOR_PLUS)
3070       || token->is_op(OPERATOR_MINUS)
3071       || token->is_op(OPERATOR_NOT)
3072       || token->is_op(OPERATOR_XOR)
3073       || token->is_op(OPERATOR_CHANOP)
3074       || token->is_op(OPERATOR_MULT)
3075       || token->is_op(OPERATOR_AND))
3076     {
3077       source_location location = token->location();
3078       Operator op = token->op();
3079       this->advance_token();
3080
3081       if (op == OPERATOR_CHANOP
3082           && this->peek_token()->is_keyword(KEYWORD_CHAN))
3083         {
3084           // This is "<- chan" which must be the start of a type.
3085           this->unget_token(Token::make_operator_token(op, location));
3086           return Expression::make_type(this->type(), location);
3087         }
3088
3089       Expression* expr = this->unary_expr(false, may_be_composite_lit, NULL);
3090       if (expr->is_error_expression())
3091         ;
3092       else if (op == OPERATOR_MULT && expr->is_type_expression())
3093         expr = Expression::make_type(Type::make_pointer_type(expr->type()),
3094                                      location);
3095       else if (op == OPERATOR_AND && expr->is_composite_literal())
3096         expr = Expression::make_heap_composite(expr, location);
3097       else if (op != OPERATOR_CHANOP)
3098         expr = Expression::make_unary(op, expr, location);
3099       else
3100         expr = Expression::make_receive(expr, location);
3101       return expr;
3102     }
3103   else
3104     return this->primary_expr(may_be_sink, may_be_composite_lit,
3105                               is_type_switch);
3106 }
3107
3108 // Statement =
3109 //      Declaration | LabeledStmt | SimpleStmt |
3110 //      GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt |
3111 //      FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt |
3112 //      DeferStmt .
3113
3114 // LABEL is the label of this statement if it has one.
3115
3116 void
3117 Parse::statement(const Label* label)
3118 {
3119   const Token* token = this->peek_token();
3120   switch (token->classification())
3121     {
3122     case Token::TOKEN_KEYWORD:
3123       {
3124         switch (token->keyword())
3125           {
3126           case KEYWORD_CONST:
3127           case KEYWORD_TYPE:
3128           case KEYWORD_VAR:
3129             this->declaration();
3130             break;
3131           case KEYWORD_FUNC:
3132           case KEYWORD_MAP:
3133           case KEYWORD_STRUCT:
3134           case KEYWORD_INTERFACE:
3135             this->simple_stat(true, false, NULL, NULL);
3136             break;
3137           case KEYWORD_GO:
3138           case KEYWORD_DEFER:
3139             this->go_or_defer_stat();
3140             break;
3141           case KEYWORD_RETURN:
3142             this->return_stat();
3143             break;
3144           case KEYWORD_BREAK:
3145             this->break_stat();
3146             break;
3147           case KEYWORD_CONTINUE:
3148             this->continue_stat();
3149             break;
3150           case KEYWORD_GOTO:
3151             this->goto_stat();
3152             break;
3153           case KEYWORD_IF:
3154             this->if_stat();
3155             break;
3156           case KEYWORD_SWITCH:
3157             this->switch_stat(label);
3158             break;
3159           case KEYWORD_SELECT:
3160             this->select_stat(label);
3161             break;
3162           case KEYWORD_FOR:
3163             this->for_stat(label);
3164             break;
3165           default:
3166             error_at(this->location(), "expected statement");
3167             this->advance_token();
3168             break;
3169           }
3170       }
3171       break;
3172
3173     case Token::TOKEN_IDENTIFIER:
3174       {
3175         std::string identifier = token->identifier();
3176         bool is_exported = token->is_identifier_exported();
3177         source_location location = token->location();
3178         if (this->advance_token()->is_op(OPERATOR_COLON))
3179           {
3180             this->advance_token();
3181             this->labeled_stmt(identifier, location);
3182           }
3183         else
3184           {
3185             this->unget_token(Token::make_identifier_token(identifier,
3186                                                            is_exported,
3187                                                            location));
3188             this->simple_stat(true, false, NULL, NULL);
3189           }
3190       }
3191       break;
3192
3193     case Token::TOKEN_OPERATOR:
3194       if (token->is_op(OPERATOR_LCURLY))
3195         {
3196           source_location location = token->location();
3197           this->gogo_->start_block(location);
3198           source_location end_loc = this->block();
3199           this->gogo_->add_block(this->gogo_->finish_block(end_loc),
3200                                  location);
3201         }
3202       else if (!token->is_op(OPERATOR_SEMICOLON))
3203         this->simple_stat(true, false, NULL, NULL);
3204       break;
3205
3206     case Token::TOKEN_STRING:
3207     case Token::TOKEN_INTEGER:
3208     case Token::TOKEN_FLOAT:
3209     case Token::TOKEN_IMAGINARY:
3210       this->simple_stat(true, false, NULL, NULL);
3211       break;
3212
3213     default:
3214       error_at(this->location(), "expected statement");
3215       this->advance_token();
3216       break;
3217     }
3218 }
3219
3220 bool
3221 Parse::statement_may_start_here()
3222 {
3223   const Token* token = this->peek_token();
3224   switch (token->classification())
3225     {
3226     case Token::TOKEN_KEYWORD:
3227       {
3228         switch (token->keyword())
3229           {
3230           case KEYWORD_CONST:
3231           case KEYWORD_TYPE:
3232           case KEYWORD_VAR:
3233           case KEYWORD_FUNC:
3234           case KEYWORD_MAP:
3235           case KEYWORD_STRUCT:
3236           case KEYWORD_INTERFACE:
3237           case KEYWORD_GO:
3238           case KEYWORD_DEFER:
3239           case KEYWORD_RETURN:
3240           case KEYWORD_BREAK:
3241           case KEYWORD_CONTINUE:
3242           case KEYWORD_GOTO:
3243           case KEYWORD_IF:
3244           case KEYWORD_SWITCH:
3245           case KEYWORD_SELECT:
3246           case KEYWORD_FOR:
3247             return true;
3248
3249           default:
3250             return false;
3251           }
3252       }
3253       break;
3254
3255     case Token::TOKEN_IDENTIFIER:
3256       return true;
3257
3258     case Token::TOKEN_OPERATOR:
3259       if (token->is_op(OPERATOR_LCURLY)
3260           || token->is_op(OPERATOR_SEMICOLON))
3261         return true;
3262       else
3263         return this->expression_may_start_here();
3264
3265     case Token::TOKEN_STRING:
3266     case Token::TOKEN_INTEGER:
3267     case Token::TOKEN_FLOAT:
3268     case Token::TOKEN_IMAGINARY:
3269       return true;
3270
3271     default:
3272       return false;
3273     }
3274 }
3275
3276 // LabeledStmt = Label ":" Statement .
3277 // Label       = identifier .
3278
3279 void
3280 Parse::labeled_stmt(const std::string& label_name, source_location location)
3281 {
3282   Label* label = this->gogo_->add_label_definition(label_name, location);
3283
3284   if (this->peek_token()->is_op(OPERATOR_RCURLY))
3285     {
3286       // This is a label at the end of a block.  A program is
3287       // permitted to omit a semicolon here.
3288       return;
3289     }
3290
3291   if (!this->statement_may_start_here())
3292     {
3293       error_at(location, "missing statement after label");
3294       this->unget_token(Token::make_operator_token(OPERATOR_SEMICOLON,
3295                                                    location));
3296       return;
3297     }
3298
3299   this->statement(label);
3300 }
3301
3302 // SimpleStat =
3303 //   ExpressionStat | IncDecStat | Assignment | SimpleVarDecl .
3304
3305 // In order to make this work for if and switch statements, if
3306 // RETURN_EXP is true, and we see an ExpressionStat, we return the
3307 // expression rather than adding an expression statement to the
3308 // current block.  If we see something other than an ExpressionStat,
3309 // we add the statement and return NULL.
3310
3311 // If P_RANGE_CLAUSE is not NULL, then this will recognize a
3312 // RangeClause.
3313
3314 // If P_TYPE_SWITCH is not NULL, this will recognize a type switch
3315 // guard (var := expr.("type") using the literal keyword "type").
3316
3317 Expression*
3318 Parse::simple_stat(bool may_be_composite_lit, bool return_exp,
3319                    Range_clause* p_range_clause, Type_switch* p_type_switch)
3320 {
3321   const Token* token = this->peek_token();
3322
3323   // An identifier follow by := is a SimpleVarDecl.
3324   if (token->is_identifier())
3325     {
3326       std::string identifier = token->identifier();
3327       bool is_exported = token->is_identifier_exported();
3328       source_location location = token->location();
3329
3330       token = this->advance_token();
3331       if (token->is_op(OPERATOR_COLONEQ)
3332           || token->is_op(OPERATOR_COMMA))
3333         {
3334           identifier = this->gogo_->pack_hidden_name(identifier, is_exported);
3335           this->simple_var_decl_or_assignment(identifier, location,
3336                                               p_range_clause,
3337                                               (token->is_op(OPERATOR_COLONEQ)
3338                                                ? p_type_switch
3339                                                : NULL));
3340           return NULL;
3341         }
3342
3343       this->unget_token(Token::make_identifier_token(identifier, is_exported,
3344                                                      location));
3345     }
3346
3347   Expression* exp = this->expression(PRECEDENCE_NORMAL, true,
3348                                      may_be_composite_lit,
3349                                      (p_type_switch == NULL
3350                                       ? NULL
3351                                       : &p_type_switch->found));
3352   if (p_type_switch != NULL && p_type_switch->found)
3353     {
3354       p_type_switch->name.clear();
3355       p_type_switch->location = exp->location();
3356       p_type_switch->expr = this->verify_not_sink(exp);
3357       return NULL;
3358     }
3359   token = this->peek_token();
3360   if (token->is_op(OPERATOR_PLUSPLUS) || token->is_op(OPERATOR_MINUSMINUS))
3361     this->inc_dec_stat(this->verify_not_sink(exp));
3362   else if (token->is_op(OPERATOR_COMMA)
3363            || token->is_op(OPERATOR_EQ))
3364     this->assignment(exp, p_range_clause);
3365   else if (token->is_op(OPERATOR_PLUSEQ)
3366            || token->is_op(OPERATOR_MINUSEQ)
3367            || token->is_op(OPERATOR_OREQ)
3368            || token->is_op(OPERATOR_XOREQ)
3369            || token->is_op(OPERATOR_MULTEQ)
3370            || token->is_op(OPERATOR_DIVEQ)
3371            || token->is_op(OPERATOR_MODEQ)
3372            || token->is_op(OPERATOR_LSHIFTEQ)
3373            || token->is_op(OPERATOR_RSHIFTEQ)
3374            || token->is_op(OPERATOR_ANDEQ)
3375            || token->is_op(OPERATOR_BITCLEAREQ))
3376     this->assignment(this->verify_not_sink(exp), p_range_clause);
3377   else if (return_exp)
3378     return this->verify_not_sink(exp);
3379   else
3380     this->expression_stat(this->verify_not_sink(exp));
3381
3382   return NULL;
3383 }
3384
3385 bool
3386 Parse::simple_stat_may_start_here()
3387 {
3388   return this->expression_may_start_here();
3389 }
3390
3391 // Parse { Statement ";" } which is used in a few places.  The list of
3392 // statements may end with a right curly brace, in which case the
3393 // semicolon may be omitted.
3394
3395 void
3396 Parse::statement_list()
3397 {
3398   while (this->statement_may_start_here())
3399     {
3400       this->statement(NULL);
3401       if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
3402         this->advance_token();
3403       else if (this->peek_token()->is_op(OPERATOR_RCURLY))
3404         break;
3405       else
3406         {
3407           if (!this->peek_token()->is_eof() || !saw_errors())
3408             error_at(this->location(), "expected %<;%> or %<}%> or newline");
3409           if (!this->skip_past_error(OPERATOR_RCURLY))
3410             return;
3411         }
3412     }
3413 }
3414
3415 bool
3416 Parse::statement_list_may_start_here()
3417 {
3418   return this->statement_may_start_here();
3419 }
3420
3421 // ExpressionStat = Expression .
3422
3423 void
3424 Parse::expression_stat(Expression* exp)
3425 {
3426   exp->discarding_value();
3427   this->gogo_->add_statement(Statement::make_statement(exp));
3428 }
3429
3430 // IncDecStat = Expression ( "++" | "--" ) .
3431
3432 void
3433 Parse::inc_dec_stat(Expression* exp)
3434 {
3435   const Token* token = this->peek_token();
3436
3437   // Lvalue maps require special handling.
3438   if (exp->index_expression() != NULL)
3439     exp->index_expression()->set_is_lvalue();
3440
3441   if (token->is_op(OPERATOR_PLUSPLUS))
3442     this->gogo_->add_statement(Statement::make_inc_statement(exp));
3443   else if (token->is_op(OPERATOR_MINUSMINUS))
3444     this->gogo_->add_statement(Statement::make_dec_statement(exp));
3445   else
3446     gcc_unreachable();
3447   this->advance_token();
3448 }
3449
3450 // Assignment = ExpressionList assign_op ExpressionList .
3451
3452 // EXP is an expression that we have already parsed.
3453
3454 // If RANGE_CLAUSE is not NULL, then this will recognize a
3455 // RangeClause.
3456
3457 void
3458 Parse::assignment(Expression* expr, Range_clause* p_range_clause)
3459 {
3460   Expression_list* vars;
3461   if (!this->peek_token()->is_op(OPERATOR_COMMA))
3462     {
3463       vars = new Expression_list();
3464       vars->push_back(expr);
3465     }
3466   else
3467     {
3468       this->advance_token();
3469       vars = this->expression_list(expr, true);
3470     }
3471
3472   this->tuple_assignment(vars, p_range_clause);
3473 }
3474
3475 // An assignment statement.  LHS is the list of expressions which
3476 // appear on the left hand side.
3477
3478 // If RANGE_CLAUSE is not NULL, then this will recognize a
3479 // RangeClause.
3480
3481 void
3482 Parse::tuple_assignment(Expression_list* lhs, Range_clause* p_range_clause)
3483 {
3484   const Token* token = this->peek_token();
3485   if (!token->is_op(OPERATOR_EQ)
3486       && !token->is_op(OPERATOR_PLUSEQ)
3487       && !token->is_op(OPERATOR_MINUSEQ)
3488       && !token->is_op(OPERATOR_OREQ)
3489       && !token->is_op(OPERATOR_XOREQ)
3490       && !token->is_op(OPERATOR_MULTEQ)
3491       && !token->is_op(OPERATOR_DIVEQ)
3492       && !token->is_op(OPERATOR_MODEQ)
3493       && !token->is_op(OPERATOR_LSHIFTEQ)
3494       && !token->is_op(OPERATOR_RSHIFTEQ)
3495       && !token->is_op(OPERATOR_ANDEQ)
3496       && !token->is_op(OPERATOR_BITCLEAREQ))
3497     {
3498       error_at(this->location(), "expected assignment operator");
3499       return;
3500     }
3501   Operator op = token->op();
3502   source_location location = token->location();
3503
3504   token = this->advance_token();
3505
3506   if (p_range_clause != NULL && token->is_keyword(KEYWORD_RANGE))
3507     {
3508       if (op != OPERATOR_EQ)
3509         error_at(this->location(), "range clause requires %<=%>");
3510       this->range_clause_expr(lhs, p_range_clause);
3511       return;
3512     }
3513
3514   Expression_list* vals = this->expression_list(NULL, false);
3515
3516   // We've parsed everything; check for errors.
3517   if (lhs == NULL || vals == NULL)
3518     return;
3519   for (Expression_list::const_iterator pe = lhs->begin();
3520        pe != lhs->end();
3521        ++pe)
3522     {
3523       if ((*pe)->is_error_expression())
3524         return;
3525       if (op != OPERATOR_EQ && (*pe)->is_sink_expression())
3526         error_at((*pe)->location(), "cannot use _ as value");
3527     }
3528   for (Expression_list::const_iterator pe = vals->begin();
3529        pe != vals->end();
3530        ++pe)
3531     {
3532       if ((*pe)->is_error_expression())
3533         return;
3534     }
3535
3536   // Map expressions act differently when they are lvalues.
3537   for (Expression_list::iterator plv = lhs->begin();
3538        plv != lhs->end();
3539        ++plv)
3540     if ((*plv)->index_expression() != NULL)
3541       (*plv)->index_expression()->set_is_lvalue();
3542
3543   Call_expression* call;
3544   Index_expression* map_index;
3545   Receive_expression* receive;
3546   Type_guard_expression* type_guard;
3547   if (lhs->size() == vals->size())
3548     {
3549       Statement* s;
3550       if (lhs->size() > 1)
3551         {
3552           if (op != OPERATOR_EQ)
3553             error_at(location, "multiple values only permitted with %<=%>");
3554           s = Statement::make_tuple_assignment(lhs, vals, location);
3555         }
3556       else
3557         {
3558           if (op == OPERATOR_EQ)
3559             s = Statement::make_assignment(lhs->front(), vals->front(),
3560                                            location);
3561           else
3562             s = Statement::make_assignment_operation(op, lhs->front(),
3563                                                      vals->front(), location);
3564           delete lhs;
3565           delete vals;
3566         }
3567       this->gogo_->add_statement(s);
3568     }
3569   else if (vals->size() == 1
3570            && (call = (*vals->begin())->call_expression()) != NULL)
3571     {
3572       if (op != OPERATOR_EQ)
3573         error_at(location, "multiple results only permitted with %<=%>");
3574       delete vals;
3575       vals = new Expression_list;
3576       for (unsigned int i = 0; i < lhs->size(); ++i)
3577         vals->push_back(Expression::make_call_result(call, i));
3578       Statement* s = Statement::make_tuple_assignment(lhs, vals, location);
3579       this->gogo_->add_statement(s);
3580     }
3581   else if (lhs->size() == 2
3582            && vals->size() == 1
3583            && (map_index = (*vals->begin())->index_expression()) != NULL)
3584     {
3585       if (op != OPERATOR_EQ)
3586         error_at(location, "two values from map requires %<=%>");
3587       Expression* val = lhs->front();
3588       Expression* present = lhs->back();
3589       Statement* s = Statement::make_tuple_map_assignment(val, present,
3590                                                           map_index, location);
3591       this->gogo_->add_statement(s);
3592     }
3593   else if (lhs->size() == 1
3594            && vals->size() == 2
3595            && (map_index = lhs->front()->index_expression()) != NULL)
3596     {
3597       if (op != OPERATOR_EQ)
3598         error_at(location, "assigning tuple to map index requires %<=%>");
3599       Expression* val = vals->front();
3600       Expression* should_set = vals->back();
3601       Statement* s = Statement::make_map_assignment(map_index, val, should_set,
3602                                                     location);
3603       this->gogo_->add_statement(s);
3604     }
3605   else if (lhs->size() == 2
3606            && vals->size() == 1
3607            && (receive = (*vals->begin())->receive_expression()) != NULL)
3608     {
3609       if (op != OPERATOR_EQ)
3610         error_at(location, "two values from receive requires %<=%>");
3611       Expression* val = lhs->front();
3612       Expression* success = lhs->back();
3613       Expression* channel = receive->channel();
3614       Statement* s = Statement::make_tuple_receive_assignment(val, success,
3615                                                               channel,
3616                                                               location);
3617       this->gogo_->add_statement(s);
3618     }
3619   else if (lhs->size() == 2
3620            && vals->size() == 1
3621            && (type_guard = (*vals->begin())->type_guard_expression()) != NULL)
3622     {
3623       if (op != OPERATOR_EQ)
3624         error_at(location, "two values from type guard requires %<=%>");
3625       Expression* val = lhs->front();
3626       Expression* ok = lhs->back();
3627       Expression* expr = type_guard->expr();
3628       Type* type = type_guard->type();
3629       Statement* s = Statement::make_tuple_type_guard_assignment(val, ok,
3630                                                                  expr, type,
3631                                                                  location);
3632       this->gogo_->add_statement(s);
3633     }
3634   else
3635     {
3636       error_at(location, "number of variables does not match number of values");
3637     }
3638 }
3639
3640 // GoStat = "go" Expression .
3641 // DeferStat = "defer" Expression .
3642
3643 void
3644 Parse::go_or_defer_stat()
3645 {
3646   gcc_assert(this->peek_token()->is_keyword(KEYWORD_GO)
3647              || this->peek_token()->is_keyword(KEYWORD_DEFER));
3648   bool is_go = this->peek_token()->is_keyword(KEYWORD_GO);
3649   source_location stat_location = this->location();
3650   this->advance_token();
3651   source_location expr_location = this->location();
3652   Expression* expr = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
3653   Call_expression* call_expr = expr->call_expression();
3654   if (call_expr == NULL)
3655     {
3656       error_at(expr_location, "expected call expression");
3657       return;
3658     }
3659
3660   // Make it easier to simplify go/defer statements by putting every
3661   // statement in its own block.
3662   this->gogo_->start_block(stat_location);
3663   Statement* stat;
3664   if (is_go)
3665     stat = Statement::make_go_statement(call_expr, stat_location);
3666   else
3667     stat = Statement::make_defer_statement(call_expr, stat_location);
3668   this->gogo_->add_statement(stat);
3669   this->gogo_->add_block(this->gogo_->finish_block(stat_location),
3670                          stat_location);
3671 }
3672
3673 // ReturnStat = "return" [ ExpressionList ] .
3674
3675 void
3676 Parse::return_stat()
3677 {
3678   gcc_assert(this->peek_token()->is_keyword(KEYWORD_RETURN));
3679   source_location location = this->location();
3680   this->advance_token();
3681   Expression_list* vals = NULL;
3682   if (this->expression_may_start_here())
3683     vals = this->expression_list(NULL, false);
3684   const Function* function = this->gogo_->current_function()->func_value();
3685   const Typed_identifier_list* results = function->type()->results();
3686   this->gogo_->add_statement(Statement::make_return_statement(results, vals,
3687                                                               location));
3688 }
3689
3690 // IfStat = "if" [ [ SimpleStat ] ";" ] [ Condition ]
3691 //             Block [ "else" Statement ] .
3692
3693 void
3694 Parse::if_stat()
3695 {
3696   gcc_assert(this->peek_token()->is_keyword(KEYWORD_IF));
3697   source_location location = this->location();
3698   this->advance_token();
3699
3700   this->gogo_->start_block(location);
3701
3702   Expression* cond = NULL;
3703   if (this->simple_stat_may_start_here())
3704     cond = this->simple_stat(false, true, NULL, NULL);
3705   if (cond != NULL && this->peek_token()->is_op(OPERATOR_SEMICOLON))
3706     {
3707       // The SimpleStat is an expression statement.
3708       this->expression_stat(cond);
3709       cond = NULL;
3710     }
3711   if (cond == NULL)
3712     {
3713       if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
3714         this->advance_token();
3715       if (!this->peek_token()->is_op(OPERATOR_LCURLY))
3716         cond = this->expression(PRECEDENCE_NORMAL, false, false, NULL);
3717     }
3718
3719   this->gogo_->start_block(this->location());
3720   source_location end_loc = this->block();
3721   Block* then_block = this->gogo_->finish_block(end_loc);
3722
3723   // Check for the easy error of a newline before "else".
3724   if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
3725     {
3726       source_location semi_loc = this->location();
3727       if (this->advance_token()->is_keyword(KEYWORD_ELSE))
3728         error_at(this->location(),
3729                  "unexpected semicolon or newline before %<else%>");
3730       else
3731         this->unget_token(Token::make_operator_token(OPERATOR_SEMICOLON,
3732                                                      semi_loc));
3733     }
3734
3735   Block* else_block = NULL;
3736   if (this->peek_token()->is_keyword(KEYWORD_ELSE))
3737     {
3738       this->advance_token();
3739       // We create a block to gather the statement.
3740       this->gogo_->start_block(this->location());
3741       this->statement(NULL);
3742       else_block = this->gogo_->finish_block(this->location());
3743     }
3744
3745   this->gogo_->add_statement(Statement::make_if_statement(cond, then_block,
3746                                                           else_block,
3747                                                           location));
3748
3749   this->gogo_->add_block(this->gogo_->finish_block(this->location()),
3750                          location);
3751 }
3752
3753 // SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
3754 // ExprSwitchStmt = "switch" [ [ SimpleStat ] ";" ] [ Expression ]
3755 //                      "{" { ExprCaseClause } "}" .
3756 // TypeSwitchStmt  = "switch" [ [ SimpleStat ] ";" ] TypeSwitchGuard
3757 //                      "{" { TypeCaseClause } "}" .
3758 // TypeSwitchGuard = [ identifier ":=" ] Expression "." "(" "type" ")" .
3759
3760 void
3761 Parse::switch_stat(const Label* label)
3762 {
3763   gcc_assert(this->peek_token()->is_keyword(KEYWORD_SWITCH));
3764   source_location location = this->location();
3765   this->advance_token();
3766
3767   this->gogo_->start_block(location);
3768
3769   Expression* switch_val = NULL;
3770   Type_switch type_switch;
3771   if (this->simple_stat_may_start_here())
3772     switch_val = this->simple_stat(false, true, NULL, &type_switch);
3773   if (switch_val != NULL && this->peek_token()->is_op(OPERATOR_SEMICOLON))
3774     {
3775       // The SimpleStat is an expression statement.
3776       this->expression_stat(switch_val);
3777       switch_val = NULL;
3778     }
3779   if (switch_val == NULL && !type_switch.found)
3780     {
3781       if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
3782         this->advance_token();
3783       if (!this->peek_token()->is_op(OPERATOR_LCURLY))
3784         {
3785           if (this->peek_token()->is_identifier())
3786             {
3787               const Token* token = this->peek_token();
3788               std::string identifier = token->identifier();
3789               bool is_exported = token->is_identifier_exported();
3790               source_location id_loc = token->location();
3791
3792               token = this->advance_token();
3793               bool is_coloneq = token->is_op(OPERATOR_COLONEQ);
3794               this->unget_token(Token::make_identifier_token(identifier,
3795                                                              is_exported,
3796                                                              id_loc));
3797               if (is_coloneq)
3798                 {
3799                   // This must be a TypeSwitchGuard.
3800                   switch_val = this->simple_stat(false, true, NULL,
3801                                                  &type_switch);
3802                   if (!type_switch.found
3803                       && !switch_val->is_error_expression())
3804                     {
3805                       error_at(id_loc, "expected type switch assignment");
3806                       switch_val = Expression::make_error(id_loc);
3807                     }
3808                 }
3809             }
3810           if (switch_val == NULL && !type_switch.found)
3811             {
3812               switch_val = this->expression(PRECEDENCE_NORMAL, false, false,
3813                                             &type_switch.found);
3814               if (type_switch.found)
3815                 {
3816                   type_switch.name.clear();
3817                   type_switch.expr = switch_val;
3818                   type_switch.location = switch_val->location();
3819                 }
3820             }
3821         }
3822     }
3823
3824   if (!this->peek_token()->is_op(OPERATOR_LCURLY))
3825     {
3826       source_location token_loc = this->location();
3827       if (this->peek_token()->is_op(OPERATOR_SEMICOLON)
3828           && this->advance_token()->is_op(OPERATOR_LCURLY))
3829         error_at(token_loc, "unexpected semicolon or newline before %<{%>");
3830       else
3831         {
3832           error_at(this->location(), "expected %<{%>");
3833           this->gogo_->add_block(this->gogo_->finish_block(this->location()),
3834                                  location);
3835           return;
3836         }
3837     }
3838   this->advance_token();
3839
3840   Statement* statement;
3841   if (type_switch.found)
3842     statement = this->type_switch_body(label, type_switch, location);
3843   else
3844     statement = this->expr_switch_body(label, switch_val, location);
3845
3846   if (statement != NULL)
3847     this->gogo_->add_statement(statement);
3848
3849   this->gogo_->add_block(this->gogo_->finish_block(this->location()),
3850                          location);
3851 }
3852
3853 // The body of an expression switch.
3854 //   "{" { ExprCaseClause } "}"
3855
3856 Statement*
3857 Parse::expr_switch_body(const Label* label, Expression* switch_val,
3858                         source_location location)
3859 {
3860   Switch_statement* statement = Statement::make_switch_statement(switch_val,
3861                                                                  location);
3862
3863   this->push_break_statement(statement, label);
3864
3865   Case_clauses* case_clauses = new Case_clauses();
3866   bool saw_default = false;
3867   while (!this->peek_token()->is_op(OPERATOR_RCURLY))
3868     {
3869       if (this->peek_token()->is_eof())
3870         {
3871           if (!saw_errors())
3872             error_at(this->location(), "missing %<}%>");
3873           return NULL;
3874         }
3875       this->expr_case_clause(case_clauses, &saw_default);
3876     }
3877   this->advance_token();
3878
3879   statement->add_clauses(case_clauses);
3880
3881   this->pop_break_statement();
3882
3883   return statement;
3884 }
3885
3886 // ExprCaseClause = ExprSwitchCase ":" [ StatementList ] .
3887 // FallthroughStat = "fallthrough" .
3888
3889 void
3890 Parse::expr_case_clause(Case_clauses* clauses, bool* saw_default)
3891 {
3892   source_location location = this->location();
3893
3894   bool is_default = false;
3895   Expression_list* vals = this->expr_switch_case(&is_default);
3896
3897   if (!this->peek_token()->is_op(OPERATOR_COLON))
3898     {
3899       if (!saw_errors())
3900         error_at(this->location(), "expected %<:%>");
3901       return;
3902     }
3903   else
3904     this->advance_token();
3905
3906   Block* statements = NULL;
3907   if (this->statement_list_may_start_here())
3908     {
3909       this->gogo_->start_block(this->location());
3910       this->statement_list();
3911       statements = this->gogo_->finish_block(this->location());
3912     }
3913
3914   bool is_fallthrough = false;
3915   if (this->peek_token()->is_keyword(KEYWORD_FALLTHROUGH))
3916     {
3917       is_fallthrough = true;
3918       if (this->advance_token()->is_op(OPERATOR_SEMICOLON))
3919         this->advance_token();
3920     }
3921
3922   if (is_default)
3923     {
3924       if (*saw_default)
3925         {
3926           error_at(location, "multiple defaults in switch");
3927           return;
3928         }
3929       *saw_default = true;
3930     }
3931
3932   if (is_default || vals != NULL)
3933     clauses->add(vals, is_default, statements, is_fallthrough, location);
3934 }
3935
3936 // ExprSwitchCase = "case" ExpressionList | "default" .
3937
3938 Expression_list*
3939 Parse::expr_switch_case(bool* is_default)
3940 {
3941   const Token* token = this->peek_token();
3942   if (token->is_keyword(KEYWORD_CASE))
3943     {
3944       this->advance_token();
3945       return this->expression_list(NULL, false);
3946     }
3947   else if (token->is_keyword(KEYWORD_DEFAULT))
3948     {
3949       this->advance_token();
3950       *is_default = true;
3951       return NULL;
3952     }
3953   else
3954     {
3955       if (!saw_errors())
3956         error_at(this->location(), "expected %<case%> or %<default%>");
3957       if (!token->is_op(OPERATOR_RCURLY))
3958         this->advance_token();
3959       return NULL;
3960     }
3961 }
3962
3963 // The body of a type switch.
3964 //   "{" { TypeCaseClause } "}" .
3965
3966 Statement*
3967 Parse::type_switch_body(const Label* label, const Type_switch& type_switch,
3968                         source_location location)
3969 {
3970   Named_object* switch_no = NULL;
3971   if (!type_switch.name.empty())
3972     {
3973       Variable* switch_var = new Variable(NULL, type_switch.expr, false, false,
3974                                           false, type_switch.location);
3975       switch_no = this->gogo_->add_variable(type_switch.name, switch_var);
3976     }
3977
3978   Type_switch_statement* statement =
3979     Statement::make_type_switch_statement(switch_no,
3980                                           (switch_no == NULL
3981                                            ? type_switch.expr
3982                                            : NULL),
3983                                           location);
3984
3985   this->push_break_statement(statement, label);
3986
3987   Type_case_clauses* case_clauses = new Type_case_clauses();
3988   bool saw_default = false;
3989   while (!this->peek_token()->is_op(OPERATOR_RCURLY))
3990     {
3991       if (this->peek_token()->is_eof())
3992         {
3993           error_at(this->location(), "missing %<}%>");
3994           return NULL;
3995         }
3996       this->type_case_clause(switch_no, case_clauses, &saw_default);
3997     }
3998   this->advance_token();
3999
4000   statement->add_clauses(case_clauses);
4001
4002   this->pop_break_statement();
4003
4004   return statement;
4005 }
4006
4007 // TypeCaseClause  = TypeSwitchCase ":" [ StatementList ] .
4008
4009 void
4010 Parse::type_case_clause(Named_object* switch_no, Type_case_clauses* clauses,
4011                         bool* saw_default)
4012 {
4013   source_location location = this->location();
4014
4015   std::vector<Type*> types;
4016   bool is_default = false;
4017   this->type_switch_case(&types, &is_default);
4018
4019   if (!this->peek_token()->is_op(OPERATOR_COLON))
4020     error_at(this->location(), "expected %<:%>");
4021   else
4022     this->advance_token();
4023
4024   Block* statements = NULL;
4025   if (this->statement_list_may_start_here())
4026     {
4027       this->gogo_->start_block(this->location());
4028       if (switch_no != NULL && types.size() == 1)
4029         {
4030           Type* type = types.front();
4031           Expression* init = Expression::make_var_reference(switch_no,
4032                                                             location);
4033           init = Expression::make_type_guard(init, type, location);
4034           Variable* v = new Variable(type, init, false, false, false,
4035                                      location);
4036           v->set_is_type_switch_var();
4037           this->gogo_->add_variable(switch_no->name(), v);
4038         }
4039       this->statement_list();
4040       statements = this->gogo_->finish_block(this->location());
4041     }
4042
4043   if (this->peek_token()->is_keyword(KEYWORD_FALLTHROUGH))
4044     {
4045       error_at(this->location(),
4046                "fallthrough is not permitted in a type switch");
4047       if (this->advance_token()->is_op(OPERATOR_SEMICOLON))
4048         this->advance_token();
4049     }
4050
4051   if (is_default)
4052     {
4053       gcc_assert(types.empty());
4054       if (*saw_default)
4055         {
4056           error_at(location, "multiple defaults in type switch");
4057           return;
4058         }
4059       *saw_default = true;
4060       clauses->add(NULL, false, true, statements, location);
4061     }
4062   else if (!types.empty())
4063     {
4064       for (std::vector<Type*>::const_iterator p = types.begin();
4065            p + 1 != types.end();
4066            ++p)
4067         clauses->add(*p, true, false, NULL, location);
4068       clauses->add(types.back(), false, false, statements, location);
4069     }
4070   else
4071     clauses->add(Type::make_error_type(), false, false, statements, location);
4072 }
4073
4074 // TypeSwitchCase  = "case" type | "default"
4075
4076 // We accept a comma separated list of types.
4077
4078 void
4079 Parse::type_switch_case(std::vector<Type*>* types, bool* is_default)
4080 {
4081   const Token* token = this->peek_token();
4082   if (token->is_keyword(KEYWORD_CASE))
4083     {
4084       this->advance_token();
4085       while (true)
4086         {
4087           Type* t = this->type();
4088           if (!t->is_error_type())
4089             types->push_back(t);
4090           if (!this->peek_token()->is_op(OPERATOR_COMMA))
4091             break;
4092           this->advance_token();
4093         }
4094     }
4095   else if (token->is_keyword(KEYWORD_DEFAULT))
4096     {
4097       this->advance_token();
4098       *is_default = true;
4099     }
4100   else
4101     {
4102       error_at(this->location(), "expected %<case%> or %<default%>");
4103       if (!token->is_op(OPERATOR_RCURLY))
4104         this->advance_token();
4105     }
4106 }
4107
4108 // SelectStat = "select" "{" { CommClause } "}" .
4109
4110 void
4111 Parse::select_stat(const Label* label)
4112 {
4113   gcc_assert(this->peek_token()->is_keyword(KEYWORD_SELECT));
4114   source_location location = this->location();
4115   const Token* token = this->advance_token();
4116
4117   if (!token->is_op(OPERATOR_LCURLY))
4118     {
4119       source_location token_loc = token->location();
4120       if (token->is_op(OPERATOR_SEMICOLON)
4121           && this->advance_token()->is_op(OPERATOR_LCURLY))
4122         error_at(token_loc, "unexpected semicolon or newline before %<{%>");
4123       else
4124         {
4125           error_at(this->location(), "expected %<{%>");
4126           return;
4127         }
4128     }
4129   this->advance_token();
4130
4131   Select_statement* statement = Statement::make_select_statement(location);
4132
4133   this->push_break_statement(statement, label);
4134
4135   Select_clauses* select_clauses = new Select_clauses();
4136   bool saw_default = false;
4137   while (!this->peek_token()->is_op(OPERATOR_RCURLY))
4138     {
4139       if (this->peek_token()->is_eof())
4140         {
4141           error_at(this->location(), "expected %<}%>");
4142           return;
4143         }
4144       this->comm_clause(select_clauses, &saw_default);
4145     }
4146
4147   this->advance_token();
4148
4149   statement->add_clauses(select_clauses);
4150
4151   this->pop_break_statement();
4152
4153   this->gogo_->add_statement(statement);
4154 }
4155
4156 // CommClause = CommCase [ StatementList ] .
4157
4158 void
4159 Parse::comm_clause(Select_clauses* clauses, bool* saw_default)
4160 {
4161   source_location location = this->location();
4162   bool is_send = false;
4163   Expression* channel = NULL;
4164   Expression* val = NULL;
4165   std::string varname;
4166   bool is_default = false;
4167   bool got_case = this->comm_case(&is_send, &channel, &val, &varname,
4168                                   &is_default);
4169
4170   Block* statements = NULL;
4171   Named_object* var = NULL;
4172   if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
4173     this->advance_token();
4174   else if (this->statement_list_may_start_here())
4175     {
4176       this->gogo_->start_block(this->location());
4177
4178       if (!varname.empty())
4179         {
4180           // FIXME: LOCATION is slightly wrong here.
4181           Variable* v = new Variable(NULL, channel, false, false, false,
4182                                      location);
4183           v->set_type_from_chan_element();
4184           var = this->gogo_->add_variable(varname, v);
4185         }
4186
4187       this->statement_list();
4188       statements = this->gogo_->finish_block(this->location());
4189     }
4190
4191   if (is_default)
4192     {
4193       if (*saw_default)
4194         {
4195           error_at(location, "multiple defaults in select");
4196           return;
4197         }
4198       *saw_default = true;
4199     }
4200
4201   if (got_case)
4202     clauses->add(is_send, channel, val, var, is_default, statements, location);
4203 }
4204
4205 // CommCase = ( "default" | ( "case" ( SendExpr | RecvExpr) ) ) ":" .
4206
4207 bool
4208 Parse::comm_case(bool* is_send, Expression** channel, Expression** val,
4209                  std::string* varname, bool* is_default)
4210 {
4211   const Token* token = this->peek_token();
4212   if (token->is_keyword(KEYWORD_DEFAULT))
4213     {
4214       this->advance_token();
4215       *is_default = true;
4216     }
4217   else if (token->is_keyword(KEYWORD_CASE))
4218     {
4219       this->advance_token();
4220       if (!this->send_or_recv_expr(is_send, channel, val, varname))
4221         return false;
4222     }
4223   else
4224     {
4225       error_at(this->location(), "expected %<case%> or %<default%>");
4226       if (!token->is_op(OPERATOR_RCURLY))
4227         this->advance_token();
4228       return false;
4229     }
4230
4231   if (!this->peek_token()->is_op(OPERATOR_COLON))
4232     {
4233       error_at(this->location(), "expected colon");
4234       return false;
4235     }
4236
4237   this->advance_token();
4238
4239   return true;
4240 }
4241
4242 // SendExpr = Expression "<-" Expression .
4243 // RecvExpr =  [ Expression ( "=" | ":=" ) ] "<-" Expression .
4244
4245 bool
4246 Parse::send_or_recv_expr(bool* is_send, Expression** channel, Expression** val,
4247                          std::string* varname)
4248 {
4249   const Token* token = this->peek_token();
4250   source_location location = token->location();
4251   if (token->is_identifier())
4252     {
4253       std::string recv_var = token->identifier();
4254       bool is_var_exported = token->is_identifier_exported();
4255       if (!this->advance_token()->is_op(OPERATOR_COLONEQ))
4256         this->unget_token(Token::make_identifier_token(recv_var,
4257                                                        is_var_exported,
4258                                                        location));
4259       else
4260         {
4261           if (!this->advance_token()->is_op(OPERATOR_CHANOP))
4262             {
4263               error_at(this->location(), "expected %<<-%>");
4264               return false;
4265             }
4266           *is_send = false;
4267           *varname = this->gogo_->pack_hidden_name(recv_var, is_var_exported);
4268           this->advance_token();
4269           *channel = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
4270           return true;
4271         }
4272     }
4273
4274   if (this->peek_token()->is_op(OPERATOR_CHANOP))
4275     {
4276       *is_send = false;
4277       this->advance_token();
4278       *channel = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
4279     }
4280   else
4281     {
4282       Expression* left = this->expression(PRECEDENCE_CHANOP, true, true, NULL);
4283
4284       if (this->peek_token()->is_op(OPERATOR_EQ))
4285         {
4286           if (!this->advance_token()->is_op(OPERATOR_CHANOP))
4287             {
4288               error_at(this->location(), "missing %<<-%>");
4289               return false;
4290             }
4291           *is_send = false;
4292           *val = left;
4293           this->advance_token();
4294           *channel = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
4295         }
4296       else if (this->peek_token()->is_op(OPERATOR_CHANOP))
4297         {
4298           *is_send = true;
4299           *channel = this->verify_not_sink(left);
4300           this->advance_token();
4301           *val = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
4302         }
4303       else
4304         {
4305           error_at(this->location(), "expected %<<-%> or %<=%>");
4306           return false;
4307         }
4308     }
4309
4310   return true;
4311 }
4312
4313 // ForStat = "for" [ Condition | ForClause | RangeClause ] Block .
4314 // Condition = Expression .
4315
4316 void
4317 Parse::for_stat(const Label* label)
4318 {
4319   gcc_assert(this->peek_token()->is_keyword(KEYWORD_FOR));
4320   source_location location = this->location();
4321   const Token* token = this->advance_token();
4322
4323   // Open a block to hold any variables defined in the init statement
4324   // of the for statement.
4325   this->gogo_->start_block(location);
4326
4327   Block* init = NULL;
4328   Expression* cond = NULL;
4329   Block* post = NULL;
4330   Range_clause range_clause;
4331
4332   if (!token->is_op(OPERATOR_LCURLY))
4333     {
4334       if (token->is_keyword(KEYWORD_VAR))
4335         {
4336           error_at(this->location(),
4337                    "var declaration not allowed in for initializer");
4338           this->var_decl();
4339         }
4340
4341       if (token->is_op(OPERATOR_SEMICOLON))
4342         this->for_clause(&cond, &post);
4343       else
4344         {
4345           // We might be looking at a Condition, an InitStat, or a
4346           // RangeClause.
4347           cond = this->simple_stat(false, true, &range_clause, NULL);
4348           if (!this->peek_token()->is_op(OPERATOR_SEMICOLON))
4349             {
4350               if (cond == NULL && !range_clause.found)
4351                 error_at(this->location(), "parse error in for statement");
4352             }
4353           else
4354             {
4355               if (range_clause.found)
4356                 error_at(this->location(), "parse error after range clause");
4357
4358               if (cond != NULL)
4359                 {
4360                   // COND is actually an expression statement for
4361                   // InitStat at the start of a ForClause.
4362                   this->expression_stat(cond);
4363                   cond = NULL;
4364                 }
4365
4366               this->for_clause(&cond, &post);
4367             }
4368         }
4369     }
4370
4371   // Build the For_statement and note that it is the current target
4372   // for break and continue statements.
4373
4374   For_statement* sfor;
4375   For_range_statement* srange;
4376   Statement* s;
4377   if (!range_clause.found)
4378     {
4379       sfor = Statement::make_for_statement(init, cond, post, location);
4380       s = sfor;
4381       srange = NULL;
4382     }
4383   else
4384     {
4385       srange = Statement::make_for_range_statement(range_clause.index,
4386                                                    range_clause.value,
4387                                                    range_clause.range,
4388                                                    location);
4389       s = srange;
4390       sfor = NULL;
4391     }
4392
4393   this->push_break_statement(s, label);
4394   this->push_continue_statement(s, label);
4395
4396   // Gather the block of statements in the loop and add them to the
4397   // For_statement.
4398
4399   this->gogo_->start_block(this->location());
4400   source_location end_loc = this->block();
4401   Block* statements = this->gogo_->finish_block(end_loc);
4402
4403   if (sfor != NULL)
4404     sfor->add_statements(statements);
4405   else
4406     srange->add_statements(statements);
4407
4408   // This is no longer the break/continue target.
4409   this->pop_break_statement();
4410   this->pop_continue_statement();
4411
4412   // Add the For_statement to the list of statements, and close out
4413   // the block we started to hold any variables defined in the for
4414   // statement.
4415
4416   this->gogo_->add_statement(s);
4417
4418   this->gogo_->add_block(this->gogo_->finish_block(this->location()),
4419                          location);
4420 }
4421
4422 // ForClause = [ InitStat ] ";" [ Condition ] ";" [ PostStat ] .
4423 // InitStat = SimpleStat .
4424 // PostStat = SimpleStat .
4425
4426 // We have already read InitStat at this point.
4427
4428 void
4429 Parse::for_clause(Expression** cond, Block** post)
4430 {
4431   gcc_assert(this->peek_token()->is_op(OPERATOR_SEMICOLON));
4432   this->advance_token();
4433   if (this->peek_token()->is_op(OPERATOR_SEMICOLON))
4434     *cond = NULL;
4435   else if (this->peek_token()->is_op(OPERATOR_LCURLY))
4436     {
4437       error_at(this->location(),
4438                "unexpected semicolon or newline before %<{%>");
4439       *cond = NULL;
4440       *post = NULL;
4441       return;
4442     }
4443   else
4444     *cond = this->expression(PRECEDENCE_NORMAL, false, true, NULL);
4445   if (!this->peek_token()->is_op(OPERATOR_SEMICOLON))
4446     error_at(this->location(), "expected semicolon");
4447   else
4448     this->advance_token();
4449
4450   if (this->peek_token()->is_op(OPERATOR_LCURLY))
4451     *post = NULL;
4452   else
4453     {
4454       this->gogo_->start_block(this->location());
4455       this->simple_stat(false, false, NULL, NULL);
4456       *post = this->gogo_->finish_block(this->location());
4457     }
4458 }
4459
4460 // RangeClause = IdentifierList ( "=" | ":=" ) "range" Expression .
4461
4462 // This is the := version.  It is called with a list of identifiers.
4463
4464 void
4465 Parse::range_clause_decl(const Typed_identifier_list* til,
4466                          Range_clause* p_range_clause)
4467 {
4468   gcc_assert(this->peek_token()->is_keyword(KEYWORD_RANGE));
4469   source_location location = this->location();
4470
4471   p_range_clause->found = true;
4472
4473   gcc_assert(til->size() >= 1);
4474   if (til->size() > 2)
4475     error_at(this->location(), "too many variables for range clause");
4476
4477   this->advance_token();
4478   Expression* expr = this->expression(PRECEDENCE_NORMAL, false, false, NULL);
4479   p_range_clause->range = expr;
4480
4481   bool any_new = false;
4482
4483   const Typed_identifier* pti = &til->front();
4484   Named_object* no = this->init_var(*pti, NULL, expr, true, true, &any_new);
4485   if (any_new && no->is_variable())
4486     no->var_value()->set_type_from_range_index();
4487   p_range_clause->index = Expression::make_var_reference(no, location);
4488
4489   if (til->size() == 1)
4490     p_range_clause->value = NULL;
4491   else
4492     {
4493       pti = &til->back();
4494       bool is_new = false;
4495       no = this->init_var(*pti, NULL, expr, true, true, &is_new);
4496       if (is_new && no->is_variable())
4497         no->var_value()->set_type_from_range_value();
4498       if (is_new)
4499         any_new = true;
4500       p_range_clause->value = Expression::make_var_reference(no, location);
4501     }
4502
4503   if (!any_new)
4504     error_at(location, "variables redeclared but no variable is new");
4505 }
4506
4507 // The = version of RangeClause.  This is called with a list of
4508 // expressions.
4509
4510 void
4511 Parse::range_clause_expr(const Expression_list* vals,
4512                          Range_clause* p_range_clause)
4513 {
4514   gcc_assert(this->peek_token()->is_keyword(KEYWORD_RANGE));
4515
4516   p_range_clause->found = true;
4517
4518   gcc_assert(vals->size() >= 1);
4519   if (vals->size() > 2)
4520     error_at(this->location(), "too many variables for range clause");
4521
4522   this->advance_token();
4523   p_range_clause->range = this->expression(PRECEDENCE_NORMAL, false, false,
4524                                            NULL);
4525
4526   p_range_clause->index = vals->front();
4527   if (vals->size() == 1)
4528     p_range_clause->value = NULL;
4529   else
4530     p_range_clause->value = vals->back();
4531 }
4532
4533 // Push a statement on the break stack.
4534
4535 void
4536 Parse::push_break_statement(Statement* enclosing, const Label* label)
4537 {
4538   if (this->break_stack_ == NULL)
4539     this->break_stack_ = new Bc_stack();
4540   this->break_stack_->push_back(std::make_pair(enclosing, label));
4541 }
4542
4543 // Push a statement on the continue stack.
4544
4545 void
4546 Parse::push_continue_statement(Statement* enclosing, const Label* label)
4547 {
4548   if (this->continue_stack_ == NULL)
4549     this->continue_stack_ = new Bc_stack();
4550   this->continue_stack_->push_back(std::make_pair(enclosing, label));
4551 }
4552
4553 // Pop the break stack.
4554
4555 void
4556 Parse::pop_break_statement()
4557 {
4558   this->break_stack_->pop_back();
4559 }
4560
4561 // Pop the continue stack.
4562
4563 void
4564 Parse::pop_continue_statement()
4565 {
4566   this->continue_stack_->pop_back();
4567 }
4568
4569 // Find a break or continue statement given a label name.
4570
4571 Statement*
4572 Parse::find_bc_statement(const Bc_stack* bc_stack, const std::string& label)
4573 {
4574   if (bc_stack == NULL)
4575     return NULL;
4576   for (Bc_stack::const_reverse_iterator p = bc_stack->rbegin();
4577        p != bc_stack->rend();
4578        ++p)
4579     if (p->second != NULL && p->second->name() == label)
4580       return p->first;
4581   return NULL;
4582 }
4583
4584 // BreakStat = "break" [ identifier ] .
4585
4586 void
4587 Parse::break_stat()
4588 {
4589   gcc_assert(this->peek_token()->is_keyword(KEYWORD_BREAK));
4590   source_location location = this->location();
4591
4592   const Token* token = this->advance_token();
4593   Statement* enclosing;
4594   if (!token->is_identifier())
4595     {
4596       if (this->break_stack_ == NULL || this->break_stack_->empty())
4597         {
4598           error_at(this->location(),
4599                    "break statement not within for or switch or select");
4600           return;
4601         }
4602       enclosing = this->break_stack_->back().first;
4603     }
4604   else
4605     {
4606       enclosing = this->find_bc_statement(this->break_stack_,
4607                                           token->identifier());
4608       if (enclosing == NULL)
4609         {
4610           error_at(token->location(),
4611                    ("break label %qs not associated with "
4612                     "for or switch or select"),
4613                    Gogo::message_name(token->identifier()).c_str());
4614           this->advance_token();
4615           return;
4616         }
4617       this->advance_token();
4618     }
4619
4620   Unnamed_label* label;
4621   if (enclosing->classification() == Statement::STATEMENT_FOR)
4622     label = enclosing->for_statement()->break_label();
4623   else if (enclosing->classification() == Statement::STATEMENT_FOR_RANGE)
4624     label = enclosing->for_range_statement()->break_label();
4625   else if (enclosing->classification() == Statement::STATEMENT_SWITCH)
4626     label = enclosing->switch_statement()->break_label();
4627   else if (enclosing->classification() == Statement::STATEMENT_TYPE_SWITCH)
4628     label = enclosing->type_switch_statement()->break_label();
4629   else if (enclosing->classification() == Statement::STATEMENT_SELECT)
4630     label = enclosing->select_statement()->break_label();
4631   else
4632     gcc_unreachable();
4633
4634   this->gogo_->add_statement(Statement::make_break_statement(label,
4635                                                              location));
4636 }
4637
4638 // ContinueStat = "continue" [ identifier ] .
4639
4640 void
4641 Parse::continue_stat()
4642 {
4643   gcc_assert(this->peek_token()->is_keyword(KEYWORD_CONTINUE));
4644   source_location location = this->location();
4645
4646   const Token* token = this->advance_token();
4647   Statement* enclosing;
4648   if (!token->is_identifier())
4649     {
4650       if (this->continue_stack_ == NULL || this->continue_stack_->empty())
4651         {
4652           error_at(this->location(), "continue statement not within for");
4653           return;
4654         }
4655       enclosing = this->continue_stack_->back().first;
4656     }
4657   else
4658     {
4659       enclosing = this->find_bc_statement(this->continue_stack_,
4660                                           token->identifier());
4661       if (enclosing == NULL)
4662         {
4663           error_at(token->location(),
4664                    "continue label %qs not associated with for",
4665                    Gogo::message_name(token->identifier()).c_str());
4666           this->advance_token();
4667           return;
4668         }
4669       this->advance_token();
4670     }
4671
4672   Unnamed_label* label;
4673   if (enclosing->classification() == Statement::STATEMENT_FOR)
4674     label = enclosing->for_statement()->continue_label();
4675   else if (enclosing->classification() == Statement::STATEMENT_FOR_RANGE)
4676     label = enclosing->for_range_statement()->continue_label();
4677   else
4678     gcc_unreachable();
4679
4680   this->gogo_->add_statement(Statement::make_continue_statement(label,
4681                                                                 location));
4682 }
4683
4684 // GotoStat = "goto" identifier .
4685
4686 void
4687 Parse::goto_stat()
4688 {
4689   gcc_assert(this->peek_token()->is_keyword(KEYWORD_GOTO));
4690   source_location location = this->location();
4691   const Token* token = this->advance_token();
4692   if (!token->is_identifier())
4693     error_at(this->location(), "expected label for goto");
4694   else
4695     {
4696       Label* label = this->gogo_->add_label_reference(token->identifier());
4697       Statement* s = Statement::make_goto_statement(label, location);
4698       this->gogo_->add_statement(s);
4699       this->advance_token();
4700     }
4701 }
4702
4703 // PackageClause = "package" PackageName .
4704
4705 void
4706 Parse::package_clause()
4707 {
4708   const Token* token = this->peek_token();
4709   source_location location = token->location();
4710   std::string name;
4711   if (!token->is_keyword(KEYWORD_PACKAGE))
4712     {
4713       error_at(this->location(), "program must start with package clause");
4714       name = "ERROR";
4715     }
4716   else
4717     {
4718       token = this->advance_token();
4719       if (token->is_identifier())
4720         {
4721           name = token->identifier();
4722           if (name == "_")
4723             {
4724               error_at(this->location(), "invalid package name _");
4725               name = "blank";
4726             }
4727           this->advance_token();
4728         }
4729       else
4730         {
4731           error_at(this->location(), "package name must be an identifier");
4732           name = "ERROR";
4733         }
4734     }
4735   this->gogo_->set_package_name(name, location);
4736 }
4737
4738 // ImportDecl = "import" Decl<ImportSpec> .
4739
4740 void
4741 Parse::import_decl()
4742 {
4743   gcc_assert(this->peek_token()->is_keyword(KEYWORD_IMPORT));
4744   this->advance_token();
4745   this->decl(&Parse::import_spec, NULL);
4746 }
4747
4748 // ImportSpec = [ "." | PackageName ] PackageFileName .
4749
4750 void
4751 Parse::import_spec(void*)
4752 {
4753   const Token* token = this->peek_token();
4754   source_location location = token->location();
4755
4756   std::string local_name;
4757   bool is_local_name_exported = false;
4758   if (token->is_op(OPERATOR_DOT))
4759     {
4760       local_name = ".";
4761       token = this->advance_token();
4762     }
4763   else if (token->is_identifier())
4764     {
4765       local_name = token->identifier();
4766       is_local_name_exported = token->is_identifier_exported();
4767       token = this->advance_token();
4768     }
4769
4770   if (!token->is_string())
4771     {
4772       error_at(this->location(), "missing import package name");
4773       return;
4774     }
4775
4776   this->gogo_->import_package(token->string_value(), local_name,
4777                               is_local_name_exported, location);
4778
4779   this->advance_token();
4780 }
4781
4782 // SourceFile       = PackageClause ";" { ImportDecl ";" }
4783 //                      { TopLevelDecl ";" } .
4784
4785 void
4786 Parse::program()
4787 {
4788   this->package_clause();
4789
4790   const Token* token = this->peek_token();
4791   if (token->is_op(OPERATOR_SEMICOLON))
4792     token = this->advance_token();
4793   else
4794     error_at(this->location(),
4795              "expected %<;%> or newline after package clause");
4796
4797   while (token->is_keyword(KEYWORD_IMPORT))
4798     {
4799       this->import_decl();
4800       token = this->peek_token();
4801       if (token->is_op(OPERATOR_SEMICOLON))
4802         token = this->advance_token();
4803       else
4804         error_at(this->location(),
4805                  "expected %<;%> or newline after import declaration");
4806     }
4807
4808   while (!token->is_eof())
4809     {
4810       if (this->declaration_may_start_here())
4811         this->declaration();
4812       else
4813         {
4814           error_at(this->location(), "expected declaration");
4815           do
4816             this->advance_token();
4817           while (!this->peek_token()->is_eof()
4818                  && !this->peek_token()->is_op(OPERATOR_SEMICOLON)
4819                  && !this->peek_token()->is_op(OPERATOR_RCURLY));
4820           if (!this->peek_token()->is_eof()
4821               && !this->peek_token()->is_op(OPERATOR_SEMICOLON))
4822             this->advance_token();
4823         }
4824       token = this->peek_token();
4825       if (token->is_op(OPERATOR_SEMICOLON))
4826         token = this->advance_token();
4827       else if (!token->is_eof() || !saw_errors())
4828         {
4829           error_at(this->location(),
4830                    "expected %<;%> or newline after top level declaration");
4831           this->skip_past_error(OPERATOR_INVALID);
4832         }
4833     }
4834 }
4835
4836 // Reset the current iota value.
4837
4838 void
4839 Parse::reset_iota()
4840 {
4841   this->iota_ = 0;
4842 }
4843
4844 // Return the current iota value.
4845
4846 int
4847 Parse::iota_value()
4848 {
4849   return this->iota_;
4850 }
4851
4852 // Increment the current iota value.
4853
4854 void
4855 Parse::increment_iota()
4856 {
4857   ++this->iota_;
4858 }
4859
4860 // Skip forward to a semicolon or OP.  OP will normally be
4861 // OPERATOR_RPAREN or OPERATOR_RCURLY.  If we find a semicolon, move
4862 // past it and return.  If we find OP, it will be the next token to
4863 // read.  Return true if we are OK, false if we found EOF.
4864
4865 bool
4866 Parse::skip_past_error(Operator op)
4867 {
4868   const Token* token = this->peek_token();
4869   while (!token->is_op(op))
4870     {
4871       if (token->is_eof())
4872         return false;
4873       if (token->is_op(OPERATOR_SEMICOLON))
4874         {
4875           this->advance_token();
4876           return true;
4877         }
4878       token = this->advance_token();
4879     }
4880   return true;
4881 }
4882
4883 // Check that an expression is not a sink.
4884
4885 Expression*
4886 Parse::verify_not_sink(Expression* expr)
4887 {
4888   if (expr->is_sink_expression())
4889     {
4890       error_at(expr->location(), "cannot use _ as value");
4891       expr = Expression::make_error(expr->location());
4892     }
4893   return expr;
4894 }