compiler: avoid negative zero in float constants
[official-gcc.git] / gcc / go / gofrontend / expressions.h
blob3acaeb2b022a1fc71ae2af4c866e41461cd4df18
1 // expressions.h -- Go frontend expression handling. -*- C++ -*-
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.
7 #ifndef GO_EXPRESSIONS_H
8 #define GO_EXPRESSIONS_H
10 #include <mpfr.h>
11 #include <mpc.h>
13 #include "operator.h"
14 #include "runtime.h"
16 class Gogo;
17 class Translate_context;
18 class Traverse;
19 class Statement_inserter;
20 class Type;
21 class Method;
22 struct Type_context;
23 class Integer_type;
24 class Float_type;
25 class Complex_type;
26 class Function_type;
27 class Map_type;
28 class Struct_type;
29 class Struct_field;
30 class Expression_list;
31 class Var_expression;
32 class Enclosed_var_expression;
33 class Temporary_reference_expression;
34 class Set_and_use_temporary_expression;
35 class String_expression;
36 class Type_conversion_expression;
37 class Unsafe_type_conversion_expression;
38 class Unary_expression;
39 class Binary_expression;
40 class String_concat_expression;
41 class Call_expression;
42 class Builtin_call_expression;
43 class Call_result_expression;
44 class Func_expression;
45 class Func_descriptor_expression;
46 class Unknown_expression;
47 class Index_expression;
48 class Array_index_expression;
49 class String_index_expression;
50 class Map_index_expression;
51 class Bound_method_expression;
52 class Field_reference_expression;
53 class Interface_field_reference_expression;
54 class Allocation_expression;
55 class Composite_literal_expression;
56 class Struct_construction_expression;
57 class Array_construction_expression;
58 class Fixed_array_construction_expression;
59 class Slice_construction_expression;
60 class Map_construction_expression;
61 class Type_guard_expression;
62 class Heap_expression;
63 class Receive_expression;
64 class Conditional_expression;
65 class Compound_expression;
66 class Numeric_constant;
67 class Named_object;
68 class Export;
69 class Import;
70 class Temporary_statement;
71 class Label;
72 class Ast_dump_context;
73 class String_dump;
75 // The precision to use for complex values represented as an mpc_t.
76 const int mpc_precision = 256;
78 // The base class for all expressions.
80 class Expression
82 public:
83 // The types of expressions.
84 enum Expression_classification
86 EXPRESSION_ERROR,
87 EXPRESSION_TYPE,
88 EXPRESSION_UNARY,
89 EXPRESSION_BINARY,
90 EXPRESSION_STRING_CONCAT,
91 EXPRESSION_CONST_REFERENCE,
92 EXPRESSION_VAR_REFERENCE,
93 EXPRESSION_ENCLOSED_VAR_REFERENCE,
94 EXPRESSION_TEMPORARY_REFERENCE,
95 EXPRESSION_SET_AND_USE_TEMPORARY,
96 EXPRESSION_SINK,
97 EXPRESSION_FUNC_REFERENCE,
98 EXPRESSION_FUNC_DESCRIPTOR,
99 EXPRESSION_FUNC_CODE_REFERENCE,
100 EXPRESSION_UNKNOWN_REFERENCE,
101 EXPRESSION_BOOLEAN,
102 EXPRESSION_STRING,
103 EXPRESSION_STRING_INFO,
104 EXPRESSION_INTEGER,
105 EXPRESSION_FLOAT,
106 EXPRESSION_COMPLEX,
107 EXPRESSION_NIL,
108 EXPRESSION_IOTA,
109 EXPRESSION_CALL,
110 EXPRESSION_CALL_RESULT,
111 EXPRESSION_BOUND_METHOD,
112 EXPRESSION_INDEX,
113 EXPRESSION_ARRAY_INDEX,
114 EXPRESSION_STRING_INDEX,
115 EXPRESSION_MAP_INDEX,
116 EXPRESSION_SELECTOR,
117 EXPRESSION_FIELD_REFERENCE,
118 EXPRESSION_INTERFACE_FIELD_REFERENCE,
119 EXPRESSION_ALLOCATION,
120 EXPRESSION_TYPE_GUARD,
121 EXPRESSION_CONVERSION,
122 EXPRESSION_UNSAFE_CONVERSION,
123 EXPRESSION_STRUCT_CONSTRUCTION,
124 EXPRESSION_FIXED_ARRAY_CONSTRUCTION,
125 EXPRESSION_SLICE_CONSTRUCTION,
126 EXPRESSION_MAP_CONSTRUCTION,
127 EXPRESSION_COMPOSITE_LITERAL,
128 EXPRESSION_HEAP,
129 EXPRESSION_RECEIVE,
130 EXPRESSION_TYPE_DESCRIPTOR,
131 EXPRESSION_GC_SYMBOL,
132 EXPRESSION_PTRMASK_SYMBOL,
133 EXPRESSION_TYPE_INFO,
134 EXPRESSION_SLICE_INFO,
135 EXPRESSION_SLICE_VALUE,
136 EXPRESSION_INTERFACE_INFO,
137 EXPRESSION_INTERFACE_VALUE,
138 EXPRESSION_INTERFACE_MTABLE,
139 EXPRESSION_STRUCT_FIELD_OFFSET,
140 EXPRESSION_LABEL_ADDR,
141 EXPRESSION_CONDITIONAL,
142 EXPRESSION_COMPOUND,
143 EXPRESSION_BACKEND
146 Expression(Expression_classification, Location);
148 virtual ~Expression();
150 // Make an error expression. This is used when a parse error occurs
151 // to prevent cascading errors.
152 static Expression*
153 make_error(Location);
155 // Make an expression which is really a type. This is used during
156 // parsing.
157 static Expression*
158 make_type(Type*, Location);
160 // Make a unary expression.
161 static Expression*
162 make_unary(Operator, Expression*, Location);
164 // Make a binary expression.
165 static Expression*
166 make_binary(Operator, Expression*, Expression*, Location);
168 // Make a string concatenation expression.
169 static Expression*
170 make_string_concat(Expression_list*);
172 // Make a reference to a constant in an expression.
173 static Expression*
174 make_const_reference(Named_object*, Location);
176 // Make a reference to a variable in an expression.
177 static Expression*
178 make_var_reference(Named_object*, Location);
180 // Make a reference to a variable within an enclosing function.
181 static Expression*
182 make_enclosing_var_reference(Expression*, Named_object*, Location);
184 // Make a reference to a temporary variable. Temporary variables
185 // are always created by a single statement, which is what we use to
186 // refer to them.
187 static Temporary_reference_expression*
188 make_temporary_reference(Temporary_statement*, Location);
190 // Make an expressions which sets a temporary variable and then
191 // evaluates to a reference to that temporary variable. This is
192 // used to set a temporary variable while retaining the order of
193 // evaluation.
194 static Set_and_use_temporary_expression*
195 make_set_and_use_temporary(Temporary_statement*, Expression*, Location);
197 // Make a sink expression--a reference to the blank identifier _.
198 static Expression*
199 make_sink(Location);
201 // Make a reference to a function in an expression. This returns a
202 // pointer to the struct holding the address of the function
203 // followed by any closed-over variables.
204 static Expression*
205 make_func_reference(Named_object*, Expression* closure, Location);
207 // Make a function descriptor, an immutable struct with a single
208 // field that points to the function code. This may only be used
209 // with functions that do not have closures. FN is the function for
210 // which we are making the descriptor.
211 static Func_descriptor_expression*
212 make_func_descriptor(Named_object* fn);
214 // Make a reference to the code of a function. This is used to set
215 // descriptor and closure fields.
216 static Expression*
217 make_func_code_reference(Named_object*, Location);
219 // Make a reference to an unknown name. In a correct program this
220 // will always be lowered to a real const/var/func reference.
221 static Unknown_expression*
222 make_unknown_reference(Named_object*, Location);
224 // Make a constant bool expression.
225 static Expression*
226 make_boolean(bool val, Location);
228 // Make a constant string expression.
229 static Expression*
230 make_string(const std::string&, Location);
232 // Make an expression that evaluates to some characteristic of an string.
233 // For simplicity, the enum values must match the field indexes in the
234 // underlying struct.
235 enum String_info
237 // The underlying data in the string.
238 STRING_INFO_DATA,
239 // The length of the string.
240 STRING_INFO_LENGTH
243 static Expression*
244 make_string_info(Expression* string, String_info, Location);
246 // Make a character constant expression. TYPE should be NULL for an
247 // abstract type.
248 static Expression*
249 make_character(const mpz_t*, Type*, Location);
251 // Make a constant integer expression from a multi-precision
252 // integer. TYPE should be NULL for an abstract type.
253 static Expression*
254 make_integer_z(const mpz_t*, Type*, Location);
256 // Make a constant integer expression from an unsigned long. TYPE
257 // should be NULL for an abstract type.
258 static Expression*
259 make_integer_ul(unsigned long, Type*, Location);
261 // Make a constant integer expression from a signed long. TYPE
262 // should be NULL for an abstract type.
263 static Expression*
264 make_integer_sl(long, Type*, Location);
266 // Make a constant integer expression from an int64_t. TYPE should
267 // be NULL for an abstract type.
268 static Expression*
269 make_integer_int64(int64_t, Type*, Location);
271 // Make a constant float expression. TYPE should be NULL for an
272 // abstract type.
273 static Expression*
274 make_float(const mpfr_t*, Type*, Location);
276 // Make a constant complex expression. TYPE should be NULL for an
277 // abstract type.
278 static Expression*
279 make_complex(const mpc_t*, Type*, Location);
281 // Make a nil expression.
282 static Expression*
283 make_nil(Location);
285 // Make an iota expression. This is used for the predeclared
286 // constant iota.
287 static Expression*
288 make_iota();
290 // Make a call expression.
291 static Call_expression*
292 make_call(Expression* func, Expression_list* args, bool is_varargs,
293 Location);
295 // Make a reference to a specific result of a call expression which
296 // returns a tuple.
297 static Expression*
298 make_call_result(Call_expression*, unsigned int index);
300 // Make an expression which is a method bound to its first
301 // parameter. METHOD is the method being called, FUNCTION is the
302 // function to call.
303 static Bound_method_expression*
304 make_bound_method(Expression* object, const Method* method,
305 Named_object* function, Location);
307 // Make an index or slice expression. This is a parser expression
308 // which represents LEFT[START:END:CAP]. END may be NULL, meaning an
309 // index rather than a slice. CAP may be NULL, meaning we use the default
310 // capacity of LEFT. At parse time we may not know the type of LEFT.
311 // After parsing this is lowered to an array index, a string index,
312 // or a map index.
313 static Expression*
314 make_index(Expression* left, Expression* start, Expression* end,
315 Expression* cap, Location);
317 // Make an array index expression. END may be NULL, in which case
318 // this is an lvalue. CAP may be NULL, in which case it defaults
319 // to cap(ARRAY).
320 static Expression*
321 make_array_index(Expression* array, Expression* start, Expression* end,
322 Expression* cap, Location);
324 // Make a string index expression. END may be NULL. This is never
325 // an lvalue.
326 static Expression*
327 make_string_index(Expression* string, Expression* start, Expression* end,
328 Location);
330 // Make a map index expression. This is an lvalue.
331 static Map_index_expression*
332 make_map_index(Expression* map, Expression* val, Location);
334 // Make a selector. This is a parser expression which represents
335 // LEFT.NAME. At parse time we may not know the type of the left
336 // hand side.
337 static Expression*
338 make_selector(Expression* left, const std::string& name, Location);
340 // Make a reference to a field in a struct.
341 static Field_reference_expression*
342 make_field_reference(Expression*, unsigned int field_index, Location);
344 // Make a reference to a field of an interface, with an associated
345 // object.
346 static Expression*
347 make_interface_field_reference(Expression*, const std::string&,
348 Location);
350 // Make an allocation expression.
351 static Expression*
352 make_allocation(Type*, Location);
354 // Make a type guard expression.
355 static Expression*
356 make_type_guard(Expression*, Type*, Location);
358 // Make a type cast expression.
359 static Expression*
360 make_cast(Type*, Expression*, Location);
362 // Make an unsafe type cast expression. This is only used when
363 // passing parameter to builtin functions that are part of the Go
364 // runtime.
365 static Expression*
366 make_unsafe_cast(Type*, Expression*, Location);
368 // Make a composite literal. The DEPTH parameter is how far down we
369 // are in a list of composite literals with omitted types. HAS_KEYS
370 // is true if the expression list has keys alternating with values.
371 // ALL_ARE_NAMES is true if all the keys could be struct field
372 // names.
373 static Expression*
374 make_composite_literal(Type*, int depth, bool has_keys, Expression_list*,
375 bool all_are_names, Location);
377 // Make a struct composite literal.
378 static Expression*
379 make_struct_composite_literal(Type*, Expression_list*, Location);
381 // Make an array composite literal.
382 static Expression*
383 make_array_composite_literal(Type*, Expression_list*, Location);
385 // Make a slice composite literal.
386 static Slice_construction_expression*
387 make_slice_composite_literal(Type*, Expression_list*, Location);
389 // Take an expression and allocate it on the heap.
390 static Expression*
391 make_heap_expression(Expression*, Location);
393 // Make a receive expression. VAL is NULL for a unary receive.
394 static Receive_expression*
395 make_receive(Expression* channel, Location);
397 // Make an expression which evaluates to the address of the type
398 // descriptor for TYPE.
399 static Expression*
400 make_type_descriptor(Type* type, Location);
402 // Make an expression which evaluates to the address of the gc
403 // symbol for TYPE.
404 static Expression*
405 make_gc_symbol(Type* type);
407 // Make an expression that evaluates to the address of a ptrmask
408 // symbol for TYPE. For most types this will be the same as
409 // make_gc_symbol, but for larger types make_gc_symbol will return a
410 // gcprog while this will return a ptrmask.
411 static Expression*
412 make_ptrmask_symbol(Type* type);
414 // Make an expression which evaluates to some characteristic of a
415 // type. These are only used for type descriptors, so there is no
416 // location parameter.
417 enum Type_info
419 // The size of a value of the type.
420 TYPE_INFO_SIZE,
421 // The required alignment of a value of the type.
422 TYPE_INFO_ALIGNMENT,
423 // The required alignment of a value of the type when used as a
424 // field in a struct.
425 TYPE_INFO_FIELD_ALIGNMENT,
426 // The size of the prefix of a value of the type that contains
427 // all the pointers. This is 0 for a type that contains no
428 // pointers. It is always <= TYPE_INFO_SIZE.
429 TYPE_INFO_BACKEND_PTRDATA,
430 // Like TYPE_INFO_BACKEND_PTRDATA, but the ptrdata value that we
431 // want to store in a type descriptor. They are the same for
432 // most types, but can differ for a type that uses a gcprog.
433 TYPE_INFO_DESCRIPTOR_PTRDATA
436 static Expression*
437 make_type_info(Type* type, Type_info);
439 // Make an expression that evaluates to some characteristic of a
440 // slice. For simplicity, the enum values must match the field indexes
441 // in the underlying struct.
442 enum Slice_info
444 // The underlying data of the slice.
445 SLICE_INFO_VALUE_POINTER,
446 // The length of the slice.
447 SLICE_INFO_LENGTH,
448 // The capacity of the slice.
449 SLICE_INFO_CAPACITY
452 static Expression*
453 make_slice_info(Expression* slice, Slice_info, Location);
455 // Make an expression for a slice value.
456 static Expression*
457 make_slice_value(Type*, Expression* valptr, Expression* len, Expression* cap,
458 Location);
460 // Make an expression that evaluates to some characteristic of an
461 // interface. For simplicity, the enum values must match the field indexes
462 // in the underlying struct.
463 enum Interface_info
465 // The type descriptor of an empty interface.
466 INTERFACE_INFO_TYPE_DESCRIPTOR = 0,
467 // The methods of an interface.
468 INTERFACE_INFO_METHODS = 0,
469 // The first argument to pass to an interface method.
470 INTERFACE_INFO_OBJECT
473 static Expression*
474 make_interface_info(Expression* iface, Interface_info, Location);
476 // Make an expression for an interface value.
477 static Expression*
478 make_interface_value(Type*, Expression*, Expression*, Location);
480 // Make an expression that builds a reference to the interface method table
481 // for TYPE that satisfies interface ITYPE. IS_POINTER is true if this is a
482 // reference to the interface method table for the pointer receiver type.
483 static Expression*
484 make_interface_mtable_ref(Interface_type* itype, Type* type,
485 bool is_pointer, Location);
487 // Make an expression which evaluates to the offset of a field in a
488 // struct. This is only used for type descriptors, so there is no
489 // location parameter.
490 static Expression*
491 make_struct_field_offset(Struct_type*, const Struct_field*);
493 // Make an expression which evaluates to the address of an unnamed
494 // label.
495 static Expression*
496 make_label_addr(Label*, Location);
498 // Make a conditional expression.
499 static Expression*
500 make_conditional(Expression*, Expression*, Expression*, Location);
502 // Make a compound expression.
503 static Expression*
504 make_compound(Expression*, Expression*, Location);
506 // Make a backend expression.
507 static Expression*
508 make_backend(Bexpression*, Type*, Location);
510 enum Nil_check_classification
512 // Use the default policy for deciding if this deref needs a check.
513 NIL_CHECK_DEFAULT,
514 // An explicit check is required for this dereference operation.
515 NIL_CHECK_NEEDED,
516 // No check needed for this dereference operation.
517 NIL_CHECK_NOT_NEEDED,
518 // A type error or error construct was encountered when determining
519 // whether this deref needs an explicit check.
520 NIL_CHECK_ERROR_ENCOUNTERED
523 // Make a dereference expression.
524 static Expression*
525 make_dereference(Expression*, Nil_check_classification, Location);
527 // Return the expression classification.
528 Expression_classification
529 classification() const
530 { return this->classification_; }
532 // Return the location of the expression.
533 Location
534 location() const
535 { return this->location_; }
537 // Return whether this is a constant expression.
538 bool
539 is_constant() const
540 { return this->do_is_constant(); }
542 // Return whether this expression can be used as a static
543 // initializer. This is true for an expression that has only
544 // numbers and pointers to global variables or composite literals
545 // that do not require runtime initialization. It is false if we
546 // must generate code to compute this expression when it is used to
547 // initialize a global variable. This is not a language-level
548 // concept, but an implementation-level one. If this expression is
549 // used to initialize a global variable, this is true if we can pass
550 // an initializer to the backend, false if we must generate code to
551 // initialize the variable. It is always safe for this method to
552 // return false, but the resulting code may be less efficient.
553 bool
554 is_static_initializer() const
555 { return this->do_is_static_initializer(); }
557 // If this is not a numeric constant, return false. If it is one,
558 // return true, and set VAL to hold the value.
559 bool
560 numeric_constant_value(Numeric_constant* val) const
561 { return this->do_numeric_constant_value(val); }
563 // If this is not a constant expression with string type, return
564 // false. If it is one, return true, and set VAL to the value.
565 bool
566 string_constant_value(std::string* val) const
567 { return this->do_string_constant_value(val); }
569 // This is called if the value of this expression is being
570 // discarded. This issues warnings about computed values being
571 // unused. This returns true if all is well, false if it issued an
572 // error message.
573 bool
574 discarding_value()
575 { return this->do_discarding_value(); }
577 // Return whether this is an error expression.
578 bool
579 is_error_expression() const
580 { return this->classification_ == EXPRESSION_ERROR; }
582 // Return whether this expression really represents a type.
583 bool
584 is_type_expression() const
585 { return this->classification_ == EXPRESSION_TYPE; }
587 // If this is a variable reference, return the Var_expression
588 // structure. Otherwise, return NULL. This is a controlled dynamic
589 // cast.
590 Var_expression*
591 var_expression()
592 { return this->convert<Var_expression, EXPRESSION_VAR_REFERENCE>(); }
594 const Var_expression*
595 var_expression() const
596 { return this->convert<const Var_expression, EXPRESSION_VAR_REFERENCE>(); }
598 // If this is a enclosed_variable reference, return the
599 // Enclosed_var_expression structure. Otherwise, return NULL.
600 // This is a controlled dynamic cast.
601 Enclosed_var_expression*
602 enclosed_var_expression()
603 { return this->convert<Enclosed_var_expression,
604 EXPRESSION_ENCLOSED_VAR_REFERENCE>(); }
606 const Enclosed_var_expression*
607 enclosed_var_expression() const
608 { return this->convert<const Enclosed_var_expression,
609 EXPRESSION_ENCLOSED_VAR_REFERENCE>(); }
612 // If this is a reference to a temporary variable, return the
613 // Temporary_reference_expression. Otherwise, return NULL.
614 Temporary_reference_expression*
615 temporary_reference_expression()
617 return this->convert<Temporary_reference_expression,
618 EXPRESSION_TEMPORARY_REFERENCE>();
621 // If this is a set-and-use-temporary, return the
622 // Set_and_use_temporary_expression. Otherwise, return NULL.
623 Set_and_use_temporary_expression*
624 set_and_use_temporary_expression()
626 return this->convert<Set_and_use_temporary_expression,
627 EXPRESSION_SET_AND_USE_TEMPORARY>();
630 // Return whether this is a sink expression.
631 bool
632 is_sink_expression() const
633 { return this->classification_ == EXPRESSION_SINK; }
635 // If this is a string expression, return the String_expression
636 // structure. Otherwise, return NULL.
637 String_expression*
638 string_expression()
639 { return this->convert<String_expression, EXPRESSION_STRING>(); }
641 // If this is a conversion expression, return the Type_conversion_expression
642 // structure. Otherwise, return NULL.
643 Type_conversion_expression*
644 conversion_expression()
645 { return this->convert<Type_conversion_expression, EXPRESSION_CONVERSION>(); }
647 // If this is an unsafe conversion expression, return the
648 // Unsafe_type_conversion_expression structure. Otherwise, return NULL.
649 Unsafe_type_conversion_expression*
650 unsafe_conversion_expression()
652 return this->convert<Unsafe_type_conversion_expression,
653 EXPRESSION_UNSAFE_CONVERSION>();
656 // Return whether this is the expression nil.
657 bool
658 is_nil_expression() const
659 { return this->classification_ == EXPRESSION_NIL; }
661 // If this is an indirection through a pointer, return the
662 // expression being pointed through. Otherwise return this.
663 Expression*
664 deref();
666 // If this is a unary expression, return the Unary_expression
667 // structure. Otherwise return NULL.
668 Unary_expression*
669 unary_expression()
670 { return this->convert<Unary_expression, EXPRESSION_UNARY>(); }
672 // If this is a binary expression, return the Binary_expression
673 // structure. Otherwise return NULL.
674 Binary_expression*
675 binary_expression()
676 { return this->convert<Binary_expression, EXPRESSION_BINARY>(); }
678 // If this is a string concatenation expression, return the
679 // String_concat_expression structure. Otherwise, return NULL.
680 String_concat_expression*
681 string_concat_expression()
683 return this->convert<String_concat_expression, EXPRESSION_STRING_CONCAT>();
686 // If this is a call expression, return the Call_expression
687 // structure. Otherwise, return NULL. This is a controlled dynamic
688 // cast.
689 Call_expression*
690 call_expression()
691 { return this->convert<Call_expression, EXPRESSION_CALL>(); }
693 // If this is a call_result expression, return the Call_result_expression
694 // structure. Otherwise, return NULL. This is a controlled dynamic
695 // cast.
696 Call_result_expression*
697 call_result_expression()
698 { return this->convert<Call_result_expression, EXPRESSION_CALL_RESULT>(); }
700 // If this is an expression which refers to a function, return the
701 // Func_expression structure. Otherwise, return NULL.
702 Func_expression*
703 func_expression()
704 { return this->convert<Func_expression, EXPRESSION_FUNC_REFERENCE>(); }
706 const Func_expression*
707 func_expression() const
708 { return this->convert<const Func_expression, EXPRESSION_FUNC_REFERENCE>(); }
710 // If this is an expression which refers to an unknown name, return
711 // the Unknown_expression structure. Otherwise, return NULL.
712 Unknown_expression*
713 unknown_expression()
714 { return this->convert<Unknown_expression, EXPRESSION_UNKNOWN_REFERENCE>(); }
716 const Unknown_expression*
717 unknown_expression() const
719 return this->convert<const Unknown_expression,
720 EXPRESSION_UNKNOWN_REFERENCE>();
723 // If this is an index expression, return the Index_expression
724 // structure. Otherwise, return NULL.
725 Index_expression*
726 index_expression()
727 { return this->convert<Index_expression, EXPRESSION_INDEX>(); }
729 // If this is an expression which refers to indexing in a array,
730 // return the Array_index_expression structure. Otherwise, return
731 // NULL.
732 Array_index_expression*
733 array_index_expression()
734 { return this->convert<Array_index_expression, EXPRESSION_ARRAY_INDEX>(); }
736 // If this is an expression which refers to indexing in a string,
737 // return the String_index_expression structure. Otherwise, return
738 // NULL.
739 String_index_expression*
740 string_index_expression()
741 { return this->convert<String_index_expression, EXPRESSION_STRING_INDEX>(); }
743 // If this is an expression which refers to indexing in a map,
744 // return the Map_index_expression structure. Otherwise, return
745 // NULL.
746 Map_index_expression*
747 map_index_expression()
748 { return this->convert<Map_index_expression, EXPRESSION_MAP_INDEX>(); }
750 // If this is a bound method expression, return the
751 // Bound_method_expression structure. Otherwise, return NULL.
752 Bound_method_expression*
753 bound_method_expression()
754 { return this->convert<Bound_method_expression, EXPRESSION_BOUND_METHOD>(); }
756 // If this is a reference to a field in a struct, return the
757 // Field_reference_expression structure. Otherwise, return NULL.
758 Field_reference_expression*
759 field_reference_expression()
761 return this->convert<Field_reference_expression,
762 EXPRESSION_FIELD_REFERENCE>();
765 // If this is a reference to a field in an interface, return the
766 // Interface_field_reference_expression structure. Otherwise,
767 // return NULL.
768 Interface_field_reference_expression*
769 interface_field_reference_expression()
771 return this->convert<Interface_field_reference_expression,
772 EXPRESSION_INTERFACE_FIELD_REFERENCE>();
775 // If this is an allocation expression, return the Allocation_expression
776 // structure. Otherwise, return NULL.
777 Allocation_expression*
778 allocation_expression()
779 { return this->convert<Allocation_expression, EXPRESSION_ALLOCATION>(); }
781 // If this is a general composite literal, return the
782 // Composite_literal_expression structure. Otherwise, return NULL.
783 Composite_literal_expression*
784 complit()
786 return this->convert<Composite_literal_expression,
787 EXPRESSION_COMPOSITE_LITERAL>();
790 // If this is a struct composite literal, return the
791 // Struct_construction_expression structure. Otherwise, return NULL.
792 Struct_construction_expression*
793 struct_literal()
795 return this->convert<Struct_construction_expression,
796 EXPRESSION_STRUCT_CONSTRUCTION>();
799 // If this is a array composite literal, return the
800 // Array_construction_expression structure. Otherwise, return NULL.
801 Fixed_array_construction_expression*
802 array_literal()
804 return this->convert<Fixed_array_construction_expression,
805 EXPRESSION_FIXED_ARRAY_CONSTRUCTION>();
808 // If this is a slice composite literal, return the
809 // Slice_construction_expression structure. Otherwise, return NULL.
810 Slice_construction_expression*
811 slice_literal()
813 return this->convert<Slice_construction_expression,
814 EXPRESSION_SLICE_CONSTRUCTION>();
817 // If this is a map composite literal, return the
818 // Map_construction_expression structure. Otherwise, return NULL.
819 Map_construction_expression*
820 map_literal()
822 return this->convert<Map_construction_expression,
823 EXPRESSION_MAP_CONSTRUCTION>();
826 // If this is a type guard expression, return the
827 // Type_guard_expression structure. Otherwise, return NULL.
828 Type_guard_expression*
829 type_guard_expression()
830 { return this->convert<Type_guard_expression, EXPRESSION_TYPE_GUARD>(); }
832 // If this is a heap expression, returhn the Heap_expression structure.
833 // Otherwise, return NULL.
834 Heap_expression*
835 heap_expression()
836 { return this->convert<Heap_expression, EXPRESSION_HEAP>(); }
838 // If this is a receive expression, return the Receive_expression
839 // structure. Otherwise, return NULL.
840 Receive_expression*
841 receive_expression()
842 { return this->convert<Receive_expression, EXPRESSION_RECEIVE>(); }
844 // If this is a conditional expression, return the Conditional_expression
845 // structure. Otherwise, return NULL.
846 Conditional_expression*
847 conditional_expression()
848 { return this->convert<Conditional_expression, EXPRESSION_CONDITIONAL>(); }
850 // If this is a compound expression, return the Compound_expression structure.
851 // Otherwise, return NULL.
852 Compound_expression*
853 compound_expression()
854 { return this->convert<Compound_expression, EXPRESSION_COMPOUND>(); }
856 // Return true if this is a composite literal.
857 bool
858 is_composite_literal() const;
860 // Return true if this is a composite literal which is not constant.
861 bool
862 is_nonconstant_composite_literal() const;
864 // Return true if this is a variable or temporary variable.
865 bool
866 is_variable() const;
868 // Return true if this is a reference to a local variable.
869 bool
870 is_local_variable() const;
872 // Make the builtin function descriptor type, so that it can be
873 // converted.
874 static void
875 make_func_descriptor_type();
877 // Traverse an expression.
878 static int
879 traverse(Expression**, Traverse*);
881 // Traverse subexpressions of this expression.
883 traverse_subexpressions(Traverse*);
885 // Lower an expression. This is called immediately after parsing.
886 // FUNCTION is the function we are in; it will be NULL for an
887 // expression initializing a global variable. INSERTER may be used
888 // to insert statements before the statement or initializer
889 // containing this expression; it is normally used to create
890 // temporary variables. IOTA_VALUE is the value that we should give
891 // to any iota expressions. This function must resolve expressions
892 // which could not be fully parsed into their final form. It
893 // returns the same Expression or a new one.
894 Expression*
895 lower(Gogo* gogo, Named_object* function, Statement_inserter* inserter,
896 int iota_value)
897 { return this->do_lower(gogo, function, inserter, iota_value); }
899 // Flatten an expression. This is called after order_evaluation.
900 // FUNCTION is the function we are in; it will be NULL for an
901 // expression initializing a global variable. INSERTER may be used
902 // to insert statements before the statement or initializer
903 // containing this expression; it is normally used to create
904 // temporary variables. This function must resolve expressions
905 // which could not be fully parsed into their final form. It
906 // returns the same Expression or a new one.
907 Expression*
908 flatten(Gogo* gogo, Named_object* function, Statement_inserter* inserter)
909 { return this->do_flatten(gogo, function, inserter); }
911 // Determine the real type of an expression with abstract integer,
912 // floating point, or complex type. TYPE_CONTEXT describes the
913 // expected type.
914 void
915 determine_type(const Type_context*);
917 // Check types in an expression.
918 void
919 check_types(Gogo* gogo)
920 { this->do_check_types(gogo); }
922 // Determine the type when there is no context.
923 void
924 determine_type_no_context();
926 // Return the current type of the expression. This may be changed
927 // by determine_type.
928 Type*
929 type()
930 { return this->do_type(); }
932 // Return a copy of an expression.
933 Expression*
934 copy()
935 { return this->do_copy(); }
937 // Return whether the expression is addressable--something which may
938 // be used as the operand of the unary & operator.
939 bool
940 is_addressable() const
941 { return this->do_is_addressable(); }
943 // Note that we are taking the address of this expression. ESCAPES
944 // is true if this address escapes the current function.
945 void
946 address_taken(bool escapes)
947 { this->do_address_taken(escapes); }
949 // Note that a nil check must be issued for this expression.
950 void
951 issue_nil_check()
952 { this->do_issue_nil_check(); }
954 // Return whether this expression must be evaluated in order
955 // according to the order of evaluation rules. This is basically
956 // true of all expressions with side-effects.
957 bool
958 must_eval_in_order() const
959 { return this->do_must_eval_in_order(); }
961 // Return whether subexpressions of this expression must be
962 // evaluated in order. This is true of index expressions and
963 // pointer indirections. This sets *SKIP to the number of
964 // subexpressions to skip during traversing, as index expressions
965 // only requiring moving the index, not the array.
966 bool
967 must_eval_subexpressions_in_order(int* skip) const
969 *skip = 0;
970 return this->do_must_eval_subexpressions_in_order(skip);
973 // Return the backend representation for this expression.
974 Bexpression*
975 get_backend(Translate_context*);
977 // Return an expression handling any conversions which must be done during
978 // assignment.
979 static Expression*
980 convert_for_assignment(Gogo*, Type* lhs_type, Expression* rhs,
981 Location location);
983 // Return an expression converting a value of one interface type to another
984 // interface type. If FOR_TYPE_GUARD is true this is for a type
985 // assertion.
986 static Expression*
987 convert_interface_to_interface(Type* lhs_type,
988 Expression* rhs, bool for_type_guard,
989 Location);
991 // Return a backend expression implementing the comparison LEFT OP RIGHT.
992 // TYPE is the type of both sides.
993 static Bexpression*
994 comparison(Translate_context*, Type* result_type, Operator op,
995 Expression* left, Expression* right, Location);
997 // Return the backend expression for the numeric constant VAL.
998 static Bexpression*
999 backend_numeric_constant_expression(Translate_context*,
1000 Numeric_constant* val);
1002 // Export the expression. This is only used for constants. It will
1003 // be used for things like values of named constants and sizes of
1004 // arrays.
1005 void
1006 export_expression(Export* exp) const
1007 { this->do_export(exp); }
1009 // Import an expression.
1010 static Expression*
1011 import_expression(Import*);
1013 // Return an expression which checks that VAL, of arbitrary integer type,
1014 // is non-negative and is not more than the maximum integer value.
1015 static Expression*
1016 check_bounds(Expression* val, Location);
1018 // Dump an expression to a dump constext.
1019 void
1020 dump_expression(Ast_dump_context*) const;
1022 protected:
1023 // May be implemented by child class: traverse the expressions.
1024 virtual int
1025 do_traverse(Traverse*);
1027 // Return a lowered expression.
1028 virtual Expression*
1029 do_lower(Gogo*, Named_object*, Statement_inserter*, int)
1030 { return this; }
1032 // Return a flattened expression.
1033 virtual Expression*
1034 do_flatten(Gogo*, Named_object*, Statement_inserter*)
1035 { return this; }
1038 // Return whether this is a constant expression.
1039 virtual bool
1040 do_is_constant() const
1041 { return false; }
1043 // Return whether this expression can be used as a constant
1044 // initializer.
1045 virtual bool
1046 do_is_static_initializer() const
1047 { return false; }
1049 // Return whether this is a constant expression of numeric type, and
1050 // set the Numeric_constant to the value.
1051 virtual bool
1052 do_numeric_constant_value(Numeric_constant*) const
1053 { return false; }
1055 // Return whether this is a constant expression of string type, and
1056 // set VAL to the value.
1057 virtual bool
1058 do_string_constant_value(std::string*) const
1059 { return false; }
1061 // Called by the parser if the value is being discarded.
1062 virtual bool
1063 do_discarding_value();
1065 // Child class holds type.
1066 virtual Type*
1067 do_type() = 0;
1069 // Child class implements determining type information.
1070 virtual void
1071 do_determine_type(const Type_context*) = 0;
1073 // Child class implements type checking if needed.
1074 virtual void
1075 do_check_types(Gogo*)
1078 // Child class implements copying.
1079 virtual Expression*
1080 do_copy() = 0;
1082 // Child class implements whether the expression is addressable.
1083 virtual bool
1084 do_is_addressable() const
1085 { return false; }
1087 // Child class implements taking the address of an expression.
1088 virtual void
1089 do_address_taken(bool)
1092 // Child class implements issuing a nil check if the address is taken.
1093 virtual void
1094 do_issue_nil_check()
1097 // Child class implements whether this expression must be evaluated
1098 // in order.
1099 virtual bool
1100 do_must_eval_in_order() const
1101 { return false; }
1103 // Child class implements whether this expressions requires that
1104 // subexpressions be evaluated in order. The child implementation
1105 // may set *SKIP if it should be non-zero.
1106 virtual bool
1107 do_must_eval_subexpressions_in_order(int* /* skip */) const
1108 { return false; }
1110 // Child class implements conversion to backend representation.
1111 virtual Bexpression*
1112 do_get_backend(Translate_context*) = 0;
1114 // Child class implements export.
1115 virtual void
1116 do_export(Export*) const;
1118 // For children to call to give an error for an unused value.
1119 void
1120 unused_value_error();
1122 // For children to call when they detect that they are in error.
1123 void
1124 set_is_error();
1126 // For children to call to report an error conveniently.
1127 void
1128 report_error(const char*);
1130 // Child class implements dumping to a dump context.
1131 virtual void
1132 do_dump_expression(Ast_dump_context*) const = 0;
1134 // Varargs lowering creates a slice object (unnamed compiler temp)
1135 // to contain the variable length collection of values. The enum
1136 // below tells the lowering routine whether it can mark that temp
1137 // as non-escaping or not. For general varargs calls it is not always
1138 // safe to stack-allocated the storage, but for specific cases (ex:
1139 // call to append()) it is legal.
1140 enum Slice_storage_escape_disp
1142 SLICE_STORAGE_MAY_ESCAPE,
1143 SLICE_STORAGE_DOES_NOT_ESCAPE
1146 private:
1147 // Convert to the desired statement classification, or return NULL.
1148 // This is a controlled dynamic cast.
1149 template<typename Expression_class,
1150 Expression_classification expr_classification>
1151 Expression_class*
1152 convert()
1154 return (this->classification_ == expr_classification
1155 ? static_cast<Expression_class*>(this)
1156 : NULL);
1159 template<typename Expression_class,
1160 Expression_classification expr_classification>
1161 const Expression_class*
1162 convert() const
1164 return (this->classification_ == expr_classification
1165 ? static_cast<const Expression_class*>(this)
1166 : NULL);
1169 static Expression*
1170 convert_type_to_interface(Type*, Expression*, Location);
1172 static Expression*
1173 get_interface_type_descriptor(Expression*);
1175 static Expression*
1176 convert_interface_to_type(Type*, Expression*, Location);
1178 // The expression classification.
1179 Expression_classification classification_;
1180 // The location in the input file.
1181 Location location_;
1184 // A list of Expressions.
1186 class Expression_list
1188 public:
1189 Expression_list()
1190 : entries_()
1193 // Return whether the list is empty.
1194 bool
1195 empty() const
1196 { return this->entries_.empty(); }
1198 // Return the number of entries in the list.
1199 size_t
1200 size() const
1201 { return this->entries_.size(); }
1203 // Add an entry to the end of the list.
1204 void
1205 push_back(Expression* expr)
1206 { this->entries_.push_back(expr); }
1208 void
1209 append(Expression_list* add)
1210 { this->entries_.insert(this->entries_.end(), add->begin(), add->end()); }
1212 // Reserve space in the list.
1213 void
1214 reserve(size_t size)
1215 { this->entries_.reserve(size); }
1217 // Traverse the expressions in the list.
1219 traverse(Traverse*);
1221 // Copy the list.
1222 Expression_list*
1223 copy();
1225 // Return true if the list contains an error expression.
1226 bool
1227 contains_error() const;
1229 // Retrieve an element by index.
1230 Expression*&
1231 at(size_t i)
1232 { return this->entries_.at(i); }
1234 // Return the first and last elements.
1235 Expression*&
1236 front()
1237 { return this->entries_.front(); }
1239 Expression*
1240 front() const
1241 { return this->entries_.front(); }
1243 Expression*&
1244 back()
1245 { return this->entries_.back(); }
1247 Expression*
1248 back() const
1249 { return this->entries_.back(); }
1251 // Iterators.
1253 typedef std::vector<Expression*>::iterator iterator;
1254 typedef std::vector<Expression*>::const_iterator const_iterator;
1256 iterator
1257 begin()
1258 { return this->entries_.begin(); }
1260 const_iterator
1261 begin() const
1262 { return this->entries_.begin(); }
1264 iterator
1265 end()
1266 { return this->entries_.end(); }
1268 const_iterator
1269 end() const
1270 { return this->entries_.end(); }
1272 // Erase an entry.
1273 void
1274 erase(iterator p)
1275 { this->entries_.erase(p); }
1277 private:
1278 std::vector<Expression*> entries_;
1281 // An abstract base class for an expression which is only used by the
1282 // parser, and is lowered in the lowering pass.
1284 class Parser_expression : public Expression
1286 public:
1287 Parser_expression(Expression_classification classification,
1288 Location location)
1289 : Expression(classification, location)
1292 protected:
1293 virtual Expression*
1294 do_lower(Gogo*, Named_object*, Statement_inserter*, int) = 0;
1296 Type*
1297 do_type();
1299 void
1300 do_determine_type(const Type_context*)
1301 { go_unreachable(); }
1303 void
1304 do_check_types(Gogo*)
1305 { go_unreachable(); }
1307 Bexpression*
1308 do_get_backend(Translate_context*)
1309 { go_unreachable(); }
1312 // An expression which is simply a variable.
1314 class Var_expression : public Expression
1316 public:
1317 Var_expression(Named_object* variable, Location location)
1318 : Expression(EXPRESSION_VAR_REFERENCE, location),
1319 variable_(variable)
1322 // Return the variable.
1323 Named_object*
1324 named_object() const
1325 { return this->variable_; }
1327 protected:
1328 Expression*
1329 do_lower(Gogo*, Named_object*, Statement_inserter*, int);
1331 Type*
1332 do_type();
1334 void
1335 do_determine_type(const Type_context*);
1337 Expression*
1338 do_copy()
1339 { return this; }
1341 bool
1342 do_is_addressable() const
1343 { return true; }
1345 void
1346 do_address_taken(bool);
1348 Bexpression*
1349 do_get_backend(Translate_context*);
1351 void
1352 do_dump_expression(Ast_dump_context*) const;
1354 private:
1355 // The variable we are referencing.
1356 Named_object* variable_;
1359 // A reference to a variable within an enclosing function.
1361 class Enclosed_var_expression : public Expression
1363 public:
1364 Enclosed_var_expression(Expression* reference, Named_object* variable,
1365 Location location)
1366 : Expression(EXPRESSION_ENCLOSED_VAR_REFERENCE, location),
1367 reference_(reference), variable_(variable)
1370 // The reference to the enclosed variable. This will be an indirection of the
1371 // the field stored within closure variable.
1372 Expression*
1373 reference() const
1374 { return this->reference_; }
1376 // The variable being enclosed and referenced.
1377 Named_object*
1378 variable() const
1379 { return this->variable_; }
1381 protected:
1383 do_traverse(Traverse*);
1385 Expression*
1386 do_lower(Gogo*, Named_object*, Statement_inserter*, int);
1388 Expression*
1389 do_flatten(Gogo*, Named_object*, Statement_inserter*);
1391 Type*
1392 do_type()
1393 { return this->reference_->type(); }
1395 void
1396 do_determine_type(const Type_context* context)
1397 { return this->reference_->determine_type(context); }
1399 Expression*
1400 do_copy()
1401 { return this; }
1403 bool
1404 do_is_addressable() const
1405 { return this->reference_->is_addressable(); }
1407 void
1408 do_address_taken(bool escapes);
1410 Bexpression*
1411 do_get_backend(Translate_context* context)
1412 { return this->reference_->get_backend(context); }
1414 void
1415 do_dump_expression(Ast_dump_context*) const;
1417 private:
1418 // The reference to the enclosed variable.
1419 Expression* reference_;
1420 // The variable being enclosed.
1421 Named_object* variable_;
1424 // A reference to a temporary variable.
1426 class Temporary_reference_expression : public Expression
1428 public:
1429 Temporary_reference_expression(Temporary_statement* statement,
1430 Location location)
1431 : Expression(EXPRESSION_TEMPORARY_REFERENCE, location),
1432 statement_(statement), is_lvalue_(false)
1435 // The temporary that this expression refers to.
1436 Temporary_statement*
1437 statement() const
1438 { return this->statement_; }
1440 // Indicate that this reference appears on the left hand side of an
1441 // assignment statement.
1442 void
1443 set_is_lvalue()
1444 { this->is_lvalue_ = true; }
1446 protected:
1447 Type*
1448 do_type();
1450 void
1451 do_determine_type(const Type_context*)
1454 Expression*
1455 do_copy()
1456 { return make_temporary_reference(this->statement_, this->location()); }
1458 bool
1459 do_is_addressable() const
1460 { return true; }
1462 void
1463 do_address_taken(bool);
1465 Bexpression*
1466 do_get_backend(Translate_context*);
1468 void
1469 do_dump_expression(Ast_dump_context*) const;
1471 private:
1472 // The statement where the temporary variable is defined.
1473 Temporary_statement* statement_;
1474 // Whether this reference appears on the left hand side of an
1475 // assignment statement.
1476 bool is_lvalue_;
1479 // Set and use a temporary variable.
1481 class Set_and_use_temporary_expression : public Expression
1483 public:
1484 Set_and_use_temporary_expression(Temporary_statement* statement,
1485 Expression* expr, Location location)
1486 : Expression(EXPRESSION_SET_AND_USE_TEMPORARY, location),
1487 statement_(statement), expr_(expr)
1490 // Return the temporary.
1491 Temporary_statement*
1492 temporary() const
1493 { return this->statement_; }
1495 // Return the expression.
1496 Expression*
1497 expression() const
1498 { return this->expr_; }
1500 protected:
1502 do_traverse(Traverse* traverse)
1503 { return Expression::traverse(&this->expr_, traverse); }
1505 Type*
1506 do_type();
1508 void
1509 do_determine_type(const Type_context*);
1511 Expression*
1512 do_copy()
1514 return make_set_and_use_temporary(this->statement_, this->expr_,
1515 this->location());
1518 bool
1519 do_is_addressable() const
1520 { return true; }
1522 void
1523 do_address_taken(bool);
1525 Bexpression*
1526 do_get_backend(Translate_context*);
1528 void
1529 do_dump_expression(Ast_dump_context*) const;
1531 private:
1532 // The statement where the temporary variable is defined.
1533 Temporary_statement* statement_;
1534 // The expression to assign to the temporary.
1535 Expression* expr_;
1538 // A string expression.
1540 class String_expression : public Expression
1542 public:
1543 String_expression(const std::string& val, Location location)
1544 : Expression(EXPRESSION_STRING, location),
1545 val_(val), type_(NULL)
1548 const std::string&
1549 val() const
1550 { return this->val_; }
1552 static Expression*
1553 do_import(Import*);
1555 protected:
1556 bool
1557 do_is_constant() const
1558 { return true; }
1560 bool
1561 do_is_static_initializer() const
1562 { return true; }
1564 bool
1565 do_string_constant_value(std::string* val) const
1567 *val = this->val_;
1568 return true;
1571 Type*
1572 do_type();
1574 void
1575 do_determine_type(const Type_context*);
1577 Expression*
1578 do_copy()
1579 { return this; }
1581 Bexpression*
1582 do_get_backend(Translate_context*);
1584 // Write string literal to a string dump.
1585 static void
1586 export_string(String_dump* exp, const String_expression* str);
1588 void
1589 do_export(Export*) const;
1591 void
1592 do_dump_expression(Ast_dump_context*) const;
1594 private:
1595 // The string value. This is immutable.
1596 const std::string val_;
1597 // The type as determined by context.
1598 Type* type_;
1601 // A type conversion expression.
1603 class Type_conversion_expression : public Expression
1605 public:
1606 Type_conversion_expression(Type* type, Expression* expr,
1607 Location location)
1608 : Expression(EXPRESSION_CONVERSION, location),
1609 type_(type), expr_(expr), may_convert_function_types_(false)
1612 // Return the type to which we are converting.
1613 Type*
1614 type() const
1615 { return this->type_; }
1617 // Return the expression which we are converting.
1618 Expression*
1619 expr() const
1620 { return this->expr_; }
1622 // Permit converting from one function type to another. This is
1623 // used internally for method expressions.
1624 void
1625 set_may_convert_function_types()
1627 this->may_convert_function_types_ = true;
1630 // Import a type conversion expression.
1631 static Expression*
1632 do_import(Import*);
1634 protected:
1636 do_traverse(Traverse* traverse);
1638 Expression*
1639 do_lower(Gogo*, Named_object*, Statement_inserter*, int);
1641 Expression*
1642 do_flatten(Gogo*, Named_object*, Statement_inserter*);
1644 bool
1645 do_is_constant() const;
1647 bool
1648 do_is_static_initializer() const;
1650 bool
1651 do_numeric_constant_value(Numeric_constant*) const;
1653 bool
1654 do_string_constant_value(std::string*) const;
1656 Type*
1657 do_type()
1658 { return this->type_; }
1660 void
1661 do_determine_type(const Type_context*);
1663 void
1664 do_check_types(Gogo*);
1666 Expression*
1667 do_copy();
1669 Bexpression*
1670 do_get_backend(Translate_context* context);
1672 void
1673 do_export(Export*) const;
1675 void
1676 do_dump_expression(Ast_dump_context*) const;
1678 private:
1679 // The type to convert to.
1680 Type* type_;
1681 // The expression to convert.
1682 Expression* expr_;
1683 // True if this is permitted to convert function types. This is
1684 // used internally for method expressions.
1685 bool may_convert_function_types_;
1688 // An unsafe type conversion, used to pass values to builtin functions.
1690 class Unsafe_type_conversion_expression : public Expression
1692 public:
1693 Unsafe_type_conversion_expression(Type* type, Expression* expr,
1694 Location location)
1695 : Expression(EXPRESSION_UNSAFE_CONVERSION, location),
1696 type_(type), expr_(expr)
1699 Expression*
1700 expr() const
1701 { return this->expr_; }
1703 protected:
1705 do_traverse(Traverse* traverse);
1707 bool
1708 do_is_static_initializer() const;
1710 Type*
1711 do_type()
1712 { return this->type_; }
1714 void
1715 do_determine_type(const Type_context*)
1716 { this->expr_->determine_type_no_context(); }
1718 Expression*
1719 do_copy();
1721 Bexpression*
1722 do_get_backend(Translate_context*);
1724 void
1725 do_dump_expression(Ast_dump_context*) const;
1727 private:
1728 // The type to convert to.
1729 Type* type_;
1730 // The expression to convert.
1731 Expression* expr_;
1734 // A Unary expression.
1736 class Unary_expression : public Expression
1738 public:
1739 Unary_expression(Operator op, Expression* expr, Location location)
1740 : Expression(EXPRESSION_UNARY, location),
1741 op_(op), escapes_(true), create_temp_(false), is_gc_root_(false),
1742 is_slice_init_(false), expr_(expr),
1743 issue_nil_check_(NIL_CHECK_DEFAULT)
1746 // Return the operator.
1747 Operator
1748 op() const
1749 { return this->op_; }
1751 // Return the operand.
1752 Expression*
1753 operand() const
1754 { return this->expr_; }
1756 // Record that an address expression does not escape.
1757 void
1758 set_does_not_escape()
1760 go_assert(this->op_ == OPERATOR_AND);
1761 this->escapes_ = false;
1764 // Record that this is an address expression which should create a
1765 // temporary variable if necessary. This is used for method calls.
1766 void
1767 set_create_temp()
1769 go_assert(this->op_ == OPERATOR_AND);
1770 this->create_temp_ = true;
1773 // Record that this is an address expression of a GC root, which is a
1774 // mutable composite literal. This used for registering GC variables.
1775 void
1776 set_is_gc_root()
1778 go_assert(this->op_ == OPERATOR_AND);
1779 this->is_gc_root_ = true;
1782 // Record that this is an address expression of a slice value initializer,
1783 // which is mutable if the values are not copied to the heap.
1784 void
1785 set_is_slice_init()
1787 go_assert(this->op_ == OPERATOR_AND);
1788 this->is_slice_init_ = true;
1791 // Call the address_taken method on the operand if necessary.
1792 void
1793 check_operand_address_taken(Gogo*);
1795 // Apply unary opcode OP to UNC, setting NC. Return true if this
1796 // could be done, false if not. On overflow, issues an error and
1797 // sets *ISSUED_ERROR.
1798 static bool
1799 eval_constant(Operator op, const Numeric_constant* unc,
1800 Location, Numeric_constant* nc, bool *issued_error);
1802 static Expression*
1803 do_import(Import*);
1805 // Declare that this deref does or does not require an explicit nil check.
1806 void
1807 set_requires_nil_check(bool needed)
1809 go_assert(this->op_ == OPERATOR_MULT);
1810 if (needed)
1811 this->issue_nil_check_ = NIL_CHECK_NEEDED;
1812 else
1813 this->issue_nil_check_ = NIL_CHECK_NOT_NEEDED;
1816 protected:
1818 do_traverse(Traverse* traverse)
1819 { return Expression::traverse(&this->expr_, traverse); }
1821 Expression*
1822 do_lower(Gogo*, Named_object*, Statement_inserter*, int);
1824 Expression*
1825 do_flatten(Gogo*, Named_object*, Statement_inserter*);
1827 bool
1828 do_is_constant() const;
1830 bool
1831 do_is_static_initializer() const;
1833 bool
1834 do_numeric_constant_value(Numeric_constant*) const;
1836 Type*
1837 do_type();
1839 void
1840 do_determine_type(const Type_context*);
1842 void
1843 do_check_types(Gogo*);
1845 Expression*
1846 do_copy()
1848 return Expression::make_unary(this->op_, this->expr_->copy(),
1849 this->location());
1852 bool
1853 do_must_eval_subexpressions_in_order(int*) const
1854 { return this->op_ == OPERATOR_MULT; }
1856 bool
1857 do_is_addressable() const
1858 { return this->op_ == OPERATOR_MULT; }
1860 Bexpression*
1861 do_get_backend(Translate_context*);
1863 void
1864 do_export(Export*) const;
1866 void
1867 do_dump_expression(Ast_dump_context*) const;
1869 void
1870 do_issue_nil_check()
1872 if (this->op_ == OPERATOR_MULT)
1873 this->set_requires_nil_check(true);
1876 private:
1877 static bool
1878 base_is_static_initializer(Expression*);
1880 // Return a determination as to whether this dereference expression
1881 // requires a nil check.
1882 Nil_check_classification
1883 requires_nil_check(Gogo*);
1885 // The unary operator to apply.
1886 Operator op_;
1887 // Normally true. False if this is an address expression which does
1888 // not escape the current function.
1889 bool escapes_;
1890 // True if this is an address expression which should create a
1891 // temporary variable if necessary.
1892 bool create_temp_;
1893 // True if this is an address expression for a GC root. A GC root is a
1894 // special struct composite literal that is mutable when addressed, meaning
1895 // it cannot be represented as an immutable_struct in the backend.
1896 bool is_gc_root_;
1897 // True if this is an address expression for a slice value with an immutable
1898 // initializer. The initializer for a slice's value pointer has an array
1899 // type, meaning it cannot be represented as an immutable_struct in the
1900 // backend.
1901 bool is_slice_init_;
1902 // The operand.
1903 Expression* expr_;
1904 // Whether or not to issue a nil check for this expression if its address
1905 // is being taken.
1906 Nil_check_classification issue_nil_check_;
1909 // A binary expression.
1911 class Binary_expression : public Expression
1913 public:
1914 Binary_expression(Operator op, Expression* left, Expression* right,
1915 Location location)
1916 : Expression(EXPRESSION_BINARY, location),
1917 op_(op), left_(left), right_(right), type_(NULL)
1920 // Return the operator.
1921 Operator
1922 op()
1923 { return this->op_; }
1925 // Return the left hand expression.
1926 Expression*
1927 left()
1928 { return this->left_; }
1930 // Return the right hand expression.
1931 Expression*
1932 right()
1933 { return this->right_; }
1935 // Apply binary opcode OP to LEFT_NC and RIGHT_NC, setting NC.
1936 // Return true if this could be done, false if not. Issue errors at
1937 // LOCATION as appropriate, and sets *ISSUED_ERROR if it did.
1938 static bool
1939 eval_constant(Operator op, Numeric_constant* left_nc,
1940 Numeric_constant* right_nc, Location location,
1941 Numeric_constant* nc, bool* issued_error);
1943 // Compare constants LEFT_NC and RIGHT_NC according to OP, setting
1944 // *RESULT. Return true if this could be done, false if not. Issue
1945 // errors at LOCATION as appropriate.
1946 static bool
1947 compare_constant(Operator op, Numeric_constant* left_nc,
1948 Numeric_constant* right_nc, Location location,
1949 bool* result);
1951 static Expression*
1952 do_import(Import*);
1954 // Report an error if OP can not be applied to TYPE. Return whether
1955 // it can. OTYPE is the type of the other operand.
1956 static bool
1957 check_operator_type(Operator op, Type* type, Type* otype, Location);
1959 // Set *RESULT_TYPE to the resulting type when OP is applied to
1960 // operands of type LEFT_TYPE and RIGHT_TYPE. Return true on
1961 // success, false on failure.
1962 static bool
1963 operation_type(Operator op, Type* left_type, Type* right_type,
1964 Type** result_type);
1966 protected:
1968 do_traverse(Traverse* traverse);
1970 Expression*
1971 do_lower(Gogo*, Named_object*, Statement_inserter*, int);
1973 Expression*
1974 do_flatten(Gogo*, Named_object*, Statement_inserter*);
1976 bool
1977 do_is_constant() const
1978 { return this->left_->is_constant() && this->right_->is_constant(); }
1980 bool
1981 do_is_static_initializer() const;
1983 bool
1984 do_numeric_constant_value(Numeric_constant*) const;
1986 bool
1987 do_discarding_value();
1989 Type*
1990 do_type();
1992 void
1993 do_determine_type(const Type_context*);
1995 void
1996 do_check_types(Gogo*);
1998 Expression*
1999 do_copy()
2001 return Expression::make_binary(this->op_, this->left_->copy(),
2002 this->right_->copy(), this->location());
2005 Bexpression*
2006 do_get_backend(Translate_context*);
2008 void
2009 do_export(Export*) const;
2011 void
2012 do_dump_expression(Ast_dump_context*) const;
2014 private:
2015 static bool
2016 cmp_to_bool(Operator op, int cmp);
2018 static bool
2019 eval_integer(Operator op, const Numeric_constant*, const Numeric_constant*,
2020 Location, Numeric_constant*);
2022 static bool
2023 eval_float(Operator op, const Numeric_constant*, const Numeric_constant*,
2024 Location, Numeric_constant*);
2026 static bool
2027 eval_complex(Operator op, const Numeric_constant*, const Numeric_constant*,
2028 Location, Numeric_constant*);
2030 static bool
2031 compare_integer(const Numeric_constant*, const Numeric_constant*, int*);
2033 static bool
2034 compare_float(const Numeric_constant*, const Numeric_constant *, int*);
2036 static bool
2037 compare_complex(const Numeric_constant*, const Numeric_constant*, int*);
2039 Expression*
2040 lower_struct_comparison(Gogo*, Statement_inserter*);
2042 Expression*
2043 lower_array_comparison(Gogo*, Statement_inserter*);
2045 Expression*
2046 lower_interface_value_comparison(Gogo*, Statement_inserter*);
2048 Expression*
2049 lower_compare_to_memcmp(Gogo*, Statement_inserter*);
2051 Expression*
2052 operand_address(Statement_inserter*, Expression*);
2054 // The binary operator to apply.
2055 Operator op_;
2056 // The left hand side operand.
2057 Expression* left_;
2058 // The right hand side operand.
2059 Expression* right_;
2060 // The type of a comparison operation.
2061 Type* type_;
2064 // A string concatenation expression. This is a sequence of strings
2065 // added together. It is created when lowering Binary_expression.
2067 class String_concat_expression : public Expression
2069 public:
2070 String_concat_expression(Expression_list* exprs)
2071 : Expression(EXPRESSION_STRING_CONCAT, exprs->front()->location()),
2072 exprs_(exprs)
2075 // Return the list of string expressions to be concatenated.
2076 Expression_list*
2077 exprs()
2078 { return this->exprs_; }
2080 protected:
2082 do_traverse(Traverse* traverse)
2083 { return this->exprs_->traverse(traverse); }
2085 Expression*
2086 do_lower(Gogo*, Named_object*, Statement_inserter*, int)
2087 { return this; }
2089 Expression*
2090 do_flatten(Gogo*, Named_object*, Statement_inserter*);
2092 bool
2093 do_is_constant() const;
2095 bool
2096 do_is_static_initializer() const;
2098 Type*
2099 do_type();
2101 void
2102 do_determine_type(const Type_context*);
2104 void
2105 do_check_types(Gogo*);
2107 Expression*
2108 do_copy()
2109 { return Expression::make_string_concat(this->exprs_->copy()); }
2111 Bexpression*
2112 do_get_backend(Translate_context*)
2113 { go_unreachable(); }
2115 void
2116 do_export(Export*) const
2117 { go_unreachable(); }
2119 void
2120 do_dump_expression(Ast_dump_context*) const;
2122 private:
2123 // The string expressions to concatenate.
2124 Expression_list* exprs_;
2127 // A call expression. The go statement needs to dig inside this.
2129 class Call_expression : public Expression
2131 public:
2132 Call_expression(Expression* fn, Expression_list* args, bool is_varargs,
2133 Location location)
2134 : Expression(EXPRESSION_CALL, location),
2135 fn_(fn), args_(args), type_(NULL), call_(NULL), call_temp_(NULL)
2136 , expected_result_count_(0), is_varargs_(is_varargs),
2137 varargs_are_lowered_(false), types_are_determined_(false),
2138 is_deferred_(false), is_concurrent_(false), issued_error_(false),
2139 is_multi_value_arg_(false), is_flattened_(false)
2142 // The function to call.
2143 Expression*
2144 fn() const
2145 { return this->fn_; }
2147 // The arguments.
2148 Expression_list*
2149 args()
2150 { return this->args_; }
2152 const Expression_list*
2153 args() const
2154 { return this->args_; }
2156 // Get the function type.
2157 Function_type*
2158 get_function_type() const;
2160 // Return the number of values this call will return.
2161 size_t
2162 result_count() const;
2164 // Return the temporary variable that holds the results. This is
2165 // only valid after the expression has been lowered, and is only
2166 // valid for calls which return multiple results.
2167 Temporary_statement*
2168 results() const;
2170 // Set the number of results expected from this call. This is used
2171 // when the call appears in a context that expects multiple results,
2172 // such as a, b = f().
2173 void
2174 set_expected_result_count(size_t);
2176 // Return whether this is a call to the predeclared function
2177 // recover.
2178 bool
2179 is_recover_call() const;
2181 // Set the argument for a call to recover.
2182 void
2183 set_recover_arg(Expression*);
2185 // Whether the last argument is a varargs argument (f(a...)).
2186 bool
2187 is_varargs() const
2188 { return this->is_varargs_; }
2190 // Return whether varargs have already been lowered.
2191 bool
2192 varargs_are_lowered() const
2193 { return this->varargs_are_lowered_; }
2195 // Note that varargs have already been lowered.
2196 void
2197 set_varargs_are_lowered()
2198 { this->varargs_are_lowered_ = true; }
2200 // Whether this call is being deferred.
2201 bool
2202 is_deferred() const
2203 { return this->is_deferred_; }
2205 // Note that the call is being deferred.
2206 void
2207 set_is_deferred()
2208 { this->is_deferred_ = true; }
2210 // Whether this call is concurrently executed.
2211 bool
2212 is_concurrent() const
2213 { return this->is_concurrent_; }
2215 // Note that the call is concurrently executed.
2216 void
2217 set_is_concurrent()
2218 { this->is_concurrent_ = true; }
2220 // We have found an error with this call expression; return true if
2221 // we should report it.
2222 bool
2223 issue_error();
2225 // Whether or not this call contains errors, either in the call or the
2226 // arguments to the call.
2227 bool
2228 is_erroneous_call();
2230 // Whether this call returns multiple results that are used as an
2231 // multi-valued argument.
2232 bool
2233 is_multi_value_arg() const
2234 { return this->is_multi_value_arg_; }
2236 // Note this call is used as a multi-valued argument.
2237 void
2238 set_is_multi_value_arg()
2239 { this->is_multi_value_arg_ = true; }
2241 // Whether this is a call to builtin function.
2242 virtual bool
2243 is_builtin()
2244 { return false; }
2246 // Convert to a Builtin_call_expression, or return NULL.
2247 inline Builtin_call_expression*
2248 builtin_call_expression();
2250 protected:
2252 do_traverse(Traverse*);
2254 virtual Expression*
2255 do_lower(Gogo*, Named_object*, Statement_inserter*, int);
2257 virtual Expression*
2258 do_flatten(Gogo*, Named_object*, Statement_inserter*);
2260 bool
2261 do_discarding_value()
2262 { return true; }
2264 virtual Type*
2265 do_type();
2267 virtual void
2268 do_determine_type(const Type_context*);
2270 virtual void
2271 do_check_types(Gogo*);
2273 Expression*
2274 do_copy();
2276 bool
2277 do_must_eval_in_order() const;
2279 virtual Bexpression*
2280 do_get_backend(Translate_context*);
2282 virtual bool
2283 do_is_recover_call() const;
2285 virtual void
2286 do_set_recover_arg(Expression*);
2288 // Let a builtin expression change the argument list.
2289 void
2290 set_args(Expression_list* args)
2291 { this->args_ = args; }
2293 // Let a builtin expression lower varargs.
2294 void
2295 lower_varargs(Gogo*, Named_object* function, Statement_inserter* inserter,
2296 Type* varargs_type, size_t param_count,
2297 Slice_storage_escape_disp escape_disp);
2299 // Let a builtin expression check whether types have been
2300 // determined.
2301 bool
2302 determining_types();
2304 void
2305 do_dump_expression(Ast_dump_context*) const;
2307 private:
2308 bool
2309 check_argument_type(int, const Type*, const Type*, Location, bool);
2311 Expression*
2312 lower_to_builtin(Named_object**, const char*, int);
2314 Expression*
2315 interface_method_function(Interface_field_reference_expression*,
2316 Expression**, Location);
2318 Bexpression*
2319 set_results(Translate_context*);
2321 // The function to call.
2322 Expression* fn_;
2323 // The arguments to pass. This may be NULL if there are no
2324 // arguments.
2325 Expression_list* args_;
2326 // The type of the expression, to avoid recomputing it.
2327 Type* type_;
2328 // The backend expression for the call, used for a call which returns a tuple.
2329 Bexpression* call_;
2330 // A temporary variable to store this call if the function returns a tuple.
2331 Temporary_statement* call_temp_;
2332 // If not 0, the number of results expected from this call, when
2333 // used in a context that expects multiple values.
2334 size_t expected_result_count_;
2335 // True if the last argument is a varargs argument (f(a...)).
2336 bool is_varargs_;
2337 // True if varargs have already been lowered.
2338 bool varargs_are_lowered_;
2339 // True if types have been determined.
2340 bool types_are_determined_;
2341 // True if the call is an argument to a defer statement.
2342 bool is_deferred_;
2343 // True if the call is an argument to a go statement.
2344 bool is_concurrent_;
2345 // True if we reported an error about a mismatch between call
2346 // results and uses. This is to avoid producing multiple errors
2347 // when there are multiple Call_result_expressions.
2348 bool issued_error_;
2349 // True if this call is used as an argument that returns multiple results.
2350 bool is_multi_value_arg_;
2351 // True if this expression has already been flattened.
2352 bool is_flattened_;
2355 // A call expression to a builtin function.
2357 class Builtin_call_expression : public Call_expression
2359 public:
2360 Builtin_call_expression(Gogo* gogo, Expression* fn, Expression_list* args,
2361 bool is_varargs, Location location);
2363 // The builtin functions.
2364 enum Builtin_function_code
2366 BUILTIN_INVALID,
2368 // Predeclared builtin functions.
2369 BUILTIN_APPEND,
2370 BUILTIN_CAP,
2371 BUILTIN_CLOSE,
2372 BUILTIN_COMPLEX,
2373 BUILTIN_COPY,
2374 BUILTIN_DELETE,
2375 BUILTIN_IMAG,
2376 BUILTIN_LEN,
2377 BUILTIN_MAKE,
2378 BUILTIN_NEW,
2379 BUILTIN_PANIC,
2380 BUILTIN_PRINT,
2381 BUILTIN_PRINTLN,
2382 BUILTIN_REAL,
2383 BUILTIN_RECOVER,
2385 // Builtin functions from the unsafe package.
2386 BUILTIN_ALIGNOF,
2387 BUILTIN_OFFSETOF,
2388 BUILTIN_SIZEOF
2391 Builtin_function_code
2392 code()
2393 { return this->code_; }
2395 // This overrides Call_expression::is_builtin.
2396 bool
2397 is_builtin()
2398 { return true; }
2400 // Return whether EXPR, of array type, is a constant if passed to
2401 // len or cap.
2402 static bool
2403 array_len_is_constant(Expression* expr);
2405 protected:
2406 // This overrides Call_expression::do_lower.
2407 Expression*
2408 do_lower(Gogo*, Named_object*, Statement_inserter*, int);
2410 Expression*
2411 do_flatten(Gogo*, Named_object*, Statement_inserter*);
2413 bool
2414 do_is_constant() const;
2416 bool
2417 do_numeric_constant_value(Numeric_constant*) const;
2419 bool
2420 do_discarding_value();
2422 Type*
2423 do_type();
2425 void
2426 do_determine_type(const Type_context*);
2428 void
2429 do_check_types(Gogo*);
2431 Expression*
2432 do_copy();
2434 Bexpression*
2435 do_get_backend(Translate_context*);
2437 void
2438 do_export(Export*) const;
2440 virtual bool
2441 do_is_recover_call() const;
2443 virtual void
2444 do_set_recover_arg(Expression*);
2446 private:
2447 Expression*
2448 one_arg() const;
2450 bool
2451 check_one_arg();
2453 static Type*
2454 real_imag_type(Type*);
2456 static Type*
2457 complex_type(Type*);
2459 Expression*
2460 lower_make(Statement_inserter*);
2462 Expression* flatten_append(Gogo*, Named_object*, Statement_inserter*);
2464 bool
2465 check_int_value(Expression*, bool is_length, bool* small);
2467 // A pointer back to the general IR structure. This avoids a global
2468 // variable, or passing it around everywhere.
2469 Gogo* gogo_;
2470 // The builtin function being called.
2471 Builtin_function_code code_;
2472 // Used to stop endless loops when the length of an array uses len
2473 // or cap of the array itself.
2474 mutable bool seen_;
2475 // Whether the argument is set for calls to BUILTIN_RECOVER.
2476 bool recover_arg_is_set_;
2479 inline Builtin_call_expression*
2480 Call_expression::builtin_call_expression()
2482 return (this->is_builtin()
2483 ? static_cast<Builtin_call_expression*>(this)
2484 : NULL);
2487 // A single result from a call which returns multiple results.
2489 class Call_result_expression : public Expression
2491 public:
2492 Call_result_expression(Call_expression* call, unsigned int index)
2493 : Expression(EXPRESSION_CALL_RESULT, call->location()),
2494 call_(call), index_(index)
2497 Expression*
2498 call() const
2499 { return this->call_; }
2501 unsigned int
2502 index() const
2503 { return this->index_; }
2505 protected:
2507 do_traverse(Traverse*);
2509 Type*
2510 do_type();
2512 void
2513 do_determine_type(const Type_context*);
2515 void
2516 do_check_types(Gogo*);
2518 Expression*
2519 do_copy()
2521 return new Call_result_expression(this->call_->call_expression(),
2522 this->index_);
2525 bool
2526 do_must_eval_in_order() const
2527 { return true; }
2529 Bexpression*
2530 do_get_backend(Translate_context*);
2532 void
2533 do_dump_expression(Ast_dump_context*) const;
2535 private:
2536 // The underlying call expression.
2537 Expression* call_;
2538 // Which result we want.
2539 unsigned int index_;
2542 // An expression which represents a pointer to a function.
2544 class Func_expression : public Expression
2546 public:
2547 Func_expression(Named_object* function, Expression* closure,
2548 Location location)
2549 : Expression(EXPRESSION_FUNC_REFERENCE, location),
2550 function_(function), closure_(closure),
2551 runtime_code_(Runtime::NUMBER_OF_FUNCTIONS)
2554 // Return the object associated with the function.
2555 Named_object*
2556 named_object() const
2557 { return this->function_; }
2559 // Return the closure for this function. This will return NULL if
2560 // the function has no closure, which is the normal case.
2561 Expression*
2562 closure()
2563 { return this->closure_; }
2565 // Return whether this is a reference to a runtime function.
2566 bool
2567 is_runtime_function() const
2568 { return this->runtime_code_ != Runtime::NUMBER_OF_FUNCTIONS; }
2570 // Return the runtime code for this function expression.
2571 // Returns Runtime::NUMBER_OF_FUNCTIONS if this is not a reference to a
2572 // runtime function.
2573 Runtime::Function
2574 runtime_code() const
2575 { return this->runtime_code_; }
2577 // Set the runtime code for this function expression.
2578 void
2579 set_runtime_code(Runtime::Function code)
2580 { this->runtime_code_ = code; }
2582 // Return a backend expression for the code of a function.
2583 static Bexpression*
2584 get_code_pointer(Gogo*, Named_object* function, Location loc);
2586 protected:
2588 do_traverse(Traverse*);
2590 Type*
2591 do_type();
2593 void
2594 do_determine_type(const Type_context*)
2596 if (this->closure_ != NULL)
2597 this->closure_->determine_type_no_context();
2600 Expression*
2601 do_copy()
2603 return Expression::make_func_reference(this->function_,
2604 (this->closure_ == NULL
2605 ? NULL
2606 : this->closure_->copy()),
2607 this->location());
2610 Bexpression*
2611 do_get_backend(Translate_context*);
2613 void
2614 do_dump_expression(Ast_dump_context*) const;
2616 private:
2617 // The function itself.
2618 Named_object* function_;
2619 // A closure. This is normally NULL. For a nested function, it may
2620 // be a struct holding pointers to all the variables referenced by
2621 // this function and defined in enclosing functions.
2622 Expression* closure_;
2623 // The runtime code for the referenced function.
2624 Runtime::Function runtime_code_;
2627 // A function descriptor. A function descriptor is a struct with a
2628 // single field pointing to the function code. This is used for
2629 // functions without closures.
2631 class Func_descriptor_expression : public Expression
2633 public:
2634 Func_descriptor_expression(Named_object* fn);
2636 // Make the function descriptor type, so that it can be converted.
2637 static void
2638 make_func_descriptor_type();
2640 protected:
2642 do_traverse(Traverse*);
2644 Type*
2645 do_type();
2647 void
2648 do_determine_type(const Type_context*)
2651 Expression*
2652 do_copy()
2653 { return Expression::make_func_descriptor(this->fn_); }
2655 bool
2656 do_is_addressable() const
2657 { return true; }
2659 Bexpression*
2660 do_get_backend(Translate_context*);
2662 void
2663 do_dump_expression(Ast_dump_context* context) const;
2665 private:
2666 // The type of all function descriptors.
2667 static Type* descriptor_type;
2669 // The function for which this is the descriptor.
2670 Named_object* fn_;
2671 // The descriptor variable.
2672 Bvariable* dvar_;
2675 // A reference to an unknown name.
2677 class Unknown_expression : public Parser_expression
2679 public:
2680 Unknown_expression(Named_object* named_object, Location location)
2681 : Parser_expression(EXPRESSION_UNKNOWN_REFERENCE, location),
2682 named_object_(named_object), no_error_message_(false),
2683 is_composite_literal_key_(false)
2686 // The associated named object.
2687 Named_object*
2688 named_object() const
2689 { return this->named_object_; }
2691 // The name of the identifier which was unknown.
2692 const std::string&
2693 name() const;
2695 // Call this to indicate that we should not give an error if this
2696 // name is never defined. This is used to avoid knock-on errors
2697 // during an erroneous parse.
2698 void
2699 set_no_error_message()
2700 { this->no_error_message_ = true; }
2702 // Note that this expression is being used as the key in a composite
2703 // literal, so it may be OK if it is not resolved.
2704 void
2705 set_is_composite_literal_key()
2706 { this->is_composite_literal_key_ = true; }
2708 // Note that this expression should no longer be treated as a
2709 // composite literal key.
2710 void
2711 clear_is_composite_literal_key()
2712 { this->is_composite_literal_key_ = false; }
2714 protected:
2715 Expression*
2716 do_lower(Gogo*, Named_object*, Statement_inserter*, int);
2718 Expression*
2719 do_copy()
2720 { return new Unknown_expression(this->named_object_, this->location()); }
2722 void
2723 do_dump_expression(Ast_dump_context*) const;
2725 private:
2726 // The unknown name.
2727 Named_object* named_object_;
2728 // True if we should not give errors if this is undefined. This is
2729 // used if there was a parse failure.
2730 bool no_error_message_;
2731 // True if this is the key in a composite literal.
2732 bool is_composite_literal_key_;
2735 // An index expression. This is lowered to an array index, a string
2736 // index, or a map index.
2738 class Index_expression : public Parser_expression
2740 public:
2741 Index_expression(Expression* left, Expression* start, Expression* end,
2742 Expression* cap, Location location)
2743 : Parser_expression(EXPRESSION_INDEX, location),
2744 left_(left), start_(start), end_(end), cap_(cap)
2747 // Dump an index expression, i.e. an expression of the form
2748 // expr[expr], expr[expr:expr], or expr[expr:expr:expr] to a dump context.
2749 static void
2750 dump_index_expression(Ast_dump_context*, const Expression* expr,
2751 const Expression* start, const Expression* end,
2752 const Expression* cap);
2754 protected:
2756 do_traverse(Traverse*);
2758 Expression*
2759 do_lower(Gogo*, Named_object*, Statement_inserter*, int);
2761 Expression*
2762 do_copy()
2764 return new Index_expression(this->left_->copy(), this->start_->copy(),
2765 (this->end_ == NULL
2766 ? NULL
2767 : this->end_->copy()),
2768 (this->cap_ == NULL
2769 ? NULL
2770 : this->cap_->copy()),
2771 this->location());
2774 bool
2775 do_must_eval_subexpressions_in_order(int* skip) const
2777 *skip = 1;
2778 return true;
2781 void
2782 do_dump_expression(Ast_dump_context*) const;
2784 void
2785 do_issue_nil_check()
2786 { this->left_->issue_nil_check(); }
2787 private:
2788 // The expression being indexed.
2789 Expression* left_;
2790 // The first index.
2791 Expression* start_;
2792 // The second index. This is NULL for an index, non-NULL for a
2793 // slice.
2794 Expression* end_;
2795 // The capacity argument. This is NULL for indices and slices that use the
2796 // default capacity, non-NULL for indices and slices that specify the
2797 // capacity.
2798 Expression* cap_;
2801 // An array index. This is used for both indexing and slicing.
2803 class Array_index_expression : public Expression
2805 public:
2806 Array_index_expression(Expression* array, Expression* start,
2807 Expression* end, Expression* cap, Location location)
2808 : Expression(EXPRESSION_ARRAY_INDEX, location),
2809 array_(array), start_(start), end_(end), cap_(cap), type_(NULL),
2810 is_lvalue_(false)
2813 // Return the array.
2814 Expression*
2815 array()
2816 { return this->array_; }
2818 const Expression*
2819 array() const
2820 { return this->array_; }
2822 // Return the index of a simple index expression, or the start index
2823 // of a slice expression.
2824 Expression*
2825 start()
2826 { return this->start_; }
2828 const Expression*
2829 start() const
2830 { return this->start_; }
2832 // Return the end index of a slice expression. This is NULL for a
2833 // simple index expression.
2834 Expression*
2835 end()
2836 { return this->end_; }
2838 const Expression*
2839 end() const
2840 { return this->end_; }
2842 // Return whether this array index expression appears in an lvalue
2843 // (left hand side of assignment) context.
2844 bool
2845 is_lvalue() const
2846 { return this->is_lvalue_; }
2848 // Update this array index expression to indicate that it appears
2849 // in a left-hand-side or lvalue context.
2850 void
2851 set_is_lvalue()
2852 { this->is_lvalue_ = true; }
2854 protected:
2856 do_traverse(Traverse*);
2858 Expression*
2859 do_flatten(Gogo*, Named_object*, Statement_inserter*);
2861 Type*
2862 do_type();
2864 void
2865 do_determine_type(const Type_context*);
2867 void
2868 do_check_types(Gogo*);
2870 Expression*
2871 do_copy()
2873 return Expression::make_array_index(this->array_->copy(),
2874 this->start_->copy(),
2875 (this->end_ == NULL
2876 ? NULL
2877 : this->end_->copy()),
2878 (this->cap_ == NULL
2879 ? NULL
2880 : this->cap_->copy()),
2881 this->location());
2884 bool
2885 do_must_eval_subexpressions_in_order(int* skip) const
2887 *skip = 1;
2888 return true;
2891 bool
2892 do_is_addressable() const;
2894 void
2895 do_address_taken(bool escapes);
2897 void
2898 do_issue_nil_check()
2899 { this->array_->issue_nil_check(); }
2901 Bexpression*
2902 do_get_backend(Translate_context*);
2904 void
2905 do_dump_expression(Ast_dump_context*) const;
2907 private:
2908 // The array we are getting a value from.
2909 Expression* array_;
2910 // The start or only index.
2911 Expression* start_;
2912 // The end index of a slice. This may be NULL for a simple array
2913 // index, or it may be a nil expression for the length of the array.
2914 Expression* end_;
2915 // The capacity argument of a slice. This may be NULL for an array index or
2916 // slice.
2917 Expression* cap_;
2918 // The type of the expression.
2919 Type* type_;
2920 // Whether expr appears in an lvalue context.
2921 bool is_lvalue_;
2924 // A string index. This is used for both indexing and slicing.
2926 class String_index_expression : public Expression
2928 public:
2929 String_index_expression(Expression* string, Expression* start,
2930 Expression* end, Location location)
2931 : Expression(EXPRESSION_STRING_INDEX, location),
2932 string_(string), start_(start), end_(end)
2935 // Return the string being indexed.
2936 Expression*
2937 string() const
2938 { return this->string_; }
2940 protected:
2942 do_traverse(Traverse*);
2944 Expression*
2945 do_flatten(Gogo*, Named_object*, Statement_inserter*);
2947 Type*
2948 do_type();
2950 void
2951 do_determine_type(const Type_context*);
2953 void
2954 do_check_types(Gogo*);
2956 Expression*
2957 do_copy()
2959 return Expression::make_string_index(this->string_->copy(),
2960 this->start_->copy(),
2961 (this->end_ == NULL
2962 ? NULL
2963 : this->end_->copy()),
2964 this->location());
2967 bool
2968 do_must_eval_subexpressions_in_order(int* skip) const
2970 *skip = 1;
2971 return true;
2974 Bexpression*
2975 do_get_backend(Translate_context*);
2977 void
2978 do_dump_expression(Ast_dump_context*) const;
2980 private:
2981 // The string we are getting a value from.
2982 Expression* string_;
2983 // The start or only index.
2984 Expression* start_;
2985 // The end index of a slice. This may be NULL for a single index,
2986 // or it may be a nil expression for the length of the string.
2987 Expression* end_;
2990 // An index into a map.
2992 class Map_index_expression : public Expression
2994 public:
2995 Map_index_expression(Expression* map, Expression* index,
2996 Location location)
2997 : Expression(EXPRESSION_MAP_INDEX, location),
2998 map_(map), index_(index), value_pointer_(NULL)
3001 // Return the map.
3002 Expression*
3003 map()
3004 { return this->map_; }
3006 const Expression*
3007 map() const
3008 { return this->map_; }
3010 // Return the index.
3011 Expression*
3012 index()
3013 { return this->index_; }
3015 const Expression*
3016 index() const
3017 { return this->index_; }
3019 // Get the type of the map being indexed.
3020 Map_type*
3021 get_map_type() const;
3023 // Return an expression for the map index. This returns an
3024 // expression that evaluates to a pointer to a value in the map. If
3025 // the key is not present in the map, this will return a pointer to
3026 // the zero value.
3027 Expression*
3028 get_value_pointer(Gogo*);
3030 protected:
3032 do_traverse(Traverse*);
3034 Expression*
3035 do_flatten(Gogo*, Named_object*, Statement_inserter*);
3037 Type*
3038 do_type();
3040 void
3041 do_determine_type(const Type_context*);
3043 void
3044 do_check_types(Gogo*);
3046 Expression*
3047 do_copy()
3049 return Expression::make_map_index(this->map_->copy(),
3050 this->index_->copy(),
3051 this->location());
3054 bool
3055 do_must_eval_subexpressions_in_order(int* skip) const
3057 *skip = 1;
3058 return true;
3061 // A map index expression is an lvalue but it is not addressable.
3063 Bexpression*
3064 do_get_backend(Translate_context*);
3066 void
3067 do_dump_expression(Ast_dump_context*) const;
3069 private:
3070 // The map we are looking into.
3071 Expression* map_;
3072 // The index.
3073 Expression* index_;
3074 // A pointer to the value at this index.
3075 Expression* value_pointer_;
3078 // An expression which represents a method bound to its first
3079 // argument.
3081 class Bound_method_expression : public Expression
3083 public:
3084 Bound_method_expression(Expression* expr, const Method *method,
3085 Named_object* function, Location location)
3086 : Expression(EXPRESSION_BOUND_METHOD, location),
3087 expr_(expr), expr_type_(NULL), method_(method), function_(function)
3090 // Return the object which is the first argument.
3091 Expression*
3092 first_argument()
3093 { return this->expr_; }
3095 // Return the implicit type of the first argument. This will be
3096 // non-NULL when using a method from an anonymous field without
3097 // using an explicit stub.
3098 Type*
3099 first_argument_type() const
3100 { return this->expr_type_; }
3102 // Return the method.
3103 const Method*
3104 method() const
3105 { return this->method_; }
3107 // Return the function to call.
3108 Named_object*
3109 function() const
3110 { return this->function_; }
3112 // Set the implicit type of the expression.
3113 void
3114 set_first_argument_type(Type* type)
3115 { this->expr_type_ = type; }
3117 // Create a thunk to call FUNCTION, for METHOD, when it is used as
3118 // part of a method value.
3119 static Named_object*
3120 create_thunk(Gogo*, const Method* method, Named_object* function);
3122 protected:
3124 do_traverse(Traverse*);
3126 Expression*
3127 do_flatten(Gogo*, Named_object*, Statement_inserter*);
3129 Type*
3130 do_type();
3132 void
3133 do_determine_type(const Type_context*);
3135 void
3136 do_check_types(Gogo*);
3138 Expression*
3139 do_copy()
3141 return new Bound_method_expression(this->expr_->copy(), this->method_,
3142 this->function_, this->location());
3145 Bexpression*
3146 do_get_backend(Translate_context*)
3147 { go_unreachable(); }
3149 void
3150 do_dump_expression(Ast_dump_context*) const;
3152 private:
3153 // A mapping from method functions to the thunks we have created for
3154 // them.
3155 typedef Unordered_map(Named_object*, Named_object*) Method_value_thunks;
3156 static Method_value_thunks method_value_thunks;
3158 // The object used to find the method. This is passed to the method
3159 // as the first argument.
3160 Expression* expr_;
3161 // The implicit type of the object to pass to the method. This is
3162 // NULL in the normal case, non-NULL when using a method from an
3163 // anonymous field which does not require a stub.
3164 Type* expr_type_;
3165 // The method.
3166 const Method* method_;
3167 // The function to call. This is not the same as
3168 // method_->named_object() when the method has a stub. This will be
3169 // the real function rather than the stub.
3170 Named_object* function_;
3173 // A reference to a field in a struct.
3175 class Field_reference_expression : public Expression
3177 public:
3178 Field_reference_expression(Expression* expr, unsigned int field_index,
3179 Location location)
3180 : Expression(EXPRESSION_FIELD_REFERENCE, location),
3181 expr_(expr), field_index_(field_index), implicit_(false), called_fieldtrack_(false)
3184 // Return the struct expression.
3185 Expression*
3186 expr() const
3187 { return this->expr_; }
3189 // Return the field index.
3190 unsigned int
3191 field_index() const
3192 { return this->field_index_; }
3194 // Return whether this node was implied by an anonymous field.
3195 bool
3196 implicit() const
3197 { return this->implicit_; }
3199 void
3200 set_implicit(bool implicit)
3201 { this->implicit_ = implicit; }
3203 // Set the struct expression. This is used when parsing.
3204 void
3205 set_struct_expression(Expression* expr)
3207 go_assert(this->expr_ == NULL);
3208 this->expr_ = expr;
3211 protected:
3213 do_traverse(Traverse* traverse)
3214 { return Expression::traverse(&this->expr_, traverse); }
3216 Expression*
3217 do_lower(Gogo*, Named_object*, Statement_inserter*, int);
3219 Type*
3220 do_type();
3222 void
3223 do_determine_type(const Type_context*)
3224 { this->expr_->determine_type_no_context(); }
3226 void
3227 do_check_types(Gogo*);
3229 Expression*
3230 do_copy()
3232 return Expression::make_field_reference(this->expr_->copy(),
3233 this->field_index_,
3234 this->location());
3237 bool
3238 do_is_addressable() const
3239 { return this->expr_->is_addressable(); }
3241 void
3242 do_address_taken(bool escapes)
3243 { this->expr_->address_taken(escapes); }
3245 void
3246 do_issue_nil_check()
3247 { this->expr_->issue_nil_check(); }
3249 Bexpression*
3250 do_get_backend(Translate_context*);
3252 void
3253 do_dump_expression(Ast_dump_context*) const;
3255 private:
3256 // The expression we are looking into. This should have a type of
3257 // struct.
3258 Expression* expr_;
3259 // The zero-based index of the field we are retrieving.
3260 unsigned int field_index_;
3261 // Whether this node was emitted implicitly for an embedded field,
3262 // that is, expr_ is not the expr_ of the original user node.
3263 bool implicit_;
3264 // Whether we have already emitted a fieldtrack call.
3265 bool called_fieldtrack_;
3268 // A reference to a field of an interface.
3270 class Interface_field_reference_expression : public Expression
3272 public:
3273 Interface_field_reference_expression(Expression* expr,
3274 const std::string& name,
3275 Location location)
3276 : Expression(EXPRESSION_INTERFACE_FIELD_REFERENCE, location),
3277 expr_(expr), name_(name)
3280 // Return the expression for the interface object.
3281 Expression*
3282 expr()
3283 { return this->expr_; }
3285 // Return the name of the method to call.
3286 const std::string&
3287 name() const
3288 { return this->name_; }
3290 // Create a thunk to call the method NAME in TYPE when it is used as
3291 // part of a method value.
3292 static Named_object*
3293 create_thunk(Gogo*, Interface_type* type, const std::string& name);
3295 // Return an expression for the pointer to the function to call.
3296 Expression*
3297 get_function();
3299 // Return an expression for the first argument to pass to the interface
3300 // function. This is the real object associated with the interface object.
3301 Expression*
3302 get_underlying_object();
3304 protected:
3306 do_traverse(Traverse* traverse);
3308 Expression*
3309 do_flatten(Gogo*, Named_object*, Statement_inserter*);
3311 Type*
3312 do_type();
3314 void
3315 do_determine_type(const Type_context*);
3317 void
3318 do_check_types(Gogo*);
3320 Expression*
3321 do_copy()
3323 return Expression::make_interface_field_reference(this->expr_->copy(),
3324 this->name_,
3325 this->location());
3328 Bexpression*
3329 do_get_backend(Translate_context*);
3331 void
3332 do_dump_expression(Ast_dump_context*) const;
3334 private:
3335 // A mapping from interface types to a list of thunks we have
3336 // created for methods.
3337 typedef std::vector<std::pair<std::string, Named_object*> > Method_thunks;
3338 typedef Unordered_map(Interface_type*, Method_thunks*)
3339 Interface_method_thunks;
3340 static Interface_method_thunks interface_method_thunks;
3342 // The expression for the interface object. This should have a type
3343 // of interface or pointer to interface.
3344 Expression* expr_;
3345 // The field we are retrieving--the name of the method.
3346 std::string name_;
3349 // Implement the builtin function new.
3351 class Allocation_expression : public Expression
3353 public:
3354 Allocation_expression(Type* type, Location location)
3355 : Expression(EXPRESSION_ALLOCATION, location),
3356 type_(type), allocate_on_stack_(false)
3359 void
3360 set_allocate_on_stack()
3361 { this->allocate_on_stack_ = true; }
3363 protected:
3365 do_traverse(Traverse*);
3367 Type*
3368 do_type();
3370 void
3371 do_determine_type(const Type_context*)
3374 void
3375 do_check_types(Gogo*);
3377 Expression*
3378 do_copy();
3380 Bexpression*
3381 do_get_backend(Translate_context*);
3383 void
3384 do_dump_expression(Ast_dump_context*) const;
3386 private:
3387 // The type we are allocating.
3388 Type* type_;
3389 // Whether or not this is a stack allocation.
3390 bool allocate_on_stack_;
3393 // A general composite literal. This is lowered to a type specific
3394 // version.
3396 class Composite_literal_expression : public Parser_expression
3398 public:
3399 Composite_literal_expression(Type* type, int depth, bool has_keys,
3400 Expression_list* vals, bool all_are_names,
3401 Location location)
3402 : Parser_expression(EXPRESSION_COMPOSITE_LITERAL, location),
3403 type_(type), depth_(depth), vals_(vals), has_keys_(has_keys),
3404 all_are_names_(all_are_names), key_path_(std::vector<bool>(depth))
3408 // Mark the DEPTH entry of KEY_PATH as containing a key.
3409 void
3410 update_key_path(size_t depth)
3412 go_assert(depth < this->key_path_.size());
3413 this->key_path_[depth] = true;
3416 protected:
3418 do_traverse(Traverse* traverse);
3420 Expression*
3421 do_lower(Gogo*, Named_object*, Statement_inserter*, int);
3423 Expression*
3424 do_copy();
3426 void
3427 do_dump_expression(Ast_dump_context*) const;
3429 private:
3430 Expression*
3431 lower_struct(Gogo*, Type*);
3433 Expression*
3434 lower_array(Type*);
3436 Expression*
3437 make_array(Type*, const std::vector<unsigned long>*, Expression_list*);
3439 Expression*
3440 lower_map(Gogo*, Named_object*, Statement_inserter*, Type*);
3442 // The type of the composite literal.
3443 Type* type_;
3444 // The depth within a list of composite literals within a composite
3445 // literal, when the type is omitted.
3446 int depth_;
3447 // The values to put in the composite literal.
3448 Expression_list* vals_;
3449 // If this is true, then VALS_ is a list of pairs: a key and a
3450 // value. In an array initializer, a missing key will be NULL.
3451 bool has_keys_;
3452 // If this is true, then HAS_KEYS_ is true, and every key is a
3453 // simple identifier.
3454 bool all_are_names_;
3455 // A complement to DEPTH that indicates for each level starting from 0 to
3456 // DEPTH-1 whether or not this composite literal is nested inside of key or
3457 // a value. This is used to decide which type to use when given a map literal
3458 // with omitted key types.
3459 std::vector<bool> key_path_;
3462 // Helper/mixin class for struct and array construction expressions;
3463 // encapsulates a list of values plus an optional traversal order
3464 // recording the order in which the values should be visited.
3466 class Ordered_value_list
3468 public:
3469 Ordered_value_list(Expression_list* vals)
3470 : vals_(vals), traverse_order_(NULL)
3473 Expression_list*
3474 vals() const
3475 { return this->vals_; }
3478 traverse_vals(Traverse* traverse);
3480 // Get the traversal order (may be NULL)
3481 std::vector<unsigned long>*
3482 traverse_order()
3483 { return traverse_order_; }
3485 // Set the traversal order, used to ensure that we implement the
3486 // order of evaluation rules. Takes ownership of the argument.
3487 void
3488 set_traverse_order(std::vector<unsigned long>* traverse_order)
3489 { this->traverse_order_ = traverse_order; }
3491 private:
3492 // The list of values, in order of the fields in the struct or in
3493 // order of indices in an array. A NULL value of vals_ means that
3494 // all fields/slots should be zero-initialized; a single NULL entry
3495 // in the list means that the corresponding field or array slot
3496 // should be zero-initialized.
3497 Expression_list* vals_;
3498 // If not NULL, the order in which to traverse vals_. This is used
3499 // so that we implement the order of evaluation rules correctly.
3500 std::vector<unsigned long>* traverse_order_;
3503 // Construct a struct.
3505 class Struct_construction_expression : public Expression,
3506 public Ordered_value_list
3508 public:
3509 Struct_construction_expression(Type* type, Expression_list* vals,
3510 Location location)
3511 : Expression(EXPRESSION_STRUCT_CONSTRUCTION, location),
3512 Ordered_value_list(vals),
3513 type_(type)
3516 // Return whether this is a constant initializer.
3517 bool
3518 is_constant_struct() const;
3520 protected:
3522 do_traverse(Traverse* traverse);
3524 bool
3525 do_is_static_initializer() const;
3527 Type*
3528 do_type()
3529 { return this->type_; }
3531 void
3532 do_determine_type(const Type_context*);
3534 void
3535 do_check_types(Gogo*);
3537 Expression*
3538 do_copy();
3540 Expression*
3541 do_flatten(Gogo*, Named_object*, Statement_inserter*);
3543 Bexpression*
3544 do_get_backend(Translate_context*);
3546 void
3547 do_export(Export*) const;
3549 void
3550 do_dump_expression(Ast_dump_context*) const;
3552 private:
3553 // The type of the struct to construct.
3554 Type* type_;
3557 // Construct an array. This class is not used directly; instead we
3558 // use the child classes, Fixed_array_construction_expression and
3559 // Slice_construction_expression.
3561 class Array_construction_expression : public Expression,
3562 public Ordered_value_list
3564 protected:
3565 Array_construction_expression(Expression_classification classification,
3566 Type* type,
3567 const std::vector<unsigned long>* indexes,
3568 Expression_list* vals, Location location)
3569 : Expression(classification, location),
3570 Ordered_value_list(vals),
3571 type_(type), indexes_(indexes)
3572 { go_assert(indexes == NULL || indexes->size() == vals->size()); }
3574 public:
3575 // Return whether this is a constant initializer.
3576 bool
3577 is_constant_array() const;
3579 // Return the number of elements.
3580 size_t
3581 element_count() const
3582 { return this->vals() == NULL ? 0 : this->vals()->size(); }
3584 protected:
3585 virtual int
3586 do_traverse(Traverse* traverse);
3588 bool
3589 do_is_static_initializer() const;
3591 Type*
3592 do_type()
3593 { return this->type_; }
3595 void
3596 do_determine_type(const Type_context*);
3598 void
3599 do_check_types(Gogo*);
3601 void
3602 do_export(Export*) const;
3604 // The indexes.
3605 const std::vector<unsigned long>*
3606 indexes()
3607 { return this->indexes_; }
3609 Expression*
3610 do_flatten(Gogo*, Named_object*, Statement_inserter*);
3612 // Get the backend constructor for the array values.
3613 Bexpression*
3614 get_constructor(Translate_context* context, Btype* btype);
3616 void
3617 do_dump_expression(Ast_dump_context*) const;
3619 virtual void
3620 dump_slice_storage_expression(Ast_dump_context*) const { }
3622 private:
3623 // The type of the array to construct.
3624 Type* type_;
3625 // The list of indexes into the array, one for each value. This may
3626 // be NULL, in which case the indexes start at zero and increment.
3627 const std::vector<unsigned long>* indexes_;
3630 // Construct a fixed array.
3632 class Fixed_array_construction_expression :
3633 public Array_construction_expression
3635 public:
3636 Fixed_array_construction_expression(Type* type,
3637 const std::vector<unsigned long>* indexes,
3638 Expression_list* vals, Location location);
3640 protected:
3641 Expression*
3642 do_copy();
3644 Bexpression*
3645 do_get_backend(Translate_context*);
3648 // Construct a slice.
3650 class Slice_construction_expression : public Array_construction_expression
3652 public:
3653 Slice_construction_expression(Type* type,
3654 const std::vector<unsigned long>* indexes,
3655 Expression_list* vals, Location location);
3657 Expression*
3658 do_flatten(Gogo*, Named_object*, Statement_inserter*);
3660 // Record that the storage for this slice (e.g. vals) cannot escape,
3661 // hence it can be stack-allocated.
3662 void
3663 set_storage_does_not_escape()
3665 this->storage_escapes_ = false;
3668 protected:
3669 // Note that taking the address of a slice literal is invalid.
3672 do_traverse(Traverse* traverse);
3674 Expression*
3675 do_copy();
3677 Bexpression*
3678 do_get_backend(Translate_context*);
3680 void
3681 dump_slice_storage_expression(Ast_dump_context* ast_dump_context) const;
3683 // Create an array value for the constructed slice. Invoked during
3684 // flattening if slice storage does not escape, otherwise invoked
3685 // later on during do_get_backend().
3686 Expression*
3687 create_array_val();
3689 private:
3690 // The type of the values in this slice.
3691 Type* valtype_;
3692 // Array value expression, optionally filled in during flattening.
3693 Expression* array_val_;
3694 // Slice storage expression, optionally filled in during flattening.
3695 Expression* slice_storage_;
3696 // Normally true. Can be set to false if we know that the resulting
3697 // storage for the slice cannot escape.
3698 bool storage_escapes_;
3701 // Construct a map.
3703 class Map_construction_expression : public Expression
3705 public:
3706 Map_construction_expression(Type* type, Expression_list* vals,
3707 Location location)
3708 : Expression(EXPRESSION_MAP_CONSTRUCTION, location),
3709 type_(type), vals_(vals), element_type_(NULL), constructor_temp_(NULL)
3710 { go_assert(vals == NULL || vals->size() % 2 == 0); }
3712 Expression_list*
3713 vals() const
3714 { return this->vals_; }
3716 protected:
3718 do_traverse(Traverse* traverse);
3720 Expression*
3721 do_flatten(Gogo*, Named_object*, Statement_inserter*);
3723 Type*
3724 do_type()
3725 { return this->type_; }
3727 void
3728 do_determine_type(const Type_context*);
3730 void
3731 do_check_types(Gogo*);
3733 Expression*
3734 do_copy();
3736 Bexpression*
3737 do_get_backend(Translate_context*);
3739 void
3740 do_export(Export*) const;
3742 void
3743 do_dump_expression(Ast_dump_context*) const;
3745 private:
3746 // The type of the map to construct.
3747 Type* type_;
3748 // The list of values.
3749 Expression_list* vals_;
3750 // The type of the key-value pair struct for each map element.
3751 Struct_type* element_type_;
3752 // A temporary reference to the variable storing the constructor initializer.
3753 Temporary_statement* constructor_temp_;
3756 // A type guard expression.
3758 class Type_guard_expression : public Expression
3760 public:
3761 Type_guard_expression(Expression* expr, Type* type, Location location)
3762 : Expression(EXPRESSION_TYPE_GUARD, location),
3763 expr_(expr), type_(type)
3766 // Return the expression to convert.
3767 Expression*
3768 expr()
3769 { return this->expr_; }
3771 // Return the type to which to convert.
3772 Type*
3773 type()
3774 { return this->type_; }
3776 protected:
3778 do_traverse(Traverse* traverse);
3780 Expression*
3781 do_flatten(Gogo*, Named_object*, Statement_inserter*);
3783 Type*
3784 do_type()
3785 { return this->type_; }
3787 void
3788 do_determine_type(const Type_context*)
3789 { this->expr_->determine_type_no_context(); }
3791 void
3792 do_check_types(Gogo*);
3794 Expression*
3795 do_copy();
3797 Bexpression*
3798 do_get_backend(Translate_context*);
3800 void
3801 do_dump_expression(Ast_dump_context*) const;
3803 private:
3804 // The expression to convert.
3805 Expression* expr_;
3806 // The type to which to convert.
3807 Type* type_;
3810 // Class Heap_expression.
3812 // When you take the address of an escaping expression, it is allocated
3813 // on the heap. This class implements that.
3815 class Heap_expression : public Expression
3817 public:
3818 Heap_expression(Expression* expr, Location location)
3819 : Expression(EXPRESSION_HEAP, location),
3820 expr_(expr), allocate_on_stack_(false)
3823 Expression*
3824 expr() const
3825 { return this->expr_; }
3827 void
3828 set_allocate_on_stack()
3829 { this->allocate_on_stack_ = true; }
3831 protected:
3833 do_traverse(Traverse* traverse)
3834 { return Expression::traverse(&this->expr_, traverse); }
3836 Type*
3837 do_type();
3838 void
3839 do_determine_type(const Type_context*)
3840 { this->expr_->determine_type_no_context(); }
3842 Expression*
3843 do_copy()
3845 return Expression::make_heap_expression(this->expr_->copy(),
3846 this->location());
3849 Bexpression*
3850 do_get_backend(Translate_context*);
3852 // We only export global objects, and the parser does not generate
3853 // this in global scope.
3854 void
3855 do_export(Export*) const
3856 { go_unreachable(); }
3858 void
3859 do_dump_expression(Ast_dump_context*) const;
3861 private:
3862 // The expression which is being put on the heap.
3863 Expression* expr_;
3864 // Whether or not this is a stack allocation.
3865 bool allocate_on_stack_;
3868 // A receive expression.
3870 class Receive_expression : public Expression
3872 public:
3873 Receive_expression(Expression* channel, Location location)
3874 : Expression(EXPRESSION_RECEIVE, location),
3875 channel_(channel), temp_receiver_(NULL)
3878 // Return the channel.
3879 Expression*
3880 channel()
3881 { return this->channel_; }
3883 protected:
3885 do_traverse(Traverse* traverse)
3886 { return Expression::traverse(&this->channel_, traverse); }
3888 bool
3889 do_discarding_value()
3890 { return true; }
3892 Type*
3893 do_type();
3895 Expression*
3896 do_flatten(Gogo*, Named_object*, Statement_inserter*);
3898 void
3899 do_determine_type(const Type_context*)
3900 { this->channel_->determine_type_no_context(); }
3902 void
3903 do_check_types(Gogo*);
3905 Expression*
3906 do_copy()
3908 return Expression::make_receive(this->channel_->copy(), this->location());
3911 bool
3912 do_must_eval_in_order() const
3913 { return true; }
3915 Bexpression*
3916 do_get_backend(Translate_context*);
3918 void
3919 do_dump_expression(Ast_dump_context*) const;
3921 private:
3922 // The channel from which we are receiving.
3923 Expression* channel_;
3924 // A temporary reference to the variable storing the received data.
3925 Temporary_statement* temp_receiver_;
3928 // Conditional expressions.
3930 class Conditional_expression : public Expression
3932 public:
3933 Conditional_expression(Expression* cond, Expression* then_expr,
3934 Expression* else_expr, Location location)
3935 : Expression(EXPRESSION_CONDITIONAL, location),
3936 cond_(cond), then_(then_expr), else_(else_expr)
3939 Expression*
3940 condition() const
3941 { return this->cond_; }
3943 protected:
3945 do_traverse(Traverse*);
3947 Type*
3948 do_type();
3950 void
3951 do_determine_type(const Type_context*);
3953 Expression*
3954 do_copy()
3956 return new Conditional_expression(this->cond_->copy(), this->then_->copy(),
3957 this->else_->copy(), this->location());
3960 Bexpression*
3961 do_get_backend(Translate_context* context);
3963 void
3964 do_dump_expression(Ast_dump_context*) const;
3966 private:
3967 // The condition to be checked.
3968 Expression* cond_;
3969 // The expression to execute if the condition is true.
3970 Expression* then_;
3971 // The expression to execute if the condition is false.
3972 Expression* else_;
3975 // Compound expressions.
3977 class Compound_expression : public Expression
3979 public:
3980 Compound_expression(Expression* init, Expression* expr, Location location)
3981 : Expression(EXPRESSION_COMPOUND, location), init_(init), expr_(expr)
3984 Expression*
3985 init() const
3986 { return this->init_; }
3988 protected:
3990 do_traverse(Traverse*);
3992 Type*
3993 do_type();
3995 void
3996 do_determine_type(const Type_context*);
3998 Expression*
3999 do_copy()
4001 return new Compound_expression(this->init_->copy(), this->expr_->copy(),
4002 this->location());
4005 Bexpression*
4006 do_get_backend(Translate_context* context);
4008 void
4009 do_dump_expression(Ast_dump_context*) const;
4011 private:
4012 // The expression that is evaluated first and discarded.
4013 Expression* init_;
4014 // The expression that is evaluated and returned.
4015 Expression* expr_;
4018 // A backend expression. This is a backend expression wrapped in an
4019 // Expression, for convenience during backend generation.
4021 class Backend_expression : public Expression
4023 public:
4024 Backend_expression(Bexpression* bexpr, Type* type, Location location)
4025 : Expression(EXPRESSION_BACKEND, location), bexpr_(bexpr), type_(type)
4028 protected:
4030 do_traverse(Traverse*);
4032 // For now these are always valid static initializers. If that
4033 // changes we can change this.
4034 bool
4035 do_is_static_initializer() const
4036 { return true; }
4038 Type*
4039 do_type()
4040 { return this->type_; }
4042 void
4043 do_determine_type(const Type_context*)
4046 Expression*
4047 do_copy();
4049 Bexpression*
4050 do_get_backend(Translate_context*)
4051 { return this->bexpr_; }
4053 void
4054 do_dump_expression(Ast_dump_context*) const;
4056 private:
4057 // The backend expression we are wrapping.
4058 Bexpression* bexpr_;
4059 // The type of the expression;
4060 Type* type_;
4063 // A numeric constant. This is used both for untyped constants and
4064 // for constants that have a type.
4066 class Numeric_constant
4068 public:
4069 Numeric_constant()
4070 : classification_(NC_INVALID), type_(NULL)
4073 ~Numeric_constant();
4075 Numeric_constant(const Numeric_constant&);
4077 Numeric_constant& operator=(const Numeric_constant&);
4079 // Set to an unsigned long value.
4080 void
4081 set_unsigned_long(Type*, unsigned long);
4083 // Set to an integer value.
4084 void
4085 set_int(Type*, const mpz_t);
4087 // Set to a rune value.
4088 void
4089 set_rune(Type*, const mpz_t);
4091 // Set to a floating point value.
4092 void
4093 set_float(Type*, const mpfr_t);
4095 // Set to a complex value.
4096 void
4097 set_complex(Type*, const mpc_t);
4099 // Mark numeric constant as invalid.
4100 void
4101 set_invalid()
4102 { this->classification_ = NC_INVALID; }
4104 // Classifiers.
4105 bool
4106 is_int() const
4107 { return this->classification_ == Numeric_constant::NC_INT; }
4109 bool
4110 is_rune() const
4111 { return this->classification_ == Numeric_constant::NC_RUNE; }
4113 bool
4114 is_float() const
4115 { return this->classification_ == Numeric_constant::NC_FLOAT; }
4117 bool
4118 is_complex() const
4119 { return this->classification_ == Numeric_constant::NC_COMPLEX; }
4121 bool
4122 is_invalid() const
4123 { return this->classification_ == Numeric_constant::NC_INVALID; }
4125 // Value retrievers. These will initialize the values as well as
4126 // set them. GET_INT is only valid if IS_INT returns true, and
4127 // likewise respectively.
4128 void
4129 get_int(mpz_t*) const;
4131 void
4132 get_rune(mpz_t*) const;
4134 void
4135 get_float(mpfr_t*) const;
4137 void
4138 get_complex(mpc_t*) const;
4140 // Codes returned by to_unsigned_long.
4141 enum To_unsigned_long
4143 // Value is integer and fits in unsigned long.
4144 NC_UL_VALID,
4145 // Value is not integer.
4146 NC_UL_NOTINT,
4147 // Value is integer but is negative.
4148 NC_UL_NEGATIVE,
4149 // Value is non-negative integer but does not fit in unsigned
4150 // long.
4151 NC_UL_BIG
4154 // If the value can be expressed as an integer that fits in an
4155 // unsigned long, set *VAL and return NC_UL_VALID. Otherwise return
4156 // one of the other To_unsigned_long codes.
4157 To_unsigned_long
4158 to_unsigned_long(unsigned long* val) const;
4160 // If the value can be expressed as an integer that describes the
4161 // size of an object in memory, set *VAL and return true.
4162 // Otherwise, return false. Currently we use int64_t to represent a
4163 // memory size, as in Type::backend_type_size.
4164 bool
4165 to_memory_size(int64_t* val) const;
4167 // If the value can be expressed as an int, return true and
4168 // initialize and set VAL. This will return false for a value with
4169 // an explicit float or complex type, even if the value is integral.
4170 bool
4171 to_int(mpz_t* val) const;
4173 // If the value can be expressed as a float, return true and
4174 // initialize and set VAL.
4175 bool
4176 to_float(mpfr_t* val) const;
4178 // If the value can be expressed as a complex, return true and
4179 // initialize and set VR and VI.
4180 bool
4181 to_complex(mpc_t* val) const;
4183 // Get the type.
4184 Type*
4185 type() const;
4187 // If the constant can be expressed in TYPE, then set the type of
4188 // the constant to TYPE and return true. Otherwise return false,
4189 // and, if ISSUE_ERROR is true, issue an error message. LOCATION is
4190 // the location to use for the error.
4191 bool
4192 set_type(Type* type, bool issue_error, Location location);
4194 // Return an Expression for this value.
4195 Expression*
4196 expression(Location) const;
4198 private:
4199 void
4200 clear();
4202 To_unsigned_long
4203 mpz_to_unsigned_long(const mpz_t ival, unsigned long *val) const;
4205 To_unsigned_long
4206 mpfr_to_unsigned_long(const mpfr_t fval, unsigned long *val) const;
4208 bool
4209 mpz_to_memory_size(const mpz_t ival, int64_t* val) const;
4211 bool
4212 mpfr_to_memory_size(const mpfr_t fval, int64_t* val) const;
4214 bool
4215 check_int_type(Integer_type*, bool, Location);
4217 bool
4218 check_float_type(Float_type*, bool, Location);
4220 bool
4221 check_complex_type(Complex_type*, bool, Location);
4223 static bool
4224 is_float_zero(const mpfr_t, int bits);
4226 // The kinds of constants.
4227 enum Classification
4229 NC_INVALID,
4230 NC_RUNE,
4231 NC_INT,
4232 NC_FLOAT,
4233 NC_COMPLEX
4236 // The kind of constant.
4237 Classification classification_;
4238 // The value.
4239 union
4241 // If NC_INT or NC_RUNE.
4242 mpz_t int_val;
4243 // If NC_FLOAT.
4244 mpfr_t float_val;
4245 // If NC_COMPLEX.
4246 mpc_t complex_val;
4247 } u_;
4248 // The type if there is one. This will be NULL for an untyped
4249 // constant.
4250 Type* type_;
4253 #endif // !defined(GO_EXPRESSIONS_H)