OSDN Git Service

Tuple receives indicate whether channel is closed.
[pf3gnuchains/gcc-fork.git] / gcc / go / gofrontend / gogo.h
1 // gogo.h -- Go frontend parsed representation.     -*- C++ -*-
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 #ifndef GO_GOGO_H
8 #define GO_GOGO_H
9
10 class Traverse;
11 class Type;
12 class Type_hash_identical;
13 class Type_equal;
14 class Type_identical;
15 class Typed_identifier;
16 class Typed_identifier_list;
17 class Function_type;
18 class Expression;
19 class Statement;
20 class Block;
21 class Function;
22 class Bindings;
23 class Package;
24 class Variable;
25 class Pointer_type;
26 class Struct_type;
27 class Struct_field;
28 class Struct_field_list;
29 class Array_type;
30 class Map_type;
31 class Channel_type;
32 class Interface_type;
33 class Named_type;
34 class Forward_declaration_type;
35 class Method;
36 class Methods;
37 class Named_object;
38 class Label;
39 class Translate_context;
40 class Export;
41 class Import;
42
43 // This file declares the basic classes used to hold the internal
44 // representation of Go which is built by the parser.
45
46 // An initialization function for an imported package.  This is a
47 // magic function which initializes variables and runs the "init"
48 // function.
49
50 class Import_init
51 {
52  public:
53   Import_init(const std::string& package_name, const std::string& init_name,
54               int priority)
55     : package_name_(package_name), init_name_(init_name), priority_(priority)
56   { }
57
58   // The name of the package being imported.
59   const std::string&
60   package_name() const
61   { return this->package_name_; }
62
63   // The name of the package's init function.
64   const std::string&
65   init_name() const
66   { return this->init_name_; }
67
68   // The priority of the initialization function.  Functions with a
69   // lower priority number must be run first.
70   int
71   priority() const
72   { return this->priority_; }
73
74  private:
75   // The name of the package being imported.
76   std::string package_name_;
77   // The name of the package's init function.
78   std::string init_name_;
79   // The priority.
80   int priority_;
81 };
82
83 // For sorting purposes.
84
85 inline bool
86 operator<(const Import_init& i1, const Import_init& i2)
87 {
88   if (i1.priority() < i2.priority())
89     return true;
90   if (i1.priority() > i2.priority())
91     return false;
92   if (i1.package_name() != i2.package_name())
93     return i1.package_name() < i2.package_name();
94   return i1.init_name() < i2.init_name();
95 }
96
97 // The holder for the internal representation of the entire
98 // compilation unit.
99
100 class Gogo
101 {
102  public:
103   // Create the IR, passing in the sizes of the types "int" and
104   // "uintptr" in bits.
105   Gogo(int int_type_size, int pointer_size);
106
107   // Get the package name.
108   const std::string&
109   package_name() const;
110
111   // Set the package name.
112   void
113   set_package_name(const std::string&, source_location);
114
115   // Return whether this is the "main" package.
116   bool
117   is_main_package() const;
118
119   // If necessary, adjust the name to use for a hidden symbol.  We add
120   // a prefix of the package name, so that hidden symbols in different
121   // packages do not collide.
122   std::string
123   pack_hidden_name(const std::string& name, bool is_exported) const
124   {
125     return (is_exported
126             ? name
127             : ('.' + this->unique_prefix()
128                + '.' + this->package_name()
129                + '.' + name));
130   }
131
132   // Unpack a name which may have been hidden.  Returns the
133   // user-visible name of the object.
134   static std::string
135   unpack_hidden_name(const std::string& name)
136   { return name[0] != '.' ? name : name.substr(name.rfind('.') + 1); }
137
138   // Return whether a possibly packed name is hidden.
139   static bool
140   is_hidden_name(const std::string& name)
141   { return name[0] == '.'; }
142
143   // Return the package prefix of a hidden name.
144   static std::string
145   hidden_name_prefix(const std::string& name)
146   {
147     gcc_assert(Gogo::is_hidden_name(name));
148     return name.substr(1, name.rfind('.') - 1);
149   }
150
151   // Given a name which may or may not have been hidden, return the
152   // name to use in an error message.
153   static std::string
154   message_name(const std::string& name);
155
156   // Return whether a name is the blank identifier _.
157   static bool
158   is_sink_name(const std::string& name)
159   {
160     return (name[0] == '.'
161             && name[name.length() - 1] == '_'
162             && name[name.length() - 2] == '.');
163   }
164
165   // Return the unique prefix to use for all exported symbols.
166   const std::string&
167   unique_prefix() const;
168
169   // Set the unique prefix.
170   void
171   set_unique_prefix(const std::string&);
172
173   // Return the priority to use for the package we are compiling.
174   // This is two more than the largest priority of any package we
175   // import.
176   int
177   package_priority() const;
178
179   // Import a package.  FILENAME is the file name argument, LOCAL_NAME
180   // is the local name to give to the package.  If LOCAL_NAME is empty
181   // the declarations are added to the global scope.
182   void
183   import_package(const std::string& filename, const std::string& local_name,
184                  bool is_local_name_exported, source_location);
185
186   // Whether we are the global binding level.
187   bool
188   in_global_scope() const;
189
190   // Look up a name in the current binding contours.
191   Named_object*
192   lookup(const std::string&, Named_object** pfunction) const;
193
194   // Look up a name in the current block.
195   Named_object*
196   lookup_in_block(const std::string&) const;
197
198   // Look up a name in the global namespace--the universal scope.
199   Named_object*
200   lookup_global(const char*) const;
201
202   // Add a new imported package.  REAL_NAME is the real name of the
203   // package.  ALIAS is the alias of the package; this may be the same
204   // as REAL_NAME.  This sets *PADD_TO_GLOBALS if symbols added to
205   // this package should be added to the global namespace; this is
206   // true if the alias is ".".  LOCATION is the location of the import
207   // statement.  This returns the new package, or NULL on error.
208   Package*
209   add_imported_package(const std::string& real_name, const std::string& alias,
210                        bool is_alias_exported,
211                        const std::string& unique_prefix,
212                        source_location location,
213                        bool* padd_to_globals);
214
215   // Register a package.  This package may or may not be imported.
216   // This returns the Package structure for the package, creating if
217   // it necessary.
218   Package*
219   register_package(const std::string& name, const std::string& unique_prefix,
220                    source_location);
221
222   // Start compiling a function.  ADD_METHOD_TO_TYPE is true if a
223   // method function should be added to the type of its receiver.
224   Named_object*
225   start_function(const std::string& name, Function_type* type,
226                  bool add_method_to_type, source_location);
227
228   // Finish compiling a function.
229   void
230   finish_function(source_location);
231
232   // Return the current function.
233   Named_object*
234   current_function() const;
235
236   // Start a new block.  This is not initially associated with a
237   // function.
238   void
239   start_block(source_location);
240
241   // Finish the current block and return it.
242   Block*
243   finish_block(source_location);
244
245   // Declare an unknown name.  This is used while parsing.  The name
246   // must be resolved by the end of the parse.  Unknown names are
247   // always added at the package level.
248   Named_object*
249   add_unknown_name(const std::string& name, source_location);
250
251   // Declare a function.
252   Named_object*
253   declare_function(const std::string&, Function_type*, source_location);
254
255   // Add a label.
256   Label*
257   add_label_definition(const std::string&, source_location);
258
259   // Add a label reference.
260   Label*
261   add_label_reference(const std::string&);
262
263   // Add a statement to the current block.
264   void
265   add_statement(Statement*);
266
267   // Add a block to the current block.
268   void
269   add_block(Block*, source_location);
270
271   // Add a constant.
272   Named_object*
273   add_constant(const Typed_identifier&, Expression*, int iota_value);
274
275   // Add a type.
276   void
277   add_type(const std::string&, Type*, source_location);
278
279   // Add a named type.  This is used for builtin types, and to add an
280   // imported type to the global scope.
281   void
282   add_named_type(Named_type*);
283
284   // Declare a type.
285   Named_object*
286   declare_type(const std::string&, source_location);
287
288   // Declare a type at the package level.  This is used when the
289   // parser sees an unknown name where a type name is required.
290   Named_object*
291   declare_package_type(const std::string&, source_location);
292
293   // Define a type which was already declared.
294   void
295   define_type(Named_object*, Named_type*);
296
297   // Add a variable.
298   Named_object*
299   add_variable(const std::string&, Variable*);
300
301   // Add a sink--a reference to the blank identifier _.
302   Named_object*
303   add_sink();
304
305   // Add a named object to the current namespace.  This is used for
306   // import . "package".
307   void
308   add_named_object(Named_object*);
309
310   // Return a name to use for a thunk function.  A thunk function is
311   // one we create during the compilation, for a go statement or a
312   // defer statement or a method expression.
313   static std::string
314   thunk_name();
315
316   // Return whether an object is a thunk.
317   static bool
318   is_thunk(const Named_object*);
319
320   // Note that we've seen an interface type.  This is used to build
321   // all required interface method tables.
322   void
323   record_interface_type(Interface_type*);
324
325   // Note that we need an initialization function.
326   void
327   set_need_init_fn()
328   { this->need_init_fn_ = true; }
329
330   // Clear out all names in file scope.  This is called when we start
331   // parsing a new file.
332   void
333   clear_file_scope();
334
335   // Traverse the tree.  See the Traverse class.
336   void
337   traverse(Traverse*);
338
339   // Define the predeclared global names.
340   void
341   define_global_names();
342
343   // Verify and complete all types.
344   void
345   verify_types();
346
347   // Lower the parse tree.
348   void
349   lower_parse_tree();
350
351   // Lower all the statements in a block.
352   void
353   lower_block(Named_object* function, Block*);
354
355   // Lower an expression.
356   void
357   lower_expression(Named_object* function, Expression**);
358
359   // Lower a constant.
360   void
361   lower_constant(Named_object*);
362
363   // Finalize the method lists and build stub methods for named types.
364   void
365   finalize_methods();
366
367   // Work out the types to use for unspecified variables and
368   // constants.
369   void
370   determine_types();
371
372   // Type check the program.
373   void
374   check_types();
375
376   // Check the types in a single block.  This is used for complicated
377   // go statements.
378   void
379   check_types_in_block(Block*);
380
381   // Check for return statements.
382   void
383   check_return_statements();
384
385   // Do all exports.
386   void
387   do_exports();
388
389   // Add an import control function for an imported package to the
390   // list.
391   void
392   add_import_init_fn(const std::string& package_name,
393                      const std::string& init_name, int prio);
394
395   // Turn short-cut operators (&&, ||) into explicit if statements.
396   void
397   remove_shortcuts();
398
399   // Use temporary variables to force order of evaluation.
400   void
401   order_evaluations();
402
403   // Build thunks for functions which call recover.
404   void
405   build_recover_thunks();
406
407   // Simplify statements which might use thunks: go and defer
408   // statements.
409   void
410   simplify_thunk_statements();
411
412   // Convert named types to the backend representation.
413   void
414   convert_named_types();
415
416   // Convert named types in a list of bindings.
417   void
418   convert_named_types_in_bindings(Bindings*);
419
420   // True if named types have been converted to the backend
421   // representation.
422   bool
423   named_types_are_converted() const
424   { return this->named_types_are_converted_; }
425
426   // Write out the global values.
427   void
428   write_globals();
429
430   // Build a call to a builtin function.  PDECL should point to a NULL
431   // initialized static pointer which will hold the fndecl.  NAME is
432   // the name of the function.  NARGS is the number of arguments.
433   // RETTYPE is the return type.  It is followed by NARGS pairs of
434   // type and argument (both trees).
435   static tree
436   call_builtin(tree* pdecl, source_location, const char* name, int nargs,
437                tree rettype, ...);
438
439   // Build a call to the runtime error function.
440   static tree
441   runtime_error(int code, source_location);
442
443   // Build a builtin struct with a list of fields.
444   static tree
445   builtin_struct(tree* ptype, const char* struct_name, tree struct_type,
446                  int nfields, ...);
447
448   // Mark a function declaration as a builtin library function.
449   static void
450   mark_fndecl_as_builtin_library(tree fndecl);
451
452   // Build the type of the struct that holds a slice for the given
453   // element type.
454   tree
455   slice_type_tree(tree element_type_tree);
456
457   // Given a tree for a slice type, return the tree for the element
458   // type.
459   static tree
460   slice_element_type_tree(tree slice_type_tree);
461
462   // Build a constructor for a slice.  SLICE_TYPE_TREE is the type of
463   // the slice.  VALUES points to the values.  COUNT is the size,
464   // CAPACITY is the capacity.  If CAPACITY is NULL, it is set to
465   // COUNT.
466   static tree
467   slice_constructor(tree slice_type_tree, tree values, tree count,
468                     tree capacity);
469
470   // Build a constructor for an empty slice.  SLICE_TYPE_TREE is the
471   // type of the slice.
472   static tree
473   empty_slice_constructor(tree slice_type_tree);
474
475   // Build a map descriptor.
476   tree
477   map_descriptor(Map_type*);
478
479   // Return a tree for the type of a map descriptor.  This is struct
480   // __go_map_descriptor in libgo/runtime/map.h.  This is the same for
481   // all map types.
482   tree
483   map_descriptor_type();
484
485   // Build a type descriptor for TYPE using INITIALIZER as the type
486   // descriptor.  This builds a new decl stored in *PDECL.
487   void
488   build_type_descriptor_decl(const Type*, Expression* initializer,
489                              tree* pdecl);
490
491   // Build required interface method tables.
492   void
493   build_interface_method_tables();
494
495   // Build an interface method table for a type: a list of function
496   // pointers, one for each interface method.  This returns a decl.
497   tree
498   interface_method_table_for_type(const Interface_type*, Named_type*,
499                                   bool is_pointer);
500
501   // Return a tree which allocate SIZE bytes to hold values of type
502   // TYPE.
503   tree
504   allocate_memory(Type *type, tree size, source_location);
505
506   // Return a type to use for pointer to const char.
507   static tree
508   const_char_pointer_type_tree();
509
510   // Build a string constant with the right type.
511   static tree
512   string_constant_tree(const std::string&);
513
514   // Build a Go string constant.  This returns a pointer to the
515   // constant.
516   tree
517   go_string_constant_tree(const std::string&);
518
519   // Send a value on a channel.
520   static tree
521   send_on_channel(tree channel, tree val, bool blocking, bool for_select,
522                   source_location);
523
524   // Receive a value from a channel.
525   static tree
526   receive_from_channel(tree type_tree, tree channel, bool for_select,
527                        source_location);
528
529   // Return a tree for receiving an integer on a channel.
530   static tree
531   receive_as_64bit_integer(tree type, tree channel, bool blocking,
532                            bool for_select);
533
534
535   // Make a trampoline which calls FNADDR passing CLOSURE.
536   tree
537   make_trampoline(tree fnaddr, tree closure, source_location);
538
539  private:
540   // During parsing, we keep a stack of functions.  Each function on
541   // the stack is one that we are currently parsing.  For each
542   // function, we keep track of the current stack of blocks.
543   struct Open_function
544   {
545     // The function.
546     Named_object* function;
547     // The stack of active blocks in the function.
548     std::vector<Block*> blocks;
549   };
550
551   // The stack of functions.
552   typedef std::vector<Open_function> Open_functions;
553
554   // Create trees for implicit builtin functions.
555   void
556   define_builtin_function_trees();
557
558   // Set up the built-in unsafe package.
559   void
560   import_unsafe(const std::string&, bool is_exported, source_location);
561
562   // Add a new imported package.
563   Named_object*
564   add_package(const std::string& real_name, const std::string& alias,
565               const std::string& unique_prefix, source_location location);
566
567   // Return the current binding contour.
568   Bindings*
569   current_bindings();
570
571   const Bindings*
572   current_bindings() const;
573
574   // Return the current block.
575   Block*
576   current_block();
577
578   // Get the name of the magic initialization function.
579   const std::string&
580   get_init_fn_name();
581
582   // Get the decl for the magic initialization function.
583   tree
584   initialization_function_decl();
585
586   // Write the magic initialization function.
587   void
588   write_initialization_function(tree fndecl, tree init_stmt_list);
589
590   // Initialize imported packages.
591   void
592   init_imports(tree*);
593
594   // Register variables with the garbage collector.
595   void
596   register_gc_vars(const std::vector<Named_object*>&, tree*);
597
598   // Build a pointer to a Go string constant.  This returns a pointer
599   // to the pointer.
600   tree
601   ptr_go_string_constant_tree(const std::string&);
602
603   // Return the name to use for a type descriptor decl for an unnamed
604   // type.
605   std::string
606   unnamed_type_descriptor_decl_name(const Type* type);
607
608   // Return the name to use for a type descriptor decl for a type
609   // named NO, defined in IN_FUNCTION.
610   std::string
611   type_descriptor_decl_name(const Named_object* no,
612                             const Named_object* in_function);
613
614   // Where a type descriptor should be defined.
615   enum Type_descriptor_location
616     {
617       // Defined in this file.
618       TYPE_DESCRIPTOR_DEFINED,
619       // Defined in some other file.
620       TYPE_DESCRIPTOR_UNDEFINED,
621       // Common definition which may occur in multiple files.
622       TYPE_DESCRIPTOR_COMMON
623     };
624
625   // Return where the decl for TYPE should be defined.
626   Type_descriptor_location
627   type_descriptor_location(const Type* type);
628
629   // Return the type of a trampoline.
630   static tree
631   trampoline_type_tree();
632
633   // Type used to map import names to packages.
634   typedef std::map<std::string, Package*> Imports;
635
636   // Type used to map package names to packages.
637   typedef std::map<std::string, Package*> Packages;
638
639   // Type used to map special names in the sys package.
640   typedef std::map<std::string, std::string> Sys_names;
641
642   // Hash table mapping map types to map descriptor decls.
643   typedef Unordered_map_hash(const Map_type*, tree, Type_hash_identical,
644                              Type_identical) Map_descriptors;
645
646   // Map unnamed types to type descriptor decls.
647   typedef Unordered_map_hash(const Type*, tree, Type_hash_identical,
648                              Type_identical) Type_descriptor_decls;
649
650   // The package we are compiling.
651   Package* package_;
652   // The list of currently open functions during parsing.
653   Open_functions functions_;
654   // The global binding contour.  This includes the builtin functions
655   // and the package we are compiling.
656   Bindings* globals_;
657   // Mapping from import file names to packages.
658   Imports imports_;
659   // Whether the magic unsafe package was imported.
660   bool imported_unsafe_;
661   // Mapping from package names we have seen to packages.  This does
662   // not include the package we are compiling.
663   Packages packages_;
664   // Mapping from map types to map descriptors.
665   Map_descriptors* map_descriptors_;
666   // Mapping from unnamed types to type descriptor decls.
667   Type_descriptor_decls* type_descriptor_decls_;
668   // The functions named "init", if there are any.
669   std::vector<Named_object*> init_functions_;
670   // Whether we need a magic initialization function.
671   bool need_init_fn_;
672   // The name of the magic initialization function.
673   std::string init_fn_name_;
674   // A list of import control variables for packages that we import.
675   std::set<Import_init> imported_init_fns_;
676   // The unique prefix used for all global symbols.
677   std::string unique_prefix_;
678   // Whether an explicit unique prefix was set by -fgo-prefix.
679   bool unique_prefix_specified_;
680   // A list of interface types defined while parsing.
681   std::vector<Interface_type*> interface_types_;
682   // Whether named types have been converted.
683   bool named_types_are_converted_;
684 };
685
686 // A block of statements.
687
688 class Block
689 {
690  public:
691   Block(Block* enclosing, source_location);
692
693   // Return the enclosing block.
694   const Block*
695   enclosing() const
696   { return this->enclosing_; }
697
698   // Return the bindings of the block.
699   Bindings*
700   bindings()
701   { return this->bindings_; }
702
703   const Bindings*
704   bindings() const
705   { return this->bindings_; }
706
707   // Look at the block's statements.
708   const std::vector<Statement*>*
709   statements() const
710   { return &this->statements_; }
711
712   // Return the start location.  This is normally the location of the
713   // left curly brace which starts the block.
714   source_location
715   start_location() const
716   { return this->start_location_; }
717
718   // Return the end location.  This is normally the location of the
719   // right curly brace which ends the block.
720   source_location
721   end_location() const
722   { return this->end_location_; }
723
724   // Add a statement to the block.
725   void
726   add_statement(Statement*);
727
728   // Add a statement to the front of the block.
729   void
730   add_statement_at_front(Statement*);
731
732   // Replace a statement in a block.
733   void
734   replace_statement(size_t index, Statement*);
735
736   // Add a Statement before statement number INDEX.
737   void
738   insert_statement_before(size_t index, Statement*);
739
740   // Add a Statement after statement number INDEX.
741   void
742   insert_statement_after(size_t index, Statement*);
743
744   // Set the end location of the block.
745   void
746   set_end_location(source_location location)
747   { this->end_location_ = location; }
748
749   // Traverse the tree.
750   int
751   traverse(Traverse*);
752
753   // Set final types for unspecified variables and constants.
754   void
755   determine_types();
756
757   // Return true if execution of this block may fall through to the
758   // next block.
759   bool
760   may_fall_through() const;
761
762   // Return a tree of the code in this block.
763   tree
764   get_tree(Translate_context*);
765
766   // Iterate over statements.
767
768   typedef std::vector<Statement*>::iterator iterator;
769
770   iterator
771   begin()
772   { return this->statements_.begin(); }
773
774   iterator
775   end()
776   { return this->statements_.end(); }
777
778  private:
779   // Enclosing block.
780   Block* enclosing_;
781   // Statements in the block.
782   std::vector<Statement*> statements_;
783   // Binding contour.
784   Bindings* bindings_;
785   // Location of start of block.
786   source_location start_location_;
787   // Location of end of block.
788   source_location end_location_;
789 };
790
791 // A function.
792
793 class Function
794 {
795  public:
796   Function(Function_type* type, Function*, Block*, source_location);
797
798   // Return the function's type.
799   Function_type*
800   type() const
801   { return this->type_; }
802
803   // Return the enclosing function if there is one.
804   Function*
805   enclosing()
806   { return this->enclosing_; }
807
808   // Set the enclosing function.  This is used when building thunks
809   // for functions which call recover.
810   void
811   set_enclosing(Function* enclosing)
812   {
813     gcc_assert(this->enclosing_ == NULL);
814     this->enclosing_ = enclosing;
815   }
816
817   // Create the named result variables in the outer block.
818   void
819   create_named_result_variables(Gogo*);
820
821   // Update the named result variables when cloning a function which
822   // calls recover.
823   void
824   update_named_result_variables();
825
826   // Add a new field to the closure variable.
827   void
828   add_closure_field(Named_object* var, source_location loc)
829   { this->closure_fields_.push_back(std::make_pair(var, loc)); }
830
831   // Whether this function needs a closure.
832   bool
833   needs_closure() const
834   { return !this->closure_fields_.empty(); }
835
836   // Return the closure variable, creating it if necessary.  This is
837   // passed to the function as a static chain parameter.
838   Named_object*
839   closure_var();
840
841   // Set the closure variable.  This is used when building thunks for
842   // functions which call recover.
843   void
844   set_closure_var(Named_object* v)
845   {
846     gcc_assert(this->closure_var_ == NULL);
847     this->closure_var_ = v;
848   }
849
850   // Return the variable for a reference to field INDEX in the closure
851   // variable.
852   Named_object*
853   enclosing_var(unsigned int index)
854   {
855     gcc_assert(index < this->closure_fields_.size());
856     return closure_fields_[index].first;
857   }
858
859   // Set the type of the closure variable if there is one.
860   void
861   set_closure_type();
862
863   // Get the block of statements associated with the function.
864   Block*
865   block() const
866   { return this->block_; }
867
868   // Get the location of the start of the function.
869   source_location
870   location() const
871   { return this->location_; }
872
873   // Return whether this function is actually a method.
874   bool
875   is_method() const;
876
877   // Add a label definition to the function.
878   Label*
879   add_label_definition(const std::string& label_name, source_location);
880
881   // Add a label reference to a function.
882   Label*
883   add_label_reference(const std::string& label_name);
884
885   // Whether this function calls the predeclared recover function.
886   bool
887   calls_recover() const
888   { return this->calls_recover_; }
889
890   // Record that this function calls the predeclared recover function.
891   // This is set during the lowering pass.
892   void
893   set_calls_recover()
894   { this->calls_recover_ = true; }
895
896   // Whether this is a recover thunk function.
897   bool
898   is_recover_thunk() const
899   { return this->is_recover_thunk_; }
900
901   // Record that this is a thunk built for a function which calls
902   // recover.
903   void
904   set_is_recover_thunk()
905   { this->is_recover_thunk_ = true; }
906
907   // Whether this function already has a recover thunk.
908   bool
909   has_recover_thunk() const
910   { return this->has_recover_thunk_; }
911
912   // Record that this function already has a recover thunk.
913   void
914   set_has_recover_thunk()
915   { this->has_recover_thunk_ = true; }
916
917   // Swap with another function.  Used only for the thunk which calls
918   // recover.
919   void
920   swap_for_recover(Function *);
921
922   // Traverse the tree.
923   int
924   traverse(Traverse*);
925
926   // Determine types in the function.
927   void
928   determine_types();
929
930   // Return the function's decl given an identifier.
931   tree
932   get_or_make_decl(Gogo*, Named_object*, tree id);
933
934   // Return the function's decl after it has been built.
935   tree
936   get_decl() const
937   {
938     gcc_assert(this->fndecl_ != NULL);
939     return this->fndecl_;
940   }
941
942   // Set the function decl to hold a tree of the function code.
943   void
944   build_tree(Gogo*, Named_object*);
945
946   // Get the value to return when not explicitly specified.  May also
947   // add statements to execute first to STMT_LIST.
948   tree
949   return_value(Gogo*, Named_object*, source_location, tree* stmt_list) const;
950
951   // Get a tree for the variable holding the defer stack.
952   tree
953   defer_stack(source_location);
954
955   // Export the function.
956   void
957   export_func(Export*, const std::string& name) const;
958
959   // Export a function with a type.
960   static void
961   export_func_with_type(Export*, const std::string& name,
962                         const Function_type*);
963
964   // Import a function.
965   static void
966   import_func(Import*, std::string* pname, Typed_identifier** receiver,
967               Typed_identifier_list** pparameters,
968               Typed_identifier_list** presults, bool* is_varargs);
969
970  private:
971   // Type for mapping from label names to Label objects.
972   typedef Unordered_map(std::string, Label*) Labels;
973
974   tree
975   make_receiver_parm_decl(Gogo*, Named_object*, tree);
976
977   tree
978   copy_parm_to_heap(Gogo*, Named_object*, tree);
979
980   void
981   build_defer_wrapper(Gogo*, Named_object*, tree*, tree*);
982
983   typedef std::vector<Named_object*> Named_results;
984
985   typedef std::vector<std::pair<Named_object*,
986                                 source_location> > Closure_fields;
987
988   // The function's type.
989   Function_type* type_;
990   // The enclosing function.  This is NULL when there isn't one, which
991   // is the normal case.
992   Function* enclosing_;
993   // The named result variables, if any.
994   Named_results* named_results_;
995   // If there is a closure, this is the list of variables which appear
996   // in the closure.  This is created by the parser, and then resolved
997   // to a real type when we lower parse trees.
998   Closure_fields closure_fields_;
999   // The closure variable, passed as a parameter using the static
1000   // chain parameter.  Normally NULL.
1001   Named_object* closure_var_;
1002   // The outer block of statements in the function.
1003   Block* block_;
1004   // The source location of the start of the function.
1005   source_location location_;
1006   // Labels defined or referenced in the function.
1007   Labels labels_;
1008   // The function decl.
1009   tree fndecl_;
1010   // A variable holding the defer stack variable.  This is NULL unless
1011   // we actually need a defer stack.
1012   tree defer_stack_;
1013   // True if this function calls the predeclared recover function.
1014   bool calls_recover_;
1015   // True if this a thunk built for a function which calls recover.
1016   bool is_recover_thunk_;
1017   // True if this function already has a recover thunk.
1018   bool has_recover_thunk_;
1019 };
1020
1021 // A function declaration.
1022
1023 class Function_declaration
1024 {
1025  public:
1026   Function_declaration(Function_type* fntype, source_location location)
1027     : fntype_(fntype), location_(location), asm_name_(), fndecl_(NULL)
1028   { }
1029
1030   Function_type*
1031   type() const
1032   { return this->fntype_; }
1033
1034   source_location
1035   location() const
1036   { return this->location_; }
1037
1038   const std::string&
1039   asm_name() const
1040   { return this->asm_name_; }
1041
1042   // Set the assembler name.
1043   void
1044   set_asm_name(const std::string& asm_name)
1045   { this->asm_name_ = asm_name; }
1046
1047   // Return a decl for the function given an identifier.
1048   tree
1049   get_or_make_decl(Gogo*, Named_object*, tree id);
1050
1051   // Export a function declaration.
1052   void
1053   export_func(Export* exp, const std::string& name) const
1054   { Function::export_func_with_type(exp, name, this->fntype_); }
1055
1056  private:
1057   // The type of the function.
1058   Function_type* fntype_;
1059   // The location of the declaration.
1060   source_location location_;
1061   // The assembler name: this is the name to use in references to the
1062   // function.  This is normally empty.
1063   std::string asm_name_;
1064   // The function decl if needed.
1065   tree fndecl_;
1066 };
1067
1068 // A variable.
1069
1070 class Variable
1071 {
1072  public:
1073   Variable(Type*, Expression*, bool is_global, bool is_parameter,
1074            bool is_receiver, source_location);
1075
1076   // Get the type of the variable.
1077   Type*
1078   type();
1079
1080   Type*
1081   type() const;
1082
1083   // Return whether the type is defined yet.
1084   bool
1085   has_type() const
1086   { return this->type_ != NULL; }
1087
1088   // Get the initial value.
1089   Expression*
1090   init() const
1091   { return this->init_; }
1092
1093   // Return whether there are any preinit statements.
1094   bool
1095   has_pre_init() const
1096   { return this->preinit_ != NULL; }
1097
1098   // Return the preinit statements if any.
1099   Block*
1100   preinit() const
1101   { return this->preinit_; }
1102
1103   // Return whether this is a global variable.
1104   bool
1105   is_global() const
1106   { return this->is_global_; }
1107
1108   // Return whether this is a function parameter.
1109   bool
1110   is_parameter() const
1111   { return this->is_parameter_; }
1112
1113   // Return whether this is the receiver parameter of a method.
1114   bool
1115   is_receiver() const
1116   { return this->is_receiver_; }
1117
1118   // Change this parameter to be a receiver.  This is used when
1119   // creating the thunks created for functions which call recover.
1120   void
1121   set_is_receiver()
1122   {
1123     gcc_assert(this->is_parameter_);
1124     this->is_receiver_ = true;
1125   }
1126
1127   // Change this parameter to not be a receiver.  This is used when
1128   // creating the thunks created for functions which call recover.
1129   void
1130   set_is_not_receiver()
1131   {
1132     gcc_assert(this->is_parameter_);
1133     this->is_receiver_ = false;
1134   }
1135
1136   // Return whether this is the varargs parameter of a function.
1137   bool
1138   is_varargs_parameter() const
1139   { return this->is_varargs_parameter_; }
1140
1141   // Whether this variable's address is taken.
1142   bool
1143   is_address_taken() const
1144   { return this->is_address_taken_; }
1145
1146   // Whether this variable should live in the heap.
1147   bool
1148   is_in_heap() const
1149   { return this->is_address_taken_ && !this->is_global_; }
1150
1151   // Get the source location of the variable's declaration.
1152   source_location
1153   location() const
1154   { return this->location_; }
1155
1156   // Record that this is the varargs parameter of a function.
1157   void
1158   set_is_varargs_parameter()
1159   {
1160     gcc_assert(this->is_parameter_);
1161     this->is_varargs_parameter_ = true;
1162   }
1163
1164   // Clear the initial value; used for error handling.
1165   void
1166   clear_init()
1167   { this->init_ = NULL; }
1168
1169   // Set the initial value; used for converting shortcuts.
1170   void
1171   set_init(Expression* init)
1172   { this->init_ = init; }
1173
1174   // Get the preinit block, a block of statements to be run before the
1175   // initialization expression.
1176   Block*
1177   preinit_block(Gogo*);
1178
1179   // Add a statement to be run before the initialization expression.
1180   // This is only used for global variables.
1181   void
1182   add_preinit_statement(Gogo*, Statement*);
1183
1184   // Lower the initialization expression after parsing is complete.
1185   void
1186   lower_init_expression(Gogo*, Named_object*);
1187
1188   // A special case: the init value is used only to determine the
1189   // type.  This is used if the variable is defined using := with the
1190   // comma-ok form of a map index or a receive expression.  The init
1191   // value is actually the map index expression or receive expression.
1192   // We use this because we may not know the right type at parse time.
1193   void
1194   set_type_from_init_tuple()
1195   { this->type_from_init_tuple_ = true; }
1196
1197   // Another special case: the init value is used only to determine
1198   // the type.  This is used if the variable is defined using := with
1199   // a range clause.  The init value is the range expression.  The
1200   // type of the variable is the index type of the range expression
1201   // (i.e., the first value returned by a range).
1202   void
1203   set_type_from_range_index()
1204   { this->type_from_range_index_ = true; }
1205
1206   // Another special case: like set_type_from_range_index, but the
1207   // type is the value type of the range expression (i.e., the second
1208   // value returned by a range).
1209   void
1210   set_type_from_range_value()
1211   { this->type_from_range_value_ = true; }
1212
1213   // Another special case: the init value is used only to determine
1214   // the type.  This is used if the variable is defined using := with
1215   // a case in a select statement.  The init value is the channel.
1216   // The type of the variable is the channel's element type.
1217   void
1218   set_type_from_chan_element()
1219   { this->type_from_chan_element_ = true; }
1220
1221   // After we lower the select statement, we once again set the type
1222   // from the initialization expression.
1223   void
1224   clear_type_from_chan_element()
1225   {
1226     gcc_assert(this->type_from_chan_element_);
1227     this->type_from_chan_element_ = false;
1228   }
1229
1230   // Note that this variable was created for a type switch clause.
1231   void
1232   set_is_type_switch_var()
1233   { this->is_type_switch_var_ = true; }
1234
1235   // Traverse the initializer expression.
1236   int
1237   traverse_expression(Traverse*);
1238
1239   // Determine the type of the variable if necessary.
1240   void
1241   determine_type();
1242
1243   // Note that something takes the address of this variable.
1244   void
1245   set_address_taken()
1246   { this->is_address_taken_ = true; }
1247
1248   // Get the initial value of the variable as a tree.  This may only
1249   // be called if has_pre_init() returns false.
1250   tree
1251   get_init_tree(Gogo*, Named_object* function);
1252
1253   // Return a series of statements which sets the value of the
1254   // variable in DECL.  This should only be called is has_pre_init()
1255   // returns true.  DECL may be NULL for a sink variable.
1256   tree
1257   get_init_block(Gogo*, Named_object* function, tree decl);
1258
1259   // Export the variable.
1260   void
1261   export_var(Export*, const std::string& name) const;
1262
1263   // Import a variable.
1264   static void
1265   import_var(Import*, std::string* pname, Type** ptype);
1266
1267  private:
1268   // The type of a tuple.
1269   Type*
1270   type_from_tuple(Expression*, bool) const;
1271
1272   // The type of a range.
1273   Type*
1274   type_from_range(Expression*, bool, bool) const;
1275
1276   // The element type of a channel.
1277   Type*
1278   type_from_chan_element(Expression*, bool) const;
1279
1280   // The variable's type.  This may be NULL if the type is set from
1281   // the expression.
1282   Type* type_;
1283   // The initial value.  This may be NULL if the variable should be
1284   // initialized to the default value for the type.
1285   Expression* init_;
1286   // Statements to run before the init statement.
1287   Block* preinit_;
1288   // Location of variable definition.
1289   source_location location_;
1290   // Whether this is a global variable.
1291   bool is_global_ : 1;
1292   // Whether this is a function parameter.
1293   bool is_parameter_ : 1;
1294   // Whether this is the receiver parameter of a method.
1295   bool is_receiver_ : 1;
1296   // Whether this is the varargs parameter of a function.
1297   bool is_varargs_parameter_ : 1;
1298   // Whether something takes the address of this variable.
1299   bool is_address_taken_ : 1;
1300   // True if we have seen this variable in a traversal.
1301   bool seen_ : 1;
1302   // True if we have lowered the initialization expression.
1303   bool init_is_lowered_ : 1;
1304   // True if init is a tuple used to set the type.
1305   bool type_from_init_tuple_ : 1;
1306   // True if init is a range clause and the type is the index type.
1307   bool type_from_range_index_ : 1;
1308   // True if init is a range clause and the type is the value type.
1309   bool type_from_range_value_ : 1;
1310   // True if init is a channel and the type is the channel's element type.
1311   bool type_from_chan_element_ : 1;
1312   // True if this is a variable created for a type switch case.
1313   bool is_type_switch_var_ : 1;
1314   // True if we have determined types.
1315   bool determined_type_ : 1;
1316 };
1317
1318 // A variable which is really the name for a function return value, or
1319 // part of one.
1320
1321 class Result_variable
1322 {
1323  public:
1324   Result_variable(Type* type, Function* function, int index)
1325     : type_(type), function_(function), index_(index),
1326       is_address_taken_(false)
1327   { }
1328
1329   // Get the type of the result variable.
1330   Type*
1331   type() const
1332   { return this->type_; }
1333
1334   // Get the function that this is associated with.
1335   Function*
1336   function() const
1337   { return this->function_; }
1338
1339   // Index in the list of function results.
1340   int
1341   index() const
1342   { return this->index_; }
1343
1344   // Whether this variable's address is taken.
1345   bool
1346   is_address_taken() const
1347   { return this->is_address_taken_; }
1348
1349   // Note that something takes the address of this variable.
1350   void
1351   set_address_taken()
1352   { this->is_address_taken_ = true; }
1353
1354   // Whether this variable should live in the heap.
1355   bool
1356   is_in_heap() const
1357   { return this->is_address_taken_; }
1358
1359   // Set the function.  This is used when cloning functions which call
1360   // recover.
1361   void
1362   set_function(Function* function)
1363   { this->function_ = function; }
1364
1365  private:
1366   // Type of result variable.
1367   Type* type_;
1368   // Function with which this is associated.
1369   Function* function_;
1370   // Index in list of results.
1371   int index_;
1372   // Whether something takes the address of this variable.
1373   bool is_address_taken_;
1374 };
1375
1376 // The value we keep for a named constant.  This lets us hold a type
1377 // and an expression.
1378
1379 class Named_constant
1380 {
1381  public:
1382   Named_constant(Type* type, Expression* expr, int iota_value,
1383                  source_location location)
1384     : type_(type), expr_(expr), iota_value_(iota_value), location_(location),
1385       lowering_(false)
1386   { }
1387
1388   Type*
1389   type() const
1390   { return this->type_; }
1391
1392   Expression*
1393   expr() const
1394   { return this->expr_; }
1395
1396   int
1397   iota_value() const
1398   { return this->iota_value_; }
1399
1400   source_location
1401   location() const
1402   { return this->location_; }
1403
1404   // Whether we are lowering.
1405   bool
1406   lowering() const
1407   { return this->lowering_; }
1408
1409   // Set that we are lowering.
1410   void
1411   set_lowering()
1412   { this->lowering_ = true; }
1413
1414   // We are no longer lowering.
1415   void
1416   clear_lowering()
1417   { this->lowering_ = false; }
1418
1419   // Traverse the expression.
1420   int
1421   traverse_expression(Traverse*);
1422
1423   // Determine the type of the constant if necessary.
1424   void
1425   determine_type();
1426
1427   // Indicate that we found and reported an error for this constant.
1428   void
1429   set_error();
1430
1431   // Export the constant.
1432   void
1433   export_const(Export*, const std::string& name) const;
1434
1435   // Import a constant.
1436   static void
1437   import_const(Import*, std::string*, Type**, Expression**);
1438
1439  private:
1440   // The type of the constant.
1441   Type* type_;
1442   // The expression for the constant.
1443   Expression* expr_;
1444   // If the predeclared constant iota is used in EXPR_, this is the
1445   // value it will have.  We do this because at parse time we don't
1446   // know whether the name "iota" will refer to the predeclared
1447   // constant or to something else.  We put in the right value in when
1448   // we lower.
1449   int iota_value_;
1450   // The location of the definition.
1451   source_location location_;
1452   // Whether we are currently lowering this constant.
1453   bool lowering_;
1454 };
1455
1456 // A type declaration.
1457
1458 class Type_declaration
1459 {
1460  public:
1461   Type_declaration(source_location location)
1462     : location_(location), in_function_(NULL), methods_(),
1463       issued_warning_(false)
1464   { }
1465
1466   // Return the location.
1467   source_location
1468   location() const
1469   { return this->location_; }
1470
1471   // Return the function in which this type is declared.  This will
1472   // return NULL for a type declared in global scope.
1473   Named_object*
1474   in_function()
1475   { return this->in_function_; }
1476
1477   // Set the function in which this type is declared.
1478   void
1479   set_in_function(Named_object* f)
1480   { this->in_function_ = f; }
1481
1482   // Add a method to this type.  This is used when methods are defined
1483   // before the type.
1484   Named_object*
1485   add_method(const std::string& name, Function* function);
1486
1487   // Add a method declaration to this type.
1488   Named_object*
1489   add_method_declaration(const std::string& name, Function_type* type,
1490                          source_location location);
1491
1492   // Return whether any methods were defined.
1493   bool
1494   has_methods() const;
1495
1496   // Define methods when the real type is known.
1497   void
1498   define_methods(Named_type*);
1499
1500   // This is called if we are trying to use this type.  It returns
1501   // true if we should issue a warning.
1502   bool
1503   using_type();
1504
1505  private:
1506   typedef std::vector<Named_object*> Methods;
1507
1508   // The location of the type declaration.
1509   source_location location_;
1510   // If this type is declared in a function, a pointer back to the
1511   // function in which it is defined.
1512   Named_object* in_function_;
1513   // Methods defined before the type is defined.
1514   Methods methods_;
1515   // True if we have issued a warning about a use of this type
1516   // declaration when it is undefined.
1517   bool issued_warning_;
1518 };
1519
1520 // An unknown object.  These are created by the parser for forward
1521 // references to names which have not been seen before.  In a correct
1522 // program, these will always point to a real definition by the end of
1523 // the parse.  Because they point to another Named_object, these may
1524 // only be referenced by Unknown_expression objects.
1525
1526 class Unknown_name
1527 {
1528  public:
1529   Unknown_name(source_location location)
1530     : location_(location), real_named_object_(NULL)
1531   { }
1532
1533   // Return the location where this name was first seen.
1534   source_location
1535   location() const
1536   { return this->location_; }
1537
1538   // Return the real named object that this points to, or NULL if it
1539   // was never resolved.
1540   Named_object*
1541   real_named_object() const
1542   { return this->real_named_object_; }
1543
1544   // Set the real named object that this points to.
1545   void
1546   set_real_named_object(Named_object* no);
1547
1548  private:
1549   // The location where this name was first seen.
1550   source_location location_;
1551   // The real named object when it is known.
1552   Named_object*
1553   real_named_object_;
1554 };
1555
1556 // A named object named.  This is the result of a declaration.  We
1557 // don't use a superclass because they all have to be handled
1558 // differently.
1559
1560 class Named_object
1561 {
1562  public:
1563   enum Classification
1564   {
1565     // An uninitialized Named_object.  We should never see this.
1566     NAMED_OBJECT_UNINITIALIZED,
1567     // An unknown name.  This is used for forward references.  In a
1568     // correct program, these will all be resolved by the end of the
1569     // parse.
1570     NAMED_OBJECT_UNKNOWN,
1571     // A const.
1572     NAMED_OBJECT_CONST,
1573     // A type.
1574     NAMED_OBJECT_TYPE,
1575     // A forward type declaration.
1576     NAMED_OBJECT_TYPE_DECLARATION,
1577     // A var.
1578     NAMED_OBJECT_VAR,
1579     // A result variable in a function.
1580     NAMED_OBJECT_RESULT_VAR,
1581     // The blank identifier--the special variable named _.
1582     NAMED_OBJECT_SINK,
1583     // A func.
1584     NAMED_OBJECT_FUNC,
1585     // A forward func declaration.
1586     NAMED_OBJECT_FUNC_DECLARATION,
1587     // A package.
1588     NAMED_OBJECT_PACKAGE
1589   };
1590
1591   // Return the classification.
1592   Classification
1593   classification() const
1594   { return this->classification_; }
1595
1596   // Classifiers.
1597
1598   bool
1599   is_unknown() const
1600   { return this->classification_ == NAMED_OBJECT_UNKNOWN; }
1601
1602   bool
1603   is_const() const
1604   { return this->classification_ == NAMED_OBJECT_CONST; }
1605
1606   bool
1607   is_type() const
1608   { return this->classification_ == NAMED_OBJECT_TYPE; }
1609
1610   bool
1611   is_type_declaration() const
1612   { return this->classification_ == NAMED_OBJECT_TYPE_DECLARATION; }
1613
1614   bool
1615   is_variable() const
1616   { return this->classification_ == NAMED_OBJECT_VAR; }
1617
1618   bool
1619   is_result_variable() const
1620   { return this->classification_ == NAMED_OBJECT_RESULT_VAR; }
1621
1622   bool
1623   is_sink() const
1624   { return this->classification_ == NAMED_OBJECT_SINK; }
1625
1626   bool
1627   is_function() const
1628   { return this->classification_ == NAMED_OBJECT_FUNC; }
1629
1630   bool
1631   is_function_declaration() const
1632   { return this->classification_ == NAMED_OBJECT_FUNC_DECLARATION; }
1633
1634   bool
1635   is_package() const
1636   { return this->classification_ == NAMED_OBJECT_PACKAGE; }
1637
1638   // Creators.
1639
1640   static Named_object*
1641   make_unknown_name(const std::string& name, source_location);
1642
1643   static Named_object*
1644   make_constant(const Typed_identifier&, const Package*, Expression*,
1645                 int iota_value);
1646
1647   static Named_object*
1648   make_type(const std::string&, const Package*, Type*, source_location);
1649
1650   static Named_object*
1651   make_type_declaration(const std::string&, const Package*, source_location);
1652
1653   static Named_object*
1654   make_variable(const std::string&, const Package*, Variable*);
1655
1656   static Named_object*
1657   make_result_variable(const std::string&, Result_variable*);
1658
1659   static Named_object*
1660   make_sink();
1661
1662   static Named_object*
1663   make_function(const std::string&, const Package*, Function*);
1664
1665   static Named_object*
1666   make_function_declaration(const std::string&, const Package*, Function_type*,
1667                             source_location);
1668
1669   static Named_object*
1670   make_package(const std::string& alias, Package* package);
1671
1672   // Getters.
1673
1674   Unknown_name*
1675   unknown_value()
1676   {
1677     gcc_assert(this->classification_ == NAMED_OBJECT_UNKNOWN);
1678     return this->u_.unknown_value;
1679   }
1680
1681   const Unknown_name*
1682   unknown_value() const
1683   {
1684     gcc_assert(this->classification_ == NAMED_OBJECT_UNKNOWN);
1685     return this->u_.unknown_value;
1686   }
1687
1688   Named_constant*
1689   const_value()
1690   {
1691     gcc_assert(this->classification_ == NAMED_OBJECT_CONST);
1692     return this->u_.const_value;
1693   }
1694
1695   const Named_constant*
1696   const_value() const
1697   {
1698     gcc_assert(this->classification_ == NAMED_OBJECT_CONST);
1699     return this->u_.const_value;
1700   }
1701
1702   Named_type*
1703   type_value()
1704   {
1705     gcc_assert(this->classification_ == NAMED_OBJECT_TYPE);
1706     return this->u_.type_value;
1707   }
1708
1709   const Named_type*
1710   type_value() const
1711   {
1712     gcc_assert(this->classification_ == NAMED_OBJECT_TYPE);
1713     return this->u_.type_value;
1714   }
1715
1716   Type_declaration*
1717   type_declaration_value()
1718   {
1719     gcc_assert(this->classification_ == NAMED_OBJECT_TYPE_DECLARATION);
1720     return this->u_.type_declaration;
1721   }
1722
1723   const Type_declaration*
1724   type_declaration_value() const
1725   {
1726     gcc_assert(this->classification_ == NAMED_OBJECT_TYPE_DECLARATION);
1727     return this->u_.type_declaration;
1728   }
1729
1730   Variable*
1731   var_value()
1732   {
1733     gcc_assert(this->classification_ == NAMED_OBJECT_VAR);
1734     return this->u_.var_value;
1735   }
1736
1737   const Variable*
1738   var_value() const
1739   {
1740     gcc_assert(this->classification_ == NAMED_OBJECT_VAR);
1741     return this->u_.var_value;
1742   }
1743
1744   Result_variable*
1745   result_var_value()
1746   {
1747     gcc_assert(this->classification_ == NAMED_OBJECT_RESULT_VAR);
1748     return this->u_.result_var_value;
1749   }
1750
1751   const Result_variable*
1752   result_var_value() const
1753   {
1754     gcc_assert(this->classification_ == NAMED_OBJECT_RESULT_VAR);
1755     return this->u_.result_var_value;
1756   }
1757
1758   Function*
1759   func_value()
1760   {
1761     gcc_assert(this->classification_ == NAMED_OBJECT_FUNC);
1762     return this->u_.func_value;
1763   }
1764
1765   const Function*
1766   func_value() const
1767   {
1768     gcc_assert(this->classification_ == NAMED_OBJECT_FUNC);
1769     return this->u_.func_value;
1770   }
1771
1772   Function_declaration*
1773   func_declaration_value()
1774   {
1775     gcc_assert(this->classification_ == NAMED_OBJECT_FUNC_DECLARATION);
1776     return this->u_.func_declaration_value;
1777   }
1778
1779   const Function_declaration*
1780   func_declaration_value() const
1781   {
1782     gcc_assert(this->classification_ == NAMED_OBJECT_FUNC_DECLARATION);
1783     return this->u_.func_declaration_value;
1784   }
1785
1786   Package*
1787   package_value()
1788   {
1789     gcc_assert(this->classification_ == NAMED_OBJECT_PACKAGE);
1790     return this->u_.package_value;
1791   }
1792
1793   const Package*
1794   package_value() const
1795   {
1796     gcc_assert(this->classification_ == NAMED_OBJECT_PACKAGE);
1797     return this->u_.package_value;
1798   }
1799
1800   const std::string&
1801   name() const
1802   { return this->name_; }
1803
1804   // Return the name to use in an error message.  The difference is
1805   // that if this Named_object is defined in a different package, this
1806   // will return PACKAGE.NAME.
1807   std::string
1808   message_name() const;
1809
1810   const Package*
1811   package() const
1812   { return this->package_; }
1813
1814   // Resolve an unknown value if possible.  This returns the same
1815   // Named_object or a new one.
1816   Named_object*
1817   resolve()
1818   {
1819     Named_object* ret = this;
1820     if (this->is_unknown())
1821       {
1822         Named_object* r = this->unknown_value()->real_named_object();
1823         if (r != NULL)
1824           ret = r;
1825       }
1826     return ret;
1827   }
1828
1829   const Named_object*
1830   resolve() const
1831   {
1832     const Named_object* ret = this;
1833     if (this->is_unknown())
1834       {
1835         const Named_object* r = this->unknown_value()->real_named_object();
1836         if (r != NULL)
1837           ret = r;
1838       }
1839     return ret;
1840   }
1841
1842   // The location where this object was defined or referenced.
1843   source_location
1844   location() const;
1845
1846   // Return a tree for the external identifier for this object.
1847   tree
1848   get_id(Gogo*);
1849
1850   // Return a tree representing this object.
1851   tree
1852   get_tree(Gogo*, Named_object* function);
1853
1854   // Define a type declaration.
1855   void
1856   set_type_value(Named_type*);
1857
1858   // Define a function declaration.
1859   void
1860   set_function_value(Function*);
1861
1862   // Declare an unknown name as a type declaration.
1863   void
1864   declare_as_type();
1865
1866   // Export this object.
1867   void
1868   export_named_object(Export*) const;
1869
1870  private:
1871   Named_object(const std::string&, const Package*, Classification);
1872
1873   // The name of the object.
1874   std::string name_;
1875   // The package that this object is in.  This is NULL if it is in the
1876   // file we are compiling.
1877   const Package* package_;
1878   // The type of object this is.
1879   Classification classification_;
1880   // The real data.
1881   union
1882   {
1883     Unknown_name* unknown_value;
1884     Named_constant* const_value;
1885     Named_type* type_value;
1886     Type_declaration* type_declaration;
1887     Variable* var_value;
1888     Result_variable* result_var_value;
1889     Function* func_value;
1890     Function_declaration* func_declaration_value;
1891     Package* package_value;
1892   } u_;
1893   // The DECL tree for this object if we have already converted it.
1894   tree tree_;
1895 };
1896
1897 // A binding contour.  This binds names to objects.
1898
1899 class Bindings
1900 {
1901  public:
1902   // Type for mapping from names to objects.
1903   typedef Unordered_map(std::string, Named_object*) Contour;
1904
1905   Bindings(Bindings* enclosing);
1906
1907   // Add an unknown name.
1908   Named_object*
1909   add_unknown_name(const std::string& name, source_location location)
1910   {
1911     return this->add_named_object(Named_object::make_unknown_name(name,
1912                                                                   location));
1913   }
1914
1915   // Add a constant.
1916   Named_object*
1917   add_constant(const Typed_identifier& tid, const Package* package,
1918                Expression* expr, int iota_value)
1919   {
1920     return this->add_named_object(Named_object::make_constant(tid, package,
1921                                                               expr,
1922                                                               iota_value));
1923   }
1924
1925   // Add a type.
1926   Named_object*
1927   add_type(const std::string& name, const Package* package, Type* type,
1928            source_location location)
1929   {
1930     return this->add_named_object(Named_object::make_type(name, package, type,
1931                                                           location));
1932   }
1933
1934   // Add a named type.  This is used for builtin types, and to add an
1935   // imported type to the global scope.
1936   Named_object*
1937   add_named_type(Named_type* named_type);
1938
1939   // Add a type declaration.
1940   Named_object*
1941   add_type_declaration(const std::string& name, const Package* package,
1942                        source_location location)
1943   {
1944     Named_object* no = Named_object::make_type_declaration(name, package,
1945                                                            location);
1946     return this->add_named_object(no);
1947   }
1948
1949   // Add a variable.
1950   Named_object*
1951   add_variable(const std::string& name, const Package* package,
1952                Variable* variable)
1953   {
1954     return this->add_named_object(Named_object::make_variable(name, package,
1955                                                               variable));
1956   }
1957
1958   // Add a result variable.
1959   Named_object*
1960   add_result_variable(const std::string& name, Result_variable* result)
1961   {
1962     return this->add_named_object(Named_object::make_result_variable(name,
1963                                                                      result));
1964   }
1965
1966   // Add a function.
1967   Named_object*
1968   add_function(const std::string& name, const Package*, Function* function);
1969
1970   // Add a function declaration.
1971   Named_object*
1972   add_function_declaration(const std::string& name, const Package* package,
1973                            Function_type* type, source_location location);
1974
1975   // Add a package.  The location is the location of the import
1976   // statement.
1977   Named_object*
1978   add_package(const std::string& alias, Package* package)
1979   {
1980     Named_object* no = Named_object::make_package(alias, package);
1981     return this->add_named_object(no);
1982   }
1983
1984   // Define a type which was already declared.
1985   void
1986   define_type(Named_object*, Named_type*);
1987
1988   // Add a method to the list of objects.  This is not added to the
1989   // lookup table.
1990   void
1991   add_method(Named_object*);
1992
1993   // Add a named object to this binding.
1994   Named_object*
1995   add_named_object(Named_object* no)
1996   { return this->add_named_object_to_contour(&this->bindings_, no); }
1997
1998   // Clear all names in file scope from the bindings.
1999   void
2000   clear_file_scope();
2001
2002   // Look up a name in this binding contour and in any enclosing
2003   // binding contours.  This returns NULL if the name is not found.
2004   Named_object*
2005   lookup(const std::string&) const;
2006
2007   // Look up a name in this binding contour without looking in any
2008   // enclosing binding contours.  Returns NULL if the name is not found.
2009   Named_object*
2010   lookup_local(const std::string&) const;
2011
2012   // Remove a name.
2013   void
2014   remove_binding(Named_object*);
2015
2016   // Traverse the tree.  See the Traverse class.
2017   int
2018   traverse(Traverse*, bool is_global);
2019
2020   // Iterate over definitions.  This does not include things which
2021   // were only declared.
2022
2023   typedef std::vector<Named_object*>::const_iterator
2024     const_definitions_iterator;
2025
2026   const_definitions_iterator
2027   begin_definitions() const
2028   { return this->named_objects_.begin(); }
2029
2030   const_definitions_iterator
2031   end_definitions() const
2032   { return this->named_objects_.end(); }
2033
2034   // Return the number of definitions.
2035   size_t
2036   size_definitions() const
2037   { return this->named_objects_.size(); }
2038
2039   // Return whether there are no definitions.
2040   bool
2041   empty_definitions() const
2042   { return this->named_objects_.empty(); }
2043
2044   // Iterate over declarations.  This is everything that has been
2045   // declared, which includes everything which has been defined.
2046
2047   typedef Contour::const_iterator const_declarations_iterator;
2048
2049   const_declarations_iterator
2050   begin_declarations() const
2051   { return this->bindings_.begin(); }
2052
2053   const_declarations_iterator
2054   end_declarations() const
2055   { return this->bindings_.end(); }
2056
2057   // Return the number of declarations.
2058   size_t
2059   size_declarations() const
2060   { return this->bindings_.size(); }
2061
2062   // Return whether there are no declarations.
2063   bool
2064   empty_declarations() const
2065   { return this->bindings_.empty(); }
2066
2067   // Return the first declaration.
2068   Named_object*
2069   first_declaration()
2070   { return this->bindings_.empty() ? NULL : this->bindings_.begin()->second; }
2071
2072  private:
2073   Named_object*
2074   add_named_object_to_contour(Contour*, Named_object*);
2075
2076   Named_object*
2077   new_definition(Named_object*, Named_object*);
2078
2079   // Enclosing bindings.
2080   Bindings* enclosing_;
2081   // The list of objects.
2082   std::vector<Named_object*> named_objects_;
2083   // The mapping from names to objects.
2084   Contour bindings_;
2085 };
2086
2087 // A label.
2088
2089 class Label
2090 {
2091  public:
2092   Label(const std::string& name)
2093     : name_(name), location_(0), decl_(NULL)
2094   { }
2095
2096   // Return the label's name.
2097   const std::string&
2098   name() const
2099   { return this->name_; }
2100
2101   // Return whether the label has been defined.
2102   bool
2103   is_defined() const
2104   { return this->location_ != 0; }
2105
2106   // Return the location of the definition.
2107   source_location
2108   location() const
2109   { return this->location_; }
2110
2111   // Define the label at LOCATION.
2112   void
2113   define(source_location location)
2114   {
2115     gcc_assert(this->location_ == 0);
2116     this->location_ = location;
2117   }
2118
2119   // Return the LABEL_DECL for this decl.
2120   tree
2121   get_decl();
2122
2123   // Return an expression for the address of this label.
2124   tree
2125   get_addr(source_location location);
2126
2127  private:
2128   // The name of the label.
2129   std::string name_;
2130   // The location of the definition.  This is 0 if the label has not
2131   // yet been defined.
2132   source_location location_;
2133   // The LABEL_DECL.
2134   tree decl_;
2135 };
2136
2137 // An unnamed label.  These are used when lowering loops.
2138
2139 class Unnamed_label
2140 {
2141  public:
2142   Unnamed_label(source_location location)
2143     : location_(location), decl_(NULL)
2144   { }
2145
2146   // Get the location where the label is defined.
2147   source_location
2148   location() const
2149   { return this->location_; }
2150
2151   // Set the location where the label is defined.
2152   void
2153   set_location(source_location location)
2154   { this->location_ = location; }
2155
2156   // Return a statement which defines this label.
2157   tree
2158   get_definition();
2159
2160   // Return a goto to this label from LOCATION.
2161   tree
2162   get_goto(source_location location);
2163
2164  private:
2165   // Return the LABEL_DECL to use with GOTO_EXPR.
2166   tree
2167   get_decl();
2168
2169   // The location where the label is defined.
2170   source_location location_;
2171   // The LABEL_DECL.
2172   tree decl_;
2173 };
2174
2175 // An imported package.
2176
2177 class Package
2178 {
2179  public:
2180   Package(const std::string& name, const std::string& unique_prefix,
2181           source_location location);
2182
2183   // The real name of this package.  This may be different from the
2184   // name in the associated Named_object if the import statement used
2185   // an alias.
2186   const std::string&
2187   name() const
2188   { return this->name_; }
2189
2190   // Return the location of the import statement.
2191   source_location
2192   location() const
2193   { return this->location_; }
2194
2195   // Get the unique prefix used for all symbols exported from this
2196   // package.
2197   const std::string&
2198   unique_prefix() const
2199   {
2200     gcc_assert(!this->unique_prefix_.empty());
2201     return this->unique_prefix_;
2202   }
2203
2204   // The priority of this package.  The init function of packages with
2205   // lower priority must be run before the init function of packages
2206   // with higher priority.
2207   int
2208   priority() const
2209   { return this->priority_; }
2210
2211   // Set the priority.
2212   void
2213   set_priority(int priority);
2214
2215   // Return the bindings.
2216   Bindings*
2217   bindings()
2218   { return this->bindings_; }
2219
2220   // Whether some symbol from the package was used.
2221   bool
2222   used() const
2223   { return this->used_; }
2224
2225   // Note that some symbol from this package was used.
2226   void
2227   set_used() const
2228   { this->used_ = true; }
2229
2230   // Clear the used field for the next file.
2231   void
2232   clear_used()
2233   { this->used_ = false; }
2234
2235   // Whether this package was imported in the current file.
2236   bool
2237   is_imported() const
2238   { return this->is_imported_; }
2239
2240   // Note that this package was imported in the current file.
2241   void
2242   set_is_imported()
2243   { this->is_imported_ = true; }
2244
2245   // Clear the imported field for the next file.
2246   void
2247   clear_is_imported()
2248   { this->is_imported_ = false; }
2249
2250   // Whether this package was imported with a name of "_".
2251   bool
2252   uses_sink_alias() const
2253   { return this->uses_sink_alias_; }
2254
2255   // Note that this package was imported with a name of "_".
2256   void
2257   set_uses_sink_alias()
2258   { this->uses_sink_alias_ = true; }
2259
2260   // Clear the sink alias field for the next file.
2261   void
2262   clear_uses_sink_alias()
2263   { this->uses_sink_alias_ = false; }
2264
2265   // Look up a name in the package.  Returns NULL if the name is not
2266   // found.
2267   Named_object*
2268   lookup(const std::string& name) const
2269   { return this->bindings_->lookup(name); }
2270
2271   // Set the location of the package.  This is used if it is seen in a
2272   // different import before it is really imported.
2273   void
2274   set_location(source_location location)
2275   { this->location_ = location; }
2276
2277   // Add a constant to the package.
2278   Named_object*
2279   add_constant(const Typed_identifier& tid, Expression* expr)
2280   { return this->bindings_->add_constant(tid, this, expr, 0); }
2281
2282   // Add a type to the package.
2283   Named_object*
2284   add_type(const std::string& name, Type* type, source_location location)
2285   { return this->bindings_->add_type(name, this, type, location); }
2286
2287   // Add a type declaration to the package.
2288   Named_object*
2289   add_type_declaration(const std::string& name, source_location location)
2290   { return this->bindings_->add_type_declaration(name, this, location); }
2291
2292   // Add a variable to the package.
2293   Named_object*
2294   add_variable(const std::string& name, Variable* variable)
2295   { return this->bindings_->add_variable(name, this, variable); }
2296
2297   // Add a function declaration to the package.
2298   Named_object*
2299   add_function_declaration(const std::string& name, Function_type* type,
2300                            source_location loc)
2301   { return this->bindings_->add_function_declaration(name, this, type, loc); }
2302
2303   // Determine types of constants.
2304   void
2305   determine_types();
2306
2307  private:
2308   // The real name of this package.
2309   std::string name_;
2310   // The unique prefix for all exported global symbols.
2311   std::string unique_prefix_;
2312   // The names in this package.
2313   Bindings* bindings_;
2314   // The priority of this package.  A package has a priority higher
2315   // than the priority of all of the packages that it imports.  This
2316   // is used to run init functions in the right order.
2317   int priority_;
2318   // The location of the import statement.
2319   source_location location_;
2320   // True if some name from this package was used.  This is mutable
2321   // because we can use a package even if we have a const pointer to
2322   // it.
2323   mutable bool used_;
2324   // True if this package was imported in the current file.
2325   bool is_imported_;
2326   // True if this package was imported with a name of "_".
2327   bool uses_sink_alias_;
2328 };
2329
2330 // Return codes for the traversal functions.  This is not an enum
2331 // because we want to be able to declare traversal functions in other
2332 // header files without including this one.
2333
2334 // Continue traversal as usual.
2335 const int TRAVERSE_CONTINUE = -1;
2336
2337 // Exit traversal.
2338 const int TRAVERSE_EXIT = 0;
2339
2340 // Continue traversal, but skip components of the current object.
2341 // E.g., if this is returned by Traverse::statement, we do not
2342 // traverse the expressions in the statement even if
2343 // traverse_expressions is set in the traverse_mask.
2344 const int TRAVERSE_SKIP_COMPONENTS = 1;
2345
2346 // This class is used when traversing the parse tree.  The caller uses
2347 // a subclass which overrides functions as desired.
2348
2349 class Traverse
2350 {
2351  public:
2352   // These bitmasks say what to traverse.
2353   static const unsigned int traverse_variables =    0x1;
2354   static const unsigned int traverse_constants =    0x2;
2355   static const unsigned int traverse_functions =    0x4;
2356   static const unsigned int traverse_blocks =       0x8;
2357   static const unsigned int traverse_statements =  0x10;
2358   static const unsigned int traverse_expressions = 0x20;
2359   static const unsigned int traverse_types =       0x40;
2360
2361   Traverse(unsigned int traverse_mask)
2362     : traverse_mask_(traverse_mask), types_seen_(NULL), expressions_seen_(NULL)
2363   { }
2364
2365   virtual ~Traverse();
2366
2367   // The bitmask of what to traverse.
2368   unsigned int
2369   traverse_mask() const
2370   { return this->traverse_mask_; }
2371
2372   // Record that we are going to traverse a type.  This returns true
2373   // if the type has already been seen in this traversal.  This is
2374   // required because types, unlike expressions, can form a circular
2375   // graph.
2376   bool
2377   remember_type(const Type*);
2378
2379   // Record that we are going to see an expression.  This returns true
2380   // if the expression has already been seen in this traversal.  This
2381   // is only needed for cases where multiple expressions can point to
2382   // a single one.
2383   bool
2384   remember_expression(const Expression*);
2385
2386   // These functions return one of the TRAVERSE codes defined above.
2387
2388   // If traverse_variables is set in the mask, this is called for
2389   // every variable in the tree.
2390   virtual int
2391   variable(Named_object*);
2392
2393   // If traverse_constants is set in the mask, this is called for
2394   // every named constant in the tree.  The bool parameter is true for
2395   // a global constant.
2396   virtual int
2397   constant(Named_object*, bool);
2398
2399   // If traverse_functions is set in the mask, this is called for
2400   // every function in the tree.
2401   virtual int
2402   function(Named_object*);
2403
2404   // If traverse_blocks is set in the mask, this is called for every
2405   // block in the tree.
2406   virtual int
2407   block(Block*);
2408
2409   // If traverse_statements is set in the mask, this is called for
2410   // every statement in the tree.
2411   virtual int
2412   statement(Block*, size_t* index, Statement*);
2413
2414   // If traverse_expressions is set in the mask, this is called for
2415   // every expression in the tree.
2416   virtual int
2417   expression(Expression**);
2418
2419   // If traverse_types is set in the mask, this is called for every
2420   // type in the tree.
2421   virtual int
2422   type(Type*);
2423
2424  private:
2425   typedef Unordered_set_hash(const Type*, Type_hash_identical,
2426                              Type_identical) Types_seen;
2427
2428   typedef Unordered_set(const Expression*) Expressions_seen;
2429
2430   // Bitmask of what sort of objects to traverse.
2431   unsigned int traverse_mask_;
2432   // Types which have been seen in this traversal.
2433   Types_seen* types_seen_;
2434   // Expressions which have been seen in this traversal.
2435   Expressions_seen* expressions_seen_;
2436 };
2437
2438 // When translating the gogo IR into trees, this is the context we
2439 // pass down the blocks and statements.
2440
2441 class Translate_context
2442 {
2443  public:
2444   Translate_context(Gogo* gogo, Named_object* function, Block* block,
2445                     tree block_tree)
2446     : gogo_(gogo), function_(function), block_(block), block_tree_(block_tree),
2447       is_const_(false)
2448   { }
2449
2450   // Accessors.
2451
2452   Gogo*
2453   gogo()
2454   { return this->gogo_; }
2455
2456   Named_object*
2457   function()
2458   { return this->function_; }
2459
2460   Block*
2461   block()
2462   { return this->block_; }
2463
2464   tree
2465   block_tree()
2466   { return this->block_tree_; }
2467
2468   bool
2469   is_const()
2470   { return this->is_const_; }
2471
2472   // Make a constant context.
2473   void
2474   set_is_const()
2475   { this->is_const_ = true; }
2476
2477  private:
2478   // The IR for the entire compilation unit.
2479   Gogo* gogo_;
2480   // The function we are currently translating.
2481   Named_object* function_;
2482   // The block we are currently translating.
2483   Block *block_;
2484   // The BLOCK node for the current block.
2485   tree block_tree_;
2486   // Whether this is being evaluated in a constant context.  This is
2487   // used for type descriptor initializers.
2488   bool is_const_;
2489 };
2490
2491 // Runtime error codes.  These must match the values in
2492 // libgo/runtime/go-runtime-error.c.
2493
2494 // Slice index out of bounds: negative or larger than the length of
2495 // the slice.
2496 static const int RUNTIME_ERROR_SLICE_INDEX_OUT_OF_BOUNDS = 0;
2497
2498 // Array index out of bounds.
2499 static const int RUNTIME_ERROR_ARRAY_INDEX_OUT_OF_BOUNDS = 1;
2500
2501 // String index out of bounds.
2502 static const int RUNTIME_ERROR_STRING_INDEX_OUT_OF_BOUNDS = 2;
2503
2504 // Slice slice out of bounds: negative or larger than the length of
2505 // the slice or high bound less than low bound.
2506 static const int RUNTIME_ERROR_SLICE_SLICE_OUT_OF_BOUNDS = 3;
2507
2508 // Array slice out of bounds.
2509 static const int RUNTIME_ERROR_ARRAY_SLICE_OUT_OF_BOUNDS = 4;
2510
2511 // String slice out of bounds.
2512 static const int RUNTIME_ERROR_STRING_SLICE_OUT_OF_BOUNDS = 5;
2513
2514 // Dereference of nil pointer.  This is used when there is a
2515 // dereference of a pointer to a very large struct or array, to ensure
2516 // that a gigantic array is not used a proxy to access random memory
2517 // locations.
2518 static const int RUNTIME_ERROR_NIL_DEREFERENCE = 6;
2519
2520 // Slice length or capacity out of bounds in make: negative or
2521 // overflow or length greater than capacity.
2522 static const int RUNTIME_ERROR_MAKE_SLICE_OUT_OF_BOUNDS = 7;
2523
2524 // Map capacity out of bounds in make: negative or overflow.
2525 static const int RUNTIME_ERROR_MAKE_MAP_OUT_OF_BOUNDS = 8;
2526
2527 // Channel capacity out of bounds in make: negative or overflow.
2528 static const int RUNTIME_ERROR_MAKE_CHAN_OUT_OF_BOUNDS = 9;
2529
2530 // This is used by some of the langhooks.
2531 extern Gogo* go_get_gogo();
2532
2533 // Whether we have seen any errors.  FIXME: Replace with a backend
2534 // interface.
2535 extern bool saw_errors();
2536
2537 #endif // !defined(GO_GOGO_H)