1 // gogo.cc -- Go frontend parsed representation.
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.
13 #include "statements.h"
14 #include "expressions.h"
22 Gogo::Gogo(int int_type_size
, int float_type_size
, int pointer_size
)
25 globals_(new Bindings(NULL
)),
27 imported_unsafe_(false),
29 map_descriptors_(NULL
),
30 type_descriptor_decls_(NULL
),
38 const source_location loc
= BUILTINS_LOCATION
;
40 Named_type
* uint8_type
= Type::make_integer_type("uint8", true, 8,
41 RUNTIME_TYPE_KIND_UINT8
);
42 this->add_named_type(uint8_type
);
43 this->add_named_type(Type::make_integer_type("uint16", true, 16,
44 RUNTIME_TYPE_KIND_UINT16
));
45 this->add_named_type(Type::make_integer_type("uint32", true, 32,
46 RUNTIME_TYPE_KIND_UINT32
));
47 this->add_named_type(Type::make_integer_type("uint64", true, 64,
48 RUNTIME_TYPE_KIND_UINT64
));
50 this->add_named_type(Type::make_integer_type("int8", false, 8,
51 RUNTIME_TYPE_KIND_INT8
));
52 this->add_named_type(Type::make_integer_type("int16", false, 16,
53 RUNTIME_TYPE_KIND_INT16
));
54 this->add_named_type(Type::make_integer_type("int32", false, 32,
55 RUNTIME_TYPE_KIND_INT32
));
56 this->add_named_type(Type::make_integer_type("int64", false, 64,
57 RUNTIME_TYPE_KIND_INT64
));
59 this->add_named_type(Type::make_float_type("float32", 32,
60 RUNTIME_TYPE_KIND_FLOAT32
));
61 this->add_named_type(Type::make_float_type("float64", 64,
62 RUNTIME_TYPE_KIND_FLOAT64
));
64 this->add_named_type(Type::make_complex_type("complex64", 64,
65 RUNTIME_TYPE_KIND_COMPLEX64
));
66 this->add_named_type(Type::make_complex_type("complex128", 128,
67 RUNTIME_TYPE_KIND_COMPLEX128
));
69 if (int_type_size
< 32)
71 this->add_named_type(Type::make_integer_type("uint", true,
73 RUNTIME_TYPE_KIND_UINT
));
74 Named_type
* int_type
= Type::make_integer_type("int", false, int_type_size
,
75 RUNTIME_TYPE_KIND_INT
);
76 this->add_named_type(int_type
);
78 // "byte" is an alias for "uint8". Construct a Named_object which
79 // points to UINT8_TYPE. Note that this breaks the normal pairing
80 // in which a Named_object points to a Named_type which points back
81 // to the same Named_object.
82 Named_object
* byte_type
= this->declare_type("byte", loc
);
83 byte_type
->set_type_value(uint8_type
);
85 this->add_named_type(Type::make_integer_type("uintptr", true,
87 RUNTIME_TYPE_KIND_UINTPTR
));
89 this->add_named_type(Type::make_float_type("float", float_type_size
,
90 RUNTIME_TYPE_KIND_FLOAT
));
92 this->add_named_type(Type::make_complex_type("complex", float_type_size
* 2,
93 RUNTIME_TYPE_KIND_COMPLEX
));
95 this->add_named_type(Type::make_named_bool_type());
97 this->add_named_type(Type::make_named_string_type());
99 this->globals_
->add_constant(Typed_identifier("true",
100 Type::make_boolean_type(),
103 Expression::make_boolean(true, loc
),
105 this->globals_
->add_constant(Typed_identifier("false",
106 Type::make_boolean_type(),
109 Expression::make_boolean(false, loc
),
112 this->globals_
->add_constant(Typed_identifier("nil", Type::make_nil_type(),
115 Expression::make_nil(loc
),
118 Type
* abstract_int_type
= Type::make_abstract_integer_type();
119 this->globals_
->add_constant(Typed_identifier("iota", abstract_int_type
,
122 Expression::make_iota(),
125 Function_type
* new_type
= Type::make_function_type(NULL
, NULL
, NULL
, loc
);
126 new_type
->set_is_varargs();
127 new_type
->set_is_builtin();
128 this->globals_
->add_function_declaration("new", NULL
, new_type
, loc
);
130 Function_type
* make_type
= Type::make_function_type(NULL
, NULL
, NULL
, loc
);
131 make_type
->set_is_varargs();
132 make_type
->set_is_builtin();
133 this->globals_
->add_function_declaration("make", NULL
, make_type
, loc
);
135 Typed_identifier_list
* len_result
= new Typed_identifier_list();
136 len_result
->push_back(Typed_identifier("", int_type
, loc
));
137 Function_type
* len_type
= Type::make_function_type(NULL
, NULL
, len_result
,
139 len_type
->set_is_builtin();
140 this->globals_
->add_function_declaration("len", NULL
, len_type
, loc
);
142 Typed_identifier_list
* cap_result
= new Typed_identifier_list();
143 cap_result
->push_back(Typed_identifier("", int_type
, loc
));
144 Function_type
* cap_type
= Type::make_function_type(NULL
, NULL
, len_result
,
146 cap_type
->set_is_builtin();
147 this->globals_
->add_function_declaration("cap", NULL
, cap_type
, loc
);
149 Function_type
* print_type
= Type::make_function_type(NULL
, NULL
, NULL
, loc
);
150 print_type
->set_is_varargs();
151 print_type
->set_is_builtin();
152 this->globals_
->add_function_declaration("print", NULL
, print_type
, loc
);
154 print_type
= Type::make_function_type(NULL
, NULL
, NULL
, loc
);
155 print_type
->set_is_varargs();
156 print_type
->set_is_builtin();
157 this->globals_
->add_function_declaration("println", NULL
, print_type
, loc
);
159 Type
*empty
= Type::make_interface_type(NULL
, loc
);
160 Typed_identifier_list
* panic_parms
= new Typed_identifier_list();
161 panic_parms
->push_back(Typed_identifier("e", empty
, loc
));
162 Function_type
*panic_type
= Type::make_function_type(NULL
, panic_parms
,
164 panic_type
->set_is_builtin();
165 this->globals_
->add_function_declaration("panic", NULL
, panic_type
, loc
);
167 Typed_identifier_list
* recover_result
= new Typed_identifier_list();
168 recover_result
->push_back(Typed_identifier("", empty
, loc
));
169 Function_type
* recover_type
= Type::make_function_type(NULL
, NULL
,
172 recover_type
->set_is_builtin();
173 this->globals_
->add_function_declaration("recover", NULL
, recover_type
, loc
);
175 Function_type
* close_type
= Type::make_function_type(NULL
, NULL
, NULL
, loc
);
176 close_type
->set_is_varargs();
177 close_type
->set_is_builtin();
178 this->globals_
->add_function_declaration("close", NULL
, close_type
, loc
);
180 Typed_identifier_list
* closed_result
= new Typed_identifier_list();
181 closed_result
->push_back(Typed_identifier("", Type::lookup_bool_type(),
183 Function_type
* closed_type
= Type::make_function_type(NULL
, NULL
,
185 closed_type
->set_is_varargs();
186 closed_type
->set_is_builtin();
187 this->globals_
->add_function_declaration("closed", NULL
, closed_type
, loc
);
189 Typed_identifier_list
* copy_result
= new Typed_identifier_list();
190 copy_result
->push_back(Typed_identifier("", int_type
, loc
));
191 Function_type
* copy_type
= Type::make_function_type(NULL
, NULL
,
193 copy_type
->set_is_varargs();
194 copy_type
->set_is_builtin();
195 this->globals_
->add_function_declaration("copy", NULL
, copy_type
, loc
);
197 Function_type
* append_type
= Type::make_function_type(NULL
, NULL
, NULL
, loc
);
198 append_type
->set_is_varargs();
199 append_type
->set_is_builtin();
200 this->globals_
->add_function_declaration("append", NULL
, append_type
, loc
);
202 Function_type
* cmplx_type
= Type::make_function_type(NULL
, NULL
, NULL
, loc
);
203 cmplx_type
->set_is_varargs();
204 cmplx_type
->set_is_builtin();
205 this->globals_
->add_function_declaration("cmplx", NULL
, cmplx_type
, loc
);
207 Function_type
* real_type
= Type::make_function_type(NULL
, NULL
, NULL
, loc
);
208 real_type
->set_is_varargs();
209 real_type
->set_is_builtin();
210 this->globals_
->add_function_declaration("real", NULL
, real_type
, loc
);
212 Function_type
* imag_type
= Type::make_function_type(NULL
, NULL
, NULL
, loc
);
213 imag_type
->set_is_varargs();
214 imag_type
->set_is_builtin();
215 this->globals_
->add_function_declaration("imag", NULL
, cmplx_type
, loc
);
217 this->define_builtin_function_trees();
219 // Declare "init", to ensure that it is not defined with parameters
221 this->declare_function("init",
222 Type::make_function_type(NULL
, NULL
, NULL
, loc
),
226 // Munge name for use in an error message.
229 Gogo::message_name(const std::string
& name
)
231 return go_localize_identifier(Gogo::unpack_hidden_name(name
).c_str());
234 // Get the package name.
237 Gogo::package_name() const
239 gcc_assert(this->package_
!= NULL
);
240 return this->package_
->name();
243 // Set the package name.
246 Gogo::set_package_name(const std::string
& package_name
,
247 source_location location
)
249 if (this->package_
!= NULL
&& this->package_
->name() != package_name
)
251 error_at(location
, "expected package %<%s%>",
252 Gogo::message_name(this->package_
->name()).c_str());
256 // If the user did not specify a unique prefix, we always use "go".
257 // This in effect requires that the package name be unique.
258 if (this->unique_prefix_
.empty())
259 this->unique_prefix_
= "go";
261 this->package_
= this->register_package(package_name
, this->unique_prefix_
,
264 // We used to permit people to qualify symbols with the current
265 // package name (e.g., P.x), but we no longer do.
266 // this->globals_->add_package(package_name, this->package_);
268 if (package_name
== "main")
270 // Declare "main" as a function which takes no parameters and
272 this->declare_function("main",
273 Type::make_function_type(NULL
, NULL
, NULL
,
282 Gogo::import_package(const std::string
& filename
,
283 const std::string
& local_name
,
284 bool is_local_name_exported
,
285 source_location location
)
287 if (filename
== "unsafe")
289 this->import_unsafe(local_name
, is_local_name_exported
, location
);
293 Imports::const_iterator p
= this->imports_
.find(filename
);
294 if (p
!= this->imports_
.end())
296 Package
* package
= p
->second
;
297 package
->set_location(location
);
298 package
->set_is_imported();
299 std::string ln
= local_name
;
300 bool is_ln_exported
= is_local_name_exported
;
303 ln
= package
->name();
304 is_ln_exported
= Lex::is_exported_name(ln
);
308 ln
= this->pack_hidden_name(ln
, is_ln_exported
);
309 this->package_
->bindings()->add_package(ln
, package
);
313 Bindings
* bindings
= package
->bindings();
314 for (Bindings::const_declarations_iterator p
=
315 bindings
->begin_declarations();
316 p
!= bindings
->end_declarations();
318 this->add_named_object(p
->second
);
323 Import::Stream
* stream
= Import::open_package(filename
, location
);
326 error_at(location
, "import file %qs not found", filename
.c_str());
330 Import
imp(stream
, location
);
331 imp
.register_builtin_types(this);
332 Package
* package
= imp
.import(this, local_name
, is_local_name_exported
);
333 this->imports_
.insert(std::make_pair(filename
, package
));
334 package
->set_is_imported();
339 // Add an import control function for an imported package to the list.
342 Gogo::add_import_init_fn(const std::string
& package_name
,
343 const std::string
& init_name
, int prio
)
345 for (std::set
<Import_init
>::const_iterator p
=
346 this->imported_init_fns_
.begin();
347 p
!= this->imported_init_fns_
.end();
350 if (p
->init_name() == init_name
351 && (p
->package_name() != package_name
|| p
->priority() != prio
))
353 error("duplicate package initialization name %qs",
354 Gogo::message_name(init_name
).c_str());
355 inform(UNKNOWN_LOCATION
, "used by package %qs at priority %d",
356 Gogo::message_name(p
->package_name()).c_str(),
358 inform(UNKNOWN_LOCATION
, " and by package %qs at priority %d",
359 Gogo::message_name(package_name
).c_str(), prio
);
364 this->imported_init_fns_
.insert(Import_init(package_name
, init_name
,
368 // Return whether we are at the global binding level.
371 Gogo::in_global_scope() const
373 return this->functions_
.empty();
376 // Return the current binding contour.
379 Gogo::current_bindings()
381 if (!this->functions_
.empty())
382 return this->functions_
.back().blocks
.back()->bindings();
383 else if (this->package_
!= NULL
)
384 return this->package_
->bindings();
386 return this->globals_
;
390 Gogo::current_bindings() const
392 if (!this->functions_
.empty())
393 return this->functions_
.back().blocks
.back()->bindings();
394 else if (this->package_
!= NULL
)
395 return this->package_
->bindings();
397 return this->globals_
;
400 // Return the current block.
403 Gogo::current_block()
405 if (this->functions_
.empty())
408 return this->functions_
.back().blocks
.back();
411 // Look up a name in the current binding contour. If PFUNCTION is not
412 // NULL, set it to the function in which the name is defined, or NULL
413 // if the name is defined in global scope.
416 Gogo::lookup(const std::string
& name
, Named_object
** pfunction
) const
418 if (Gogo::is_sink_name(name
))
419 return Named_object::make_sink();
421 for (Open_functions::const_reverse_iterator p
= this->functions_
.rbegin();
422 p
!= this->functions_
.rend();
425 Named_object
* ret
= p
->blocks
.back()->bindings()->lookup(name
);
428 if (pfunction
!= NULL
)
429 *pfunction
= p
->function
;
434 if (pfunction
!= NULL
)
437 if (this->package_
!= NULL
)
439 Named_object
* ret
= this->package_
->bindings()->lookup(name
);
442 if (ret
->package() != NULL
)
443 ret
->package()->set_used();
448 // We do not look in the global namespace. If we did, the global
449 // namespace would effectively hide names which were defined in
450 // package scope which we have not yet seen. Instead,
451 // define_global_names is called after parsing is over to connect
452 // undefined names at package scope with names defined at global
458 // Look up a name in the current block, without searching enclosing
462 Gogo::lookup_in_block(const std::string
& name
) const
464 gcc_assert(!this->functions_
.empty());
465 gcc_assert(!this->functions_
.back().blocks
.empty());
466 return this->functions_
.back().blocks
.back()->bindings()->lookup_local(name
);
469 // Look up a name in the global namespace.
472 Gogo::lookup_global(const char* name
) const
474 return this->globals_
->lookup(name
);
477 // Add an imported package.
480 Gogo::add_imported_package(const std::string
& real_name
,
481 const std::string
& alias_arg
,
482 bool is_alias_exported
,
483 const std::string
& unique_prefix
,
484 source_location location
,
485 bool* padd_to_globals
)
487 // FIXME: Now that we compile packages as a whole, should we permit
488 // importing the current package?
489 if (this->package_name() == real_name
490 && this->unique_prefix() == unique_prefix
)
492 *padd_to_globals
= false;
493 if (!alias_arg
.empty() && alias_arg
!= ".")
495 std::string alias
= this->pack_hidden_name(alias_arg
,
497 this->package_
->bindings()->add_package(alias
, this->package_
);
499 return this->package_
;
501 else if (alias_arg
== ".")
503 *padd_to_globals
= true;
504 return this->register_package(real_name
, unique_prefix
, location
);
506 else if (alias_arg
== "_")
508 Package
* ret
= this->register_package(real_name
, unique_prefix
, location
);
509 ret
->set_uses_sink_alias();
514 *padd_to_globals
= false;
515 std::string alias
= alias_arg
;
519 is_alias_exported
= Lex::is_exported_name(alias
);
521 alias
= this->pack_hidden_name(alias
, is_alias_exported
);
522 Named_object
* no
= this->add_package(real_name
, alias
, unique_prefix
,
524 if (!no
->is_package())
526 return no
->package_value();
533 Gogo::add_package(const std::string
& real_name
, const std::string
& alias
,
534 const std::string
& unique_prefix
, source_location location
)
536 gcc_assert(this->in_global_scope());
538 // Register the package. Note that we might have already seen it in
539 // an earlier import.
540 Package
* package
= this->register_package(real_name
, unique_prefix
, location
);
542 return this->package_
->bindings()->add_package(alias
, package
);
545 // Register a package. This package may or may not be imported. This
546 // returns the Package structure for the package, creating if it
550 Gogo::register_package(const std::string
& package_name
,
551 const std::string
& unique_prefix
,
552 source_location location
)
554 gcc_assert(!unique_prefix
.empty() && !package_name
.empty());
555 std::string name
= unique_prefix
+ '.' + package_name
;
556 Package
* package
= NULL
;
557 std::pair
<Packages::iterator
, bool> ins
=
558 this->packages_
.insert(std::make_pair(name
, package
));
561 // We have seen this package name before.
562 package
= ins
.first
->second
;
563 gcc_assert(package
!= NULL
);
564 gcc_assert(package
->name() == package_name
565 && package
->unique_prefix() == unique_prefix
);
566 if (package
->location() == UNKNOWN_LOCATION
)
567 package
->set_location(location
);
571 // First time we have seen this package name.
572 package
= new Package(package_name
, unique_prefix
, location
);
573 gcc_assert(ins
.first
->second
== NULL
);
574 ins
.first
->second
= package
;
580 // Start compiling a function.
583 Gogo::start_function(const std::string
& name
, Function_type
* type
,
584 bool add_method_to_type
, source_location location
)
586 bool at_top_level
= this->functions_
.empty();
588 Block
* block
= new Block(NULL
, location
);
590 Function
* enclosing
= (at_top_level
592 : this->functions_
.back().function
->func_value());
594 Function
* function
= new Function(type
, enclosing
, block
, location
);
596 if (type
->is_method())
598 const Typed_identifier
* receiver
= type
->receiver();
599 Variable
* this_param
= new Variable(receiver
->type(), NULL
, false,
600 true, true, location
);
601 std::string name
= receiver
->name();
604 // We need to give receivers a name since they wind up in
605 // DECL_ARGUMENTS. FIXME.
606 static unsigned int count
;
608 snprintf(buf
, sizeof buf
, "r.%u", count
);
612 block
->bindings()->add_variable(name
, NULL
, this_param
);
615 const Typed_identifier_list
* parameters
= type
->parameters();
616 bool is_varargs
= type
->is_varargs();
617 if (parameters
!= NULL
)
619 for (Typed_identifier_list::const_iterator p
= parameters
->begin();
620 p
!= parameters
->end();
623 Variable
* param
= new Variable(p
->type(), NULL
, false, true, false,
625 if (is_varargs
&& p
+ 1 == parameters
->end())
626 param
->set_is_varargs_parameter();
628 std::string name
= p
->name();
629 if (name
.empty() || Gogo::is_sink_name(name
))
631 // We need to give parameters a name since they wind up
632 // in DECL_ARGUMENTS. FIXME.
633 static unsigned int count
;
635 snprintf(buf
, sizeof buf
, "p.%u", count
);
639 block
->bindings()->add_variable(name
, NULL
, param
);
643 function
->create_named_result_variables(this);
645 const std::string
* pname
;
646 std::string nested_name
;
651 // Invent a name for a nested function.
652 static int nested_count
;
654 snprintf(buf
, sizeof buf
, ".$nested%d", nested_count
);
657 pname
= &nested_name
;
661 if (Gogo::is_sink_name(*pname
))
663 static int sink_count
;
665 snprintf(buf
, sizeof buf
, ".$sink%d", sink_count
);
667 ret
= Named_object::make_function(buf
, NULL
, function
);
669 else if (!type
->is_method())
671 ret
= this->package_
->bindings()->add_function(*pname
, NULL
, function
);
672 if (!ret
->is_function())
674 // Redefinition error.
675 ret
= Named_object::make_function(name
, NULL
, function
);
680 if (!add_method_to_type
)
681 ret
= Named_object::make_function(name
, NULL
, function
);
684 gcc_assert(at_top_level
);
685 Type
* rtype
= type
->receiver()->type();
687 // We want to look through the pointer created by the
688 // parser, without getting an error if the type is not yet
690 if (rtype
->classification() == Type::TYPE_POINTER
)
691 rtype
= rtype
->points_to();
693 if (rtype
->is_error_type())
694 ret
= Named_object::make_function(name
, NULL
, function
);
695 else if (rtype
->named_type() != NULL
)
697 ret
= rtype
->named_type()->add_method(name
, function
);
698 if (!ret
->is_function())
700 // Redefinition error.
701 ret
= Named_object::make_function(name
, NULL
, function
);
704 else if (rtype
->forward_declaration_type() != NULL
)
706 Named_object
* type_no
=
707 rtype
->forward_declaration_type()->named_object();
708 if (type_no
->is_unknown())
710 // If we are seeing methods it really must be a
711 // type. Declare it as such. An alternative would
712 // be to support lists of methods for unknown
713 // expressions. Either way the error messages if
714 // this is not a type are going to get confusing.
715 Named_object
* declared
=
716 this->declare_package_type(type_no
->name(),
717 type_no
->location());
719 == type_no
->unknown_value()->real_named_object());
721 ret
= rtype
->forward_declaration_type()->add_method(name
,
727 this->package_
->bindings()->add_method(ret
);
730 this->functions_
.resize(this->functions_
.size() + 1);
731 Open_function
& of(this->functions_
.back());
733 of
.blocks
.push_back(block
);
735 if (!type
->is_method() && Gogo::unpack_hidden_name(name
) == "init")
737 this->init_functions_
.push_back(ret
);
738 this->need_init_fn_
= true;
744 // Finish compiling a function.
747 Gogo::finish_function(source_location location
)
749 this->finish_block(location
);
750 gcc_assert(this->functions_
.back().blocks
.empty());
751 this->functions_
.pop_back();
754 // Return the current function.
757 Gogo::current_function() const
759 gcc_assert(!this->functions_
.empty());
760 return this->functions_
.back().function
;
763 // Start a new block.
766 Gogo::start_block(source_location location
)
768 gcc_assert(!this->functions_
.empty());
769 Block
* block
= new Block(this->current_block(), location
);
770 this->functions_
.back().blocks
.push_back(block
);
776 Gogo::finish_block(source_location location
)
778 gcc_assert(!this->functions_
.empty());
779 gcc_assert(!this->functions_
.back().blocks
.empty());
780 Block
* block
= this->functions_
.back().blocks
.back();
781 this->functions_
.back().blocks
.pop_back();
782 block
->set_end_location(location
);
786 // Add an unknown name.
789 Gogo::add_unknown_name(const std::string
& name
, source_location location
)
791 return this->package_
->bindings()->add_unknown_name(name
, location
);
794 // Declare a function.
797 Gogo::declare_function(const std::string
& name
, Function_type
* type
,
798 source_location location
)
800 if (!type
->is_method())
801 return this->current_bindings()->add_function_declaration(name
, NULL
, type
,
805 // We don't bother to add this to the list of global
807 Type
* rtype
= type
->receiver()->type();
809 // We want to look through the pointer created by the
810 // parser, without getting an error if the type is not yet
812 if (rtype
->classification() == Type::TYPE_POINTER
)
813 rtype
= rtype
->points_to();
815 if (rtype
->is_error_type())
817 else if (rtype
->named_type() != NULL
)
818 return rtype
->named_type()->add_method_declaration(name
, NULL
, type
,
820 else if (rtype
->forward_declaration_type() != NULL
)
822 Forward_declaration_type
* ftype
= rtype
->forward_declaration_type();
823 return ftype
->add_method_declaration(name
, type
, location
);
830 // Add a label definition.
833 Gogo::add_label_definition(const std::string
& label_name
,
834 source_location location
)
836 gcc_assert(!this->functions_
.empty());
837 Function
* func
= this->functions_
.back().function
->func_value();
838 Label
* label
= func
->add_label_definition(label_name
, location
);
839 this->add_statement(Statement::make_label_statement(label
, location
));
843 // Add a label reference.
846 Gogo::add_label_reference(const std::string
& label_name
)
848 gcc_assert(!this->functions_
.empty());
849 Function
* func
= this->functions_
.back().function
->func_value();
850 return func
->add_label_reference(label_name
);
856 Gogo::add_statement(Statement
* statement
)
858 gcc_assert(!this->functions_
.empty()
859 && !this->functions_
.back().blocks
.empty());
860 this->functions_
.back().blocks
.back()->add_statement(statement
);
866 Gogo::add_block(Block
* block
, source_location location
)
868 gcc_assert(!this->functions_
.empty()
869 && !this->functions_
.back().blocks
.empty());
870 Statement
* statement
= Statement::make_block_statement(block
, location
);
871 this->functions_
.back().blocks
.back()->add_statement(statement
);
877 Gogo::add_constant(const Typed_identifier
& tid
, Expression
* expr
,
880 return this->current_bindings()->add_constant(tid
, NULL
, expr
, iota_value
);
886 Gogo::add_type(const std::string
& name
, Type
* type
, source_location location
)
888 Named_object
* no
= this->current_bindings()->add_type(name
, NULL
, type
,
890 if (!this->in_global_scope() && no
->is_type())
891 no
->type_value()->set_in_function(this->functions_
.back().function
);
897 Gogo::add_named_type(Named_type
* type
)
899 gcc_assert(this->in_global_scope());
900 this->current_bindings()->add_named_type(type
);
906 Gogo::declare_type(const std::string
& name
, source_location location
)
908 Bindings
* bindings
= this->current_bindings();
909 Named_object
* no
= bindings
->add_type_declaration(name
, NULL
, location
);
910 if (!this->in_global_scope() && no
->is_type_declaration())
912 Named_object
* f
= this->functions_
.back().function
;
913 no
->type_declaration_value()->set_in_function(f
);
918 // Declare a type at the package level.
921 Gogo::declare_package_type(const std::string
& name
, source_location location
)
923 return this->package_
->bindings()->add_type_declaration(name
, NULL
, location
);
926 // Define a type which was already declared.
929 Gogo::define_type(Named_object
* no
, Named_type
* type
)
931 this->current_bindings()->define_type(no
, type
);
937 Gogo::add_variable(const std::string
& name
, Variable
* variable
)
939 Named_object
* no
= this->current_bindings()->add_variable(name
, NULL
,
942 // In a function the middle-end wants to see a DECL_EXPR node.
945 && !no
->var_value()->is_parameter()
946 && !this->functions_
.empty())
947 this->add_statement(Statement::make_variable_declaration(no
));
952 // Add a sink--a reference to the blank identifier _.
957 return Named_object::make_sink();
960 // Add a named object.
963 Gogo::add_named_object(Named_object
* no
)
965 this->current_bindings()->add_named_object(no
);
968 // Record that we've seen an interface type.
971 Gogo::record_interface_type(Interface_type
* itype
)
973 this->interface_types_
.push_back(itype
);
976 // Return a name for a thunk object.
981 static int thunk_count
;
983 snprintf(thunk_name
, sizeof thunk_name
, "$thunk%d", thunk_count
);
988 // Return whether a function is a thunk.
991 Gogo::is_thunk(const Named_object
* no
)
993 return no
->name().compare(0, 6, "$thunk") == 0;
996 // Define the global names. We do this only after parsing all the
997 // input files, because the program might define the global names
1001 Gogo::define_global_names()
1003 for (Bindings::const_declarations_iterator p
=
1004 this->globals_
->begin_declarations();
1005 p
!= this->globals_
->end_declarations();
1008 Named_object
* global_no
= p
->second
;
1009 std::string
name(Gogo::pack_hidden_name(global_no
->name(), false));
1010 Named_object
* no
= this->package_
->bindings()->lookup(name
);
1014 if (no
->is_type_declaration())
1016 if (global_no
->is_type())
1018 if (no
->type_declaration_value()->has_methods())
1019 error_at(no
->location(),
1020 "may not define methods for global type");
1021 no
->set_type_value(global_no
->type_value());
1025 error_at(no
->location(), "expected type");
1026 Type
* errtype
= Type::make_error_type();
1027 Named_object
* err
= Named_object::make_type("error", NULL
,
1030 no
->set_type_value(err
->type_value());
1033 else if (no
->is_unknown())
1034 no
->unknown_value()->set_real_named_object(global_no
);
1038 // Clear out names in file scope.
1041 Gogo::clear_file_scope()
1043 this->package_
->bindings()->clear_file_scope();
1045 // Warn about packages which were imported but not used.
1046 for (Packages::iterator p
= this->packages_
.begin();
1047 p
!= this->packages_
.end();
1050 Package
* package
= p
->second
;
1051 if (package
!= this->package_
1052 && package
->is_imported()
1054 && !package
->uses_sink_alias()
1056 error_at(package
->location(), "imported and not used: %s",
1057 Gogo::message_name(package
->name()).c_str());
1058 package
->clear_is_imported();
1059 package
->clear_uses_sink_alias();
1060 package
->clear_used();
1064 // Traverse the tree.
1067 Gogo::traverse(Traverse
* traverse
)
1069 // Traverse the current package first for consistency. The other
1070 // packages will only contain imported types, constants, and
1072 if (this->package_
->bindings()->traverse(traverse
, true) == TRAVERSE_EXIT
)
1074 for (Packages::const_iterator p
= this->packages_
.begin();
1075 p
!= this->packages_
.end();
1078 if (p
->second
!= this->package_
)
1080 if (p
->second
->bindings()->traverse(traverse
, true) == TRAVERSE_EXIT
)
1086 // Traversal class used to verify types.
1088 class Verify_types
: public Traverse
1092 : Traverse(traverse_types
)
1099 // Verify that a type is correct.
1102 Verify_types::type(Type
* t
)
1104 // Don't verify types defined in other packages.
1105 Named_type
* nt
= t
->named_type();
1106 if (nt
!= NULL
&& nt
->named_object()->package() != NULL
)
1107 return TRAVERSE_SKIP_COMPONENTS
;
1110 return TRAVERSE_SKIP_COMPONENTS
;
1111 return TRAVERSE_CONTINUE
;
1114 // Verify that all types are correct.
1117 Gogo::verify_types()
1119 Verify_types traverse
;
1120 this->traverse(&traverse
);
1123 // Traversal class used to lower parse tree.
1125 class Lower_parse_tree
: public Traverse
1128 Lower_parse_tree(Gogo
* gogo
, Named_object
* function
)
1129 : Traverse(traverse_constants
1130 | traverse_functions
1131 | traverse_statements
1132 | traverse_expressions
),
1133 gogo_(gogo
), function_(function
), iota_value_(-1)
1137 constant(Named_object
*, bool);
1140 function(Named_object
*);
1143 statement(Block
*, size_t* pindex
, Statement
*);
1146 expression(Expression
**);
1151 // The function we are traversing.
1152 Named_object
* function_
;
1153 // Value to use for the predeclared constant iota.
1157 // Lower constants. We handle constants specially so that we can set
1158 // the right value for the predeclared constant iota. This works in
1159 // conjunction with the way we lower Const_expression objects.
1162 Lower_parse_tree::constant(Named_object
* no
, bool)
1164 Named_constant
* nc
= no
->const_value();
1166 // We can recursively a constant if the initializer expression
1167 // manages to refer to itself.
1169 return TRAVERSE_CONTINUE
;
1172 gcc_assert(this->iota_value_
== -1);
1173 this->iota_value_
= nc
->iota_value();
1174 nc
->traverse_expression(this);
1175 this->iota_value_
= -1;
1177 nc
->clear_lowering();
1179 // We will traverse the expression a second time, but that will be
1182 return TRAVERSE_CONTINUE
;
1185 // Lower function closure types. Record the function while lowering
1186 // it, so that we can pass it down when lowering an expression.
1189 Lower_parse_tree::function(Named_object
* no
)
1191 no
->func_value()->set_closure_type();
1193 gcc_assert(this->function_
== NULL
);
1194 this->function_
= no
;
1195 int t
= no
->func_value()->traverse(this);
1196 this->function_
= NULL
;
1198 if (t
== TRAVERSE_EXIT
)
1200 return TRAVERSE_SKIP_COMPONENTS
;
1203 // Lower statement parse trees.
1206 Lower_parse_tree::statement(Block
* block
, size_t* pindex
, Statement
* sorig
)
1208 // Lower the expressions first.
1209 int t
= sorig
->traverse_contents(this);
1210 if (t
== TRAVERSE_EXIT
)
1213 // Keep lowering until nothing changes.
1214 Statement
* s
= sorig
;
1217 Statement
* snew
= s
->lower(this->gogo_
, block
);
1221 t
= s
->traverse_contents(this);
1222 if (t
== TRAVERSE_EXIT
)
1227 block
->replace_statement(*pindex
, s
);
1229 return TRAVERSE_SKIP_COMPONENTS
;
1232 // Lower expression parse trees.
1235 Lower_parse_tree::expression(Expression
** pexpr
)
1237 // We have to lower all subexpressions first, so that we can get
1238 // their type if necessary. This is awkward, because we don't have
1239 // a postorder traversal pass.
1240 if ((*pexpr
)->traverse_subexpressions(this) == TRAVERSE_EXIT
)
1241 return TRAVERSE_EXIT
;
1242 // Keep lowering until nothing changes.
1245 Expression
* e
= *pexpr
;
1246 Expression
* enew
= e
->lower(this->gogo_
, this->function_
,
1252 return TRAVERSE_SKIP_COMPONENTS
;
1255 // Lower the parse tree. This is called after the parse is complete,
1256 // when all names should be resolved.
1259 Gogo::lower_parse_tree()
1261 Lower_parse_tree
lower_parse_tree(this, NULL
);
1262 this->traverse(&lower_parse_tree
);
1265 // Lower an expression.
1268 Gogo::lower_expression(Named_object
* function
, Expression
** pexpr
)
1270 Lower_parse_tree
lower_parse_tree(this, function
);
1271 lower_parse_tree
.expression(pexpr
);
1274 // Lower a constant. This is called when lowering a reference to a
1275 // constant. We have to make sure that the constant has already been
1279 Gogo::lower_constant(Named_object
* no
)
1281 gcc_assert(no
->is_const());
1282 Lower_parse_tree
lower(this, NULL
);
1283 lower
.constant(no
, false);
1286 // Look for interface types to finalize methods of inherited
1289 class Finalize_methods
: public Traverse
1292 Finalize_methods(Gogo
* gogo
)
1293 : Traverse(traverse_types
),
1304 // Finalize the methods of an interface type.
1307 Finalize_methods::type(Type
* t
)
1309 // Check the classification so that we don't finalize the methods
1310 // twice for a named interface type.
1311 switch (t
->classification())
1313 case Type::TYPE_INTERFACE
:
1314 t
->interface_type()->finalize_methods();
1317 case Type::TYPE_NAMED
:
1319 // We have to finalize the methods of the real type first.
1320 // But if the real type is a struct type, then we only want to
1321 // finalize the methods of the field types, not of the struct
1322 // type itself. We don't want to add methods to the struct,
1323 // since it has a name.
1324 Type
* rt
= t
->named_type()->real_type();
1325 if (rt
->classification() != Type::TYPE_STRUCT
)
1327 if (Type::traverse(rt
, this) == TRAVERSE_EXIT
)
1328 return TRAVERSE_EXIT
;
1332 if (rt
->struct_type()->traverse_field_types(this) == TRAVERSE_EXIT
)
1333 return TRAVERSE_EXIT
;
1336 t
->named_type()->finalize_methods(this->gogo_
);
1338 return TRAVERSE_SKIP_COMPONENTS
;
1341 case Type::TYPE_STRUCT
:
1342 t
->struct_type()->finalize_methods(this->gogo_
);
1349 return TRAVERSE_CONTINUE
;
1352 // Finalize method lists and build stub methods for types.
1355 Gogo::finalize_methods()
1357 Finalize_methods
finalize(this);
1358 this->traverse(&finalize
);
1361 // Set types for unspecified variables and constants.
1364 Gogo::determine_types()
1366 Bindings
* bindings
= this->current_bindings();
1367 for (Bindings::const_definitions_iterator p
= bindings
->begin_definitions();
1368 p
!= bindings
->end_definitions();
1371 if ((*p
)->is_function())
1372 (*p
)->func_value()->determine_types();
1373 else if ((*p
)->is_variable())
1374 (*p
)->var_value()->determine_type();
1375 else if ((*p
)->is_const())
1376 (*p
)->const_value()->determine_type();
1378 // See if a variable requires us to build an initialization
1379 // function. We know that we will see all global variables
1381 if (!this->need_init_fn_
&& (*p
)->is_variable())
1383 Variable
* variable
= (*p
)->var_value();
1385 // If this is a global variable which requires runtime
1386 // initialization, we need an initialization function.
1387 if (!variable
->is_global() || variable
->init() == NULL
)
1389 else if (variable
->type()->interface_type() != NULL
)
1390 this->need_init_fn_
= true;
1391 else if (variable
->init()->is_constant())
1393 else if (!variable
->init()->is_composite_literal())
1394 this->need_init_fn_
= true;
1395 else if (variable
->init()->is_nonconstant_composite_literal())
1396 this->need_init_fn_
= true;
1398 // If this is a global variable which holds a pointer value,
1399 // then we need an initialization function to register it as a
1401 if (variable
->is_global() && variable
->type()->has_pointer())
1402 this->need_init_fn_
= true;
1406 // Determine the types of constants in packages.
1407 for (Packages::const_iterator p
= this->packages_
.begin();
1408 p
!= this->packages_
.end();
1410 p
->second
->determine_types();
1413 // Traversal class used for type checking.
1415 class Check_types_traverse
: public Traverse
1418 Check_types_traverse(Gogo
* gogo
)
1419 : Traverse(traverse_variables
1420 | traverse_constants
1421 | traverse_statements
1422 | traverse_expressions
),
1427 variable(Named_object
*);
1430 constant(Named_object
*, bool);
1433 statement(Block
*, size_t* pindex
, Statement
*);
1436 expression(Expression
**);
1443 // Check that a variable initializer has the right type.
1446 Check_types_traverse::variable(Named_object
* named_object
)
1448 if (named_object
->is_variable())
1450 Variable
* var
= named_object
->var_value();
1451 Expression
* init
= var
->init();
1454 && !Type::are_assignable(var
->type(), init
->type(), &reason
))
1457 error_at(var
->location(), "incompatible type in initialization");
1459 error_at(var
->location(),
1460 "incompatible type in initialization (%s)",
1465 return TRAVERSE_CONTINUE
;
1468 // Check that a constant initializer has the right type.
1471 Check_types_traverse::constant(Named_object
* named_object
, bool)
1473 Named_constant
* constant
= named_object
->const_value();
1474 Type
* ctype
= constant
->type();
1475 if (ctype
->integer_type() == NULL
1476 && ctype
->float_type() == NULL
1477 && ctype
->complex_type() == NULL
1478 && !ctype
->is_boolean_type()
1479 && !ctype
->is_string_type())
1481 if (!ctype
->is_error_type())
1482 error_at(constant
->location(), "invalid constant type");
1483 constant
->set_error();
1485 else if (!constant
->expr()->is_constant())
1487 error_at(constant
->expr()->location(), "expression is not constant");
1488 constant
->set_error();
1490 else if (!Type::are_assignable(constant
->type(), constant
->expr()->type(),
1493 error_at(constant
->location(),
1494 "initialization expression has wrong type");
1495 constant
->set_error();
1497 return TRAVERSE_CONTINUE
;
1500 // Check that types are valid in a statement.
1503 Check_types_traverse::statement(Block
*, size_t*, Statement
* s
)
1505 s
->check_types(this->gogo_
);
1506 return TRAVERSE_CONTINUE
;
1509 // Check that types are valid in an expression.
1512 Check_types_traverse::expression(Expression
** expr
)
1514 (*expr
)->check_types(this->gogo_
);
1515 return TRAVERSE_CONTINUE
;
1518 // Check that types are valid.
1523 Check_types_traverse
traverse(this);
1524 this->traverse(&traverse
);
1527 // Check the types in a single block.
1530 Gogo::check_types_in_block(Block
* block
)
1532 Check_types_traverse
traverse(this);
1533 block
->traverse(&traverse
);
1536 // A traversal class used to find a single shortcut operator within an
1539 class Find_shortcut
: public Traverse
1543 : Traverse(traverse_blocks
1544 | traverse_statements
1545 | traverse_expressions
),
1549 // A pointer to the expression which was found, or NULL if none was
1553 { return this->found_
; }
1558 { return TRAVERSE_SKIP_COMPONENTS
; }
1561 statement(Block
*, size_t*, Statement
*)
1562 { return TRAVERSE_SKIP_COMPONENTS
; }
1565 expression(Expression
**);
1568 Expression
** found_
;
1571 // Find a shortcut expression.
1574 Find_shortcut::expression(Expression
** pexpr
)
1576 Expression
* expr
= *pexpr
;
1577 Binary_expression
* be
= expr
->binary_expression();
1579 return TRAVERSE_CONTINUE
;
1580 Operator op
= be
->op();
1581 if (op
!= OPERATOR_OROR
&& op
!= OPERATOR_ANDAND
)
1582 return TRAVERSE_CONTINUE
;
1583 gcc_assert(this->found_
== NULL
);
1584 this->found_
= pexpr
;
1585 return TRAVERSE_EXIT
;
1588 // A traversal class used to turn shortcut operators into explicit if
1591 class Shortcuts
: public Traverse
1595 : Traverse(traverse_variables
1596 | traverse_statements
)
1601 variable(Named_object
*);
1604 statement(Block
*, size_t*, Statement
*);
1607 // Convert a shortcut operator.
1609 convert_shortcut(Block
* enclosing
, Expression
** pshortcut
);
1612 // Remove shortcut operators in a single statement.
1615 Shortcuts::statement(Block
* block
, size_t* pindex
, Statement
* s
)
1617 // FIXME: This approach doesn't work for switch statements, because
1618 // we add the new statements before the whole switch when we need to
1619 // instead add them just before the switch expression. The right
1620 // fix is probably to lower switch statements with nonconstant cases
1621 // to a series of conditionals.
1622 if (s
->switch_statement() != NULL
)
1623 return TRAVERSE_CONTINUE
;
1627 Find_shortcut find_shortcut
;
1629 // If S is a variable declaration, then ordinary traversal won't
1630 // do anything. We want to explicitly traverse the
1631 // initialization expression if there is one.
1632 Variable_declaration_statement
* vds
= s
->variable_declaration_statement();
1633 Expression
* init
= NULL
;
1635 s
->traverse_contents(&find_shortcut
);
1638 init
= vds
->var()->var_value()->init();
1640 return TRAVERSE_CONTINUE
;
1641 init
->traverse(&init
, &find_shortcut
);
1643 Expression
** pshortcut
= find_shortcut
.found();
1644 if (pshortcut
== NULL
)
1645 return TRAVERSE_CONTINUE
;
1647 Statement
* snew
= this->convert_shortcut(block
, pshortcut
);
1648 block
->insert_statement_before(*pindex
, snew
);
1651 if (pshortcut
== &init
)
1652 vds
->var()->var_value()->set_init(init
);
1656 // Remove shortcut operators in the initializer of a global variable.
1659 Shortcuts::variable(Named_object
* no
)
1661 if (no
->is_result_variable())
1662 return TRAVERSE_CONTINUE
;
1663 Variable
* var
= no
->var_value();
1664 Expression
* init
= var
->init();
1665 if (!var
->is_global() || init
== NULL
)
1666 return TRAVERSE_CONTINUE
;
1670 Find_shortcut find_shortcut
;
1671 init
->traverse(&init
, &find_shortcut
);
1672 Expression
** pshortcut
= find_shortcut
.found();
1673 if (pshortcut
== NULL
)
1674 return TRAVERSE_CONTINUE
;
1676 Statement
* snew
= this->convert_shortcut(NULL
, pshortcut
);
1677 var
->add_preinit_statement(snew
);
1678 if (pshortcut
== &init
)
1679 var
->set_init(init
);
1683 // Given an expression which uses a shortcut operator, return a
1684 // statement which implements it, and update *PSHORTCUT accordingly.
1687 Shortcuts::convert_shortcut(Block
* enclosing
, Expression
** pshortcut
)
1689 Binary_expression
* shortcut
= (*pshortcut
)->binary_expression();
1690 Expression
* left
= shortcut
->left();
1691 Expression
* right
= shortcut
->right();
1692 source_location loc
= shortcut
->location();
1694 Block
* retblock
= new Block(enclosing
, loc
);
1695 retblock
->set_end_location(loc
);
1697 Temporary_statement
* ts
= Statement::make_temporary(Type::make_boolean_type(),
1699 retblock
->add_statement(ts
);
1701 Block
* block
= new Block(retblock
, loc
);
1702 block
->set_end_location(loc
);
1703 Expression
* tmpref
= Expression::make_temporary_reference(ts
, loc
);
1704 Statement
* assign
= Statement::make_assignment(tmpref
, right
, loc
);
1705 block
->add_statement(assign
);
1707 Expression
* cond
= Expression::make_temporary_reference(ts
, loc
);
1708 if (shortcut
->binary_expression()->op() == OPERATOR_OROR
)
1709 cond
= Expression::make_unary(OPERATOR_NOT
, cond
, loc
);
1711 Statement
* if_statement
= Statement::make_if_statement(cond
, block
, NULL
,
1713 retblock
->add_statement(if_statement
);
1715 *pshortcut
= Expression::make_temporary_reference(ts
, loc
);
1719 // Now convert any shortcut operators in LEFT and RIGHT.
1720 Shortcuts shortcuts
;
1721 retblock
->traverse(&shortcuts
);
1723 return Statement::make_block_statement(retblock
, loc
);
1726 // Turn shortcut operators into explicit if statements. Doing this
1727 // considerably simplifies the order of evaluation rules.
1730 Gogo::remove_shortcuts()
1732 Shortcuts shortcuts
;
1733 this->traverse(&shortcuts
);
1736 // A traversal class which finds all the expressions which must be
1737 // evaluated in order within a statement or larger expression. This
1738 // is used to implement the rules about order of evaluation.
1740 class Find_eval_ordering
: public Traverse
1743 typedef std::vector
<Expression
**> Expression_pointers
;
1746 Find_eval_ordering()
1747 : Traverse(traverse_blocks
1748 | traverse_statements
1749 | traverse_expressions
),
1755 { return this->exprs_
.size(); }
1757 typedef Expression_pointers::const_iterator const_iterator
;
1761 { return this->exprs_
.begin(); }
1765 { return this->exprs_
.end(); }
1770 { return TRAVERSE_SKIP_COMPONENTS
; }
1773 statement(Block
*, size_t*, Statement
*)
1774 { return TRAVERSE_SKIP_COMPONENTS
; }
1777 expression(Expression
**);
1780 // A list of pointers to expressions with side-effects.
1781 Expression_pointers exprs_
;
1784 // If an expression must be evaluated in order, put it on the list.
1787 Find_eval_ordering::expression(Expression
** expression_pointer
)
1789 // We have to look at subexpressions before this one.
1790 if ((*expression_pointer
)->traverse_subexpressions(this) == TRAVERSE_EXIT
)
1791 return TRAVERSE_EXIT
;
1792 if ((*expression_pointer
)->must_eval_in_order())
1793 this->exprs_
.push_back(expression_pointer
);
1794 return TRAVERSE_SKIP_COMPONENTS
;
1797 // A traversal class for ordering evaluations.
1799 class Order_eval
: public Traverse
1803 : Traverse(traverse_variables
1804 | traverse_statements
)
1808 variable(Named_object
*);
1811 statement(Block
*, size_t*, Statement
*);
1814 // Implement the order of evaluation rules for a statement.
1817 Order_eval::statement(Block
* block
, size_t* pindex
, Statement
* s
)
1819 // FIXME: This approach doesn't work for switch statements, because
1820 // we add the new statements before the whole switch when we need to
1821 // instead add them just before the switch expression. The right
1822 // fix is probably to lower switch statements with nonconstant cases
1823 // to a series of conditionals.
1824 if (s
->switch_statement() != NULL
)
1825 return TRAVERSE_CONTINUE
;
1827 Find_eval_ordering find_eval_ordering
;
1829 // If S is a variable declaration, then ordinary traversal won't do
1830 // anything. We want to explicitly traverse the initialization
1831 // expression if there is one.
1832 Variable_declaration_statement
* vds
= s
->variable_declaration_statement();
1833 Expression
* init
= NULL
;
1834 Expression
* orig_init
= NULL
;
1836 s
->traverse_contents(&find_eval_ordering
);
1839 init
= vds
->var()->var_value()->init();
1841 return TRAVERSE_CONTINUE
;
1844 // It might seem that this could be
1845 // init->traverse_subexpressions. Unfortunately that can fail
1848 // newvar, err := call(arg())
1849 // Here newvar will have an init of call result 0 of
1850 // call(arg()). If we only traverse subexpressions, we will
1851 // only find arg(), and we won't bother to move anything out.
1852 // Then we get to the assignment to err, we will traverse the
1853 // whole statement, and this time we will find both call() and
1854 // arg(), and so we will move them out. This will cause them to
1855 // be put into temporary variables before the assignment to err
1856 // but after the declaration of newvar. To avoid that problem,
1857 // we traverse the entire expression here.
1858 Expression::traverse(&init
, &find_eval_ordering
);
1861 if (find_eval_ordering
.size() <= 1)
1863 // If there is only one expression with a side-effect, we can
1864 // leave it in place.
1865 return TRAVERSE_CONTINUE
;
1868 bool is_thunk
= s
->thunk_statement() != NULL
;
1869 for (Find_eval_ordering::const_iterator p
= find_eval_ordering
.begin();
1870 p
!= find_eval_ordering
.end();
1873 Expression
** pexpr
= *p
;
1875 // If the last expression is a send or receive expression, we
1876 // may be ignoring the value; we don't want to evaluate it
1878 if (p
+ 1 == find_eval_ordering
.end()
1879 && ((*pexpr
)->classification() == Expression::EXPRESSION_SEND
1880 || (*pexpr
)->classification() == Expression::EXPRESSION_RECEIVE
))
1883 // The last expression in a thunk will be the call passed to go
1884 // or defer, which we must not evaluate early.
1885 if (is_thunk
&& p
+ 1 == find_eval_ordering
.end())
1888 source_location loc
= (*pexpr
)->location();
1889 Temporary_statement
* ts
= Statement::make_temporary(NULL
, *pexpr
, loc
);
1890 block
->insert_statement_before(*pindex
, ts
);
1893 *pexpr
= Expression::make_temporary_reference(ts
, loc
);
1896 if (init
!= orig_init
)
1897 vds
->var()->var_value()->set_init(init
);
1899 return TRAVERSE_CONTINUE
;
1902 // Implement the order of evaluation rules for the initializer of a
1906 Order_eval::variable(Named_object
* no
)
1908 if (no
->is_result_variable())
1909 return TRAVERSE_CONTINUE
;
1910 Variable
* var
= no
->var_value();
1911 Expression
* init
= var
->init();
1912 if (!var
->is_global() || init
== NULL
)
1913 return TRAVERSE_CONTINUE
;
1915 Find_eval_ordering find_eval_ordering
;
1916 init
->traverse_subexpressions(&find_eval_ordering
);
1918 if (find_eval_ordering
.size() <= 1)
1920 // If there is only one expression with a side-effect, we can
1921 // leave it in place.
1922 return TRAVERSE_SKIP_COMPONENTS
;
1925 for (Find_eval_ordering::const_iterator p
= find_eval_ordering
.begin();
1926 p
!= find_eval_ordering
.end();
1929 Expression
** pexpr
= *p
;
1930 source_location loc
= (*pexpr
)->location();
1931 Temporary_statement
* ts
= Statement::make_temporary(NULL
, *pexpr
, loc
);
1932 var
->add_preinit_statement(ts
);
1933 *pexpr
= Expression::make_temporary_reference(ts
, loc
);
1936 return TRAVERSE_SKIP_COMPONENTS
;
1939 // Use temporary variables to implement the order of evaluation rules.
1942 Gogo::order_evaluations()
1944 Order_eval order_eval
;
1945 this->traverse(&order_eval
);
1948 // Traversal to convert calls to the predeclared recover function to
1949 // pass in an argument indicating whether it can recover from a panic
1952 class Convert_recover
: public Traverse
1955 Convert_recover(Named_object
* arg
)
1956 : Traverse(traverse_expressions
),
1962 expression(Expression
**);
1965 // The argument to pass to the function.
1969 // Convert calls to recover.
1972 Convert_recover::expression(Expression
** pp
)
1974 Call_expression
* ce
= (*pp
)->call_expression();
1975 if (ce
!= NULL
&& ce
->is_recover_call())
1976 ce
->set_recover_arg(Expression::make_var_reference(this->arg_
,
1978 return TRAVERSE_CONTINUE
;
1981 // Traversal for build_recover_thunks.
1983 class Build_recover_thunks
: public Traverse
1986 Build_recover_thunks(Gogo
* gogo
)
1987 : Traverse(traverse_functions
),
1992 function(Named_object
*);
1996 can_recover_arg(source_location
);
2002 // If this function calls recover, turn it into a thunk.
2005 Build_recover_thunks::function(Named_object
* orig_no
)
2007 Function
* orig_func
= orig_no
->func_value();
2008 if (!orig_func
->calls_recover()
2009 || orig_func
->is_recover_thunk()
2010 || orig_func
->has_recover_thunk())
2011 return TRAVERSE_CONTINUE
;
2013 Gogo
* gogo
= this->gogo_
;
2014 source_location location
= orig_func
->location();
2019 Function_type
* orig_fntype
= orig_func
->type();
2020 Typed_identifier_list
* new_params
= new Typed_identifier_list();
2021 std::string receiver_name
;
2022 if (orig_fntype
->is_method())
2024 const Typed_identifier
* receiver
= orig_fntype
->receiver();
2025 snprintf(buf
, sizeof buf
, "rt.%u", count
);
2027 receiver_name
= buf
;
2028 new_params
->push_back(Typed_identifier(receiver_name
, receiver
->type(),
2029 receiver
->location()));
2031 const Typed_identifier_list
* orig_params
= orig_fntype
->parameters();
2032 if (orig_params
!= NULL
&& !orig_params
->empty())
2034 for (Typed_identifier_list::const_iterator p
= orig_params
->begin();
2035 p
!= orig_params
->end();
2038 snprintf(buf
, sizeof buf
, "pt.%u", count
);
2040 new_params
->push_back(Typed_identifier(buf
, p
->type(),
2044 snprintf(buf
, sizeof buf
, "pr.%u", count
);
2046 std::string can_recover_name
= buf
;
2047 new_params
->push_back(Typed_identifier(can_recover_name
,
2048 Type::make_boolean_type(),
2049 orig_fntype
->location()));
2051 const Typed_identifier_list
* orig_results
= orig_fntype
->results();
2052 Typed_identifier_list
* new_results
;
2053 if (orig_results
== NULL
|| orig_results
->empty())
2057 new_results
= new Typed_identifier_list();
2058 for (Typed_identifier_list::const_iterator p
= orig_results
->begin();
2059 p
!= orig_results
->end();
2061 new_results
->push_back(*p
);
2064 Function_type
*new_fntype
= Type::make_function_type(NULL
, new_params
,
2066 orig_fntype
->location());
2067 if (orig_fntype
->is_varargs())
2068 new_fntype
->set_is_varargs();
2070 std::string name
= orig_no
->name() + "$recover";
2071 Named_object
*new_no
= gogo
->start_function(name
, new_fntype
, false,
2073 Function
*new_func
= new_no
->func_value();
2074 if (orig_func
->enclosing() != NULL
)
2075 new_func
->set_enclosing(orig_func
->enclosing());
2077 // We build the code for the original function attached to the new
2078 // function, and then swap the original and new function bodies.
2079 // This means that existing references to the original function will
2080 // then refer to the new function. That makes this code a little
2081 // confusing, in that the reference to NEW_NO really refers to the
2082 // other function, not the one we are building.
2084 Expression
* closure
= NULL
;
2085 if (orig_func
->needs_closure())
2087 Named_object
* orig_closure_no
= orig_func
->closure_var();
2088 Variable
* orig_closure_var
= orig_closure_no
->var_value();
2089 Variable
* new_var
= new Variable(orig_closure_var
->type(), NULL
, false,
2090 true, false, location
);
2091 snprintf(buf
, sizeof buf
, "closure.%u", count
);
2093 Named_object
* new_closure_no
= Named_object::make_variable(buf
, NULL
,
2095 new_func
->set_closure_var(new_closure_no
);
2096 closure
= Expression::make_var_reference(new_closure_no
, location
);
2099 Expression
* fn
= Expression::make_func_reference(new_no
, closure
, location
);
2101 Expression_list
* args
= new Expression_list();
2102 if (new_params
!= NULL
)
2104 // Note that we skip the last parameter, which is the boolean
2105 // indicating whether recover can succed.
2106 for (Typed_identifier_list::const_iterator p
= new_params
->begin();
2107 p
+ 1 != new_params
->end();
2110 Named_object
* p_no
= gogo
->lookup(p
->name(), NULL
);
2111 gcc_assert(p_no
!= NULL
2112 && p_no
->is_variable()
2113 && p_no
->var_value()->is_parameter());
2114 args
->push_back(Expression::make_var_reference(p_no
, location
));
2117 args
->push_back(this->can_recover_arg(location
));
2119 Expression
* call
= Expression::make_call(fn
, args
, false, location
);
2122 if (orig_fntype
->results() == NULL
|| orig_fntype
->results()->empty())
2123 s
= Statement::make_statement(call
);
2126 Expression_list
* vals
= new Expression_list();
2127 vals
->push_back(call
);
2128 s
= Statement::make_return_statement(new_func
->type()->results(),
2131 s
->determine_types();
2132 gogo
->add_statement(s
);
2134 gogo
->finish_function(location
);
2136 // Swap the function bodies and types.
2137 new_func
->swap_for_recover(orig_func
);
2138 orig_func
->set_is_recover_thunk();
2139 new_func
->set_calls_recover();
2140 new_func
->set_has_recover_thunk();
2142 Bindings
* orig_bindings
= orig_func
->block()->bindings();
2143 Bindings
* new_bindings
= new_func
->block()->bindings();
2144 if (orig_fntype
->is_method())
2146 // We changed the receiver to be a regular parameter. We have
2147 // to update the binding accordingly in both functions.
2148 Named_object
* orig_rec_no
= orig_bindings
->lookup_local(receiver_name
);
2149 gcc_assert(orig_rec_no
!= NULL
2150 && orig_rec_no
->is_variable()
2151 && !orig_rec_no
->var_value()->is_receiver());
2152 orig_rec_no
->var_value()->set_is_receiver();
2154 const std::string
& new_receiver_name(orig_fntype
->receiver()->name());
2155 Named_object
* new_rec_no
= new_bindings
->lookup_local(new_receiver_name
);
2156 gcc_assert(new_rec_no
!= NULL
2157 && new_rec_no
->is_variable()
2158 && new_rec_no
->var_value()->is_receiver());
2159 new_rec_no
->var_value()->set_is_not_receiver();
2162 // Because we flipped blocks but not types, the can_recover
2163 // parameter appears in the (now) old bindings as a parameter.
2164 // Change it to a local variable, whereupon it will be discarded.
2165 Named_object
* can_recover_no
= orig_bindings
->lookup_local(can_recover_name
);
2166 gcc_assert(can_recover_no
!= NULL
2167 && can_recover_no
->is_variable()
2168 && can_recover_no
->var_value()->is_parameter());
2169 orig_bindings
->remove_binding(can_recover_no
);
2171 // Add the can_recover argument to the (now) new bindings, and
2172 // attach it to any recover statements.
2173 Variable
* can_recover_var
= new Variable(Type::make_boolean_type(), NULL
,
2174 false, true, false, location
);
2175 can_recover_no
= new_bindings
->add_variable(can_recover_name
, NULL
,
2177 Convert_recover
convert_recover(can_recover_no
);
2178 new_func
->traverse(&convert_recover
);
2180 return TRAVERSE_CONTINUE
;
2183 // Return the expression to pass for the .can_recover parameter to the
2184 // new function. This indicates whether a call to recover may return
2185 // non-nil. The expression is
2186 // __go_can_recover(__builtin_return_address()).
2189 Build_recover_thunks::can_recover_arg(source_location location
)
2191 static Named_object
* builtin_return_address
;
2192 if (builtin_return_address
== NULL
)
2194 const source_location bloc
= BUILTINS_LOCATION
;
2196 Typed_identifier_list
* param_types
= new Typed_identifier_list();
2197 Type
* uint_type
= Type::lookup_integer_type("uint");
2198 param_types
->push_back(Typed_identifier("l", uint_type
, bloc
));
2200 Typed_identifier_list
* return_types
= new Typed_identifier_list();
2201 Type
* voidptr_type
= Type::make_pointer_type(Type::make_void_type());
2202 return_types
->push_back(Typed_identifier("", voidptr_type
, bloc
));
2204 Function_type
* fntype
= Type::make_function_type(NULL
, param_types
,
2205 return_types
, bloc
);
2206 builtin_return_address
=
2207 Named_object::make_function_declaration("__builtin_return_address",
2208 NULL
, fntype
, bloc
);
2209 const char* n
= "__builtin_return_address";
2210 builtin_return_address
->func_declaration_value()->set_asm_name(n
);
2213 static Named_object
* can_recover
;
2214 if (can_recover
== NULL
)
2216 const source_location bloc
= BUILTINS_LOCATION
;
2217 Typed_identifier_list
* param_types
= new Typed_identifier_list();
2218 Type
* voidptr_type
= Type::make_pointer_type(Type::make_void_type());
2219 param_types
->push_back(Typed_identifier("a", voidptr_type
, bloc
));
2220 Type
* boolean_type
= Type::make_boolean_type();
2221 Typed_identifier_list
* results
= new Typed_identifier_list();
2222 results
->push_back(Typed_identifier("", boolean_type
, bloc
));
2223 Function_type
* fntype
= Type::make_function_type(NULL
, param_types
,
2225 can_recover
= Named_object::make_function_declaration("__go_can_recover",
2228 can_recover
->func_declaration_value()->set_asm_name("__go_can_recover");
2231 Expression
* fn
= Expression::make_func_reference(builtin_return_address
,
2235 mpz_init_set_ui(zval
, 0UL);
2236 Expression
* zexpr
= Expression::make_integer(&zval
, NULL
, location
);
2238 Expression_list
*args
= new Expression_list();
2239 args
->push_back(zexpr
);
2241 Expression
* call
= Expression::make_call(fn
, args
, false, location
);
2243 args
= new Expression_list();
2244 args
->push_back(call
);
2246 fn
= Expression::make_func_reference(can_recover
, NULL
, location
);
2247 return Expression::make_call(fn
, args
, false, location
);
2250 // Build thunks for functions which call recover. We build a new
2251 // function with an extra parameter, which is whether a call to
2252 // recover can succeed. We then move the body of this function to
2253 // that one. We then turn this function into a thunk which calls the
2254 // new one, passing the value of
2255 // __go_can_recover(__builtin_return_address()). The function will be
2256 // marked as not splitting the stack. This will cooperate with the
2257 // implementation of defer to make recover do the right thing.
2260 Gogo::build_recover_thunks()
2262 Build_recover_thunks
build_recover_thunks(this);
2263 this->traverse(&build_recover_thunks
);
2266 // Look for named types to see whether we need to create an interface
2269 class Build_method_tables
: public Traverse
2272 Build_method_tables(Gogo
* gogo
,
2273 const std::vector
<Interface_type
*>& interfaces
)
2274 : Traverse(traverse_types
),
2275 gogo_(gogo
), interfaces_(interfaces
)
2284 // A list of locally defined interfaces which have hidden methods.
2285 const std::vector
<Interface_type
*>& interfaces_
;
2288 // Build all required interface method tables for types. We need to
2289 // ensure that we have an interface method table for every interface
2290 // which has a hidden method, for every named type which implements
2291 // that interface. Normally we can just build interface method tables
2292 // as we need them. However, in some cases we can require an
2293 // interface method table for an interface defined in a different
2294 // package for a type defined in that package. If that interface and
2295 // type both use a hidden method, that is OK. However, we will not be
2296 // able to build that interface method table when we need it, because
2297 // the type's hidden method will be static. So we have to build it
2298 // here, and just refer it from other packages as needed.
2301 Gogo::build_interface_method_tables()
2303 std::vector
<Interface_type
*> hidden_interfaces
;
2304 hidden_interfaces
.reserve(this->interface_types_
.size());
2305 for (std::vector
<Interface_type
*>::const_iterator pi
=
2306 this->interface_types_
.begin();
2307 pi
!= this->interface_types_
.end();
2310 const Typed_identifier_list
* methods
= (*pi
)->methods();
2311 if (methods
== NULL
)
2313 for (Typed_identifier_list::const_iterator pm
= methods
->begin();
2314 pm
!= methods
->end();
2317 if (Gogo::is_hidden_name(pm
->name()))
2319 hidden_interfaces
.push_back(*pi
);
2325 if (!hidden_interfaces
.empty())
2327 // Now traverse the tree looking for all named types.
2328 Build_method_tables
bmt(this, hidden_interfaces
);
2329 this->traverse(&bmt
);
2332 // We no longer need the list of interfaces.
2334 this->interface_types_
.clear();
2337 // This is called for each type. For a named type, for each of the
2338 // interfaces with hidden methods that it implements, create the
2342 Build_method_tables::type(Type
* type
)
2344 Named_type
* nt
= type
->named_type();
2347 for (std::vector
<Interface_type
*>::const_iterator p
=
2348 this->interfaces_
.begin();
2349 p
!= this->interfaces_
.end();
2352 // We ask whether a pointer to the named type implements the
2353 // interface, because a pointer can implement more methods
2355 if ((*p
)->implements_interface(Type::make_pointer_type(nt
), NULL
))
2357 nt
->interface_method_table(this->gogo_
, *p
, false);
2358 nt
->interface_method_table(this->gogo_
, *p
, true);
2362 return TRAVERSE_CONTINUE
;
2365 // Traversal class used to check for return statements.
2367 class Check_return_statements_traverse
: public Traverse
2370 Check_return_statements_traverse()
2371 : Traverse(traverse_functions
)
2375 function(Named_object
*);
2378 // Check that a function has a return statement if it needs one.
2381 Check_return_statements_traverse::function(Named_object
* no
)
2383 Function
* func
= no
->func_value();
2384 const Function_type
* fntype
= func
->type();
2385 const Typed_identifier_list
* results
= fntype
->results();
2387 // We only need a return statement if there is a return value.
2388 if (results
== NULL
|| results
->empty())
2389 return TRAVERSE_CONTINUE
;
2391 if (func
->block()->may_fall_through())
2392 error_at(func
->location(), "control reaches end of non-void function");
2394 return TRAVERSE_CONTINUE
;
2397 // Check return statements.
2400 Gogo::check_return_statements()
2402 Check_return_statements_traverse traverse
;
2403 this->traverse(&traverse
);
2406 // Get the unique prefix to use before all exported symbols. This
2407 // must be unique across the entire link.
2410 Gogo::unique_prefix() const
2412 gcc_assert(!this->unique_prefix_
.empty());
2413 return this->unique_prefix_
;
2416 // Set the unique prefix to use before all exported symbols. This
2417 // comes from the command line option -fgo-prefix=XXX.
2420 Gogo::set_unique_prefix(const std::string
& arg
)
2422 gcc_assert(this->unique_prefix_
.empty());
2423 this->unique_prefix_
= arg
;
2426 // Work out the package priority. It is one more than the maximum
2427 // priority of an imported package.
2430 Gogo::package_priority() const
2433 for (Packages::const_iterator p
= this->packages_
.begin();
2434 p
!= this->packages_
.end();
2436 if (p
->second
->priority() > priority
)
2437 priority
= p
->second
->priority();
2438 return priority
+ 1;
2441 // Export identifiers as requested.
2446 // For now we always stream to a section. Later we may want to
2447 // support streaming to a separate file.
2448 Stream_to_section stream
;
2450 Export
exp(&stream
);
2451 exp
.register_builtin_types(this);
2452 exp
.export_globals(this->package_name(),
2453 this->unique_prefix(),
2454 this->package_priority(),
2455 (this->need_init_fn_
&& this->package_name() != "main"
2456 ? this->get_init_fn_name()
2458 this->imported_init_fns_
,
2459 this->package_
->bindings());
2464 Function::Function(Function_type
* type
, Function
* enclosing
, Block
* block
,
2465 source_location location
)
2466 : type_(type
), enclosing_(enclosing
), named_results_(NULL
),
2467 closure_var_(NULL
), block_(block
), location_(location
), fndecl_(NULL
),
2468 defer_stack_(NULL
), calls_recover_(false), is_recover_thunk_(false),
2469 has_recover_thunk_(false)
2473 // Create the named result variables.
2476 Function::create_named_result_variables(Gogo
* gogo
)
2478 const Typed_identifier_list
* results
= this->type_
->results();
2481 || results
->front().name().empty())
2484 this->named_results_
= new Named_results();
2485 this->named_results_
->reserve(results
->size());
2487 Block
* block
= this->block_
;
2489 for (Typed_identifier_list::const_iterator p
= results
->begin();
2490 p
!= results
->end();
2493 std::string name
= p
->name();
2494 if (Gogo::is_sink_name(name
))
2496 static int unnamed_result_counter
;
2498 snprintf(buf
, sizeof buf
, "_$%d", unnamed_result_counter
);
2499 ++unnamed_result_counter
;
2500 name
= gogo
->pack_hidden_name(buf
, false);
2502 Result_variable
* result
= new Result_variable(p
->type(), this, index
);
2503 Named_object
* no
= block
->bindings()->add_result_variable(name
, result
);
2504 this->named_results_
->push_back(no
);
2508 // Return the closure variable, creating it if necessary.
2511 Function::closure_var()
2513 if (this->closure_var_
== NULL
)
2515 // We don't know the type of the variable yet. We add fields as
2517 source_location loc
= this->type_
->location();
2518 Struct_field_list
* sfl
= new Struct_field_list
;
2519 Type
* struct_type
= Type::make_struct_type(sfl
, loc
);
2520 Variable
* var
= new Variable(Type::make_pointer_type(struct_type
),
2521 NULL
, false, true, false, loc
);
2522 this->closure_var_
= Named_object::make_variable("closure", NULL
, var
);
2523 // Note that the new variable is not in any binding contour.
2525 return this->closure_var_
;
2528 // Set the type of the closure variable.
2531 Function::set_closure_type()
2533 if (this->closure_var_
== NULL
)
2535 Named_object
* closure
= this->closure_var_
;
2536 Struct_type
* st
= closure
->var_value()->type()->deref()->struct_type();
2537 unsigned int index
= 0;
2538 for (Closure_fields::const_iterator p
= this->closure_fields_
.begin();
2539 p
!= this->closure_fields_
.end();
2542 Named_object
* no
= p
->first
;
2544 snprintf(buf
, sizeof buf
, "%u", index
);
2545 std::string n
= no
->name() + buf
;
2547 if (no
->is_variable())
2548 var_type
= no
->var_value()->type();
2550 var_type
= no
->result_var_value()->type();
2551 Type
* field_type
= Type::make_pointer_type(var_type
);
2552 st
->push_field(Struct_field(Typed_identifier(n
, field_type
, p
->second
)));
2556 // Return whether this function is a method.
2559 Function::is_method() const
2561 return this->type_
->is_method();
2564 // Add a label definition.
2567 Function::add_label_definition(const std::string
& label_name
,
2568 source_location location
)
2570 Label
* lnull
= NULL
;
2571 std::pair
<Labels::iterator
, bool> ins
=
2572 this->labels_
.insert(std::make_pair(label_name
, lnull
));
2575 // This is a new label.
2576 Label
* label
= new Label(label_name
);
2577 label
->define(location
);
2578 ins
.first
->second
= label
;
2583 // The label was already in the hash table.
2584 Label
* label
= ins
.first
->second
;
2585 if (!label
->is_defined())
2587 label
->define(location
);
2592 error_at(location
, "redefinition of label %qs",
2593 Gogo::message_name(label_name
).c_str());
2594 inform(label
->location(), "previous definition of %qs was here",
2595 Gogo::message_name(label_name
).c_str());
2596 return new Label(label_name
);
2601 // Add a reference to a label.
2604 Function::add_label_reference(const std::string
& label_name
)
2606 Label
* lnull
= NULL
;
2607 std::pair
<Labels::iterator
, bool> ins
=
2608 this->labels_
.insert(std::make_pair(label_name
, lnull
));
2611 // The label was already in the hash table.
2612 return ins
.first
->second
;
2616 gcc_assert(ins
.first
->second
== NULL
);
2617 Label
* label
= new Label(label_name
);
2618 ins
.first
->second
= label
;
2623 // Swap one function with another. This is used when building the
2624 // thunk we use to call a function which calls recover. It may not
2625 // work for any other case.
2628 Function::swap_for_recover(Function
*x
)
2630 gcc_assert(this->enclosing_
== x
->enclosing_
);
2631 std::swap(this->named_results_
, x
->named_results_
);
2632 std::swap(this->closure_var_
, x
->closure_var_
);
2633 std::swap(this->block_
, x
->block_
);
2634 gcc_assert(this->location_
== x
->location_
);
2635 gcc_assert(this->fndecl_
== NULL
&& x
->fndecl_
== NULL
);
2636 gcc_assert(this->defer_stack_
== NULL
&& x
->defer_stack_
== NULL
);
2639 // Traverse the tree.
2642 Function::traverse(Traverse
* traverse
)
2644 unsigned int traverse_mask
= traverse
->traverse_mask();
2647 & (Traverse::traverse_types
| Traverse::traverse_expressions
))
2650 if (Type::traverse(this->type_
, traverse
) == TRAVERSE_EXIT
)
2651 return TRAVERSE_EXIT
;
2654 // FIXME: We should check traverse_functions here if nested
2655 // functions are stored in block bindings.
2656 if (this->block_
!= NULL
2658 & (Traverse::traverse_variables
2659 | Traverse::traverse_constants
2660 | Traverse::traverse_blocks
2661 | Traverse::traverse_statements
2662 | Traverse::traverse_expressions
2663 | Traverse::traverse_types
)) != 0)
2665 if (this->block_
->traverse(traverse
) == TRAVERSE_EXIT
)
2666 return TRAVERSE_EXIT
;
2669 return TRAVERSE_CONTINUE
;
2672 // Work out types for unspecified variables and constants.
2675 Function::determine_types()
2677 if (this->block_
!= NULL
)
2678 this->block_
->determine_types();
2681 // Export the function.
2684 Function::export_func(Export
* exp
, const std::string
& name
) const
2686 Function::export_func_with_type(exp
, name
, this->type_
);
2689 // Export a function with a type.
2692 Function::export_func_with_type(Export
* exp
, const std::string
& name
,
2693 const Function_type
* fntype
)
2695 exp
->write_c_string("func ");
2697 if (fntype
->is_method())
2699 exp
->write_c_string("(");
2700 exp
->write_type(fntype
->receiver()->type());
2701 exp
->write_c_string(") ");
2704 exp
->write_string(name
);
2706 exp
->write_c_string(" (");
2707 const Typed_identifier_list
* parameters
= fntype
->parameters();
2708 if (parameters
!= NULL
)
2710 bool is_varargs
= fntype
->is_varargs();
2712 for (Typed_identifier_list::const_iterator p
= parameters
->begin();
2713 p
!= parameters
->end();
2719 exp
->write_c_string(", ");
2720 if (!is_varargs
|| p
+ 1 != parameters
->end())
2721 exp
->write_type(p
->type());
2724 exp
->write_c_string("...");
2725 exp
->write_type(p
->type()->array_type()->element_type());
2729 exp
->write_c_string(")");
2731 const Typed_identifier_list
* results
= fntype
->results();
2732 if (results
!= NULL
)
2734 if (results
->size() == 1)
2736 exp
->write_c_string(" ");
2737 exp
->write_type(results
->begin()->type());
2741 exp
->write_c_string(" (");
2743 for (Typed_identifier_list::const_iterator p
= results
->begin();
2744 p
!= results
->end();
2750 exp
->write_c_string(", ");
2751 exp
->write_type(p
->type());
2753 exp
->write_c_string(")");
2756 exp
->write_c_string(";\n");
2759 // Import a function.
2762 Function::import_func(Import
* imp
, std::string
* pname
,
2763 Typed_identifier
** preceiver
,
2764 Typed_identifier_list
** pparameters
,
2765 Typed_identifier_list
** presults
,
2768 imp
->require_c_string("func ");
2771 if (imp
->peek_char() == '(')
2773 imp
->require_c_string("(");
2774 Type
* rtype
= imp
->read_type();
2775 *preceiver
= new Typed_identifier(Import::import_marker
, rtype
,
2777 imp
->require_c_string(") ");
2780 *pname
= imp
->read_identifier();
2782 Typed_identifier_list
* parameters
;
2783 *is_varargs
= false;
2784 imp
->require_c_string(" (");
2785 if (imp
->peek_char() == ')')
2789 parameters
= new Typed_identifier_list();
2792 if (imp
->match_c_string("..."))
2798 Type
* ptype
= imp
->read_type();
2800 ptype
= Type::make_array_type(ptype
, NULL
);
2801 parameters
->push_back(Typed_identifier(Import::import_marker
,
2802 ptype
, imp
->location()));
2803 if (imp
->peek_char() != ',')
2805 gcc_assert(!*is_varargs
);
2806 imp
->require_c_string(", ");
2809 imp
->require_c_string(")");
2810 *pparameters
= parameters
;
2812 Typed_identifier_list
* results
;
2813 if (imp
->peek_char() != ' ')
2817 results
= new Typed_identifier_list();
2818 imp
->require_c_string(" ");
2819 if (imp
->peek_char() != '(')
2821 Type
* rtype
= imp
->read_type();
2822 results
->push_back(Typed_identifier(Import::import_marker
, rtype
,
2827 imp
->require_c_string("(");
2830 Type
* rtype
= imp
->read_type();
2831 results
->push_back(Typed_identifier(Import::import_marker
,
2832 rtype
, imp
->location()));
2833 if (imp
->peek_char() != ',')
2835 imp
->require_c_string(", ");
2837 imp
->require_c_string(")");
2840 imp
->require_c_string(";\n");
2841 *presults
= results
;
2846 Block::Block(Block
* enclosing
, source_location location
)
2847 : enclosing_(enclosing
), statements_(),
2848 bindings_(new Bindings(enclosing
== NULL
2850 : enclosing
->bindings())),
2851 start_location_(location
),
2852 end_location_(UNKNOWN_LOCATION
)
2856 // Add a statement to a block.
2859 Block::add_statement(Statement
* statement
)
2861 this->statements_
.push_back(statement
);
2864 // Add a statement to the front of a block. This is slow but is only
2865 // used for reference counts of parameters.
2868 Block::add_statement_at_front(Statement
* statement
)
2870 this->statements_
.insert(this->statements_
.begin(), statement
);
2873 // Replace a statement in a block.
2876 Block::replace_statement(size_t index
, Statement
* s
)
2878 gcc_assert(index
< this->statements_
.size());
2879 this->statements_
[index
] = s
;
2882 // Add a statement before another statement.
2885 Block::insert_statement_before(size_t index
, Statement
* s
)
2887 gcc_assert(index
< this->statements_
.size());
2888 this->statements_
.insert(this->statements_
.begin() + index
, s
);
2891 // Add a statement after another statement.
2894 Block::insert_statement_after(size_t index
, Statement
* s
)
2896 gcc_assert(index
< this->statements_
.size());
2897 this->statements_
.insert(this->statements_
.begin() + index
+ 1, s
);
2900 // Traverse the tree.
2903 Block::traverse(Traverse
* traverse
)
2905 unsigned int traverse_mask
= traverse
->traverse_mask();
2907 if ((traverse_mask
& Traverse::traverse_blocks
) != 0)
2909 int t
= traverse
->block(this);
2910 if (t
== TRAVERSE_EXIT
)
2911 return TRAVERSE_EXIT
;
2912 else if (t
== TRAVERSE_SKIP_COMPONENTS
)
2913 return TRAVERSE_CONTINUE
;
2917 & (Traverse::traverse_variables
2918 | Traverse::traverse_constants
2919 | Traverse::traverse_expressions
2920 | Traverse::traverse_types
)) != 0)
2922 for (Bindings::const_definitions_iterator pb
=
2923 this->bindings_
->begin_definitions();
2924 pb
!= this->bindings_
->end_definitions();
2927 switch ((*pb
)->classification())
2929 case Named_object::NAMED_OBJECT_CONST
:
2930 if ((traverse_mask
& Traverse::traverse_constants
) != 0)
2932 if (traverse
->constant(*pb
, false) == TRAVERSE_EXIT
)
2933 return TRAVERSE_EXIT
;
2935 if ((traverse_mask
& Traverse::traverse_types
) != 0
2936 || (traverse_mask
& Traverse::traverse_expressions
) != 0)
2938 Type
* t
= (*pb
)->const_value()->type();
2940 && Type::traverse(t
, traverse
) == TRAVERSE_EXIT
)
2941 return TRAVERSE_EXIT
;
2943 if ((traverse_mask
& Traverse::traverse_expressions
) != 0
2944 || (traverse_mask
& Traverse::traverse_types
) != 0)
2946 if ((*pb
)->const_value()->traverse_expression(traverse
)
2948 return TRAVERSE_EXIT
;
2952 case Named_object::NAMED_OBJECT_VAR
:
2953 case Named_object::NAMED_OBJECT_RESULT_VAR
:
2954 if ((traverse_mask
& Traverse::traverse_variables
) != 0)
2956 if (traverse
->variable(*pb
) == TRAVERSE_EXIT
)
2957 return TRAVERSE_EXIT
;
2959 if (((traverse_mask
& Traverse::traverse_types
) != 0
2960 || (traverse_mask
& Traverse::traverse_expressions
) != 0)
2961 && ((*pb
)->is_result_variable()
2962 || (*pb
)->var_value()->has_type()))
2964 Type
* t
= ((*pb
)->is_variable()
2965 ? (*pb
)->var_value()->type()
2966 : (*pb
)->result_var_value()->type());
2968 && Type::traverse(t
, traverse
) == TRAVERSE_EXIT
)
2969 return TRAVERSE_EXIT
;
2971 if ((*pb
)->is_variable()
2972 && ((traverse_mask
& Traverse::traverse_expressions
) != 0
2973 || (traverse_mask
& Traverse::traverse_types
) != 0))
2975 if ((*pb
)->var_value()->traverse_expression(traverse
)
2977 return TRAVERSE_EXIT
;
2981 case Named_object::NAMED_OBJECT_FUNC
:
2982 case Named_object::NAMED_OBJECT_FUNC_DECLARATION
:
2983 // FIXME: Where will nested functions be found?
2986 case Named_object::NAMED_OBJECT_TYPE
:
2987 if ((traverse_mask
& Traverse::traverse_types
) != 0
2988 || (traverse_mask
& Traverse::traverse_expressions
) != 0)
2990 if (Type::traverse((*pb
)->type_value(), traverse
)
2992 return TRAVERSE_EXIT
;
2996 case Named_object::NAMED_OBJECT_TYPE_DECLARATION
:
2997 case Named_object::NAMED_OBJECT_UNKNOWN
:
3000 case Named_object::NAMED_OBJECT_PACKAGE
:
3001 case Named_object::NAMED_OBJECT_SINK
:
3010 // No point in checking traverse_mask here--if we got here we always
3011 // want to walk the statements. The traversal can insert new
3012 // statements before or after the current statement. Inserting
3013 // statements before the current statement requires updating I via
3014 // the pointer; those statements will not be traversed. Any new
3015 // statements inserted after the current statement will be traversed
3017 for (size_t i
= 0; i
< this->statements_
.size(); ++i
)
3019 if (this->statements_
[i
]->traverse(this, &i
, traverse
) == TRAVERSE_EXIT
)
3020 return TRAVERSE_EXIT
;
3023 return TRAVERSE_CONTINUE
;
3026 // Work out types for unspecified variables and constants.
3029 Block::determine_types()
3031 for (Bindings::const_definitions_iterator pb
=
3032 this->bindings_
->begin_definitions();
3033 pb
!= this->bindings_
->end_definitions();
3036 if ((*pb
)->is_variable())
3037 (*pb
)->var_value()->determine_type();
3038 else if ((*pb
)->is_const())
3039 (*pb
)->const_value()->determine_type();
3042 for (std::vector
<Statement
*>::const_iterator ps
= this->statements_
.begin();
3043 ps
!= this->statements_
.end();
3045 (*ps
)->determine_types();
3048 // Return true if the statements in this block may fall through.
3051 Block::may_fall_through() const
3053 if (this->statements_
.empty())
3055 return this->statements_
.back()->may_fall_through();
3060 Variable::Variable(Type
* type
, Expression
* init
, bool is_global
,
3061 bool is_parameter
, bool is_receiver
,
3062 source_location location
)
3063 : type_(type
), init_(init
), preinit_(NULL
), location_(location
),
3064 is_global_(is_global
), is_parameter_(is_parameter
),
3065 is_receiver_(is_receiver
), is_varargs_parameter_(false),
3066 is_address_taken_(false), seen_(false), init_is_lowered_(false),
3067 type_from_init_tuple_(false), type_from_range_index_(false),
3068 type_from_range_value_(false), type_from_chan_element_(false),
3069 is_type_switch_var_(false)
3071 gcc_assert(type
!= NULL
|| init
!= NULL
);
3072 gcc_assert(!is_parameter
|| init
== NULL
);
3075 // Traverse the initializer expression.
3078 Variable::traverse_expression(Traverse
* traverse
)
3080 if (this->preinit_
!= NULL
)
3082 if (this->preinit_
->traverse(traverse
) == TRAVERSE_EXIT
)
3083 return TRAVERSE_EXIT
;
3085 if (this->init_
!= NULL
)
3087 if (Expression::traverse(&this->init_
, traverse
) == TRAVERSE_EXIT
)
3088 return TRAVERSE_EXIT
;
3090 return TRAVERSE_CONTINUE
;
3093 // Lower the initialization expression after parsing is complete.
3096 Variable::lower_init_expression(Gogo
* gogo
, Named_object
* function
)
3098 if (this->init_
!= NULL
&& !this->init_is_lowered_
)
3102 // We will give an error elsewhere, this is just to prevent
3103 // an infinite loop.
3108 gogo
->lower_expression(function
, &this->init_
);
3110 this->seen_
= false;
3112 this->init_is_lowered_
= true;
3116 // Get the preinit block.
3119 Variable::preinit_block()
3121 gcc_assert(this->is_global_
);
3122 if (this->preinit_
== NULL
)
3123 this->preinit_
= new Block(NULL
, this->location());
3124 return this->preinit_
;
3127 // Add a statement to be run before the initialization expression.
3130 Variable::add_preinit_statement(Statement
* s
)
3132 Block
* b
= this->preinit_block();
3133 b
->add_statement(s
);
3134 b
->set_end_location(s
->location());
3137 // In an assignment which sets a variable to a tuple of EXPR, return
3138 // the type of the first element of the tuple.
3141 Variable::type_from_tuple(Expression
* expr
, bool report_error
) const
3143 if (expr
->map_index_expression() != NULL
)
3144 return expr
->map_index_expression()->get_map_type()->val_type();
3145 else if (expr
->receive_expression() != NULL
)
3147 Expression
* channel
= expr
->receive_expression()->channel();
3148 Type
* channel_type
= channel
->type();
3149 if (channel_type
->is_error_type())
3150 return Type::make_error_type();
3151 return channel_type
->channel_type()->element_type();
3156 error_at(this->location(), "invalid tuple definition");
3157 return Type::make_error_type();
3161 // Given EXPR used in a range clause, return either the index type or
3162 // the value type of the range, depending upon GET_INDEX_TYPE.
3165 Variable::type_from_range(Expression
* expr
, bool get_index_type
,
3166 bool report_error
) const
3168 Type
* t
= expr
->type();
3169 if (t
->array_type() != NULL
3170 || (t
->points_to() != NULL
3171 && t
->points_to()->array_type() != NULL
3172 && !t
->points_to()->is_open_array_type()))
3175 return Type::lookup_integer_type("int");
3177 return t
->deref()->array_type()->element_type();
3179 else if (t
->is_string_type())
3180 return Type::lookup_integer_type("int");
3181 else if (t
->map_type() != NULL
)
3184 return t
->map_type()->key_type();
3186 return t
->map_type()->val_type();
3188 else if (t
->channel_type() != NULL
)
3191 return t
->channel_type()->element_type();
3195 error_at(this->location(),
3196 "invalid definition of value variable for channel range");
3197 return Type::make_error_type();
3203 error_at(this->location(), "invalid type for range clause");
3204 return Type::make_error_type();
3208 // EXPR should be a channel. Return the channel's element type.
3211 Variable::type_from_chan_element(Expression
* expr
, bool report_error
) const
3213 Type
* t
= expr
->type();
3214 if (t
->channel_type() != NULL
)
3215 return t
->channel_type()->element_type();
3219 error_at(this->location(), "expected channel");
3220 return Type::make_error_type();
3224 // Return the type of the Variable. This may be called before
3225 // Variable::determine_type is called, which means that we may need to
3226 // get the type from the initializer. FIXME: If we combine lowering
3227 // with type determination, then this should be unnecessary.
3232 // A variable in a type switch with a nil case will have the wrong
3233 // type here. This gets fixed up in determine_type, below.
3234 Type
* type
= this->type_
;
3235 Expression
* init
= this->init_
;
3236 if (this->is_type_switch_var_
3237 && this->type_
->is_nil_constant_as_type())
3239 Type_guard_expression
* tge
= this->init_
->type_guard_expression();
3240 gcc_assert(tge
!= NULL
);
3247 if (this->type_
== NULL
|| !this->type_
->is_error_type())
3249 error_at(this->location_
, "variable initializer refers to itself");
3250 this->type_
= Type::make_error_type();
3259 else if (this->type_from_init_tuple_
)
3260 type
= this->type_from_tuple(init
, false);
3261 else if (this->type_from_range_index_
|| this->type_from_range_value_
)
3262 type
= this->type_from_range(init
, this->type_from_range_index_
, false);
3263 else if (this->type_from_chan_element_
)
3264 type
= this->type_from_chan_element(init
, false);
3267 gcc_assert(init
!= NULL
);
3268 type
= init
->type();
3269 gcc_assert(type
!= NULL
);
3271 // Variables should not have abstract types.
3272 if (type
->is_abstract())
3273 type
= type
->make_non_abstract_type();
3275 if (type
->is_void_type())
3276 type
= Type::make_error_type();
3279 this->seen_
= false;
3284 // Fetch the type from a const pointer, in which case it should have
3285 // been set already.
3288 Variable::type() const
3290 gcc_assert(this->type_
!= NULL
);
3294 // Set the type if necessary.
3297 Variable::determine_type()
3299 // A variable in a type switch with a nil case will have the wrong
3300 // type here. It will have an initializer which is a type guard.
3301 // We want to initialize it to the value without the type guard, and
3302 // use the type of that value as well.
3303 if (this->is_type_switch_var_
&& this->type_
->is_nil_constant_as_type())
3305 Type_guard_expression
* tge
= this->init_
->type_guard_expression();
3306 gcc_assert(tge
!= NULL
);
3308 this->init_
= tge
->expr();
3311 if (this->init_
== NULL
)
3312 gcc_assert(this->type_
!= NULL
&& !this->type_
->is_abstract());
3313 else if (this->type_from_init_tuple_
)
3315 Expression
*init
= this->init_
;
3316 init
->determine_type_no_context();
3317 this->type_
= this->type_from_tuple(init
, true);
3320 else if (this->type_from_range_index_
|| this->type_from_range_value_
)
3322 Expression
* init
= this->init_
;
3323 init
->determine_type_no_context();
3324 this->type_
= this->type_from_range(init
, this->type_from_range_index_
,
3330 // type_from_chan_element_ should have been cleared during
3332 gcc_assert(!this->type_from_chan_element_
);
3334 Type_context
context(this->type_
, false);
3335 this->init_
->determine_type(&context
);
3336 if (this->type_
== NULL
)
3338 Type
* type
= this->init_
->type();
3339 gcc_assert(type
!= NULL
);
3340 if (type
->is_abstract())
3341 type
= type
->make_non_abstract_type();
3343 if (type
->is_void_type())
3345 error_at(this->location_
, "variable has no type");
3346 type
= Type::make_error_type();
3348 else if (type
->is_nil_type())
3350 error_at(this->location_
, "variable defined to nil type");
3351 type
= Type::make_error_type();
3353 else if (type
->is_call_multiple_result_type())
3355 error_at(this->location_
,
3356 "single variable set to multiple value function call");
3357 type
= Type::make_error_type();
3365 // Export the variable
3368 Variable::export_var(Export
* exp
, const std::string
& name
) const
3370 gcc_assert(this->is_global_
);
3371 exp
->write_c_string("var ");
3372 exp
->write_string(name
);
3373 exp
->write_c_string(" ");
3374 exp
->write_type(this->type());
3375 exp
->write_c_string(";\n");
3378 // Import a variable.
3381 Variable::import_var(Import
* imp
, std::string
* pname
, Type
** ptype
)
3383 imp
->require_c_string("var ");
3384 *pname
= imp
->read_identifier();
3385 imp
->require_c_string(" ");
3386 *ptype
= imp
->read_type();
3387 imp
->require_c_string(";\n");
3390 // Class Named_constant.
3392 // Traverse the initializer expression.
3395 Named_constant::traverse_expression(Traverse
* traverse
)
3397 return Expression::traverse(&this->expr_
, traverse
);
3400 // Determine the type of the constant.
3403 Named_constant::determine_type()
3405 if (this->type_
!= NULL
)
3407 Type_context
context(this->type_
, false);
3408 this->expr_
->determine_type(&context
);
3412 // A constant may have an abstract type.
3413 Type_context
context(NULL
, true);
3414 this->expr_
->determine_type(&context
);
3415 this->type_
= this->expr_
->type();
3416 gcc_assert(this->type_
!= NULL
);
3420 // Indicate that we found and reported an error for this constant.
3423 Named_constant::set_error()
3425 this->type_
= Type::make_error_type();
3426 this->expr_
= Expression::make_error(this->location_
);
3429 // Export a constant.
3432 Named_constant::export_const(Export
* exp
, const std::string
& name
) const
3434 exp
->write_c_string("const ");
3435 exp
->write_string(name
);
3436 exp
->write_c_string(" ");
3437 if (!this->type_
->is_abstract())
3439 exp
->write_type(this->type_
);
3440 exp
->write_c_string(" ");
3442 exp
->write_c_string("= ");
3443 this->expr()->export_expression(exp
);
3444 exp
->write_c_string(";\n");
3447 // Import a constant.
3450 Named_constant::import_const(Import
* imp
, std::string
* pname
, Type
** ptype
,
3453 imp
->require_c_string("const ");
3454 *pname
= imp
->read_identifier();
3455 imp
->require_c_string(" ");
3456 if (imp
->peek_char() == '=')
3460 *ptype
= imp
->read_type();
3461 imp
->require_c_string(" ");
3463 imp
->require_c_string("= ");
3464 *pexpr
= Expression::import_expression(imp
);
3465 imp
->require_c_string(";\n");
3471 Type_declaration::add_method(const std::string
& name
, Function
* function
)
3473 Named_object
* ret
= Named_object::make_function(name
, NULL
, function
);
3474 this->methods_
.push_back(ret
);
3478 // Add a method declaration.
3481 Type_declaration::add_method_declaration(const std::string
& name
,
3482 Function_type
* type
,
3483 source_location location
)
3485 Named_object
* ret
= Named_object::make_function_declaration(name
, NULL
, type
,
3487 this->methods_
.push_back(ret
);
3491 // Return whether any methods ere defined.
3494 Type_declaration::has_methods() const
3496 return !this->methods_
.empty();
3499 // Define methods for the real type.
3502 Type_declaration::define_methods(Named_type
* nt
)
3504 for (Methods::const_iterator p
= this->methods_
.begin();
3505 p
!= this->methods_
.end();
3507 nt
->add_existing_method(*p
);
3510 // We are using the type. Return true if we should issue a warning.
3513 Type_declaration::using_type()
3515 bool ret
= !this->issued_warning_
;
3516 this->issued_warning_
= true;
3520 // Class Unknown_name.
3522 // Set the real named object.
3525 Unknown_name::set_real_named_object(Named_object
* no
)
3527 gcc_assert(this->real_named_object_
== NULL
);
3528 gcc_assert(!no
->is_unknown());
3529 this->real_named_object_
= no
;
3532 // Class Named_object.
3534 Named_object::Named_object(const std::string
& name
,
3535 const Package
* package
,
3536 Classification classification
)
3537 : name_(name
), package_(package
), classification_(classification
),
3540 if (Gogo::is_sink_name(name
))
3541 gcc_assert(classification
== NAMED_OBJECT_SINK
);
3544 // Make an unknown name. This is used by the parser. The name must
3545 // be resolved later. Unknown names are only added in the current
3549 Named_object::make_unknown_name(const std::string
& name
,
3550 source_location location
)
3552 Named_object
* named_object
= new Named_object(name
, NULL
,
3553 NAMED_OBJECT_UNKNOWN
);
3554 Unknown_name
* value
= new Unknown_name(location
);
3555 named_object
->u_
.unknown_value
= value
;
3556 return named_object
;
3562 Named_object::make_constant(const Typed_identifier
& tid
,
3563 const Package
* package
, Expression
* expr
,
3566 Named_object
* named_object
= new Named_object(tid
.name(), package
,
3567 NAMED_OBJECT_CONST
);
3568 Named_constant
* named_constant
= new Named_constant(tid
.type(), expr
,
3571 named_object
->u_
.const_value
= named_constant
;
3572 return named_object
;
3575 // Make a named type.
3578 Named_object::make_type(const std::string
& name
, const Package
* package
,
3579 Type
* type
, source_location location
)
3581 Named_object
* named_object
= new Named_object(name
, package
,
3583 Named_type
* named_type
= Type::make_named_type(named_object
, type
, location
);
3584 named_object
->u_
.type_value
= named_type
;
3585 return named_object
;
3588 // Make a type declaration.
3591 Named_object::make_type_declaration(const std::string
& name
,
3592 const Package
* package
,
3593 source_location location
)
3595 Named_object
* named_object
= new Named_object(name
, package
,
3596 NAMED_OBJECT_TYPE_DECLARATION
);
3597 Type_declaration
* type_declaration
= new Type_declaration(location
);
3598 named_object
->u_
.type_declaration
= type_declaration
;
3599 return named_object
;
3605 Named_object::make_variable(const std::string
& name
, const Package
* package
,
3608 Named_object
* named_object
= new Named_object(name
, package
,
3610 named_object
->u_
.var_value
= variable
;
3611 return named_object
;
3614 // Make a result variable.
3617 Named_object::make_result_variable(const std::string
& name
,
3618 Result_variable
* result
)
3620 Named_object
* named_object
= new Named_object(name
, NULL
,
3621 NAMED_OBJECT_RESULT_VAR
);
3622 named_object
->u_
.result_var_value
= result
;
3623 return named_object
;
3626 // Make a sink. This is used for the special blank identifier _.
3629 Named_object::make_sink()
3631 return new Named_object("_", NULL
, NAMED_OBJECT_SINK
);
3634 // Make a named function.
3637 Named_object::make_function(const std::string
& name
, const Package
* package
,
3640 Named_object
* named_object
= new Named_object(name
, package
,
3642 named_object
->u_
.func_value
= function
;
3643 return named_object
;
3646 // Make a function declaration.
3649 Named_object::make_function_declaration(const std::string
& name
,
3650 const Package
* package
,
3651 Function_type
* fntype
,
3652 source_location location
)
3654 Named_object
* named_object
= new Named_object(name
, package
,
3655 NAMED_OBJECT_FUNC_DECLARATION
);
3656 Function_declaration
*func_decl
= new Function_declaration(fntype
, location
);
3657 named_object
->u_
.func_declaration_value
= func_decl
;
3658 return named_object
;
3664 Named_object::make_package(const std::string
& alias
, Package
* package
)
3666 Named_object
* named_object
= new Named_object(alias
, NULL
,
3667 NAMED_OBJECT_PACKAGE
);
3668 named_object
->u_
.package_value
= package
;
3669 return named_object
;
3672 // Return the name to use in an error message.
3675 Named_object::message_name() const
3677 if (this->package_
== NULL
)
3678 return Gogo::message_name(this->name_
);
3679 std::string ret
= Gogo::message_name(this->package_
->name());
3681 ret
+= Gogo::message_name(this->name_
);
3685 // Set the type when a declaration is defined.
3688 Named_object::set_type_value(Named_type
* named_type
)
3690 gcc_assert(this->classification_
== NAMED_OBJECT_TYPE_DECLARATION
);
3691 Type_declaration
* td
= this->u_
.type_declaration
;
3692 td
->define_methods(named_type
);
3693 Named_object
* in_function
= td
->in_function();
3694 if (in_function
!= NULL
)
3695 named_type
->set_in_function(in_function
);
3697 this->classification_
= NAMED_OBJECT_TYPE
;
3698 this->u_
.type_value
= named_type
;
3701 // Define a function which was previously declared.
3704 Named_object::set_function_value(Function
* function
)
3706 gcc_assert(this->classification_
== NAMED_OBJECT_FUNC_DECLARATION
);
3707 this->classification_
= NAMED_OBJECT_FUNC
;
3708 // FIXME: We should free the old value.
3709 this->u_
.func_value
= function
;
3712 // Declare an unknown object as a type declaration.
3715 Named_object::declare_as_type()
3717 gcc_assert(this->classification_
== NAMED_OBJECT_UNKNOWN
);
3718 Unknown_name
* unk
= this->u_
.unknown_value
;
3719 this->classification_
= NAMED_OBJECT_TYPE_DECLARATION
;
3720 this->u_
.type_declaration
= new Type_declaration(unk
->location());
3724 // Return the location of a named object.
3727 Named_object::location() const
3729 switch (this->classification_
)
3732 case NAMED_OBJECT_UNINITIALIZED
:
3735 case NAMED_OBJECT_UNKNOWN
:
3736 return this->unknown_value()->location();
3738 case NAMED_OBJECT_CONST
:
3739 return this->const_value()->location();
3741 case NAMED_OBJECT_TYPE
:
3742 return this->type_value()->location();
3744 case NAMED_OBJECT_TYPE_DECLARATION
:
3745 return this->type_declaration_value()->location();
3747 case NAMED_OBJECT_VAR
:
3748 return this->var_value()->location();
3750 case NAMED_OBJECT_RESULT_VAR
:
3751 return this->result_var_value()->function()->location();
3753 case NAMED_OBJECT_SINK
:
3756 case NAMED_OBJECT_FUNC
:
3757 return this->func_value()->location();
3759 case NAMED_OBJECT_FUNC_DECLARATION
:
3760 return this->func_declaration_value()->location();
3762 case NAMED_OBJECT_PACKAGE
:
3763 return this->package_value()->location();
3767 // Export a named object.
3770 Named_object::export_named_object(Export
* exp
) const
3772 switch (this->classification_
)
3775 case NAMED_OBJECT_UNINITIALIZED
:
3776 case NAMED_OBJECT_UNKNOWN
:
3779 case NAMED_OBJECT_CONST
:
3780 this->const_value()->export_const(exp
, this->name_
);
3783 case NAMED_OBJECT_TYPE
:
3784 this->type_value()->export_named_type(exp
, this->name_
);
3787 case NAMED_OBJECT_TYPE_DECLARATION
:
3788 error_at(this->type_declaration_value()->location(),
3789 "attempt to export %<%s%> which was declared but not defined",
3790 this->message_name().c_str());
3793 case NAMED_OBJECT_FUNC_DECLARATION
:
3794 this->func_declaration_value()->export_func(exp
, this->name_
);
3797 case NAMED_OBJECT_VAR
:
3798 this->var_value()->export_var(exp
, this->name_
);
3801 case NAMED_OBJECT_RESULT_VAR
:
3802 case NAMED_OBJECT_SINK
:
3805 case NAMED_OBJECT_FUNC
:
3806 this->func_value()->export_func(exp
, this->name_
);
3813 Bindings::Bindings(Bindings
* enclosing
)
3814 : enclosing_(enclosing
), named_objects_(), bindings_()
3821 Bindings::clear_file_scope()
3823 Contour::iterator p
= this->bindings_
.begin();
3824 while (p
!= this->bindings_
.end())
3827 if (p
->second
->package() != NULL
)
3829 else if (p
->second
->is_package())
3831 else if (p
->second
->is_function()
3832 && !p
->second
->func_value()->type()->is_method()
3833 && Gogo::unpack_hidden_name(p
->second
->name()) == "init")
3841 p
= this->bindings_
.erase(p
);
3845 // Look up a symbol.
3848 Bindings::lookup(const std::string
& name
) const
3850 Contour::const_iterator p
= this->bindings_
.find(name
);
3851 if (p
!= this->bindings_
.end())
3852 return p
->second
->resolve();
3853 else if (this->enclosing_
!= NULL
)
3854 return this->enclosing_
->lookup(name
);
3859 // Look up a symbol locally.
3862 Bindings::lookup_local(const std::string
& name
) const
3864 Contour::const_iterator p
= this->bindings_
.find(name
);
3865 if (p
== this->bindings_
.end())
3870 // Remove an object from a set of bindings. This is used for a
3871 // special case in thunks for functions which call recover.
3874 Bindings::remove_binding(Named_object
* no
)
3876 Contour::iterator pb
= this->bindings_
.find(no
->name());
3877 gcc_assert(pb
!= this->bindings_
.end());
3878 this->bindings_
.erase(pb
);
3879 for (std::vector
<Named_object
*>::iterator pn
= this->named_objects_
.begin();
3880 pn
!= this->named_objects_
.end();
3885 this->named_objects_
.erase(pn
);
3892 // Add a method to the list of objects. This is not added to the
3893 // lookup table. This is so that we have a single list of objects
3894 // declared at the top level, which we walk through when it's time to
3895 // convert to trees.
3898 Bindings::add_method(Named_object
* method
)
3900 this->named_objects_
.push_back(method
);
3903 // Add a generic Named_object to a Contour.
3906 Bindings::add_named_object_to_contour(Contour
* contour
,
3907 Named_object
* named_object
)
3909 gcc_assert(named_object
== named_object
->resolve());
3910 const std::string
& name(named_object
->name());
3911 gcc_assert(!Gogo::is_sink_name(name
));
3913 std::pair
<Contour::iterator
, bool> ins
=
3914 contour
->insert(std::make_pair(name
, named_object
));
3917 // The name was already there.
3918 if (named_object
->package() != NULL
3919 && ins
.first
->second
->package() == named_object
->package()
3920 && (ins
.first
->second
->classification()
3921 == named_object
->classification()))
3923 // This is a second import of the same object.
3924 return ins
.first
->second
;
3926 ins
.first
->second
= this->new_definition(ins
.first
->second
,
3928 return ins
.first
->second
;
3932 // Don't push declarations on the list. We push them on when
3933 // and if we find the definitions. That way we genericize the
3934 // functions in order.
3935 if (!named_object
->is_type_declaration()
3936 && !named_object
->is_function_declaration()
3937 && !named_object
->is_unknown())
3938 this->named_objects_
.push_back(named_object
);
3939 return named_object
;
3943 // We had an existing named object OLD_OBJECT, and we've seen a new
3944 // one NEW_OBJECT with the same name. FIXME: This does not free the
3945 // new object when we don't need it.
3948 Bindings::new_definition(Named_object
* old_object
, Named_object
* new_object
)
3951 switch (old_object
->classification())
3954 case Named_object::NAMED_OBJECT_UNINITIALIZED
:
3957 case Named_object::NAMED_OBJECT_UNKNOWN
:
3959 Named_object
* real
= old_object
->unknown_value()->real_named_object();
3961 return this->new_definition(real
, new_object
);
3962 gcc_assert(!new_object
->is_unknown());
3963 old_object
->unknown_value()->set_real_named_object(new_object
);
3964 if (!new_object
->is_type_declaration()
3965 && !new_object
->is_function_declaration())
3966 this->named_objects_
.push_back(new_object
);
3970 case Named_object::NAMED_OBJECT_CONST
:
3973 case Named_object::NAMED_OBJECT_TYPE
:
3974 if (new_object
->is_type_declaration())
3978 case Named_object::NAMED_OBJECT_TYPE_DECLARATION
:
3979 if (new_object
->is_type_declaration())
3981 if (new_object
->is_type())
3983 old_object
->set_type_value(new_object
->type_value());
3984 new_object
->type_value()->set_named_object(old_object
);
3985 this->named_objects_
.push_back(old_object
);
3990 case Named_object::NAMED_OBJECT_VAR
:
3991 case Named_object::NAMED_OBJECT_RESULT_VAR
:
3994 case Named_object::NAMED_OBJECT_SINK
:
3997 case Named_object::NAMED_OBJECT_FUNC
:
3998 if (new_object
->is_function_declaration())
4000 if (!new_object
->func_declaration_value()->asm_name().empty())
4001 sorry("__asm__ for function definitions");
4002 Function_type
* old_type
= old_object
->func_value()->type();
4003 Function_type
* new_type
=
4004 new_object
->func_declaration_value()->type();
4005 if (old_type
->is_valid_redeclaration(new_type
, &reason
))
4010 case Named_object::NAMED_OBJECT_FUNC_DECLARATION
:
4012 Function_type
* old_type
= old_object
->func_declaration_value()->type();
4013 if (new_object
->is_function_declaration())
4015 Function_type
* new_type
=
4016 new_object
->func_declaration_value()->type();
4017 if (old_type
->is_valid_redeclaration(new_type
, &reason
))
4020 if (new_object
->is_function())
4022 Function_type
* new_type
= new_object
->func_value()->type();
4023 if (old_type
->is_valid_redeclaration(new_type
, &reason
))
4025 if (!old_object
->func_declaration_value()->asm_name().empty())
4026 sorry("__asm__ for function definitions");
4027 old_object
->set_function_value(new_object
->func_value());
4028 this->named_objects_
.push_back(old_object
);
4035 case Named_object::NAMED_OBJECT_PACKAGE
:
4036 if (new_object
->is_package()
4037 && (old_object
->package_value()->name()
4038 == new_object
->package_value()->name()))
4044 std::string n
= old_object
->message_name();
4046 error_at(new_object
->location(), "redefinition of %qs", n
.c_str());
4048 error_at(new_object
->location(), "redefinition of %qs: %s", n
.c_str(),
4051 inform(old_object
->location(), "previous definition of %qs was here",
4057 // Add a named type.
4060 Bindings::add_named_type(Named_type
* named_type
)
4062 return this->add_named_object(named_type
->named_object());
4068 Bindings::add_function(const std::string
& name
, const Package
* package
,
4071 return this->add_named_object(Named_object::make_function(name
, package
,
4075 // Add a function declaration.
4078 Bindings::add_function_declaration(const std::string
& name
,
4079 const Package
* package
,
4080 Function_type
* type
,
4081 source_location location
)
4083 Named_object
* no
= Named_object::make_function_declaration(name
, package
,
4085 return this->add_named_object(no
);
4088 // Define a type which was previously declared.
4091 Bindings::define_type(Named_object
* no
, Named_type
* type
)
4093 no
->set_type_value(type
);
4094 this->named_objects_
.push_back(no
);
4097 // Traverse bindings.
4100 Bindings::traverse(Traverse
* traverse
, bool is_global
)
4102 unsigned int traverse_mask
= traverse
->traverse_mask();
4104 // We don't use an iterator because we permit the traversal to add
4105 // new global objects.
4106 for (size_t i
= 0; i
< this->named_objects_
.size(); ++i
)
4108 Named_object
* p
= this->named_objects_
[i
];
4109 switch (p
->classification())
4111 case Named_object::NAMED_OBJECT_CONST
:
4112 if ((traverse_mask
& Traverse::traverse_constants
) != 0)
4114 if (traverse
->constant(p
, is_global
) == TRAVERSE_EXIT
)
4115 return TRAVERSE_EXIT
;
4117 if ((traverse_mask
& Traverse::traverse_types
) != 0
4118 || (traverse_mask
& Traverse::traverse_expressions
) != 0)
4120 Type
* t
= p
->const_value()->type();
4122 && Type::traverse(t
, traverse
) == TRAVERSE_EXIT
)
4123 return TRAVERSE_EXIT
;
4125 if ((traverse_mask
& Traverse::traverse_expressions
) != 0)
4127 if (p
->const_value()->traverse_expression(traverse
)
4129 return TRAVERSE_EXIT
;
4133 case Named_object::NAMED_OBJECT_VAR
:
4134 case Named_object::NAMED_OBJECT_RESULT_VAR
:
4135 if ((traverse_mask
& Traverse::traverse_variables
) != 0)
4137 if (traverse
->variable(p
) == TRAVERSE_EXIT
)
4138 return TRAVERSE_EXIT
;
4140 if (((traverse_mask
& Traverse::traverse_types
) != 0
4141 || (traverse_mask
& Traverse::traverse_expressions
) != 0)
4142 && (p
->is_result_variable()
4143 || p
->var_value()->has_type()))
4145 Type
* t
= (p
->is_variable()
4146 ? p
->var_value()->type()
4147 : p
->result_var_value()->type());
4149 && Type::traverse(t
, traverse
) == TRAVERSE_EXIT
)
4150 return TRAVERSE_EXIT
;
4152 if (p
->is_variable()
4153 && (traverse_mask
& Traverse::traverse_expressions
) != 0)
4155 if (p
->var_value()->traverse_expression(traverse
)
4157 return TRAVERSE_EXIT
;
4161 case Named_object::NAMED_OBJECT_FUNC
:
4162 if ((traverse_mask
& Traverse::traverse_functions
) != 0)
4164 int t
= traverse
->function(p
);
4165 if (t
== TRAVERSE_EXIT
)
4166 return TRAVERSE_EXIT
;
4167 else if (t
== TRAVERSE_SKIP_COMPONENTS
)
4172 & (Traverse::traverse_variables
4173 | Traverse::traverse_constants
4174 | Traverse::traverse_functions
4175 | Traverse::traverse_blocks
4176 | Traverse::traverse_statements
4177 | Traverse::traverse_expressions
4178 | Traverse::traverse_types
)) != 0)
4180 if (p
->func_value()->traverse(traverse
) == TRAVERSE_EXIT
)
4181 return TRAVERSE_EXIT
;
4185 case Named_object::NAMED_OBJECT_PACKAGE
:
4186 // These are traversed in Gogo::traverse.
4187 gcc_assert(is_global
);
4190 case Named_object::NAMED_OBJECT_TYPE
:
4191 if ((traverse_mask
& Traverse::traverse_types
) != 0
4192 || (traverse_mask
& Traverse::traverse_expressions
) != 0)
4194 if (Type::traverse(p
->type_value(), traverse
) == TRAVERSE_EXIT
)
4195 return TRAVERSE_EXIT
;
4199 case Named_object::NAMED_OBJECT_TYPE_DECLARATION
:
4200 case Named_object::NAMED_OBJECT_FUNC_DECLARATION
:
4201 case Named_object::NAMED_OBJECT_UNKNOWN
:
4204 case Named_object::NAMED_OBJECT_SINK
:
4210 return TRAVERSE_CONTINUE
;
4215 Package::Package(const std::string
& name
, const std::string
& unique_prefix
,
4216 source_location location
)
4217 : name_(name
), unique_prefix_(unique_prefix
), bindings_(new Bindings(NULL
)),
4218 priority_(0), location_(location
), used_(false), is_imported_(false),
4219 uses_sink_alias_(false)
4221 gcc_assert(!name
.empty() && !unique_prefix
.empty());
4224 // Set the priority. We may see multiple priorities for an imported
4225 // package; we want to use the largest one.
4228 Package::set_priority(int priority
)
4230 if (priority
> this->priority_
)
4231 this->priority_
= priority
;
4234 // Determine types of constants. Everything else in a package
4235 // (variables, function declarations) should already have a fixed
4236 // type. Constants may have abstract types.
4239 Package::determine_types()
4241 Bindings
* bindings
= this->bindings_
;
4242 for (Bindings::const_definitions_iterator p
= bindings
->begin_definitions();
4243 p
!= bindings
->end_definitions();
4246 if ((*p
)->is_const())
4247 (*p
)->const_value()->determine_type();
4255 Traverse::~Traverse()
4257 if (this->types_seen_
!= NULL
)
4258 delete this->types_seen_
;
4259 if (this->expressions_seen_
!= NULL
)
4260 delete this->expressions_seen_
;
4263 // Record that we are looking at a type, and return true if we have
4267 Traverse::remember_type(const Type
* type
)
4269 if (type
->is_error_type())
4271 gcc_assert((this->traverse_mask() & traverse_types
) != 0
4272 || (this->traverse_mask() & traverse_expressions
) != 0);
4273 // We only have to remember named types, as they are the only ones
4274 // we can see multiple times in a traversal.
4275 if (type
->classification() != Type::TYPE_NAMED
)
4277 if (this->types_seen_
== NULL
)
4278 this->types_seen_
= new Types_seen();
4279 std::pair
<Types_seen::iterator
, bool> ins
= this->types_seen_
->insert(type
);
4283 // Record that we are looking at an expression, and return true if we
4284 // have already seen it.
4287 Traverse::remember_expression(const Expression
* expression
)
4289 gcc_assert((this->traverse_mask() & traverse_types
) != 0
4290 || (this->traverse_mask() & traverse_expressions
) != 0);
4291 if (this->expressions_seen_
== NULL
)
4292 this->expressions_seen_
= new Expressions_seen();
4293 std::pair
<Expressions_seen::iterator
, bool> ins
=
4294 this->expressions_seen_
->insert(expression
);
4298 // The default versions of these functions should never be called: the
4299 // traversal mask indicates which functions may be called.
4302 Traverse::variable(Named_object
*)
4308 Traverse::constant(Named_object
*, bool)
4314 Traverse::function(Named_object
*)
4320 Traverse::block(Block
*)
4326 Traverse::statement(Block
*, size_t*, Statement
*)
4332 Traverse::expression(Expression
**)
4338 Traverse::type(Type
*)