ptr_traits.h (pointer_traits): Fix typos.
[gcc.git] / gcc / go / gofrontend / expressions.cc.working
1 // expressions.cc -- Go frontend expression handling.
2
3 // Copyright 2009 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 #include "go-system.h"
8
9 #include <gmp.h>
10
11 #ifndef ENABLE_BUILD_WITH_CXX
12 extern "C"
13 {
14 #endif
15
16 #include "toplev.h"
17 #include "intl.h"
18 #include "tree.h"
19 #include "gimple.h"
20 #include "tree-iterator.h"
21 #include "convert.h"
22 #include "real.h"
23 #include "realmpfr.h"
24
25 #ifndef ENABLE_BUILD_WITH_CXX
26 }
27 #endif
28
29 #include "go-c.h"
30 #include "gogo.h"
31 #include "types.h"
32 #include "export.h"
33 #include "import.h"
34 #include "statements.h"
35 #include "lex.h"
36 #include "expressions.h"
37
38 // Class Expression.
39
40 Expression::Expression(Expression_classification classification,
41 source_location location)
42 : classification_(classification), location_(location)
43 {
44 }
45
46 Expression::~Expression()
47 {
48 }
49
50 // If this expression has a constant integer value, return it.
51
52 bool
53 Expression::integer_constant_value(bool iota_is_constant, mpz_t val,
54 Type** ptype) const
55 {
56 *ptype = NULL;
57 return this->do_integer_constant_value(iota_is_constant, val, ptype);
58 }
59
60 // If this expression has a constant floating point value, return it.
61
62 bool
63 Expression::float_constant_value(mpfr_t val, Type** ptype) const
64 {
65 *ptype = NULL;
66 if (this->do_float_constant_value(val, ptype))
67 return true;
68 mpz_t ival;
69 mpz_init(ival);
70 Type* t;
71 bool ret;
72 if (!this->do_integer_constant_value(false, ival, &t))
73 ret = false;
74 else
75 {
76 mpfr_set_z(val, ival, GMP_RNDN);
77 ret = true;
78 }
79 mpz_clear(ival);
80 return ret;
81 }
82
83 // If this expression has a constant complex value, return it.
84
85 bool
86 Expression::complex_constant_value(mpfr_t real, mpfr_t imag,
87 Type** ptype) const
88 {
89 *ptype = NULL;
90 if (this->do_complex_constant_value(real, imag, ptype))
91 return true;
92 Type *t;
93 if (this->float_constant_value(real, &t))
94 {
95 mpfr_set_ui(imag, 0, GMP_RNDN);
96 return true;
97 }
98 return false;
99 }
100
101 // Traverse the expressions.
102
103 int
104 Expression::traverse(Expression** pexpr, Traverse* traverse)
105 {
106 Expression* expr = *pexpr;
107 if ((traverse->traverse_mask() & Traverse::traverse_expressions) != 0)
108 {
109 int t = traverse->expression(pexpr);
110 if (t == TRAVERSE_EXIT)
111 return TRAVERSE_EXIT;
112 else if (t == TRAVERSE_SKIP_COMPONENTS)
113 return TRAVERSE_CONTINUE;
114 }
115 return expr->do_traverse(traverse);
116 }
117
118 // Traverse subexpressions of this expression.
119
120 int
121 Expression::traverse_subexpressions(Traverse* traverse)
122 {
123 return this->do_traverse(traverse);
124 }
125
126 // Default implementation for do_traverse for child classes.
127
128 int
129 Expression::do_traverse(Traverse*)
130 {
131 return TRAVERSE_CONTINUE;
132 }
133
134 // This virtual function is called by the parser if the value of this
135 // expression is being discarded. By default, we warn. Expressions
136 // with side effects override.
137
138 void
139 Expression::do_discarding_value()
140 {
141 this->warn_about_unused_value();
142 }
143
144 // This virtual function is called to export expressions. This will
145 // only be used by expressions which may be constant.
146
147 void
148 Expression::do_export(Export*) const
149 {
150 gcc_unreachable();
151 }
152
153 // Warn that the value of the expression is not used.
154
155 void
156 Expression::warn_about_unused_value()
157 {
158 warning_at(this->location(), OPT_Wunused_value, "value computed is not used");
159 }
160
161 // Note that this expression is an error. This is called by children
162 // when they discover an error.
163
164 void
165 Expression::set_is_error()
166 {
167 this->classification_ = EXPRESSION_ERROR;
168 }
169
170 // For children to call to report an error conveniently.
171
172 void
173 Expression::report_error(const char* msg)
174 {
175 error_at(this->location_, "%s", msg);
176 this->set_is_error();
177 }
178
179 // Set types of variables and constants. This is implemented by the
180 // child class.
181
182 void
183 Expression::determine_type(const Type_context* context)
184 {
185 this->do_determine_type(context);
186 }
187
188 // Set types when there is no context.
189
190 void
191 Expression::determine_type_no_context()
192 {
193 Type_context context;
194 this->do_determine_type(&context);
195 }
196
197 // Return a tree handling any conversions which must be done during
198 // assignment.
199
200 tree
201 Expression::convert_for_assignment(Translate_context* context, Type* lhs_type,
202 Type* rhs_type, tree rhs_tree,
203 source_location location)
204 {
205 if (lhs_type == rhs_type)
206 return rhs_tree;
207
208 if (lhs_type->is_error_type() || rhs_type->is_error_type())
209 return error_mark_node;
210
211 if (lhs_type->is_undefined() || rhs_type->is_undefined())
212 {
213 // Make sure we report the error.
214 lhs_type->base();
215 rhs_type->base();
216 return error_mark_node;
217 }
218
219 if (rhs_tree == error_mark_node || TREE_TYPE(rhs_tree) == error_mark_node)
220 return error_mark_node;
221
222 Gogo* gogo = context->gogo();
223
224 tree lhs_type_tree = lhs_type->get_tree(gogo);
225 if (lhs_type_tree == error_mark_node)
226 return error_mark_node;
227
228 if (lhs_type->interface_type() != NULL)
229 {
230 if (rhs_type->interface_type() == NULL)
231 return Expression::convert_type_to_interface(context, lhs_type,
232 rhs_type, rhs_tree,
233 location);
234 else
235 return Expression::convert_interface_to_interface(context, lhs_type,
236 rhs_type, rhs_tree,
237 false, location);
238 }
239 else if (rhs_type->interface_type() != NULL)
240 return Expression::convert_interface_to_type(context, lhs_type, rhs_type,
241 rhs_tree, location);
242 else if (lhs_type->is_open_array_type()
243 && rhs_type->is_nil_type())
244 {
245 // Assigning nil to an open array.
246 gcc_assert(TREE_CODE(lhs_type_tree) == RECORD_TYPE);
247
248 VEC(constructor_elt,gc)* init = VEC_alloc(constructor_elt, gc, 3);
249
250 constructor_elt* elt = VEC_quick_push(constructor_elt, init, NULL);
251 tree field = TYPE_FIELDS(lhs_type_tree);
252 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)),
253 "__values") == 0);
254 elt->index = field;
255 elt->value = fold_convert(TREE_TYPE(field), null_pointer_node);
256
257 elt = VEC_quick_push(constructor_elt, init, NULL);
258 field = DECL_CHAIN(field);
259 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)),
260 "__count") == 0);
261 elt->index = field;
262 elt->value = fold_convert(TREE_TYPE(field), integer_zero_node);
263
264 elt = VEC_quick_push(constructor_elt, init, NULL);
265 field = DECL_CHAIN(field);
266 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)),
267 "__capacity") == 0);
268 elt->index = field;
269 elt->value = fold_convert(TREE_TYPE(field), integer_zero_node);
270
271 tree val = build_constructor(lhs_type_tree, init);
272 TREE_CONSTANT(val) = 1;
273
274 return val;
275 }
276 else if (rhs_type->is_nil_type())
277 {
278 // The left hand side should be a pointer type at the tree
279 // level.
280 gcc_assert(POINTER_TYPE_P(lhs_type_tree));
281 return fold_convert(lhs_type_tree, null_pointer_node);
282 }
283 else if (lhs_type_tree == TREE_TYPE(rhs_tree))
284 {
285 // No conversion is needed.
286 return rhs_tree;
287 }
288 else if (POINTER_TYPE_P(lhs_type_tree)
289 || INTEGRAL_TYPE_P(lhs_type_tree)
290 || SCALAR_FLOAT_TYPE_P(lhs_type_tree)
291 || COMPLEX_FLOAT_TYPE_P(lhs_type_tree))
292 return fold_convert_loc(location, lhs_type_tree, rhs_tree);
293 else if (TREE_CODE(lhs_type_tree) == RECORD_TYPE
294 && TREE_CODE(TREE_TYPE(rhs_tree)) == RECORD_TYPE)
295 {
296 // This conversion must be permitted by Go, or we wouldn't have
297 // gotten here.
298 gcc_assert(int_size_in_bytes(lhs_type_tree)
299 == int_size_in_bytes(TREE_TYPE(rhs_tree)));
300 return fold_build1_loc(location, VIEW_CONVERT_EXPR, lhs_type_tree,
301 rhs_tree);
302 }
303 else
304 {
305 gcc_assert(useless_type_conversion_p(lhs_type_tree, TREE_TYPE(rhs_tree)));
306 return rhs_tree;
307 }
308 }
309
310 // Return a tree for a conversion from a non-interface type to an
311 // interface type.
312
313 tree
314 Expression::convert_type_to_interface(Translate_context* context,
315 Type* lhs_type, Type* rhs_type,
316 tree rhs_tree, source_location location)
317 {
318 Gogo* gogo = context->gogo();
319 Interface_type* lhs_interface_type = lhs_type->interface_type();
320 bool lhs_is_empty = lhs_interface_type->is_empty();
321
322 // Since RHS_TYPE is a static type, we can create the interface
323 // method table at compile time.
324
325 // When setting an interface to nil, we just set both fields to
326 // NULL.
327 if (rhs_type->is_nil_type())
328 return lhs_type->get_init_tree(gogo, false);
329
330 // This should have been checked already.
331 gcc_assert(lhs_interface_type->implements_interface(rhs_type, NULL));
332
333 tree lhs_type_tree = lhs_type->get_tree(gogo);
334 if (lhs_type_tree == error_mark_node)
335 return error_mark_node;
336
337 // An interface is a tuple. If LHS_TYPE is an empty interface type,
338 // then the first field is the type descriptor for RHS_TYPE.
339 // Otherwise it is the interface method table for RHS_TYPE.
340 tree first_field_value;
341 if (lhs_is_empty)
342 first_field_value = rhs_type->type_descriptor_pointer(gogo);
343 else
344 {
345 // Build the interface method table for this interface and this
346 // object type: a list of function pointers for each interface
347 // method.
348 Named_type* rhs_named_type = rhs_type->named_type();
349 bool is_pointer = false;
350 if (rhs_named_type == NULL)
351 {
352 rhs_named_type = rhs_type->deref()->named_type();
353 is_pointer = true;
354 }
355 tree method_table;
356 if (rhs_named_type == NULL)
357 method_table = null_pointer_node;
358 else
359 method_table =
360 rhs_named_type->interface_method_table(gogo, lhs_interface_type,
361 is_pointer);
362 first_field_value = fold_convert_loc(location, const_ptr_type_node,
363 method_table);
364 }
365 if (first_field_value == error_mark_node)
366 return error_mark_node;
367
368 // Start building a constructor for the value we will return.
369
370 VEC(constructor_elt,gc)* init = VEC_alloc(constructor_elt, gc, 2);
371
372 constructor_elt* elt = VEC_quick_push(constructor_elt, init, NULL);
373 tree field = TYPE_FIELDS(lhs_type_tree);
374 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)),
375 (lhs_is_empty ? "__type_descriptor" : "__methods")) == 0);
376 elt->index = field;
377 elt->value = fold_convert_loc(location, TREE_TYPE(field), first_field_value);
378
379 elt = VEC_quick_push(constructor_elt, init, NULL);
380 field = DECL_CHAIN(field);
381 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)), "__object") == 0);
382 elt->index = field;
383
384 if (rhs_type->points_to() != NULL)
385 {
386 // We are assigning a pointer to the interface; the interface
387 // holds the pointer itself.
388 elt->value = rhs_tree;
389 return build_constructor(lhs_type_tree, init);
390 }
391
392 // We are assigning a non-pointer value to the interface; the
393 // interface gets a copy of the value in the heap.
394
395 tree object_size = TYPE_SIZE_UNIT(TREE_TYPE(rhs_tree));
396
397 tree space = gogo->allocate_memory(rhs_type, object_size, location);
398 space = fold_convert_loc(location, build_pointer_type(TREE_TYPE(rhs_tree)),
399 space);
400 space = save_expr(space);
401
402 tree ref = build_fold_indirect_ref_loc(location, space);
403 TREE_THIS_NOTRAP(ref) = 1;
404 tree set = fold_build2_loc(location, MODIFY_EXPR, void_type_node,
405 ref, rhs_tree);
406
407 elt->value = fold_convert_loc(location, TREE_TYPE(field), space);
408
409 return build2(COMPOUND_EXPR, lhs_type_tree, set,
410 build_constructor(lhs_type_tree, init));
411 }
412
413 // Return a tree for the type descriptor of RHS_TREE, which has
414 // interface type RHS_TYPE. If RHS_TREE is nil the result will be
415 // NULL.
416
417 tree
418 Expression::get_interface_type_descriptor(Translate_context*,
419 Type* rhs_type, tree rhs_tree,
420 source_location location)
421 {
422 tree rhs_type_tree = TREE_TYPE(rhs_tree);
423 gcc_assert(TREE_CODE(rhs_type_tree) == RECORD_TYPE);
424 tree rhs_field = TYPE_FIELDS(rhs_type_tree);
425 tree v = build3(COMPONENT_REF, TREE_TYPE(rhs_field), rhs_tree, rhs_field,
426 NULL_TREE);
427 if (rhs_type->interface_type()->is_empty())
428 {
429 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(rhs_field)),
430 "__type_descriptor") == 0);
431 return v;
432 }
433
434 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(rhs_field)), "__methods")
435 == 0);
436 gcc_assert(POINTER_TYPE_P(TREE_TYPE(v)));
437 v = save_expr(v);
438 tree v1 = build_fold_indirect_ref_loc(location, v);
439 gcc_assert(TREE_CODE(TREE_TYPE(v1)) == RECORD_TYPE);
440 tree f = TYPE_FIELDS(TREE_TYPE(v1));
441 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(f)), "__type_descriptor")
442 == 0);
443 v1 = build3(COMPONENT_REF, TREE_TYPE(f), v1, f, NULL_TREE);
444
445 tree eq = fold_build2_loc(location, EQ_EXPR, boolean_type_node, v,
446 fold_convert_loc(location, TREE_TYPE(v),
447 null_pointer_node));
448 tree n = fold_convert_loc(location, TREE_TYPE(v1), null_pointer_node);
449 return fold_build3_loc(location, COND_EXPR, TREE_TYPE(v1),
450 eq, n, v1);
451 }
452
453 // Return a tree for the conversion of an interface type to an
454 // interface type.
455
456 tree
457 Expression::convert_interface_to_interface(Translate_context* context,
458 Type *lhs_type, Type *rhs_type,
459 tree rhs_tree, bool for_type_guard,
460 source_location location)
461 {
462 Gogo* gogo = context->gogo();
463 Interface_type* lhs_interface_type = lhs_type->interface_type();
464 bool lhs_is_empty = lhs_interface_type->is_empty();
465
466 tree lhs_type_tree = lhs_type->get_tree(gogo);
467 if (lhs_type_tree == error_mark_node)
468 return error_mark_node;
469
470 // In the general case this requires runtime examination of the type
471 // method table to match it up with the interface methods.
472
473 // FIXME: If all of the methods in the right hand side interface
474 // also appear in the left hand side interface, then we don't need
475 // to do a runtime check, although we still need to build a new
476 // method table.
477
478 // Get the type descriptor for the right hand side. This will be
479 // NULL for a nil interface.
480
481 if (!DECL_P(rhs_tree))
482 rhs_tree = save_expr(rhs_tree);
483
484 tree rhs_type_descriptor =
485 Expression::get_interface_type_descriptor(context, rhs_type, rhs_tree,
486 location);
487
488 // The result is going to be a two element constructor.
489
490 VEC(constructor_elt,gc)* init = VEC_alloc(constructor_elt, gc, 2);
491
492 constructor_elt* elt = VEC_quick_push(constructor_elt, init, NULL);
493 tree field = TYPE_FIELDS(lhs_type_tree);
494 elt->index = field;
495
496 if (for_type_guard)
497 {
498 // A type assertion fails when converting a nil interface.
499 tree lhs_type_descriptor = lhs_type->type_descriptor_pointer(gogo);
500 static tree assert_interface_decl;
501 tree call = Gogo::call_builtin(&assert_interface_decl,
502 location,
503 "__go_assert_interface",
504 2,
505 ptr_type_node,
506 TREE_TYPE(lhs_type_descriptor),
507 lhs_type_descriptor,
508 TREE_TYPE(rhs_type_descriptor),
509 rhs_type_descriptor);
510 if (call == error_mark_node)
511 return error_mark_node;
512 // This will panic if the interface conversion fails.
513 TREE_NOTHROW(assert_interface_decl) = 0;
514 elt->value = fold_convert_loc(location, TREE_TYPE(field), call);
515 }
516 else if (lhs_is_empty)
517 {
518 // A convertion to an empty interface always succeeds, and the
519 // first field is just the type descriptor of the object.
520 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)),
521 "__type_descriptor") == 0);
522 gcc_assert(TREE_TYPE(field) == TREE_TYPE(rhs_type_descriptor));
523 elt->value = rhs_type_descriptor;
524 }
525 else
526 {
527 // A conversion to a non-empty interface may fail, but unlike a
528 // type assertion converting nil will always succeed.
529 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)), "__methods")
530 == 0);
531 tree lhs_type_descriptor = lhs_type->type_descriptor_pointer(gogo);
532 static tree convert_interface_decl;
533 tree call = Gogo::call_builtin(&convert_interface_decl,
534 location,
535 "__go_convert_interface",
536 2,
537 ptr_type_node,
538 TREE_TYPE(lhs_type_descriptor),
539 lhs_type_descriptor,
540 TREE_TYPE(rhs_type_descriptor),
541 rhs_type_descriptor);
542 if (call == error_mark_node)
543 return error_mark_node;
544 // This will panic if the interface conversion fails.
545 TREE_NOTHROW(convert_interface_decl) = 0;
546 elt->value = fold_convert_loc(location, TREE_TYPE(field), call);
547 }
548
549 // The second field is simply the object pointer.
550
551 elt = VEC_quick_push(constructor_elt, init, NULL);
552 field = DECL_CHAIN(field);
553 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)), "__object") == 0);
554 elt->index = field;
555
556 tree rhs_type_tree = TREE_TYPE(rhs_tree);
557 gcc_assert(TREE_CODE(rhs_type_tree) == RECORD_TYPE);
558 tree rhs_field = DECL_CHAIN(TYPE_FIELDS(rhs_type_tree));
559 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(rhs_field)), "__object") == 0);
560 elt->value = build3(COMPONENT_REF, TREE_TYPE(rhs_field), rhs_tree, rhs_field,
561 NULL_TREE);
562
563 return build_constructor(lhs_type_tree, init);
564 }
565
566 // Return a tree for the conversion of an interface type to a
567 // non-interface type.
568
569 tree
570 Expression::convert_interface_to_type(Translate_context* context,
571 Type *lhs_type, Type* rhs_type,
572 tree rhs_tree, source_location location)
573 {
574 Gogo* gogo = context->gogo();
575 tree rhs_type_tree = TREE_TYPE(rhs_tree);
576
577 tree lhs_type_tree = lhs_type->get_tree(gogo);
578 if (lhs_type_tree == error_mark_node)
579 return error_mark_node;
580
581 // Call a function to check that the type is valid. The function
582 // will panic with an appropriate runtime type error if the type is
583 // not valid.
584
585 tree lhs_type_descriptor = lhs_type->type_descriptor_pointer(gogo);
586
587 if (!DECL_P(rhs_tree))
588 rhs_tree = save_expr(rhs_tree);
589
590 tree rhs_type_descriptor =
591 Expression::get_interface_type_descriptor(context, rhs_type, rhs_tree,
592 location);
593
594 tree rhs_inter_descriptor = rhs_type->type_descriptor_pointer(gogo);
595
596 static tree check_interface_type_decl;
597 tree call = Gogo::call_builtin(&check_interface_type_decl,
598 location,
599 "__go_check_interface_type",
600 3,
601 void_type_node,
602 TREE_TYPE(lhs_type_descriptor),
603 lhs_type_descriptor,
604 TREE_TYPE(rhs_type_descriptor),
605 rhs_type_descriptor,
606 TREE_TYPE(rhs_inter_descriptor),
607 rhs_inter_descriptor);
608 if (call == error_mark_node)
609 return error_mark_node;
610 // This call will panic if the conversion is invalid.
611 TREE_NOTHROW(check_interface_type_decl) = 0;
612
613 // If the call succeeds, pull out the value.
614 gcc_assert(TREE_CODE(rhs_type_tree) == RECORD_TYPE);
615 tree rhs_field = DECL_CHAIN(TYPE_FIELDS(rhs_type_tree));
616 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(rhs_field)), "__object") == 0);
617 tree val = build3(COMPONENT_REF, TREE_TYPE(rhs_field), rhs_tree, rhs_field,
618 NULL_TREE);
619
620 // If the value is a pointer, then it is the value we want.
621 // Otherwise it points to the value.
622 if (lhs_type->points_to() == NULL)
623 {
624 val = fold_convert_loc(location, build_pointer_type(lhs_type_tree), val);
625 val = build_fold_indirect_ref_loc(location, val);
626 }
627
628 return build2(COMPOUND_EXPR, lhs_type_tree, call,
629 fold_convert_loc(location, lhs_type_tree, val));
630 }
631
632 // Convert an expression to a tree. This is implemented by the child
633 // class. Not that it is not in general safe to call this multiple
634 // times for a single expression, but that we don't catch such errors.
635
636 tree
637 Expression::get_tree(Translate_context* context)
638 {
639 // The child may have marked this expression as having an error.
640 if (this->classification_ == EXPRESSION_ERROR)
641 return error_mark_node;
642
643 return this->do_get_tree(context);
644 }
645
646 // Return a tree for VAL in TYPE.
647
648 tree
649 Expression::integer_constant_tree(mpz_t val, tree type)
650 {
651 if (type == error_mark_node)
652 return error_mark_node;
653 else if (TREE_CODE(type) == INTEGER_TYPE)
654 return double_int_to_tree(type,
655 mpz_get_double_int(type, val, true));
656 else if (TREE_CODE(type) == REAL_TYPE)
657 {
658 mpfr_t fval;
659 mpfr_init_set_z(fval, val, GMP_RNDN);
660 tree ret = Expression::float_constant_tree(fval, type);
661 mpfr_clear(fval);
662 return ret;
663 }
664 else if (TREE_CODE(type) == COMPLEX_TYPE)
665 {
666 mpfr_t fval;
667 mpfr_init_set_z(fval, val, GMP_RNDN);
668 tree real = Expression::float_constant_tree(fval, TREE_TYPE(type));
669 mpfr_clear(fval);
670 tree imag = build_real_from_int_cst(TREE_TYPE(type),
671 integer_zero_node);
672 return build_complex(type, real, imag);
673 }
674 else
675 gcc_unreachable();
676 }
677
678 // Return a tree for VAL in TYPE.
679
680 tree
681 Expression::float_constant_tree(mpfr_t val, tree type)
682 {
683 if (type == error_mark_node)
684 return error_mark_node;
685 else if (TREE_CODE(type) == INTEGER_TYPE)
686 {
687 mpz_t ival;
688 mpz_init(ival);
689 mpfr_get_z(ival, val, GMP_RNDN);
690 tree ret = Expression::integer_constant_tree(ival, type);
691 mpz_clear(ival);
692 return ret;
693 }
694 else if (TREE_CODE(type) == REAL_TYPE)
695 {
696 REAL_VALUE_TYPE r1;
697 real_from_mpfr(&r1, val, type, GMP_RNDN);
698 REAL_VALUE_TYPE r2;
699 real_convert(&r2, TYPE_MODE(type), &r1);
700 return build_real(type, r2);
701 }
702 else if (TREE_CODE(type) == COMPLEX_TYPE)
703 {
704 REAL_VALUE_TYPE r1;
705 real_from_mpfr(&r1, val, TREE_TYPE(type), GMP_RNDN);
706 REAL_VALUE_TYPE r2;
707 real_convert(&r2, TYPE_MODE(TREE_TYPE(type)), &r1);
708 tree imag = build_real_from_int_cst(TREE_TYPE(type),
709 integer_zero_node);
710 return build_complex(type, build_real(TREE_TYPE(type), r2), imag);
711 }
712 else
713 gcc_unreachable();
714 }
715
716 // Return a tree for REAL/IMAG in TYPE.
717
718 tree
719 Expression::complex_constant_tree(mpfr_t real, mpfr_t imag, tree type)
720 {
721 if (type == error_mark_node)
722 return error_mark_node;
723 else if (TREE_CODE(type) == INTEGER_TYPE || TREE_CODE(type) == REAL_TYPE)
724 return Expression::float_constant_tree(real, type);
725 else if (TREE_CODE(type) == COMPLEX_TYPE)
726 {
727 REAL_VALUE_TYPE r1;
728 real_from_mpfr(&r1, real, TREE_TYPE(type), GMP_RNDN);
729 REAL_VALUE_TYPE r2;
730 real_convert(&r2, TYPE_MODE(TREE_TYPE(type)), &r1);
731
732 REAL_VALUE_TYPE r3;
733 real_from_mpfr(&r3, imag, TREE_TYPE(type), GMP_RNDN);
734 REAL_VALUE_TYPE r4;
735 real_convert(&r4, TYPE_MODE(TREE_TYPE(type)), &r3);
736
737 return build_complex(type, build_real(TREE_TYPE(type), r2),
738 build_real(TREE_TYPE(type), r4));
739 }
740 else
741 gcc_unreachable();
742 }
743
744 // Return a tree which evaluates to true if VAL, of arbitrary integer
745 // type, is negative or is more than the maximum value of BOUND_TYPE.
746 // If SOFAR is not NULL, it is or'red into the result. The return
747 // value may be NULL if SOFAR is NULL.
748
749 tree
750 Expression::check_bounds(tree val, tree bound_type, tree sofar,
751 source_location loc)
752 {
753 tree val_type = TREE_TYPE(val);
754 tree ret = NULL_TREE;
755
756 if (!TYPE_UNSIGNED(val_type))
757 {
758 ret = fold_build2_loc(loc, LT_EXPR, boolean_type_node, val,
759 build_int_cst(val_type, 0));
760 if (ret == boolean_false_node)
761 ret = NULL_TREE;
762 }
763
764 if ((TYPE_UNSIGNED(val_type) && !TYPE_UNSIGNED(bound_type))
765 || TYPE_SIZE(val_type) > TYPE_SIZE(bound_type))
766 {
767 tree max = TYPE_MAX_VALUE(bound_type);
768 tree big = fold_build2_loc(loc, GT_EXPR, boolean_type_node, val,
769 fold_convert_loc(loc, val_type, max));
770 if (big == boolean_false_node)
771 ;
772 else if (ret == NULL_TREE)
773 ret = big;
774 else
775 ret = fold_build2_loc(loc, TRUTH_OR_EXPR, boolean_type_node,
776 ret, big);
777 }
778
779 if (ret == NULL_TREE)
780 return sofar;
781 else if (sofar == NULL_TREE)
782 return ret;
783 else
784 return fold_build2_loc(loc, TRUTH_OR_EXPR, boolean_type_node,
785 sofar, ret);
786 }
787
788 // Error expressions. This are used to avoid cascading errors.
789
790 class Error_expression : public Expression
791 {
792 public:
793 Error_expression(source_location location)
794 : Expression(EXPRESSION_ERROR, location)
795 { }
796
797 protected:
798 bool
799 do_is_constant() const
800 { return true; }
801
802 bool
803 do_integer_constant_value(bool, mpz_t val, Type**) const
804 {
805 mpz_set_ui(val, 0);
806 return true;
807 }
808
809 bool
810 do_float_constant_value(mpfr_t val, Type**) const
811 {
812 mpfr_set_ui(val, 0, GMP_RNDN);
813 return true;
814 }
815
816 bool
817 do_complex_constant_value(mpfr_t real, mpfr_t imag, Type**) const
818 {
819 mpfr_set_ui(real, 0, GMP_RNDN);
820 mpfr_set_ui(imag, 0, GMP_RNDN);
821 return true;
822 }
823
824 void
825 do_discarding_value()
826 { }
827
828 Type*
829 do_type()
830 { return Type::make_error_type(); }
831
832 void
833 do_determine_type(const Type_context*)
834 { }
835
836 Expression*
837 do_copy()
838 { return this; }
839
840 bool
841 do_is_addressable() const
842 { return true; }
843
844 tree
845 do_get_tree(Translate_context*)
846 { return error_mark_node; }
847 };
848
849 Expression*
850 Expression::make_error(source_location location)
851 {
852 return new Error_expression(location);
853 }
854
855 // An expression which is really a type. This is used during parsing.
856 // It is an error if these survive after lowering.
857
858 class
859 Type_expression : public Expression
860 {
861 public:
862 Type_expression(Type* type, source_location location)
863 : Expression(EXPRESSION_TYPE, location),
864 type_(type)
865 { }
866
867 protected:
868 int
869 do_traverse(Traverse* traverse)
870 { return Type::traverse(this->type_, traverse); }
871
872 Type*
873 do_type()
874 { return this->type_; }
875
876 void
877 do_determine_type(const Type_context*)
878 { }
879
880 void
881 do_check_types(Gogo*)
882 { this->report_error(_("invalid use of type")); }
883
884 Expression*
885 do_copy()
886 { return this; }
887
888 tree
889 do_get_tree(Translate_context*)
890 { gcc_unreachable(); }
891
892 private:
893 // The type which we are representing as an expression.
894 Type* type_;
895 };
896
897 Expression*
898 Expression::make_type(Type* type, source_location location)
899 {
900 return new Type_expression(type, location);
901 }
902
903 // Class Parser_expression.
904
905 Type*
906 Parser_expression::do_type()
907 {
908 // We should never really ask for the type of a Parser_expression.
909 // However, it can happen, at least when we have an invalid const
910 // whose initializer refers to the const itself. In that case we
911 // may ask for the type when lowering the const itself.
912 gcc_assert(saw_errors());
913 return Type::make_error_type();
914 }
915
916 // Class Var_expression.
917
918 // Lower a variable expression. Here we just make sure that the
919 // initialization expression of the variable has been lowered. This
920 // ensures that we will be able to determine the type of the variable
921 // if necessary.
922
923 Expression*
924 Var_expression::do_lower(Gogo* gogo, Named_object* function, int)
925 {
926 if (this->variable_->is_variable())
927 {
928 Variable* var = this->variable_->var_value();
929 // This is either a local variable or a global variable. A
930 // reference to a variable which is local to an enclosing
931 // function will be a reference to a field in a closure.
932 if (var->is_global())
933 function = NULL;
934 var->lower_init_expression(gogo, function);
935 }
936 return this;
937 }
938
939 // Return the type of a reference to a variable.
940
941 Type*
942 Var_expression::do_type()
943 {
944 if (this->variable_->is_variable())
945 return this->variable_->var_value()->type();
946 else if (this->variable_->is_result_variable())
947 return this->variable_->result_var_value()->type();
948 else
949 gcc_unreachable();
950 }
951
952 // Determine the type of a reference to a variable.
953
954 void
955 Var_expression::do_determine_type(const Type_context*)
956 {
957 if (this->variable_->is_variable())
958 this->variable_->var_value()->determine_type();
959 }
960
961 // Something takes the address of this variable. This means that we
962 // may want to move the variable onto the heap.
963
964 void
965 Var_expression::do_address_taken(bool escapes)
966 {
967 if (!escapes)
968 ;
969 else if (this->variable_->is_variable())
970 this->variable_->var_value()->set_address_taken();
971 else if (this->variable_->is_result_variable())
972 this->variable_->result_var_value()->set_address_taken();
973 else
974 gcc_unreachable();
975 }
976
977 // Get the tree for a reference to a variable.
978
979 tree
980 Var_expression::do_get_tree(Translate_context* context)
981 {
982 return this->variable_->get_tree(context->gogo(), context->function());
983 }
984
985 // Make a reference to a variable in an expression.
986
987 Expression*
988 Expression::make_var_reference(Named_object* var, source_location location)
989 {
990 if (var->is_sink())
991 return Expression::make_sink(location);
992
993 // FIXME: Creating a new object for each reference to a variable is
994 // wasteful.
995 return new Var_expression(var, location);
996 }
997
998 // Class Temporary_reference_expression.
999
1000 // The type.
1001
1002 Type*
1003 Temporary_reference_expression::do_type()
1004 {
1005 return this->statement_->type();
1006 }
1007
1008 // Called if something takes the address of this temporary variable.
1009 // We never have to move temporary variables to the heap, but we do
1010 // need to know that they must live in the stack rather than in a
1011 // register.
1012
1013 void
1014 Temporary_reference_expression::do_address_taken(bool)
1015 {
1016 this->statement_->set_is_address_taken();
1017 }
1018
1019 // Get a tree referring to the variable.
1020
1021 tree
1022 Temporary_reference_expression::do_get_tree(Translate_context*)
1023 {
1024 return this->statement_->get_decl();
1025 }
1026
1027 // Make a reference to a temporary variable.
1028
1029 Expression*
1030 Expression::make_temporary_reference(Temporary_statement* statement,
1031 source_location location)
1032 {
1033 return new Temporary_reference_expression(statement, location);
1034 }
1035
1036 // A sink expression--a use of the blank identifier _.
1037
1038 class Sink_expression : public Expression
1039 {
1040 public:
1041 Sink_expression(source_location location)
1042 : Expression(EXPRESSION_SINK, location),
1043 type_(NULL), var_(NULL_TREE)
1044 { }
1045
1046 protected:
1047 void
1048 do_discarding_value()
1049 { }
1050
1051 Type*
1052 do_type();
1053
1054 void
1055 do_determine_type(const Type_context*);
1056
1057 Expression*
1058 do_copy()
1059 { return new Sink_expression(this->location()); }
1060
1061 tree
1062 do_get_tree(Translate_context*);
1063
1064 private:
1065 // The type of this sink variable.
1066 Type* type_;
1067 // The temporary variable we generate.
1068 tree var_;
1069 };
1070
1071 // Return the type of a sink expression.
1072
1073 Type*
1074 Sink_expression::do_type()
1075 {
1076 if (this->type_ == NULL)
1077 return Type::make_sink_type();
1078 return this->type_;
1079 }
1080
1081 // Determine the type of a sink expression.
1082
1083 void
1084 Sink_expression::do_determine_type(const Type_context* context)
1085 {
1086 if (context->type != NULL)
1087 this->type_ = context->type;
1088 }
1089
1090 // Return a temporary variable for a sink expression. This will
1091 // presumably be a write-only variable which the middle-end will drop.
1092
1093 tree
1094 Sink_expression::do_get_tree(Translate_context* context)
1095 {
1096 if (this->var_ == NULL_TREE)
1097 {
1098 gcc_assert(this->type_ != NULL && !this->type_->is_sink_type());
1099 this->var_ = create_tmp_var(this->type_->get_tree(context->gogo()),
1100 "blank");
1101 }
1102 return this->var_;
1103 }
1104
1105 // Make a sink expression.
1106
1107 Expression*
1108 Expression::make_sink(source_location location)
1109 {
1110 return new Sink_expression(location);
1111 }
1112
1113 // Class Func_expression.
1114
1115 // FIXME: Can a function expression appear in a constant expression?
1116 // The value is unchanging. Initializing a constant to the address of
1117 // a function seems like it could work, though there might be little
1118 // point to it.
1119
1120 // Traversal.
1121
1122 int
1123 Func_expression::do_traverse(Traverse* traverse)
1124 {
1125 return (this->closure_ == NULL
1126 ? TRAVERSE_CONTINUE
1127 : Expression::traverse(&this->closure_, traverse));
1128 }
1129
1130 // Return the type of a function expression.
1131
1132 Type*
1133 Func_expression::do_type()
1134 {
1135 if (this->function_->is_function())
1136 return this->function_->func_value()->type();
1137 else if (this->function_->is_function_declaration())
1138 return this->function_->func_declaration_value()->type();
1139 else
1140 gcc_unreachable();
1141 }
1142
1143 // Get the tree for a function expression without evaluating the
1144 // closure.
1145
1146 tree
1147 Func_expression::get_tree_without_closure(Gogo* gogo)
1148 {
1149 Function_type* fntype;
1150 if (this->function_->is_function())
1151 fntype = this->function_->func_value()->type();
1152 else if (this->function_->is_function_declaration())
1153 fntype = this->function_->func_declaration_value()->type();
1154 else
1155 gcc_unreachable();
1156
1157 // Builtin functions are handled specially by Call_expression. We
1158 // can't take their address.
1159 if (fntype->is_builtin())
1160 {
1161 error_at(this->location(), "invalid use of special builtin function %qs",
1162 this->function_->name().c_str());
1163 return error_mark_node;
1164 }
1165
1166 Named_object* no = this->function_;
1167
1168 tree id = no->get_id(gogo);
1169 if (id == error_mark_node)
1170 return error_mark_node;
1171
1172 tree fndecl;
1173 if (no->is_function())
1174 fndecl = no->func_value()->get_or_make_decl(gogo, no, id);
1175 else if (no->is_function_declaration())
1176 fndecl = no->func_declaration_value()->get_or_make_decl(gogo, no, id);
1177 else
1178 gcc_unreachable();
1179
1180 if (fndecl == error_mark_node)
1181 return error_mark_node;
1182
1183 return build_fold_addr_expr_loc(this->location(), fndecl);
1184 }
1185
1186 // Get the tree for a function expression. This is used when we take
1187 // the address of a function rather than simply calling it. If the
1188 // function has a closure, we must use a trampoline.
1189
1190 tree
1191 Func_expression::do_get_tree(Translate_context* context)
1192 {
1193 Gogo* gogo = context->gogo();
1194
1195 tree fnaddr = this->get_tree_without_closure(gogo);
1196 if (fnaddr == error_mark_node)
1197 return error_mark_node;
1198
1199 gcc_assert(TREE_CODE(fnaddr) == ADDR_EXPR
1200 && TREE_CODE(TREE_OPERAND(fnaddr, 0)) == FUNCTION_DECL);
1201 TREE_ADDRESSABLE(TREE_OPERAND(fnaddr, 0)) = 1;
1202
1203 // For a normal non-nested function call, that is all we have to do.
1204 if (!this->function_->is_function()
1205 || this->function_->func_value()->enclosing() == NULL)
1206 {
1207 gcc_assert(this->closure_ == NULL);
1208 return fnaddr;
1209 }
1210
1211 // For a nested function call, we have to always allocate a
1212 // trampoline. If we don't always allocate, then closures will not
1213 // be reliably distinct.
1214 Expression* closure = this->closure_;
1215 tree closure_tree;
1216 if (closure == NULL)
1217 closure_tree = null_pointer_node;
1218 else
1219 {
1220 // Get the value of the closure. This will be a pointer to
1221 // space allocated on the heap.
1222 closure_tree = closure->get_tree(context);
1223 if (closure_tree == error_mark_node)
1224 return error_mark_node;
1225 gcc_assert(POINTER_TYPE_P(TREE_TYPE(closure_tree)));
1226 }
1227
1228 // Now we need to build some code on the heap. This code will load
1229 // the static chain pointer with the closure and then jump to the
1230 // body of the function. The normal gcc approach is to build the
1231 // code on the stack. Unfortunately we can not do that, as Go
1232 // permits us to return the function pointer.
1233
1234 return gogo->make_trampoline(fnaddr, closure_tree, this->location());
1235 }
1236
1237 // Make a reference to a function in an expression.
1238
1239 Expression*
1240 Expression::make_func_reference(Named_object* function, Expression* closure,
1241 source_location location)
1242 {
1243 return new Func_expression(function, closure, location);
1244 }
1245
1246 // Class Unknown_expression.
1247
1248 // Return the name of an unknown expression.
1249
1250 const std::string&
1251 Unknown_expression::name() const
1252 {
1253 return this->named_object_->name();
1254 }
1255
1256 // Lower a reference to an unknown name.
1257
1258 Expression*
1259 Unknown_expression::do_lower(Gogo*, Named_object*, int)
1260 {
1261 source_location location = this->location();
1262 Named_object* no = this->named_object_;
1263 Named_object* real;
1264 if (!no->is_unknown())
1265 real = no;
1266 else
1267 {
1268 real = no->unknown_value()->real_named_object();
1269 if (real == NULL)
1270 {
1271 if (this->is_composite_literal_key_)
1272 return this;
1273 error_at(location, "reference to undefined name %qs",
1274 this->named_object_->message_name().c_str());
1275 return Expression::make_error(location);
1276 }
1277 }
1278 switch (real->classification())
1279 {
1280 case Named_object::NAMED_OBJECT_CONST:
1281 return Expression::make_const_reference(real, location);
1282 case Named_object::NAMED_OBJECT_TYPE:
1283 return Expression::make_type(real->type_value(), location);
1284 case Named_object::NAMED_OBJECT_TYPE_DECLARATION:
1285 if (this->is_composite_literal_key_)
1286 return this;
1287 error_at(location, "reference to undefined type %qs",
1288 real->message_name().c_str());
1289 return Expression::make_error(location);
1290 case Named_object::NAMED_OBJECT_VAR:
1291 return Expression::make_var_reference(real, location);
1292 case Named_object::NAMED_OBJECT_FUNC:
1293 case Named_object::NAMED_OBJECT_FUNC_DECLARATION:
1294 return Expression::make_func_reference(real, NULL, location);
1295 case Named_object::NAMED_OBJECT_PACKAGE:
1296 if (this->is_composite_literal_key_)
1297 return this;
1298 error_at(location, "unexpected reference to package");
1299 return Expression::make_error(location);
1300 default:
1301 gcc_unreachable();
1302 }
1303 }
1304
1305 // Make a reference to an unknown name.
1306
1307 Expression*
1308 Expression::make_unknown_reference(Named_object* no, source_location location)
1309 {
1310 gcc_assert(no->resolve()->is_unknown());
1311 return new Unknown_expression(no, location);
1312 }
1313
1314 // A boolean expression.
1315
1316 class Boolean_expression : public Expression
1317 {
1318 public:
1319 Boolean_expression(bool val, source_location location)
1320 : Expression(EXPRESSION_BOOLEAN, location),
1321 val_(val), type_(NULL)
1322 { }
1323
1324 static Expression*
1325 do_import(Import*);
1326
1327 protected:
1328 bool
1329 do_is_constant() const
1330 { return true; }
1331
1332 Type*
1333 do_type();
1334
1335 void
1336 do_determine_type(const Type_context*);
1337
1338 Expression*
1339 do_copy()
1340 { return this; }
1341
1342 tree
1343 do_get_tree(Translate_context*)
1344 { return this->val_ ? boolean_true_node : boolean_false_node; }
1345
1346 void
1347 do_export(Export* exp) const
1348 { exp->write_c_string(this->val_ ? "true" : "false"); }
1349
1350 private:
1351 // The constant.
1352 bool val_;
1353 // The type as determined by context.
1354 Type* type_;
1355 };
1356
1357 // Get the type.
1358
1359 Type*
1360 Boolean_expression::do_type()
1361 {
1362 if (this->type_ == NULL)
1363 this->type_ = Type::make_boolean_type();
1364 return this->type_;
1365 }
1366
1367 // Set the type from the context.
1368
1369 void
1370 Boolean_expression::do_determine_type(const Type_context* context)
1371 {
1372 if (this->type_ != NULL && !this->type_->is_abstract())
1373 ;
1374 else if (context->type != NULL && context->type->is_boolean_type())
1375 this->type_ = context->type;
1376 else if (!context->may_be_abstract)
1377 this->type_ = Type::lookup_bool_type();
1378 }
1379
1380 // Import a boolean constant.
1381
1382 Expression*
1383 Boolean_expression::do_import(Import* imp)
1384 {
1385 if (imp->peek_char() == 't')
1386 {
1387 imp->require_c_string("true");
1388 return Expression::make_boolean(true, imp->location());
1389 }
1390 else
1391 {
1392 imp->require_c_string("false");
1393 return Expression::make_boolean(false, imp->location());
1394 }
1395 }
1396
1397 // Make a boolean expression.
1398
1399 Expression*
1400 Expression::make_boolean(bool val, source_location location)
1401 {
1402 return new Boolean_expression(val, location);
1403 }
1404
1405 // Class String_expression.
1406
1407 // Get the type.
1408
1409 Type*
1410 String_expression::do_type()
1411 {
1412 if (this->type_ == NULL)
1413 this->type_ = Type::make_string_type();
1414 return this->type_;
1415 }
1416
1417 // Set the type from the context.
1418
1419 void
1420 String_expression::do_determine_type(const Type_context* context)
1421 {
1422 if (this->type_ != NULL && !this->type_->is_abstract())
1423 ;
1424 else if (context->type != NULL && context->type->is_string_type())
1425 this->type_ = context->type;
1426 else if (!context->may_be_abstract)
1427 this->type_ = Type::lookup_string_type();
1428 }
1429
1430 // Build a string constant.
1431
1432 tree
1433 String_expression::do_get_tree(Translate_context* context)
1434 {
1435 return context->gogo()->go_string_constant_tree(this->val_);
1436 }
1437
1438 // Export a string expression.
1439
1440 void
1441 String_expression::do_export(Export* exp) const
1442 {
1443 std::string s;
1444 s.reserve(this->val_.length() * 4 + 2);
1445 s += '"';
1446 for (std::string::const_iterator p = this->val_.begin();
1447 p != this->val_.end();
1448 ++p)
1449 {
1450 if (*p == '\\' || *p == '"')
1451 {
1452 s += '\\';
1453 s += *p;
1454 }
1455 else if (*p >= 0x20 && *p < 0x7f)
1456 s += *p;
1457 else if (*p == '\n')
1458 s += "\\n";
1459 else if (*p == '\t')
1460 s += "\\t";
1461 else
1462 {
1463 s += "\\x";
1464 unsigned char c = *p;
1465 unsigned int dig = c >> 4;
1466 s += dig < 10 ? '0' + dig : 'A' + dig - 10;
1467 dig = c & 0xf;
1468 s += dig < 10 ? '0' + dig : 'A' + dig - 10;
1469 }
1470 }
1471 s += '"';
1472 exp->write_string(s);
1473 }
1474
1475 // Import a string expression.
1476
1477 Expression*
1478 String_expression::do_import(Import* imp)
1479 {
1480 imp->require_c_string("\"");
1481 std::string val;
1482 while (true)
1483 {
1484 int c = imp->get_char();
1485 if (c == '"' || c == -1)
1486 break;
1487 if (c != '\\')
1488 val += static_cast<char>(c);
1489 else
1490 {
1491 c = imp->get_char();
1492 if (c == '\\' || c == '"')
1493 val += static_cast<char>(c);
1494 else if (c == 'n')
1495 val += '\n';
1496 else if (c == 't')
1497 val += '\t';
1498 else if (c == 'x')
1499 {
1500 c = imp->get_char();
1501 unsigned int vh = c >= '0' && c <= '9' ? c - '0' : c - 'A' + 10;
1502 c = imp->get_char();
1503 unsigned int vl = c >= '0' && c <= '9' ? c - '0' : c - 'A' + 10;
1504 char v = (vh << 4) | vl;
1505 val += v;
1506 }
1507 else
1508 {
1509 error_at(imp->location(), "bad string constant");
1510 return Expression::make_error(imp->location());
1511 }
1512 }
1513 }
1514 return Expression::make_string(val, imp->location());
1515 }
1516
1517 // Make a string expression.
1518
1519 Expression*
1520 Expression::make_string(const std::string& val, source_location location)
1521 {
1522 return new String_expression(val, location);
1523 }
1524
1525 // Make an integer expression.
1526
1527 class Integer_expression : public Expression
1528 {
1529 public:
1530 Integer_expression(const mpz_t* val, Type* type, source_location location)
1531 : Expression(EXPRESSION_INTEGER, location),
1532 type_(type)
1533 { mpz_init_set(this->val_, *val); }
1534
1535 static Expression*
1536 do_import(Import*);
1537
1538 // Return whether VAL fits in the type.
1539 static bool
1540 check_constant(mpz_t val, Type*, source_location);
1541
1542 // Write VAL to export data.
1543 static void
1544 export_integer(Export* exp, const mpz_t val);
1545
1546 protected:
1547 bool
1548 do_is_constant() const
1549 { return true; }
1550
1551 bool
1552 do_integer_constant_value(bool, mpz_t val, Type** ptype) const;
1553
1554 Type*
1555 do_type();
1556
1557 void
1558 do_determine_type(const Type_context* context);
1559
1560 void
1561 do_check_types(Gogo*);
1562
1563 tree
1564 do_get_tree(Translate_context*);
1565
1566 Expression*
1567 do_copy()
1568 { return Expression::make_integer(&this->val_, this->type_,
1569 this->location()); }
1570
1571 void
1572 do_export(Export*) const;
1573
1574 private:
1575 // The integer value.
1576 mpz_t val_;
1577 // The type so far.
1578 Type* type_;
1579 };
1580
1581 // Return an integer constant value.
1582
1583 bool
1584 Integer_expression::do_integer_constant_value(bool, mpz_t val,
1585 Type** ptype) const
1586 {
1587 if (this->type_ != NULL)
1588 *ptype = this->type_;
1589 mpz_set(val, this->val_);
1590 return true;
1591 }
1592
1593 // Return the current type. If we haven't set the type yet, we return
1594 // an abstract integer type.
1595
1596 Type*
1597 Integer_expression::do_type()
1598 {
1599 if (this->type_ == NULL)
1600 this->type_ = Type::make_abstract_integer_type();
1601 return this->type_;
1602 }
1603
1604 // Set the type of the integer value. Here we may switch from an
1605 // abstract type to a real type.
1606
1607 void
1608 Integer_expression::do_determine_type(const Type_context* context)
1609 {
1610 if (this->type_ != NULL && !this->type_->is_abstract())
1611 ;
1612 else if (context->type != NULL
1613 && (context->type->integer_type() != NULL
1614 || context->type->float_type() != NULL
1615 || context->type->complex_type() != NULL))
1616 this->type_ = context->type;
1617 else if (!context->may_be_abstract)
1618 this->type_ = Type::lookup_integer_type("int");
1619 }
1620
1621 // Return true if the integer VAL fits in the range of the type TYPE.
1622 // Otherwise give an error and return false. TYPE may be NULL.
1623
1624 bool
1625 Integer_expression::check_constant(mpz_t val, Type* type,
1626 source_location location)
1627 {
1628 if (type == NULL)
1629 return true;
1630 Integer_type* itype = type->integer_type();
1631 if (itype == NULL || itype->is_abstract())
1632 return true;
1633
1634 int bits = mpz_sizeinbase(val, 2);
1635
1636 if (itype->is_unsigned())
1637 {
1638 // For an unsigned type we can only accept a nonnegative number,
1639 // and we must be able to represent at least BITS.
1640 if (mpz_sgn(val) >= 0
1641 && bits <= itype->bits())
1642 return true;
1643 }
1644 else
1645 {
1646 // For a signed type we need an extra bit to indicate the sign.
1647 // We have to handle the most negative integer specially.
1648 if (bits + 1 <= itype->bits()
1649 || (bits <= itype->bits()
1650 && mpz_sgn(val) < 0
1651 && (mpz_scan1(val, 0)
1652 == static_cast<unsigned long>(itype->bits() - 1))
1653 && mpz_scan0(val, itype->bits()) == ULONG_MAX))
1654 return true;
1655 }
1656
1657 error_at(location, "integer constant overflow");
1658 return false;
1659 }
1660
1661 // Check the type of an integer constant.
1662
1663 void
1664 Integer_expression::do_check_types(Gogo*)
1665 {
1666 if (this->type_ == NULL)
1667 return;
1668 if (!Integer_expression::check_constant(this->val_, this->type_,
1669 this->location()))
1670 this->set_is_error();
1671 }
1672
1673 // Get a tree for an integer constant.
1674
1675 tree
1676 Integer_expression::do_get_tree(Translate_context* context)
1677 {
1678 Gogo* gogo = context->gogo();
1679 tree type;
1680 if (this->type_ != NULL && !this->type_->is_abstract())
1681 type = this->type_->get_tree(gogo);
1682 else if (this->type_ != NULL && this->type_->float_type() != NULL)
1683 {
1684 // We are converting to an abstract floating point type.
1685 type = Type::lookup_float_type("float64")->get_tree(gogo);
1686 }
1687 else if (this->type_ != NULL && this->type_->complex_type() != NULL)
1688 {
1689 // We are converting to an abstract complex type.
1690 type = Type::lookup_complex_type("complex128")->get_tree(gogo);
1691 }
1692 else
1693 {
1694 // If we still have an abstract type here, then this is being
1695 // used in a constant expression which didn't get reduced for
1696 // some reason. Use a type which will fit the value. We use <,
1697 // not <=, because we need an extra bit for the sign bit.
1698 int bits = mpz_sizeinbase(this->val_, 2);
1699 if (bits < INT_TYPE_SIZE)
1700 type = Type::lookup_integer_type("int")->get_tree(gogo);
1701 else if (bits < 64)
1702 type = Type::lookup_integer_type("int64")->get_tree(gogo);
1703 else
1704 type = long_long_integer_type_node;
1705 }
1706 return Expression::integer_constant_tree(this->val_, type);
1707 }
1708
1709 // Write VAL to export data.
1710
1711 void
1712 Integer_expression::export_integer(Export* exp, const mpz_t val)
1713 {
1714 char* s = mpz_get_str(NULL, 10, val);
1715 exp->write_c_string(s);
1716 free(s);
1717 }
1718
1719 // Export an integer in a constant expression.
1720
1721 void
1722 Integer_expression::do_export(Export* exp) const
1723 {
1724 Integer_expression::export_integer(exp, this->val_);
1725 // A trailing space lets us reliably identify the end of the number.
1726 exp->write_c_string(" ");
1727 }
1728
1729 // Import an integer, floating point, or complex value. This handles
1730 // all these types because they all start with digits.
1731
1732 Expression*
1733 Integer_expression::do_import(Import* imp)
1734 {
1735 std::string num = imp->read_identifier();
1736 imp->require_c_string(" ");
1737 if (!num.empty() && num[num.length() - 1] == 'i')
1738 {
1739 mpfr_t real;
1740 size_t plus_pos = num.find('+', 1);
1741 size_t minus_pos = num.find('-', 1);
1742 size_t pos;
1743 if (plus_pos == std::string::npos)
1744 pos = minus_pos;
1745 else if (minus_pos == std::string::npos)
1746 pos = plus_pos;
1747 else
1748 {
1749 error_at(imp->location(), "bad number in import data: %qs",
1750 num.c_str());
1751 return Expression::make_error(imp->location());
1752 }
1753 if (pos == std::string::npos)
1754 mpfr_set_ui(real, 0, GMP_RNDN);
1755 else
1756 {
1757 std::string real_str = num.substr(0, pos);
1758 if (mpfr_init_set_str(real, real_str.c_str(), 10, GMP_RNDN) != 0)
1759 {
1760 error_at(imp->location(), "bad number in import data: %qs",
1761 real_str.c_str());
1762 return Expression::make_error(imp->location());
1763 }
1764 }
1765
1766 std::string imag_str;
1767 if (pos == std::string::npos)
1768 imag_str = num;
1769 else
1770 imag_str = num.substr(pos);
1771 imag_str = imag_str.substr(0, imag_str.size() - 1);
1772 mpfr_t imag;
1773 if (mpfr_init_set_str(imag, imag_str.c_str(), 10, GMP_RNDN) != 0)
1774 {
1775 error_at(imp->location(), "bad number in import data: %qs",
1776 imag_str.c_str());
1777 return Expression::make_error(imp->location());
1778 }
1779 Expression* ret = Expression::make_complex(&real, &imag, NULL,
1780 imp->location());
1781 mpfr_clear(real);
1782 mpfr_clear(imag);
1783 return ret;
1784 }
1785 else if (num.find('.') == std::string::npos
1786 && num.find('E') == std::string::npos)
1787 {
1788 mpz_t val;
1789 if (mpz_init_set_str(val, num.c_str(), 10) != 0)
1790 {
1791 error_at(imp->location(), "bad number in import data: %qs",
1792 num.c_str());
1793 return Expression::make_error(imp->location());
1794 }
1795 Expression* ret = Expression::make_integer(&val, NULL, imp->location());
1796 mpz_clear(val);
1797 return ret;
1798 }
1799 else
1800 {
1801 mpfr_t val;
1802 if (mpfr_init_set_str(val, num.c_str(), 10, GMP_RNDN) != 0)
1803 {
1804 error_at(imp->location(), "bad number in import data: %qs",
1805 num.c_str());
1806 return Expression::make_error(imp->location());
1807 }
1808 Expression* ret = Expression::make_float(&val, NULL, imp->location());
1809 mpfr_clear(val);
1810 return ret;
1811 }
1812 }
1813
1814 // Build a new integer value.
1815
1816 Expression*
1817 Expression::make_integer(const mpz_t* val, Type* type,
1818 source_location location)
1819 {
1820 return new Integer_expression(val, type, location);
1821 }
1822
1823 // Floats.
1824
1825 class Float_expression : public Expression
1826 {
1827 public:
1828 Float_expression(const mpfr_t* val, Type* type, source_location location)
1829 : Expression(EXPRESSION_FLOAT, location),
1830 type_(type)
1831 {
1832 mpfr_init_set(this->val_, *val, GMP_RNDN);
1833 }
1834
1835 // Constrain VAL to fit into TYPE.
1836 static void
1837 constrain_float(mpfr_t val, Type* type);
1838
1839 // Return whether VAL fits in the type.
1840 static bool
1841 check_constant(mpfr_t val, Type*, source_location);
1842
1843 // Write VAL to export data.
1844 static void
1845 export_float(Export* exp, const mpfr_t val);
1846
1847 protected:
1848 bool
1849 do_is_constant() const
1850 { return true; }
1851
1852 bool
1853 do_float_constant_value(mpfr_t val, Type**) const;
1854
1855 Type*
1856 do_type();
1857
1858 void
1859 do_determine_type(const Type_context*);
1860
1861 void
1862 do_check_types(Gogo*);
1863
1864 Expression*
1865 do_copy()
1866 { return Expression::make_float(&this->val_, this->type_,
1867 this->location()); }
1868
1869 tree
1870 do_get_tree(Translate_context*);
1871
1872 void
1873 do_export(Export*) const;
1874
1875 private:
1876 // The floating point value.
1877 mpfr_t val_;
1878 // The type so far.
1879 Type* type_;
1880 };
1881
1882 // Constrain VAL to fit into TYPE.
1883
1884 void
1885 Float_expression::constrain_float(mpfr_t val, Type* type)
1886 {
1887 Float_type* ftype = type->float_type();
1888 if (ftype != NULL && !ftype->is_abstract())
1889 {
1890 tree type_tree = ftype->type_tree();
1891 REAL_VALUE_TYPE rvt;
1892 real_from_mpfr(&rvt, val, type_tree, GMP_RNDN);
1893 real_convert(&rvt, TYPE_MODE(type_tree), &rvt);
1894 mpfr_from_real(val, &rvt, GMP_RNDN);
1895 }
1896 }
1897
1898 // Return a floating point constant value.
1899
1900 bool
1901 Float_expression::do_float_constant_value(mpfr_t val, Type** ptype) const
1902 {
1903 if (this->type_ != NULL)
1904 *ptype = this->type_;
1905 mpfr_set(val, this->val_, GMP_RNDN);
1906 return true;
1907 }
1908
1909 // Return the current type. If we haven't set the type yet, we return
1910 // an abstract float type.
1911
1912 Type*
1913 Float_expression::do_type()
1914 {
1915 if (this->type_ == NULL)
1916 this->type_ = Type::make_abstract_float_type();
1917 return this->type_;
1918 }
1919
1920 // Set the type of the float value. Here we may switch from an
1921 // abstract type to a real type.
1922
1923 void
1924 Float_expression::do_determine_type(const Type_context* context)
1925 {
1926 if (this->type_ != NULL && !this->type_->is_abstract())
1927 ;
1928 else if (context->type != NULL
1929 && (context->type->integer_type() != NULL
1930 || context->type->float_type() != NULL
1931 || context->type->complex_type() != NULL))
1932 this->type_ = context->type;
1933 else if (!context->may_be_abstract)
1934 this->type_ = Type::lookup_float_type("float64");
1935 }
1936
1937 // Return true if the floating point value VAL fits in the range of
1938 // the type TYPE. Otherwise give an error and return false. TYPE may
1939 // be NULL.
1940
1941 bool
1942 Float_expression::check_constant(mpfr_t val, Type* type,
1943 source_location location)
1944 {
1945 if (type == NULL)
1946 return true;
1947 Float_type* ftype = type->float_type();
1948 if (ftype == NULL || ftype->is_abstract())
1949 return true;
1950
1951 // A NaN or Infinity always fits in the range of the type.
1952 if (mpfr_nan_p(val) || mpfr_inf_p(val) || mpfr_zero_p(val))
1953 return true;
1954
1955 mp_exp_t exp = mpfr_get_exp(val);
1956 mp_exp_t max_exp;
1957 switch (ftype->bits())
1958 {
1959 case 32:
1960 max_exp = 128;
1961 break;
1962 case 64:
1963 max_exp = 1024;
1964 break;
1965 default:
1966 gcc_unreachable();
1967 }
1968 if (exp > max_exp)
1969 {
1970 error_at(location, "floating point constant overflow");
1971 return false;
1972 }
1973 return true;
1974 }
1975
1976 // Check the type of a float value.
1977
1978 void
1979 Float_expression::do_check_types(Gogo*)
1980 {
1981 if (this->type_ == NULL)
1982 return;
1983
1984 if (!Float_expression::check_constant(this->val_, this->type_,
1985 this->location()))
1986 this->set_is_error();
1987
1988 Integer_type* integer_type = this->type_->integer_type();
1989 if (integer_type != NULL)
1990 {
1991 if (!mpfr_integer_p(this->val_))
1992 this->report_error(_("floating point constant truncated to integer"));
1993 else
1994 {
1995 gcc_assert(!integer_type->is_abstract());
1996 mpz_t ival;
1997 mpz_init(ival);
1998 mpfr_get_z(ival, this->val_, GMP_RNDN);
1999 Integer_expression::check_constant(ival, integer_type,
2000 this->location());
2001 mpz_clear(ival);
2002 }
2003 }
2004 }
2005
2006 // Get a tree for a float constant.
2007
2008 tree
2009 Float_expression::do_get_tree(Translate_context* context)
2010 {
2011 Gogo* gogo = context->gogo();
2012 tree type;
2013 if (this->type_ != NULL && !this->type_->is_abstract())
2014 type = this->type_->get_tree(gogo);
2015 else if (this->type_ != NULL && this->type_->integer_type() != NULL)
2016 {
2017 // We have an abstract integer type. We just hope for the best.
2018 type = Type::lookup_integer_type("int")->get_tree(gogo);
2019 }
2020 else
2021 {
2022 // If we still have an abstract type here, then this is being
2023 // used in a constant expression which didn't get reduced. We
2024 // just use float64 and hope for the best.
2025 type = Type::lookup_float_type("float64")->get_tree(gogo);
2026 }
2027 return Expression::float_constant_tree(this->val_, type);
2028 }
2029
2030 // Write a floating point number to export data.
2031
2032 void
2033 Float_expression::export_float(Export *exp, const mpfr_t val)
2034 {
2035 mp_exp_t exponent;
2036 char* s = mpfr_get_str(NULL, &exponent, 10, 0, val, GMP_RNDN);
2037 if (*s == '-')
2038 exp->write_c_string("-");
2039 exp->write_c_string("0.");
2040 exp->write_c_string(*s == '-' ? s + 1 : s);
2041 mpfr_free_str(s);
2042 char buf[30];
2043 snprintf(buf, sizeof buf, "E%ld", exponent);
2044 exp->write_c_string(buf);
2045 }
2046
2047 // Export a floating point number in a constant expression.
2048
2049 void
2050 Float_expression::do_export(Export* exp) const
2051 {
2052 Float_expression::export_float(exp, this->val_);
2053 // A trailing space lets us reliably identify the end of the number.
2054 exp->write_c_string(" ");
2055 }
2056
2057 // Make a float expression.
2058
2059 Expression*
2060 Expression::make_float(const mpfr_t* val, Type* type, source_location location)
2061 {
2062 return new Float_expression(val, type, location);
2063 }
2064
2065 // Complex numbers.
2066
2067 class Complex_expression : public Expression
2068 {
2069 public:
2070 Complex_expression(const mpfr_t* real, const mpfr_t* imag, Type* type,
2071 source_location location)
2072 : Expression(EXPRESSION_COMPLEX, location),
2073 type_(type)
2074 {
2075 mpfr_init_set(this->real_, *real, GMP_RNDN);
2076 mpfr_init_set(this->imag_, *imag, GMP_RNDN);
2077 }
2078
2079 // Constrain REAL/IMAG to fit into TYPE.
2080 static void
2081 constrain_complex(mpfr_t real, mpfr_t imag, Type* type);
2082
2083 // Return whether REAL/IMAG fits in the type.
2084 static bool
2085 check_constant(mpfr_t real, mpfr_t imag, Type*, source_location);
2086
2087 // Write REAL/IMAG to export data.
2088 static void
2089 export_complex(Export* exp, const mpfr_t real, const mpfr_t val);
2090
2091 protected:
2092 bool
2093 do_is_constant() const
2094 { return true; }
2095
2096 bool
2097 do_complex_constant_value(mpfr_t real, mpfr_t imag, Type**) const;
2098
2099 Type*
2100 do_type();
2101
2102 void
2103 do_determine_type(const Type_context*);
2104
2105 void
2106 do_check_types(Gogo*);
2107
2108 Expression*
2109 do_copy()
2110 {
2111 return Expression::make_complex(&this->real_, &this->imag_, this->type_,
2112 this->location());
2113 }
2114
2115 tree
2116 do_get_tree(Translate_context*);
2117
2118 void
2119 do_export(Export*) const;
2120
2121 private:
2122 // The real part.
2123 mpfr_t real_;
2124 // The imaginary part;
2125 mpfr_t imag_;
2126 // The type if known.
2127 Type* type_;
2128 };
2129
2130 // Constrain REAL/IMAG to fit into TYPE.
2131
2132 void
2133 Complex_expression::constrain_complex(mpfr_t real, mpfr_t imag, Type* type)
2134 {
2135 Complex_type* ctype = type->complex_type();
2136 if (ctype != NULL && !ctype->is_abstract())
2137 {
2138 tree type_tree = ctype->type_tree();
2139
2140 REAL_VALUE_TYPE rvt;
2141 real_from_mpfr(&rvt, real, TREE_TYPE(type_tree), GMP_RNDN);
2142 real_convert(&rvt, TYPE_MODE(TREE_TYPE(type_tree)), &rvt);
2143 mpfr_from_real(real, &rvt, GMP_RNDN);
2144
2145 real_from_mpfr(&rvt, imag, TREE_TYPE(type_tree), GMP_RNDN);
2146 real_convert(&rvt, TYPE_MODE(TREE_TYPE(type_tree)), &rvt);
2147 mpfr_from_real(imag, &rvt, GMP_RNDN);
2148 }
2149 }
2150
2151 // Return a complex constant value.
2152
2153 bool
2154 Complex_expression::do_complex_constant_value(mpfr_t real, mpfr_t imag,
2155 Type** ptype) const
2156 {
2157 if (this->type_ != NULL)
2158 *ptype = this->type_;
2159 mpfr_set(real, this->real_, GMP_RNDN);
2160 mpfr_set(imag, this->imag_, GMP_RNDN);
2161 return true;
2162 }
2163
2164 // Return the current type. If we haven't set the type yet, we return
2165 // an abstract complex type.
2166
2167 Type*
2168 Complex_expression::do_type()
2169 {
2170 if (this->type_ == NULL)
2171 this->type_ = Type::make_abstract_complex_type();
2172 return this->type_;
2173 }
2174
2175 // Set the type of the complex value. Here we may switch from an
2176 // abstract type to a real type.
2177
2178 void
2179 Complex_expression::do_determine_type(const Type_context* context)
2180 {
2181 if (this->type_ != NULL && !this->type_->is_abstract())
2182 ;
2183 else if (context->type != NULL
2184 && context->type->complex_type() != NULL)
2185 this->type_ = context->type;
2186 else if (!context->may_be_abstract)
2187 this->type_ = Type::lookup_complex_type("complex128");
2188 }
2189
2190 // Return true if the complex value REAL/IMAG fits in the range of the
2191 // type TYPE. Otherwise give an error and return false. TYPE may be
2192 // NULL.
2193
2194 bool
2195 Complex_expression::check_constant(mpfr_t real, mpfr_t imag, Type* type,
2196 source_location location)
2197 {
2198 if (type == NULL)
2199 return true;
2200 Complex_type* ctype = type->complex_type();
2201 if (ctype == NULL || ctype->is_abstract())
2202 return true;
2203
2204 mp_exp_t max_exp;
2205 switch (ctype->bits())
2206 {
2207 case 64:
2208 max_exp = 128;
2209 break;
2210 case 128:
2211 max_exp = 1024;
2212 break;
2213 default:
2214 gcc_unreachable();
2215 }
2216
2217 // A NaN or Infinity always fits in the range of the type.
2218 if (!mpfr_nan_p(real) && !mpfr_inf_p(real) && !mpfr_zero_p(real))
2219 {
2220 if (mpfr_get_exp(real) > max_exp)
2221 {
2222 error_at(location, "complex real part constant overflow");
2223 return false;
2224 }
2225 }
2226
2227 if (!mpfr_nan_p(imag) && !mpfr_inf_p(imag) && !mpfr_zero_p(imag))
2228 {
2229 if (mpfr_get_exp(imag) > max_exp)
2230 {
2231 error_at(location, "complex imaginary part constant overflow");
2232 return false;
2233 }
2234 }
2235
2236 return true;
2237 }
2238
2239 // Check the type of a complex value.
2240
2241 void
2242 Complex_expression::do_check_types(Gogo*)
2243 {
2244 if (this->type_ == NULL)
2245 return;
2246
2247 if (!Complex_expression::check_constant(this->real_, this->imag_,
2248 this->type_, this->location()))
2249 this->set_is_error();
2250 }
2251
2252 // Get a tree for a complex constant.
2253
2254 tree
2255 Complex_expression::do_get_tree(Translate_context* context)
2256 {
2257 Gogo* gogo = context->gogo();
2258 tree type;
2259 if (this->type_ != NULL && !this->type_->is_abstract())
2260 type = this->type_->get_tree(gogo);
2261 else
2262 {
2263 // If we still have an abstract type here, this this is being
2264 // used in a constant expression which didn't get reduced. We
2265 // just use complex128 and hope for the best.
2266 type = Type::lookup_complex_type("complex128")->get_tree(gogo);
2267 }
2268 return Expression::complex_constant_tree(this->real_, this->imag_, type);
2269 }
2270
2271 // Write REAL/IMAG to export data.
2272
2273 void
2274 Complex_expression::export_complex(Export* exp, const mpfr_t real,
2275 const mpfr_t imag)
2276 {
2277 if (!mpfr_zero_p(real))
2278 {
2279 Float_expression::export_float(exp, real);
2280 if (mpfr_sgn(imag) > 0)
2281 exp->write_c_string("+");
2282 }
2283 Float_expression::export_float(exp, imag);
2284 exp->write_c_string("i");
2285 }
2286
2287 // Export a complex number in a constant expression.
2288
2289 void
2290 Complex_expression::do_export(Export* exp) const
2291 {
2292 Complex_expression::export_complex(exp, this->real_, this->imag_);
2293 // A trailing space lets us reliably identify the end of the number.
2294 exp->write_c_string(" ");
2295 }
2296
2297 // Make a complex expression.
2298
2299 Expression*
2300 Expression::make_complex(const mpfr_t* real, const mpfr_t* imag, Type* type,
2301 source_location location)
2302 {
2303 return new Complex_expression(real, imag, type, location);
2304 }
2305
2306 // Find a named object in an expression.
2307
2308 class Find_named_object : public Traverse
2309 {
2310 public:
2311 Find_named_object(Named_object* no)
2312 : Traverse(traverse_expressions),
2313 no_(no), found_(false)
2314 { }
2315
2316 // Whether we found the object.
2317 bool
2318 found() const
2319 { return this->found_; }
2320
2321 protected:
2322 int
2323 expression(Expression**);
2324
2325 private:
2326 // The object we are looking for.
2327 Named_object* no_;
2328 // Whether we found it.
2329 bool found_;
2330 };
2331
2332 // A reference to a const in an expression.
2333
2334 class Const_expression : public Expression
2335 {
2336 public:
2337 Const_expression(Named_object* constant, source_location location)
2338 : Expression(EXPRESSION_CONST_REFERENCE, location),
2339 constant_(constant), type_(NULL), seen_(false)
2340 { }
2341
2342 Named_object*
2343 named_object()
2344 { return this->constant_; }
2345
2346 // Check that the initializer does not refer to the constant itself.
2347 void
2348 check_for_init_loop();
2349
2350 protected:
2351 int
2352 do_traverse(Traverse*);
2353
2354 Expression*
2355 do_lower(Gogo*, Named_object*, int);
2356
2357 bool
2358 do_is_constant() const
2359 { return true; }
2360
2361 bool
2362 do_integer_constant_value(bool, mpz_t val, Type**) const;
2363
2364 bool
2365 do_float_constant_value(mpfr_t val, Type**) const;
2366
2367 bool
2368 do_complex_constant_value(mpfr_t real, mpfr_t imag, Type**) const;
2369
2370 bool
2371 do_string_constant_value(std::string* val) const
2372 { return this->constant_->const_value()->expr()->string_constant_value(val); }
2373
2374 Type*
2375 do_type();
2376
2377 // The type of a const is set by the declaration, not the use.
2378 void
2379 do_determine_type(const Type_context*);
2380
2381 void
2382 do_check_types(Gogo*);
2383
2384 Expression*
2385 do_copy()
2386 { return this; }
2387
2388 tree
2389 do_get_tree(Translate_context* context);
2390
2391 // When exporting a reference to a const as part of a const
2392 // expression, we export the value. We ignore the fact that it has
2393 // a name.
2394 void
2395 do_export(Export* exp) const
2396 { this->constant_->const_value()->expr()->export_expression(exp); }
2397
2398 private:
2399 // The constant.
2400 Named_object* constant_;
2401 // The type of this reference. This is used if the constant has an
2402 // abstract type.
2403 Type* type_;
2404 // Used to prevent infinite recursion when a constant incorrectly
2405 // refers to itself.
2406 mutable bool seen_;
2407 };
2408
2409 // Traversal.
2410
2411 int
2412 Const_expression::do_traverse(Traverse* traverse)
2413 {
2414 if (this->type_ != NULL)
2415 return Type::traverse(this->type_, traverse);
2416 return TRAVERSE_CONTINUE;
2417 }
2418
2419 // Lower a constant expression. This is where we convert the
2420 // predeclared constant iota into an integer value.
2421
2422 Expression*
2423 Const_expression::do_lower(Gogo* gogo, Named_object*, int iota_value)
2424 {
2425 if (this->constant_->const_value()->expr()->classification()
2426 == EXPRESSION_IOTA)
2427 {
2428 if (iota_value == -1)
2429 {
2430 error_at(this->location(),
2431 "iota is only defined in const declarations");
2432 iota_value = 0;
2433 }
2434 mpz_t val;
2435 mpz_init_set_ui(val, static_cast<unsigned long>(iota_value));
2436 Expression* ret = Expression::make_integer(&val, NULL,
2437 this->location());
2438 mpz_clear(val);
2439 return ret;
2440 }
2441
2442 // Make sure that the constant itself has been lowered.
2443 gogo->lower_constant(this->constant_);
2444
2445 return this;
2446 }
2447
2448 // Return an integer constant value.
2449
2450 bool
2451 Const_expression::do_integer_constant_value(bool iota_is_constant, mpz_t val,
2452 Type** ptype) const
2453 {
2454 if (this->seen_)
2455 return false;
2456
2457 Type* ctype;
2458 if (this->type_ != NULL)
2459 ctype = this->type_;
2460 else
2461 ctype = this->constant_->const_value()->type();
2462 if (ctype != NULL && ctype->integer_type() == NULL)
2463 return false;
2464
2465 Expression* e = this->constant_->const_value()->expr();
2466
2467 this->seen_ = true;
2468
2469 Type* t;
2470 bool r = e->integer_constant_value(iota_is_constant, val, &t);
2471
2472 this->seen_ = false;
2473
2474 if (r
2475 && ctype != NULL
2476 && !Integer_expression::check_constant(val, ctype, this->location()))
2477 return false;
2478
2479 *ptype = ctype != NULL ? ctype : t;
2480 return r;
2481 }
2482
2483 // Return a floating point constant value.
2484
2485 bool
2486 Const_expression::do_float_constant_value(mpfr_t val, Type** ptype) const
2487 {
2488 if (this->seen_)
2489 return false;
2490
2491 Type* ctype;
2492 if (this->type_ != NULL)
2493 ctype = this->type_;
2494 else
2495 ctype = this->constant_->const_value()->type();
2496 if (ctype != NULL && ctype->float_type() == NULL)
2497 return false;
2498
2499 this->seen_ = true;
2500
2501 Type* t;
2502 bool r = this->constant_->const_value()->expr()->float_constant_value(val,
2503 &t);
2504
2505 this->seen_ = false;
2506
2507 if (r && ctype != NULL)
2508 {
2509 if (!Float_expression::check_constant(val, ctype, this->location()))
2510 return false;
2511 Float_expression::constrain_float(val, ctype);
2512 }
2513 *ptype = ctype != NULL ? ctype : t;
2514 return r;
2515 }
2516
2517 // Return a complex constant value.
2518
2519 bool
2520 Const_expression::do_complex_constant_value(mpfr_t real, mpfr_t imag,
2521 Type **ptype) const
2522 {
2523 if (this->seen_)
2524 return false;
2525
2526 Type* ctype;
2527 if (this->type_ != NULL)
2528 ctype = this->type_;
2529 else
2530 ctype = this->constant_->const_value()->type();
2531 if (ctype != NULL && ctype->complex_type() == NULL)
2532 return false;
2533
2534 this->seen_ = true;
2535
2536 Type *t;
2537 bool r = this->constant_->const_value()->expr()->complex_constant_value(real,
2538 imag,
2539 &t);
2540
2541 this->seen_ = false;
2542
2543 if (r && ctype != NULL)
2544 {
2545 if (!Complex_expression::check_constant(real, imag, ctype,
2546 this->location()))
2547 return false;
2548 Complex_expression::constrain_complex(real, imag, ctype);
2549 }
2550 *ptype = ctype != NULL ? ctype : t;
2551 return r;
2552 }
2553
2554 // Return the type of the const reference.
2555
2556 Type*
2557 Const_expression::do_type()
2558 {
2559 if (this->type_ != NULL)
2560 return this->type_;
2561
2562 Named_constant* nc = this->constant_->const_value();
2563
2564 if (this->seen_ || nc->lowering())
2565 {
2566 this->report_error(_("constant refers to itself"));
2567 this->type_ = Type::make_error_type();
2568 return this->type_;
2569 }
2570
2571 this->seen_ = true;
2572
2573 Type* ret = nc->type();
2574
2575 if (ret != NULL)
2576 {
2577 this->seen_ = false;
2578 return ret;
2579 }
2580
2581 // During parsing, a named constant may have a NULL type, but we
2582 // must not return a NULL type here.
2583 ret = nc->expr()->type();
2584
2585 this->seen_ = false;
2586
2587 return ret;
2588 }
2589
2590 // Set the type of the const reference.
2591
2592 void
2593 Const_expression::do_determine_type(const Type_context* context)
2594 {
2595 Type* ctype = this->constant_->const_value()->type();
2596 Type* cetype = (ctype != NULL
2597 ? ctype
2598 : this->constant_->const_value()->expr()->type());
2599 if (ctype != NULL && !ctype->is_abstract())
2600 ;
2601 else if (context->type != NULL
2602 && (context->type->integer_type() != NULL
2603 || context->type->float_type() != NULL
2604 || context->type->complex_type() != NULL)
2605 && (cetype->integer_type() != NULL
2606 || cetype->float_type() != NULL
2607 || cetype->complex_type() != NULL))
2608 this->type_ = context->type;
2609 else if (context->type != NULL
2610 && context->type->is_string_type()
2611 && cetype->is_string_type())
2612 this->type_ = context->type;
2613 else if (context->type != NULL
2614 && context->type->is_boolean_type()
2615 && cetype->is_boolean_type())
2616 this->type_ = context->type;
2617 else if (!context->may_be_abstract)
2618 {
2619 if (cetype->is_abstract())
2620 cetype = cetype->make_non_abstract_type();
2621 this->type_ = cetype;
2622 }
2623 }
2624
2625 // Check for a loop in which the initializer of a constant refers to
2626 // the constant itself.
2627
2628 void
2629 Const_expression::check_for_init_loop()
2630 {
2631 if (this->type_ != NULL && this->type_->is_error_type())
2632 return;
2633
2634 if (this->seen_)
2635 {
2636 this->report_error(_("constant refers to itself"));
2637 this->type_ = Type::make_error_type();
2638 return;
2639 }
2640
2641 Expression* init = this->constant_->const_value()->expr();
2642 Find_named_object find_named_object(this->constant_);
2643
2644 this->seen_ = true;
2645 Expression::traverse(&init, &find_named_object);
2646 this->seen_ = false;
2647
2648 if (find_named_object.found())
2649 {
2650 if (this->type_ == NULL || !this->type_->is_error_type())
2651 {
2652 this->report_error(_("constant refers to itself"));
2653 this->type_ = Type::make_error_type();
2654 }
2655 return;
2656 }
2657 }
2658
2659 // Check types of a const reference.
2660
2661 void
2662 Const_expression::do_check_types(Gogo*)
2663 {
2664 if (this->type_ != NULL && this->type_->is_error_type())
2665 return;
2666
2667 this->check_for_init_loop();
2668
2669 if (this->type_ == NULL || this->type_->is_abstract())
2670 return;
2671
2672 // Check for integer overflow.
2673 if (this->type_->integer_type() != NULL)
2674 {
2675 mpz_t ival;
2676 mpz_init(ival);
2677 Type* dummy;
2678 if (!this->integer_constant_value(true, ival, &dummy))
2679 {
2680 mpfr_t fval;
2681 mpfr_init(fval);
2682 Expression* cexpr = this->constant_->const_value()->expr();
2683 if (cexpr->float_constant_value(fval, &dummy))
2684 {
2685 if (!mpfr_integer_p(fval))
2686 this->report_error(_("floating point constant "
2687 "truncated to integer"));
2688 else
2689 {
2690 mpfr_get_z(ival, fval, GMP_RNDN);
2691 Integer_expression::check_constant(ival, this->type_,
2692 this->location());
2693 }
2694 }
2695 mpfr_clear(fval);
2696 }
2697 mpz_clear(ival);
2698 }
2699 }
2700
2701 // Return a tree for the const reference.
2702
2703 tree
2704 Const_expression::do_get_tree(Translate_context* context)
2705 {
2706 Gogo* gogo = context->gogo();
2707 tree type_tree;
2708 if (this->type_ == NULL)
2709 type_tree = NULL_TREE;
2710 else
2711 {
2712 type_tree = this->type_->get_tree(gogo);
2713 if (type_tree == error_mark_node)
2714 return error_mark_node;
2715 }
2716
2717 // If the type has been set for this expression, but the underlying
2718 // object is an abstract int or float, we try to get the abstract
2719 // value. Otherwise we may lose something in the conversion.
2720 if (this->type_ != NULL
2721 && (this->constant_->const_value()->type() == NULL
2722 || this->constant_->const_value()->type()->is_abstract()))
2723 {
2724 Expression* expr = this->constant_->const_value()->expr();
2725 mpz_t ival;
2726 mpz_init(ival);
2727 Type* t;
2728 if (expr->integer_constant_value(true, ival, &t))
2729 {
2730 tree ret = Expression::integer_constant_tree(ival, type_tree);
2731 mpz_clear(ival);
2732 return ret;
2733 }
2734 mpz_clear(ival);
2735
2736 mpfr_t fval;
2737 mpfr_init(fval);
2738 if (expr->float_constant_value(fval, &t))
2739 {
2740 tree ret = Expression::float_constant_tree(fval, type_tree);
2741 mpfr_clear(fval);
2742 return ret;
2743 }
2744
2745 mpfr_t imag;
2746 mpfr_init(imag);
2747 if (expr->complex_constant_value(fval, imag, &t))
2748 {
2749 tree ret = Expression::complex_constant_tree(fval, imag, type_tree);
2750 mpfr_clear(fval);
2751 mpfr_clear(imag);
2752 return ret;
2753 }
2754 mpfr_clear(imag);
2755 mpfr_clear(fval);
2756 }
2757
2758 tree const_tree = this->constant_->get_tree(gogo, context->function());
2759 if (this->type_ == NULL
2760 || const_tree == error_mark_node
2761 || TREE_TYPE(const_tree) == error_mark_node)
2762 return const_tree;
2763
2764 tree ret;
2765 if (TYPE_MAIN_VARIANT(type_tree) == TYPE_MAIN_VARIANT(TREE_TYPE(const_tree)))
2766 ret = fold_convert(type_tree, const_tree);
2767 else if (TREE_CODE(type_tree) == INTEGER_TYPE)
2768 ret = fold(convert_to_integer(type_tree, const_tree));
2769 else if (TREE_CODE(type_tree) == REAL_TYPE)
2770 ret = fold(convert_to_real(type_tree, const_tree));
2771 else if (TREE_CODE(type_tree) == COMPLEX_TYPE)
2772 ret = fold(convert_to_complex(type_tree, const_tree));
2773 else
2774 gcc_unreachable();
2775 return ret;
2776 }
2777
2778 // Make a reference to a constant in an expression.
2779
2780 Expression*
2781 Expression::make_const_reference(Named_object* constant,
2782 source_location location)
2783 {
2784 return new Const_expression(constant, location);
2785 }
2786
2787 // Find a named object in an expression.
2788
2789 int
2790 Find_named_object::expression(Expression** pexpr)
2791 {
2792 switch ((*pexpr)->classification())
2793 {
2794 case Expression::EXPRESSION_CONST_REFERENCE:
2795 {
2796 Const_expression* ce = static_cast<Const_expression*>(*pexpr);
2797 if (ce->named_object() == this->no_)
2798 break;
2799
2800 // We need to check a constant initializer explicitly, as
2801 // loops here will not be caught by the loop checking for
2802 // variable initializers.
2803 ce->check_for_init_loop();
2804
2805 return TRAVERSE_CONTINUE;
2806 }
2807
2808 case Expression::EXPRESSION_VAR_REFERENCE:
2809 if ((*pexpr)->var_expression()->named_object() == this->no_)
2810 break;
2811 return TRAVERSE_CONTINUE;
2812 case Expression::EXPRESSION_FUNC_REFERENCE:
2813 if ((*pexpr)->func_expression()->named_object() == this->no_)
2814 break;
2815 return TRAVERSE_CONTINUE;
2816 default:
2817 return TRAVERSE_CONTINUE;
2818 }
2819 this->found_ = true;
2820 return TRAVERSE_EXIT;
2821 }
2822
2823 // The nil value.
2824
2825 class Nil_expression : public Expression
2826 {
2827 public:
2828 Nil_expression(source_location location)
2829 : Expression(EXPRESSION_NIL, location)
2830 { }
2831
2832 static Expression*
2833 do_import(Import*);
2834
2835 protected:
2836 bool
2837 do_is_constant() const
2838 { return true; }
2839
2840 Type*
2841 do_type()
2842 { return Type::make_nil_type(); }
2843
2844 void
2845 do_determine_type(const Type_context*)
2846 { }
2847
2848 Expression*
2849 do_copy()
2850 { return this; }
2851
2852 tree
2853 do_get_tree(Translate_context*)
2854 { return null_pointer_node; }
2855
2856 void
2857 do_export(Export* exp) const
2858 { exp->write_c_string("nil"); }
2859 };
2860
2861 // Import a nil expression.
2862
2863 Expression*
2864 Nil_expression::do_import(Import* imp)
2865 {
2866 imp->require_c_string("nil");
2867 return Expression::make_nil(imp->location());
2868 }
2869
2870 // Make a nil expression.
2871
2872 Expression*
2873 Expression::make_nil(source_location location)
2874 {
2875 return new Nil_expression(location);
2876 }
2877
2878 // The value of the predeclared constant iota. This is little more
2879 // than a marker. This will be lowered to an integer in
2880 // Const_expression::do_lower, which is where we know the value that
2881 // it should have.
2882
2883 class Iota_expression : public Parser_expression
2884 {
2885 public:
2886 Iota_expression(source_location location)
2887 : Parser_expression(EXPRESSION_IOTA, location)
2888 { }
2889
2890 protected:
2891 Expression*
2892 do_lower(Gogo*, Named_object*, int)
2893 { gcc_unreachable(); }
2894
2895 // There should only ever be one of these.
2896 Expression*
2897 do_copy()
2898 { gcc_unreachable(); }
2899 };
2900
2901 // Make an iota expression. This is only called for one case: the
2902 // value of the predeclared constant iota.
2903
2904 Expression*
2905 Expression::make_iota()
2906 {
2907 static Iota_expression iota_expression(UNKNOWN_LOCATION);
2908 return &iota_expression;
2909 }
2910
2911 // A type conversion expression.
2912
2913 class Type_conversion_expression : public Expression
2914 {
2915 public:
2916 Type_conversion_expression(Type* type, Expression* expr,
2917 source_location location)
2918 : Expression(EXPRESSION_CONVERSION, location),
2919 type_(type), expr_(expr), may_convert_function_types_(false)
2920 { }
2921
2922 // Return the type to which we are converting.
2923 Type*
2924 type() const
2925 { return this->type_; }
2926
2927 // Return the expression which we are converting.
2928 Expression*
2929 expr() const
2930 { return this->expr_; }
2931
2932 // Permit converting from one function type to another. This is
2933 // used internally for method expressions.
2934 void
2935 set_may_convert_function_types()
2936 {
2937 this->may_convert_function_types_ = true;
2938 }
2939
2940 // Import a type conversion expression.
2941 static Expression*
2942 do_import(Import*);
2943
2944 protected:
2945 int
2946 do_traverse(Traverse* traverse);
2947
2948 Expression*
2949 do_lower(Gogo*, Named_object*, int);
2950
2951 bool
2952 do_is_constant() const
2953 { return this->expr_->is_constant(); }
2954
2955 bool
2956 do_integer_constant_value(bool, mpz_t, Type**) const;
2957
2958 bool
2959 do_float_constant_value(mpfr_t, Type**) const;
2960
2961 bool
2962 do_complex_constant_value(mpfr_t, mpfr_t, Type**) const;
2963
2964 bool
2965 do_string_constant_value(std::string*) const;
2966
2967 Type*
2968 do_type()
2969 { return this->type_; }
2970
2971 void
2972 do_determine_type(const Type_context*)
2973 {
2974 Type_context subcontext(this->type_, false);
2975 this->expr_->determine_type(&subcontext);
2976 }
2977
2978 void
2979 do_check_types(Gogo*);
2980
2981 Expression*
2982 do_copy()
2983 {
2984 return new Type_conversion_expression(this->type_, this->expr_->copy(),
2985 this->location());
2986 }
2987
2988 tree
2989 do_get_tree(Translate_context* context);
2990
2991 void
2992 do_export(Export*) const;
2993
2994 private:
2995 // The type to convert to.
2996 Type* type_;
2997 // The expression to convert.
2998 Expression* expr_;
2999 // True if this is permitted to convert function types. This is
3000 // used internally for method expressions.
3001 bool may_convert_function_types_;
3002 };
3003
3004 // Traversal.
3005
3006 int
3007 Type_conversion_expression::do_traverse(Traverse* traverse)
3008 {
3009 if (Expression::traverse(&this->expr_, traverse) == TRAVERSE_EXIT
3010 || Type::traverse(this->type_, traverse) == TRAVERSE_EXIT)
3011 return TRAVERSE_EXIT;
3012 return TRAVERSE_CONTINUE;
3013 }
3014
3015 // Convert to a constant at lowering time.
3016
3017 Expression*
3018 Type_conversion_expression::do_lower(Gogo*, Named_object*, int)
3019 {
3020 Type* type = this->type_;
3021 Expression* val = this->expr_;
3022 source_location location = this->location();
3023
3024 if (type->integer_type() != NULL)
3025 {
3026 mpz_t ival;
3027 mpz_init(ival);
3028 Type* dummy;
3029 if (val->integer_constant_value(false, ival, &dummy))
3030 {
3031 if (!Integer_expression::check_constant(ival, type, location))
3032 mpz_set_ui(ival, 0);
3033 Expression* ret = Expression::make_integer(&ival, type, location);
3034 mpz_clear(ival);
3035 return ret;
3036 }
3037
3038 mpfr_t fval;
3039 mpfr_init(fval);
3040 if (val->float_constant_value(fval, &dummy))
3041 {
3042 if (!mpfr_integer_p(fval))
3043 {
3044 error_at(location,
3045 "floating point constant truncated to integer");
3046 return Expression::make_error(location);
3047 }
3048 mpfr_get_z(ival, fval, GMP_RNDN);
3049 if (!Integer_expression::check_constant(ival, type, location))
3050 mpz_set_ui(ival, 0);
3051 Expression* ret = Expression::make_integer(&ival, type, location);
3052 mpfr_clear(fval);
3053 mpz_clear(ival);
3054 return ret;
3055 }
3056 mpfr_clear(fval);
3057 mpz_clear(ival);
3058 }
3059
3060 if (type->float_type() != NULL)
3061 {
3062 mpfr_t fval;
3063 mpfr_init(fval);
3064 Type* dummy;
3065 if (val->float_constant_value(fval, &dummy))
3066 {
3067 if (!Float_expression::check_constant(fval, type, location))
3068 mpfr_set_ui(fval, 0, GMP_RNDN);
3069 Float_expression::constrain_float(fval, type);
3070 Expression *ret = Expression::make_float(&fval, type, location);
3071 mpfr_clear(fval);
3072 return ret;
3073 }
3074 mpfr_clear(fval);
3075 }
3076
3077 if (type->complex_type() != NULL)
3078 {
3079 mpfr_t real;
3080 mpfr_t imag;
3081 mpfr_init(real);
3082 mpfr_init(imag);
3083 Type* dummy;
3084 if (val->complex_constant_value(real, imag, &dummy))
3085 {
3086 if (!Complex_expression::check_constant(real, imag, type, location))
3087 {
3088 mpfr_set_ui(real, 0, GMP_RNDN);
3089 mpfr_set_ui(imag, 0, GMP_RNDN);
3090 }
3091 Complex_expression::constrain_complex(real, imag, type);
3092 Expression* ret = Expression::make_complex(&real, &imag, type,
3093 location);
3094 mpfr_clear(real);
3095 mpfr_clear(imag);
3096 return ret;
3097 }
3098 mpfr_clear(real);
3099 mpfr_clear(imag);
3100 }
3101
3102 if (type->is_open_array_type() && type->named_type() == NULL)
3103 {
3104 Type* element_type = type->array_type()->element_type()->forwarded();
3105 bool is_byte = element_type == Type::lookup_integer_type("uint8");
3106 bool is_int = element_type == Type::lookup_integer_type("int");
3107 if (is_byte || is_int)
3108 {
3109 std::string s;
3110 if (val->string_constant_value(&s))
3111 {
3112 Expression_list* vals = new Expression_list();
3113 if (is_byte)
3114 {
3115 for (std::string::const_iterator p = s.begin();
3116 p != s.end();
3117 p++)
3118 {
3119 mpz_t val;
3120 mpz_init_set_ui(val, static_cast<unsigned char>(*p));
3121 Expression* v = Expression::make_integer(&val,
3122 element_type,
3123 location);
3124 vals->push_back(v);
3125 mpz_clear(val);
3126 }
3127 }
3128 else
3129 {
3130 const char *p = s.data();
3131 const char *pend = s.data() + s.length();
3132 while (p < pend)
3133 {
3134 unsigned int c;
3135 int adv = Lex::fetch_char(p, &c);
3136 if (adv == 0)
3137 {
3138 warning_at(this->location(), 0,
3139 "invalid UTF-8 encoding");
3140 adv = 1;
3141 }
3142 p += adv;
3143 mpz_t val;
3144 mpz_init_set_ui(val, c);
3145 Expression* v = Expression::make_integer(&val,
3146 element_type,
3147 location);
3148 vals->push_back(v);
3149 mpz_clear(val);
3150 }
3151 }
3152
3153 return Expression::make_slice_composite_literal(type, vals,
3154 location);
3155 }
3156 }
3157 }
3158
3159 return this;
3160 }
3161
3162 // Return the constant integer value if there is one.
3163
3164 bool
3165 Type_conversion_expression::do_integer_constant_value(bool iota_is_constant,
3166 mpz_t val,
3167 Type** ptype) const
3168 {
3169 if (this->type_->integer_type() == NULL)
3170 return false;
3171
3172 mpz_t ival;
3173 mpz_init(ival);
3174 Type* dummy;
3175 if (this->expr_->integer_constant_value(iota_is_constant, ival, &dummy))
3176 {
3177 if (!Integer_expression::check_constant(ival, this->type_,
3178 this->location()))
3179 {
3180 mpz_clear(ival);
3181 return false;
3182 }
3183 mpz_set(val, ival);
3184 mpz_clear(ival);
3185 *ptype = this->type_;
3186 return true;
3187 }
3188 mpz_clear(ival);
3189
3190 mpfr_t fval;
3191 mpfr_init(fval);
3192 if (this->expr_->float_constant_value(fval, &dummy))
3193 {
3194 mpfr_get_z(val, fval, GMP_RNDN);
3195 mpfr_clear(fval);
3196 if (!Integer_expression::check_constant(val, this->type_,
3197 this->location()))
3198 return false;
3199 *ptype = this->type_;
3200 return true;
3201 }
3202 mpfr_clear(fval);
3203
3204 return false;
3205 }
3206
3207 // Return the constant floating point value if there is one.
3208
3209 bool
3210 Type_conversion_expression::do_float_constant_value(mpfr_t val,
3211 Type** ptype) const
3212 {
3213 if (this->type_->float_type() == NULL)
3214 return false;
3215
3216 mpfr_t fval;
3217 mpfr_init(fval);
3218 Type* dummy;
3219 if (this->expr_->float_constant_value(fval, &dummy))
3220 {
3221 if (!Float_expression::check_constant(fval, this->type_,
3222 this->location()))
3223 {
3224 mpfr_clear(fval);
3225 return false;
3226 }
3227 mpfr_set(val, fval, GMP_RNDN);
3228 mpfr_clear(fval);
3229 Float_expression::constrain_float(val, this->type_);
3230 *ptype = this->type_;
3231 return true;
3232 }
3233 mpfr_clear(fval);
3234
3235 return false;
3236 }
3237
3238 // Return the constant complex value if there is one.
3239
3240 bool
3241 Type_conversion_expression::do_complex_constant_value(mpfr_t real,
3242 mpfr_t imag,
3243 Type **ptype) const
3244 {
3245 if (this->type_->complex_type() == NULL)
3246 return false;
3247
3248 mpfr_t rval;
3249 mpfr_t ival;
3250 mpfr_init(rval);
3251 mpfr_init(ival);
3252 Type* dummy;
3253 if (this->expr_->complex_constant_value(rval, ival, &dummy))
3254 {
3255 if (!Complex_expression::check_constant(rval, ival, this->type_,
3256 this->location()))
3257 {
3258 mpfr_clear(rval);
3259 mpfr_clear(ival);
3260 return false;
3261 }
3262 mpfr_set(real, rval, GMP_RNDN);
3263 mpfr_set(imag, ival, GMP_RNDN);
3264 mpfr_clear(rval);
3265 mpfr_clear(ival);
3266 Complex_expression::constrain_complex(real, imag, this->type_);
3267 *ptype = this->type_;
3268 return true;
3269 }
3270 mpfr_clear(rval);
3271 mpfr_clear(ival);
3272
3273 return false;
3274 }
3275
3276 // Return the constant string value if there is one.
3277
3278 bool
3279 Type_conversion_expression::do_string_constant_value(std::string* val) const
3280 {
3281 if (this->type_->is_string_type()
3282 && this->expr_->type()->integer_type() != NULL)
3283 {
3284 mpz_t ival;
3285 mpz_init(ival);
3286 Type* dummy;
3287 if (this->expr_->integer_constant_value(false, ival, &dummy))
3288 {
3289 unsigned long ulval = mpz_get_ui(ival);
3290 if (mpz_cmp_ui(ival, ulval) == 0)
3291 {
3292 Lex::append_char(ulval, true, val, this->location());
3293 mpz_clear(ival);
3294 return true;
3295 }
3296 }
3297 mpz_clear(ival);
3298 }
3299
3300 // FIXME: Could handle conversion from const []int here.
3301
3302 return false;
3303 }
3304
3305 // Check that types are convertible.
3306
3307 void
3308 Type_conversion_expression::do_check_types(Gogo*)
3309 {
3310 Type* type = this->type_;
3311 Type* expr_type = this->expr_->type();
3312 std::string reason;
3313
3314 if (type->is_error_type()
3315 || type->is_undefined()
3316 || expr_type->is_error_type()
3317 || expr_type->is_undefined())
3318 {
3319 // Make sure we emit an error for an undefined type.
3320 type->base();
3321 expr_type->base();
3322 this->set_is_error();
3323 return;
3324 }
3325
3326 if (this->may_convert_function_types_
3327 && type->function_type() != NULL
3328 && expr_type->function_type() != NULL)
3329 return;
3330
3331 if (Type::are_convertible(type, expr_type, &reason))
3332 return;
3333
3334 error_at(this->location(), "%s", reason.c_str());
3335 this->set_is_error();
3336 }
3337
3338 // Get a tree for a type conversion.
3339
3340 tree
3341 Type_conversion_expression::do_get_tree(Translate_context* context)
3342 {
3343 Gogo* gogo = context->gogo();
3344 tree type_tree = this->type_->get_tree(gogo);
3345 tree expr_tree = this->expr_->get_tree(context);
3346
3347 if (type_tree == error_mark_node
3348 || expr_tree == error_mark_node
3349 || TREE_TYPE(expr_tree) == error_mark_node)
3350 return error_mark_node;
3351
3352 if (TYPE_MAIN_VARIANT(type_tree) == TYPE_MAIN_VARIANT(TREE_TYPE(expr_tree)))
3353 return fold_convert(type_tree, expr_tree);
3354
3355 Type* type = this->type_;
3356 Type* expr_type = this->expr_->type();
3357 tree ret;
3358 if (type->interface_type() != NULL || expr_type->interface_type() != NULL)
3359 ret = Expression::convert_for_assignment(context, type, expr_type,
3360 expr_tree, this->location());
3361 else if (type->integer_type() != NULL)
3362 {
3363 if (expr_type->integer_type() != NULL
3364 || expr_type->float_type() != NULL
3365 || expr_type->is_unsafe_pointer_type())
3366 ret = fold(convert_to_integer(type_tree, expr_tree));
3367 else
3368 gcc_unreachable();
3369 }
3370 else if (type->float_type() != NULL)
3371 {
3372 if (expr_type->integer_type() != NULL
3373 || expr_type->float_type() != NULL)
3374 ret = fold(convert_to_real(type_tree, expr_tree));
3375 else
3376 gcc_unreachable();
3377 }
3378 else if (type->complex_type() != NULL)
3379 {
3380 if (expr_type->complex_type() != NULL)
3381 ret = fold(convert_to_complex(type_tree, expr_tree));
3382 else
3383 gcc_unreachable();
3384 }
3385 else if (type->is_string_type()
3386 && expr_type->integer_type() != NULL)
3387 {
3388 expr_tree = fold_convert(integer_type_node, expr_tree);
3389 if (host_integerp(expr_tree, 0))
3390 {
3391 HOST_WIDE_INT intval = tree_low_cst(expr_tree, 0);
3392 std::string s;
3393 Lex::append_char(intval, true, &s, this->location());
3394 Expression* se = Expression::make_string(s, this->location());
3395 return se->get_tree(context);
3396 }
3397
3398 static tree int_to_string_fndecl;
3399 ret = Gogo::call_builtin(&int_to_string_fndecl,
3400 this->location(),
3401 "__go_int_to_string",
3402 1,
3403 type_tree,
3404 integer_type_node,
3405 fold_convert(integer_type_node, expr_tree));
3406 }
3407 else if (type->is_string_type()
3408 && (expr_type->array_type() != NULL
3409 || (expr_type->points_to() != NULL
3410 && expr_type->points_to()->array_type() != NULL)))
3411 {
3412 Type* t = expr_type;
3413 if (t->points_to() != NULL)
3414 {
3415 t = t->points_to();
3416 expr_tree = build_fold_indirect_ref(expr_tree);
3417 }
3418 if (!DECL_P(expr_tree))
3419 expr_tree = save_expr(expr_tree);
3420 Array_type* a = t->array_type();
3421 Type* e = a->element_type()->forwarded();
3422 gcc_assert(e->integer_type() != NULL);
3423 tree valptr = fold_convert(const_ptr_type_node,
3424 a->value_pointer_tree(gogo, expr_tree));
3425 tree len = a->length_tree(gogo, expr_tree);
3426 len = fold_convert_loc(this->location(), size_type_node, len);
3427 if (e->integer_type()->is_unsigned()
3428 && e->integer_type()->bits() == 8)
3429 {
3430 static tree byte_array_to_string_fndecl;
3431 ret = Gogo::call_builtin(&byte_array_to_string_fndecl,
3432 this->location(),
3433 "__go_byte_array_to_string",
3434 2,
3435 type_tree,
3436 const_ptr_type_node,
3437 valptr,
3438 size_type_node,
3439 len);
3440 }
3441 else
3442 {
3443 gcc_assert(e == Type::lookup_integer_type("int"));
3444 static tree int_array_to_string_fndecl;
3445 ret = Gogo::call_builtin(&int_array_to_string_fndecl,
3446 this->location(),
3447 "__go_int_array_to_string",
3448 2,
3449 type_tree,
3450 const_ptr_type_node,
3451 valptr,
3452 size_type_node,
3453 len);
3454 }
3455 }
3456 else if (type->is_open_array_type() && expr_type->is_string_type())
3457 {
3458 Type* e = type->array_type()->element_type()->forwarded();
3459 gcc_assert(e->integer_type() != NULL);
3460 if (e->integer_type()->is_unsigned()
3461 && e->integer_type()->bits() == 8)
3462 {
3463 static tree string_to_byte_array_fndecl;
3464 ret = Gogo::call_builtin(&string_to_byte_array_fndecl,
3465 this->location(),
3466 "__go_string_to_byte_array",
3467 1,
3468 type_tree,
3469 TREE_TYPE(expr_tree),
3470 expr_tree);
3471 }
3472 else
3473 {
3474 gcc_assert(e == Type::lookup_integer_type("int"));
3475 static tree string_to_int_array_fndecl;
3476 ret = Gogo::call_builtin(&string_to_int_array_fndecl,
3477 this->location(),
3478 "__go_string_to_int_array",
3479 1,
3480 type_tree,
3481 TREE_TYPE(expr_tree),
3482 expr_tree);
3483 }
3484 }
3485 else if ((type->is_unsafe_pointer_type()
3486 && expr_type->points_to() != NULL)
3487 || (expr_type->is_unsafe_pointer_type()
3488 && type->points_to() != NULL))
3489 ret = fold_convert(type_tree, expr_tree);
3490 else if (type->is_unsafe_pointer_type()
3491 && expr_type->integer_type() != NULL)
3492 ret = convert_to_pointer(type_tree, expr_tree);
3493 else if (this->may_convert_function_types_
3494 && type->function_type() != NULL
3495 && expr_type->function_type() != NULL)
3496 ret = fold_convert_loc(this->location(), type_tree, expr_tree);
3497 else
3498 ret = Expression::convert_for_assignment(context, type, expr_type,
3499 expr_tree, this->location());
3500
3501 return ret;
3502 }
3503
3504 // Output a type conversion in a constant expression.
3505
3506 void
3507 Type_conversion_expression::do_export(Export* exp) const
3508 {
3509 exp->write_c_string("convert(");
3510 exp->write_type(this->type_);
3511 exp->write_c_string(", ");
3512 this->expr_->export_expression(exp);
3513 exp->write_c_string(")");
3514 }
3515
3516 // Import a type conversion or a struct construction.
3517
3518 Expression*
3519 Type_conversion_expression::do_import(Import* imp)
3520 {
3521 imp->require_c_string("convert(");
3522 Type* type = imp->read_type();
3523 imp->require_c_string(", ");
3524 Expression* val = Expression::import_expression(imp);
3525 imp->require_c_string(")");
3526 return Expression::make_cast(type, val, imp->location());
3527 }
3528
3529 // Make a type cast expression.
3530
3531 Expression*
3532 Expression::make_cast(Type* type, Expression* val, source_location location)
3533 {
3534 if (type->is_error_type() || val->is_error_expression())
3535 return Expression::make_error(location);
3536 return new Type_conversion_expression(type, val, location);
3537 }
3538
3539 // Unary expressions.
3540
3541 class Unary_expression : public Expression
3542 {
3543 public:
3544 Unary_expression(Operator op, Expression* expr, source_location location)
3545 : Expression(EXPRESSION_UNARY, location),
3546 op_(op), escapes_(true), expr_(expr)
3547 { }
3548
3549 // Return the operator.
3550 Operator
3551 op() const
3552 { return this->op_; }
3553
3554 // Return the operand.
3555 Expression*
3556 operand() const
3557 { return this->expr_; }
3558
3559 // Record that an address expression does not escape.
3560 void
3561 set_does_not_escape()
3562 {
3563 gcc_assert(this->op_ == OPERATOR_AND);
3564 this->escapes_ = false;
3565 }
3566
3567 // Apply unary opcode OP to UVAL, setting VAL. Return true if this
3568 // could be done, false if not.
3569 static bool
3570 eval_integer(Operator op, Type* utype, mpz_t uval, mpz_t val,
3571 source_location);
3572
3573 // Apply unary opcode OP to UVAL, setting VAL. Return true if this
3574 // could be done, false if not.
3575 static bool
3576 eval_float(Operator op, mpfr_t uval, mpfr_t val);
3577
3578 // Apply unary opcode OP to UREAL/UIMAG, setting REAL/IMAG. Return
3579 // true if this could be done, false if not.
3580 static bool
3581 eval_complex(Operator op, mpfr_t ureal, mpfr_t uimag, mpfr_t real,
3582 mpfr_t imag);
3583
3584 static Expression*
3585 do_import(Import*);
3586
3587 protected:
3588 int
3589 do_traverse(Traverse* traverse)
3590 { return Expression::traverse(&this->expr_, traverse); }
3591
3592 Expression*
3593 do_lower(Gogo*, Named_object*, int);
3594
3595 bool
3596 do_is_constant() const;
3597
3598 bool
3599 do_integer_constant_value(bool, mpz_t, Type**) const;
3600
3601 bool
3602 do_float_constant_value(mpfr_t, Type**) const;
3603
3604 bool
3605 do_complex_constant_value(mpfr_t, mpfr_t, Type**) const;
3606
3607 Type*
3608 do_type();
3609
3610 void
3611 do_determine_type(const Type_context*);
3612
3613 void
3614 do_check_types(Gogo*);
3615
3616 Expression*
3617 do_copy()
3618 {
3619 return Expression::make_unary(this->op_, this->expr_->copy(),
3620 this->location());
3621 }
3622
3623 bool
3624 do_is_addressable() const
3625 { return this->op_ == OPERATOR_MULT; }
3626
3627 tree
3628 do_get_tree(Translate_context*);
3629
3630 void
3631 do_export(Export*) const;
3632
3633 private:
3634 // The unary operator to apply.
3635 Operator op_;
3636 // Normally true. False if this is an address expression which does
3637 // not escape the current function.
3638 bool escapes_;
3639 // The operand.
3640 Expression* expr_;
3641 };
3642
3643 // If we are taking the address of a composite literal, and the
3644 // contents are not constant, then we want to make a heap composite
3645 // instead.
3646
3647 Expression*
3648 Unary_expression::do_lower(Gogo*, Named_object*, int)
3649 {
3650 source_location loc = this->location();
3651 Operator op = this->op_;
3652 Expression* expr = this->expr_;
3653
3654 if (op == OPERATOR_MULT && expr->is_type_expression())
3655 return Expression::make_type(Type::make_pointer_type(expr->type()), loc);
3656
3657 // *&x simplifies to x. *(*T)(unsafe.Pointer)(&x) does not require
3658 // moving x to the heap. FIXME: Is it worth doing a real escape
3659 // analysis here? This case is found in math/unsafe.go and is
3660 // therefore worth special casing.
3661 if (op == OPERATOR_MULT)
3662 {
3663 Expression* e = expr;
3664 while (e->classification() == EXPRESSION_CONVERSION)
3665 {
3666 Type_conversion_expression* te
3667 = static_cast<Type_conversion_expression*>(e);
3668 e = te->expr();
3669 }
3670
3671 if (e->classification() == EXPRESSION_UNARY)
3672 {
3673 Unary_expression* ue = static_cast<Unary_expression*>(e);
3674 if (ue->op_ == OPERATOR_AND)
3675 {
3676 if (e == expr)
3677 {
3678 // *&x == x.
3679 return ue->expr_;
3680 }
3681 ue->set_does_not_escape();
3682 }
3683 }
3684 }
3685
3686 if (op == OPERATOR_PLUS || op == OPERATOR_MINUS
3687 || op == OPERATOR_NOT || op == OPERATOR_XOR)
3688 {
3689 Expression* ret = NULL;
3690
3691 mpz_t eval;
3692 mpz_init(eval);
3693 Type* etype;
3694 if (expr->integer_constant_value(false, eval, &etype))
3695 {
3696 mpz_t val;
3697 mpz_init(val);
3698 if (Unary_expression::eval_integer(op, etype, eval, val, loc))
3699 ret = Expression::make_integer(&val, etype, loc);
3700 mpz_clear(val);
3701 }
3702 mpz_clear(eval);
3703 if (ret != NULL)
3704 return ret;
3705
3706 if (op == OPERATOR_PLUS || op == OPERATOR_MINUS)
3707 {
3708 mpfr_t fval;
3709 mpfr_init(fval);
3710 Type* ftype;
3711 if (expr->float_constant_value(fval, &ftype))
3712 {
3713 mpfr_t val;
3714 mpfr_init(val);
3715 if (Unary_expression::eval_float(op, fval, val))
3716 ret = Expression::make_float(&val, ftype, loc);
3717 mpfr_clear(val);
3718 }
3719 if (ret != NULL)
3720 {
3721 mpfr_clear(fval);
3722 return ret;
3723 }
3724
3725 mpfr_t ival;
3726 mpfr_init(ival);
3727 if (expr->complex_constant_value(fval, ival, &ftype))
3728 {
3729 mpfr_t real;
3730 mpfr_t imag;
3731 mpfr_init(real);
3732 mpfr_init(imag);
3733 if (Unary_expression::eval_complex(op, fval, ival, real, imag))
3734 ret = Expression::make_complex(&real, &imag, ftype, loc);
3735 mpfr_clear(real);
3736 mpfr_clear(imag);
3737 }
3738 mpfr_clear(ival);
3739 mpfr_clear(fval);
3740 if (ret != NULL)
3741 return ret;
3742 }
3743 }
3744
3745 return this;
3746 }
3747
3748 // Return whether a unary expression is a constant.
3749
3750 bool
3751 Unary_expression::do_is_constant() const
3752 {
3753 if (this->op_ == OPERATOR_MULT)
3754 {
3755 // Indirecting through a pointer is only constant if the object
3756 // to which the expression points is constant, but we currently
3757 // have no way to determine that.
3758 return false;
3759 }
3760 else if (this->op_ == OPERATOR_AND)
3761 {
3762 // Taking the address of a variable is constant if it is a
3763 // global variable, not constant otherwise. In other cases
3764 // taking the address is probably not a constant.
3765 Var_expression* ve = this->expr_->var_expression();
3766 if (ve != NULL)
3767 {
3768 Named_object* no = ve->named_object();
3769 return no->is_variable() && no->var_value()->is_global();
3770 }
3771 return false;
3772 }
3773 else
3774 return this->expr_->is_constant();
3775 }
3776
3777 // Apply unary opcode OP to UVAL, setting VAL. UTYPE is the type of
3778 // UVAL, if known; it may be NULL. Return true if this could be done,
3779 // false if not.
3780
3781 bool
3782 Unary_expression::eval_integer(Operator op, Type* utype, mpz_t uval, mpz_t val,
3783 source_location location)
3784 {
3785 switch (op)
3786 {
3787 case OPERATOR_PLUS:
3788 mpz_set(val, uval);
3789 return true;
3790 case OPERATOR_MINUS:
3791 mpz_neg(val, uval);
3792 return Integer_expression::check_constant(val, utype, location);
3793 case OPERATOR_NOT:
3794 mpz_set_ui(val, mpz_cmp_si(uval, 0) == 0 ? 1 : 0);
3795 return true;
3796 case OPERATOR_XOR:
3797 if (utype == NULL
3798 || utype->integer_type() == NULL
3799 || utype->integer_type()->is_abstract())
3800 mpz_com(val, uval);
3801 else
3802 {
3803 // The number of HOST_WIDE_INTs that it takes to represent
3804 // UVAL.
3805 size_t count = ((mpz_sizeinbase(uval, 2)
3806 + HOST_BITS_PER_WIDE_INT
3807 - 1)
3808 / HOST_BITS_PER_WIDE_INT);
3809
3810 unsigned HOST_WIDE_INT* phwi = new unsigned HOST_WIDE_INT[count];
3811 memset(phwi, 0, count * sizeof(HOST_WIDE_INT));
3812
3813 size_t ecount;
3814 mpz_export(phwi, &ecount, -1, sizeof(HOST_WIDE_INT), 0, 0, uval);
3815 gcc_assert(ecount <= count);
3816
3817 // Trim down to the number of words required by the type.
3818 size_t obits = utype->integer_type()->bits();
3819 if (!utype->integer_type()->is_unsigned())
3820 ++obits;
3821 size_t ocount = ((obits + HOST_BITS_PER_WIDE_INT - 1)
3822 / HOST_BITS_PER_WIDE_INT);
3823 gcc_assert(ocount <= ocount);
3824
3825 for (size_t i = 0; i < ocount; ++i)
3826 phwi[i] = ~phwi[i];
3827
3828 size_t clearbits = ocount * HOST_BITS_PER_WIDE_INT - obits;
3829 if (clearbits != 0)
3830 phwi[ocount - 1] &= (((unsigned HOST_WIDE_INT) (HOST_WIDE_INT) -1)
3831 >> clearbits);
3832
3833 mpz_import(val, ocount, -1, sizeof(HOST_WIDE_INT), 0, 0, phwi);
3834
3835 delete[] phwi;
3836 }
3837 return Integer_expression::check_constant(val, utype, location);
3838 case OPERATOR_AND:
3839 case OPERATOR_MULT:
3840 return false;
3841 default:
3842 gcc_unreachable();
3843 }
3844 }
3845
3846 // Apply unary opcode OP to UVAL, setting VAL. Return true if this
3847 // could be done, false if not.
3848
3849 bool
3850 Unary_expression::eval_float(Operator op, mpfr_t uval, mpfr_t val)
3851 {
3852 switch (op)
3853 {
3854 case OPERATOR_PLUS:
3855 mpfr_set(val, uval, GMP_RNDN);
3856 return true;
3857 case OPERATOR_MINUS:
3858 mpfr_neg(val, uval, GMP_RNDN);
3859 return true;
3860 case OPERATOR_NOT:
3861 case OPERATOR_XOR:
3862 case OPERATOR_AND:
3863 case OPERATOR_MULT:
3864 return false;
3865 default:
3866 gcc_unreachable();
3867 }
3868 }
3869
3870 // Apply unary opcode OP to RVAL/IVAL, setting REAL/IMAG. Return true
3871 // if this could be done, false if not.
3872
3873 bool
3874 Unary_expression::eval_complex(Operator op, mpfr_t rval, mpfr_t ival,
3875 mpfr_t real, mpfr_t imag)
3876 {
3877 switch (op)
3878 {
3879 case OPERATOR_PLUS:
3880 mpfr_set(real, rval, GMP_RNDN);
3881 mpfr_set(imag, ival, GMP_RNDN);
3882 return true;
3883 case OPERATOR_MINUS:
3884 mpfr_neg(real, rval, GMP_RNDN);
3885 mpfr_neg(imag, ival, GMP_RNDN);
3886 return true;
3887 case OPERATOR_NOT:
3888 case OPERATOR_XOR:
3889 case OPERATOR_AND:
3890 case OPERATOR_MULT:
3891 return false;
3892 default:
3893 gcc_unreachable();
3894 }
3895 }
3896
3897 // Return the integral constant value of a unary expression, if it has one.
3898
3899 bool
3900 Unary_expression::do_integer_constant_value(bool iota_is_constant, mpz_t val,
3901 Type** ptype) const
3902 {
3903 mpz_t uval;
3904 mpz_init(uval);
3905 bool ret;
3906 if (!this->expr_->integer_constant_value(iota_is_constant, uval, ptype))
3907 ret = false;
3908 else
3909 ret = Unary_expression::eval_integer(this->op_, *ptype, uval, val,
3910 this->location());
3911 mpz_clear(uval);
3912 return ret;
3913 }
3914
3915 // Return the floating point constant value of a unary expression, if
3916 // it has one.
3917
3918 bool
3919 Unary_expression::do_float_constant_value(mpfr_t val, Type** ptype) const
3920 {
3921 mpfr_t uval;
3922 mpfr_init(uval);
3923 bool ret;
3924 if (!this->expr_->float_constant_value(uval, ptype))
3925 ret = false;
3926 else
3927 ret = Unary_expression::eval_float(this->op_, uval, val);
3928 mpfr_clear(uval);
3929 return ret;
3930 }
3931
3932 // Return the complex constant value of a unary expression, if it has
3933 // one.
3934
3935 bool
3936 Unary_expression::do_complex_constant_value(mpfr_t real, mpfr_t imag,
3937 Type** ptype) const
3938 {
3939 mpfr_t rval;
3940 mpfr_t ival;
3941 mpfr_init(rval);
3942 mpfr_init(ival);
3943 bool ret;
3944 if (!this->expr_->complex_constant_value(rval, ival, ptype))
3945 ret = false;
3946 else
3947 ret = Unary_expression::eval_complex(this->op_, rval, ival, real, imag);
3948 mpfr_clear(rval);
3949 mpfr_clear(ival);
3950 return ret;
3951 }
3952
3953 // Return the type of a unary expression.
3954
3955 Type*
3956 Unary_expression::do_type()
3957 {
3958 switch (this->op_)
3959 {
3960 case OPERATOR_PLUS:
3961 case OPERATOR_MINUS:
3962 case OPERATOR_NOT:
3963 case OPERATOR_XOR:
3964 return this->expr_->type();
3965
3966 case OPERATOR_AND:
3967 return Type::make_pointer_type(this->expr_->type());
3968
3969 case OPERATOR_MULT:
3970 {
3971 Type* subtype = this->expr_->type();
3972 Type* points_to = subtype->points_to();
3973 if (points_to == NULL)
3974 return Type::make_error_type();
3975 return points_to;
3976 }
3977
3978 default:
3979 gcc_unreachable();
3980 }
3981 }
3982
3983 // Determine abstract types for a unary expression.
3984
3985 void
3986 Unary_expression::do_determine_type(const Type_context* context)
3987 {
3988 switch (this->op_)
3989 {
3990 case OPERATOR_PLUS:
3991 case OPERATOR_MINUS:
3992 case OPERATOR_NOT:
3993 case OPERATOR_XOR:
3994 this->expr_->determine_type(context);
3995 break;
3996
3997 case OPERATOR_AND:
3998 // Taking the address of something.
3999 {
4000 Type* subtype = (context->type == NULL
4001 ? NULL
4002 : context->type->points_to());
4003 Type_context subcontext(subtype, false);
4004 this->expr_->determine_type(&subcontext);
4005 }
4006 break;
4007
4008 case OPERATOR_MULT:
4009 // Indirecting through a pointer.
4010 {
4011 Type* subtype = (context->type == NULL
4012 ? NULL
4013 : Type::make_pointer_type(context->type));
4014 Type_context subcontext(subtype, false);
4015 this->expr_->determine_type(&subcontext);
4016 }
4017 break;
4018
4019 default:
4020 gcc_unreachable();
4021 }
4022 }
4023
4024 // Check types for a unary expression.
4025
4026 void
4027 Unary_expression::do_check_types(Gogo*)
4028 {
4029 Type* type = this->expr_->type();
4030 if (type->is_error_type())
4031 {
4032 this->set_is_error();
4033 return;
4034 }
4035
4036 switch (this->op_)
4037 {
4038 case OPERATOR_PLUS:
4039 case OPERATOR_MINUS:
4040 if (type->integer_type() == NULL
4041 && type->float_type() == NULL
4042 && type->complex_type() == NULL)
4043 this->report_error(_("expected numeric type"));
4044 break;
4045
4046 case OPERATOR_NOT:
4047 case OPERATOR_XOR:
4048 if (type->integer_type() == NULL
4049 && !type->is_boolean_type())
4050 this->report_error(_("expected integer or boolean type"));
4051 break;
4052
4053 case OPERATOR_AND:
4054 if (!this->expr_->is_addressable())
4055 this->report_error(_("invalid operand for unary %<&%>"));
4056 else
4057 this->expr_->address_taken(this->escapes_);
4058 break;
4059
4060 case OPERATOR_MULT:
4061 // Indirecting through a pointer.
4062 if (type->points_to() == NULL)
4063 this->report_error(_("expected pointer"));
4064 break;
4065
4066 default:
4067 gcc_unreachable();
4068 }
4069 }
4070
4071 // Get a tree for a unary expression.
4072
4073 tree
4074 Unary_expression::do_get_tree(Translate_context* context)
4075 {
4076 tree expr = this->expr_->get_tree(context);
4077 if (expr == error_mark_node)
4078 return error_mark_node;
4079
4080 source_location loc = this->location();
4081 switch (this->op_)
4082 {
4083 case OPERATOR_PLUS:
4084 return expr;
4085
4086 case OPERATOR_MINUS:
4087 {
4088 tree type = TREE_TYPE(expr);
4089 tree compute_type = excess_precision_type(type);
4090 if (compute_type != NULL_TREE)
4091 expr = ::convert(compute_type, expr);
4092 tree ret = fold_build1_loc(loc, NEGATE_EXPR,
4093 (compute_type != NULL_TREE
4094 ? compute_type
4095 : type),
4096 expr);
4097 if (compute_type != NULL_TREE)
4098 ret = ::convert(type, ret);
4099 return ret;
4100 }
4101
4102 case OPERATOR_NOT:
4103 if (TREE_CODE(TREE_TYPE(expr)) == BOOLEAN_TYPE)
4104 return fold_build1_loc(loc, TRUTH_NOT_EXPR, TREE_TYPE(expr), expr);
4105 else
4106 return fold_build2_loc(loc, NE_EXPR, boolean_type_node, expr,
4107 build_int_cst(TREE_TYPE(expr), 0));
4108
4109 case OPERATOR_XOR:
4110 return fold_build1_loc(loc, BIT_NOT_EXPR, TREE_TYPE(expr), expr);
4111
4112 case OPERATOR_AND:
4113 // We should not see a non-constant constructor here; cases
4114 // where we would see one should have been moved onto the heap
4115 // at parse time. Taking the address of a nonconstant
4116 // constructor will not do what the programmer expects.
4117 gcc_assert(TREE_CODE(expr) != CONSTRUCTOR || TREE_CONSTANT(expr));
4118 gcc_assert(TREE_CODE(expr) != ADDR_EXPR);
4119
4120 // Build a decl for a constant constructor.
4121 if (TREE_CODE(expr) == CONSTRUCTOR && TREE_CONSTANT(expr))
4122 {
4123 tree decl = build_decl(this->location(), VAR_DECL,
4124 create_tmp_var_name("C"), TREE_TYPE(expr));
4125 DECL_EXTERNAL(decl) = 0;
4126 TREE_PUBLIC(decl) = 0;
4127 TREE_READONLY(decl) = 1;
4128 TREE_CONSTANT(decl) = 1;
4129 TREE_STATIC(decl) = 1;
4130 TREE_ADDRESSABLE(decl) = 1;
4131 DECL_ARTIFICIAL(decl) = 1;
4132 DECL_INITIAL(decl) = expr;
4133 rest_of_decl_compilation(decl, 1, 0);
4134 expr = decl;
4135 }
4136
4137 return build_fold_addr_expr_loc(loc, expr);
4138
4139 case OPERATOR_MULT:
4140 {
4141 gcc_assert(POINTER_TYPE_P(TREE_TYPE(expr)));
4142
4143 // If we are dereferencing the pointer to a large struct, we
4144 // need to check for nil. We don't bother to check for small
4145 // structs because we expect the system to crash on a nil
4146 // pointer dereference.
4147 HOST_WIDE_INT s = int_size_in_bytes(TREE_TYPE(TREE_TYPE(expr)));
4148 if (s == -1 || s >= 4096)
4149 {
4150 if (!DECL_P(expr))
4151 expr = save_expr(expr);
4152 tree compare = fold_build2_loc(loc, EQ_EXPR, boolean_type_node,
4153 expr,
4154 fold_convert(TREE_TYPE(expr),
4155 null_pointer_node));
4156 tree crash = Gogo::runtime_error(RUNTIME_ERROR_NIL_DEREFERENCE,
4157 loc);
4158 expr = fold_build2_loc(loc, COMPOUND_EXPR, TREE_TYPE(expr),
4159 build3(COND_EXPR, void_type_node,
4160 compare, crash, NULL_TREE),
4161 expr);
4162 }
4163
4164 // If the type of EXPR is a recursive pointer type, then we
4165 // need to insert a cast before indirecting.
4166 if (TREE_TYPE(TREE_TYPE(expr)) == ptr_type_node)
4167 {
4168 Type* pt = this->expr_->type()->points_to();
4169 tree ind = pt->get_tree(context->gogo());
4170 expr = fold_convert_loc(loc, build_pointer_type(ind), expr);
4171 }
4172
4173 return build_fold_indirect_ref_loc(loc, expr);
4174 }
4175
4176 default:
4177 gcc_unreachable();
4178 }
4179 }
4180
4181 // Export a unary expression.
4182
4183 void
4184 Unary_expression::do_export(Export* exp) const
4185 {
4186 switch (this->op_)
4187 {
4188 case OPERATOR_PLUS:
4189 exp->write_c_string("+ ");
4190 break;
4191 case OPERATOR_MINUS:
4192 exp->write_c_string("- ");
4193 break;
4194 case OPERATOR_NOT:
4195 exp->write_c_string("! ");
4196 break;
4197 case OPERATOR_XOR:
4198 exp->write_c_string("^ ");
4199 break;
4200 case OPERATOR_AND:
4201 case OPERATOR_MULT:
4202 default:
4203 gcc_unreachable();
4204 }
4205 this->expr_->export_expression(exp);
4206 }
4207
4208 // Import a unary expression.
4209
4210 Expression*
4211 Unary_expression::do_import(Import* imp)
4212 {
4213 Operator op;
4214 switch (imp->get_char())
4215 {
4216 case '+':
4217 op = OPERATOR_PLUS;
4218 break;
4219 case '-':
4220 op = OPERATOR_MINUS;
4221 break;
4222 case '!':
4223 op = OPERATOR_NOT;
4224 break;
4225 case '^':
4226 op = OPERATOR_XOR;
4227 break;
4228 default:
4229 gcc_unreachable();
4230 }
4231 imp->require_c_string(" ");
4232 Expression* expr = Expression::import_expression(imp);
4233 return Expression::make_unary(op, expr, imp->location());
4234 }
4235
4236 // Make a unary expression.
4237
4238 Expression*
4239 Expression::make_unary(Operator op, Expression* expr, source_location location)
4240 {
4241 return new Unary_expression(op, expr, location);
4242 }
4243
4244 // If this is an indirection through a pointer, return the expression
4245 // being pointed through. Otherwise return this.
4246
4247 Expression*
4248 Expression::deref()
4249 {
4250 if (this->classification_ == EXPRESSION_UNARY)
4251 {
4252 Unary_expression* ue = static_cast<Unary_expression*>(this);
4253 if (ue->op() == OPERATOR_MULT)
4254 return ue->operand();
4255 }
4256 return this;
4257 }
4258
4259 // Class Binary_expression.
4260
4261 // Traversal.
4262
4263 int
4264 Binary_expression::do_traverse(Traverse* traverse)
4265 {
4266 int t = Expression::traverse(&this->left_, traverse);
4267 if (t == TRAVERSE_EXIT)
4268 return TRAVERSE_EXIT;
4269 return Expression::traverse(&this->right_, traverse);
4270 }
4271
4272 // Compare integer constants according to OP.
4273
4274 bool
4275 Binary_expression::compare_integer(Operator op, mpz_t left_val,
4276 mpz_t right_val)
4277 {
4278 int i = mpz_cmp(left_val, right_val);
4279 switch (op)
4280 {
4281 case OPERATOR_EQEQ:
4282 return i == 0;
4283 case OPERATOR_NOTEQ:
4284 return i != 0;
4285 case OPERATOR_LT:
4286 return i < 0;
4287 case OPERATOR_LE:
4288 return i <= 0;
4289 case OPERATOR_GT:
4290 return i > 0;
4291 case OPERATOR_GE:
4292 return i >= 0;
4293 default:
4294 gcc_unreachable();
4295 }
4296 }
4297
4298 // Compare floating point constants according to OP.
4299
4300 bool
4301 Binary_expression::compare_float(Operator op, Type* type, mpfr_t left_val,
4302 mpfr_t right_val)
4303 {
4304 int i;
4305 if (type == NULL)
4306 i = mpfr_cmp(left_val, right_val);
4307 else
4308 {
4309 mpfr_t lv;
4310 mpfr_init_set(lv, left_val, GMP_RNDN);
4311 mpfr_t rv;
4312 mpfr_init_set(rv, right_val, GMP_RNDN);
4313 Float_expression::constrain_float(lv, type);
4314 Float_expression::constrain_float(rv, type);
4315 i = mpfr_cmp(lv, rv);
4316 mpfr_clear(lv);
4317 mpfr_clear(rv);
4318 }
4319 switch (op)
4320 {
4321 case OPERATOR_EQEQ:
4322 return i == 0;
4323 case OPERATOR_NOTEQ:
4324 return i != 0;
4325 case OPERATOR_LT:
4326 return i < 0;
4327 case OPERATOR_LE:
4328 return i <= 0;
4329 case OPERATOR_GT:
4330 return i > 0;
4331 case OPERATOR_GE:
4332 return i >= 0;
4333 default:
4334 gcc_unreachable();
4335 }
4336 }
4337
4338 // Compare complex constants according to OP. Complex numbers may
4339 // only be compared for equality.
4340
4341 bool
4342 Binary_expression::compare_complex(Operator op, Type* type,
4343 mpfr_t left_real, mpfr_t left_imag,
4344 mpfr_t right_real, mpfr_t right_imag)
4345 {
4346 bool is_equal;
4347 if (type == NULL)
4348 is_equal = (mpfr_cmp(left_real, right_real) == 0
4349 && mpfr_cmp(left_imag, right_imag) == 0);
4350 else
4351 {
4352 mpfr_t lr;
4353 mpfr_t li;
4354 mpfr_init_set(lr, left_real, GMP_RNDN);
4355 mpfr_init_set(li, left_imag, GMP_RNDN);
4356 mpfr_t rr;
4357 mpfr_t ri;
4358 mpfr_init_set(rr, right_real, GMP_RNDN);
4359 mpfr_init_set(ri, right_imag, GMP_RNDN);
4360 Complex_expression::constrain_complex(lr, li, type);
4361 Complex_expression::constrain_complex(rr, ri, type);
4362 is_equal = mpfr_cmp(lr, rr) == 0 && mpfr_cmp(li, ri) == 0;
4363 mpfr_clear(lr);
4364 mpfr_clear(li);
4365 mpfr_clear(rr);
4366 mpfr_clear(ri);
4367 }
4368 switch (op)
4369 {
4370 case OPERATOR_EQEQ:
4371 return is_equal;
4372 case OPERATOR_NOTEQ:
4373 return !is_equal;
4374 default:
4375 gcc_unreachable();
4376 }
4377 }
4378
4379 // Apply binary opcode OP to LEFT_VAL and RIGHT_VAL, setting VAL.
4380 // LEFT_TYPE is the type of LEFT_VAL, RIGHT_TYPE is the type of
4381 // RIGHT_VAL; LEFT_TYPE and/or RIGHT_TYPE may be NULL. Return true if
4382 // this could be done, false if not.
4383
4384 bool
4385 Binary_expression::eval_integer(Operator op, Type* left_type, mpz_t left_val,
4386 Type* right_type, mpz_t right_val,
4387 source_location location, mpz_t val)
4388 {
4389 bool is_shift_op = false;
4390 switch (op)
4391 {
4392 case OPERATOR_OROR:
4393 case OPERATOR_ANDAND:
4394 case OPERATOR_EQEQ:
4395 case OPERATOR_NOTEQ:
4396 case OPERATOR_LT:
4397 case OPERATOR_LE:
4398 case OPERATOR_GT:
4399 case OPERATOR_GE:
4400 // These return boolean values. We should probably handle them
4401 // anyhow in case a type conversion is used on the result.
4402 return false;
4403 case OPERATOR_PLUS:
4404 mpz_add(val, left_val, right_val);
4405 break;
4406 case OPERATOR_MINUS:
4407 mpz_sub(val, left_val, right_val);
4408 break;
4409 case OPERATOR_OR:
4410 mpz_ior(val, left_val, right_val);
4411 break;
4412 case OPERATOR_XOR:
4413 mpz_xor(val, left_val, right_val);
4414 break;
4415 case OPERATOR_MULT:
4416 mpz_mul(val, left_val, right_val);
4417 break;
4418 case OPERATOR_DIV:
4419 if (mpz_sgn(right_val) != 0)
4420 mpz_tdiv_q(val, left_val, right_val);
4421 else
4422 {
4423 error_at(location, "division by zero");
4424 mpz_set_ui(val, 0);
4425 return true;
4426 }
4427 break;
4428 case OPERATOR_MOD:
4429 if (mpz_sgn(right_val) != 0)
4430 mpz_tdiv_r(val, left_val, right_val);
4431 else
4432 {
4433 error_at(location, "division by zero");
4434 mpz_set_ui(val, 0);
4435 return true;
4436 }
4437 break;
4438 case OPERATOR_LSHIFT:
4439 {
4440 unsigned long shift = mpz_get_ui(right_val);
4441 if (mpz_cmp_ui(right_val, shift) != 0 || shift > 0x100000)
4442 {
4443 error_at(location, "shift count overflow");
4444 mpz_set_ui(val, 0);
4445 return true;
4446 }
4447 mpz_mul_2exp(val, left_val, shift);
4448 is_shift_op = true;
4449 break;
4450 }
4451 break;
4452 case OPERATOR_RSHIFT:
4453 {
4454 unsigned long shift = mpz_get_ui(right_val);
4455 if (mpz_cmp_ui(right_val, shift) != 0)
4456 {
4457 error_at(location, "shift count overflow");
4458 mpz_set_ui(val, 0);
4459 return true;
4460 }
4461 if (mpz_cmp_ui(left_val, 0) >= 0)
4462 mpz_tdiv_q_2exp(val, left_val, shift);
4463 else
4464 mpz_fdiv_q_2exp(val, left_val, shift);
4465 is_shift_op = true;
4466 break;
4467 }
4468 break;
4469 case OPERATOR_AND:
4470 mpz_and(val, left_val, right_val);
4471 break;
4472 case OPERATOR_BITCLEAR:
4473 {
4474 mpz_t tval;
4475 mpz_init(tval);
4476 mpz_com(tval, right_val);
4477 mpz_and(val, left_val, tval);
4478 mpz_clear(tval);
4479 }
4480 break;
4481 default:
4482 gcc_unreachable();
4483 }
4484
4485 Type* type = left_type;
4486 if (!is_shift_op)
4487 {
4488 if (type == NULL)
4489 type = right_type;
4490 else if (type != right_type && right_type != NULL)
4491 {
4492 if (type->is_abstract())
4493 type = right_type;
4494 else if (!right_type->is_abstract())
4495 {
4496 // This look like a type error which should be diagnosed
4497 // elsewhere. Don't do anything here, to avoid an
4498 // unhelpful chain of error messages.
4499 return true;
4500 }
4501 }
4502 }
4503
4504 if (type != NULL && !type->is_abstract())
4505 {
4506 // We have to check the operands too, as we have implicitly
4507 // coerced them to TYPE.
4508 if ((type != left_type
4509 && !Integer_expression::check_constant(left_val, type, location))
4510 || (!is_shift_op
4511 && type != right_type
4512 && !Integer_expression::check_constant(right_val, type,
4513 location))
4514 || !Integer_expression::check_constant(val, type, location))
4515 mpz_set_ui(val, 0);
4516 }
4517
4518 return true;
4519 }
4520
4521 // Apply binary opcode OP to LEFT_VAL and RIGHT_VAL, setting VAL.
4522 // Return true if this could be done, false if not.
4523
4524 bool
4525 Binary_expression::eval_float(Operator op, Type* left_type, mpfr_t left_val,
4526 Type* right_type, mpfr_t right_val,
4527 mpfr_t val, source_location location)
4528 {
4529 switch (op)
4530 {
4531 case OPERATOR_OROR:
4532 case OPERATOR_ANDAND:
4533 case OPERATOR_EQEQ:
4534 case OPERATOR_NOTEQ:
4535 case OPERATOR_LT:
4536 case OPERATOR_LE:
4537 case OPERATOR_GT:
4538 case OPERATOR_GE:
4539 // These return boolean values. We should probably handle them
4540 // anyhow in case a type conversion is used on the result.
4541 return false;
4542 case OPERATOR_PLUS:
4543 mpfr_add(val, left_val, right_val, GMP_RNDN);
4544 break;
4545 case OPERATOR_MINUS:
4546 mpfr_sub(val, left_val, right_val, GMP_RNDN);
4547 break;
4548 case OPERATOR_OR:
4549 case OPERATOR_XOR:
4550 case OPERATOR_AND:
4551 case OPERATOR_BITCLEAR:
4552 return false;
4553 case OPERATOR_MULT:
4554 mpfr_mul(val, left_val, right_val, GMP_RNDN);
4555 break;
4556 case OPERATOR_DIV:
4557 if (mpfr_zero_p(right_val))
4558 error_at(location, "division by zero");
4559 mpfr_div(val, left_val, right_val, GMP_RNDN);
4560 break;
4561 case OPERATOR_MOD:
4562 return false;
4563 case OPERATOR_LSHIFT:
4564 case OPERATOR_RSHIFT:
4565 return false;
4566 default:
4567 gcc_unreachable();
4568 }
4569
4570 Type* type = left_type;
4571 if (type == NULL)
4572 type = right_type;
4573 else if (type != right_type && right_type != NULL)
4574 {
4575 if (type->is_abstract())
4576 type = right_type;
4577 else if (!right_type->is_abstract())
4578 {
4579 // This looks like a type error which should be diagnosed
4580 // elsewhere. Don't do anything here, to avoid an unhelpful
4581 // chain of error messages.
4582 return true;
4583 }
4584 }
4585
4586 if (type != NULL && !type->is_abstract())
4587 {
4588 if ((type != left_type
4589 && !Float_expression::check_constant(left_val, type, location))
4590 || (type != right_type
4591 && !Float_expression::check_constant(right_val, type,
4592 location))
4593 || !Float_expression::check_constant(val, type, location))
4594 mpfr_set_ui(val, 0, GMP_RNDN);
4595 }
4596
4597 return true;
4598 }
4599
4600 // Apply binary opcode OP to LEFT_REAL/LEFT_IMAG and
4601 // RIGHT_REAL/RIGHT_IMAG, setting REAL/IMAG. Return true if this
4602 // could be done, false if not.
4603
4604 bool
4605 Binary_expression::eval_complex(Operator op, Type* left_type,
4606 mpfr_t left_real, mpfr_t left_imag,
4607 Type *right_type,
4608 mpfr_t right_real, mpfr_t right_imag,
4609 mpfr_t real, mpfr_t imag,
4610 source_location location)
4611 {
4612 switch (op)
4613 {
4614 case OPERATOR_OROR:
4615 case OPERATOR_ANDAND:
4616 case OPERATOR_EQEQ:
4617 case OPERATOR_NOTEQ:
4618 case OPERATOR_LT:
4619 case OPERATOR_LE:
4620 case OPERATOR_GT:
4621 case OPERATOR_GE:
4622 // These return boolean values and must be handled differently.
4623 return false;
4624 case OPERATOR_PLUS:
4625 mpfr_add(real, left_real, right_real, GMP_RNDN);
4626 mpfr_add(imag, left_imag, right_imag, GMP_RNDN);
4627 break;
4628 case OPERATOR_MINUS:
4629 mpfr_sub(real, left_real, right_real, GMP_RNDN);
4630 mpfr_sub(imag, left_imag, right_imag, GMP_RNDN);
4631 break;
4632 case OPERATOR_OR:
4633 case OPERATOR_XOR:
4634 case OPERATOR_AND:
4635 case OPERATOR_BITCLEAR:
4636 return false;
4637 case OPERATOR_MULT:
4638 {
4639 // You might think that multiplying two complex numbers would
4640 // be simple, and you would be right, until you start to think
4641 // about getting the right answer for infinity. If one
4642 // operand here is infinity and the other is anything other
4643 // than zero or NaN, then we are going to wind up subtracting
4644 // two infinity values. That will give us a NaN, but the
4645 // correct answer is infinity.
4646
4647 mpfr_t lrrr;
4648 mpfr_init(lrrr);
4649 mpfr_mul(lrrr, left_real, right_real, GMP_RNDN);
4650
4651 mpfr_t lrri;
4652 mpfr_init(lrri);
4653 mpfr_mul(lrri, left_real, right_imag, GMP_RNDN);
4654
4655 mpfr_t lirr;
4656 mpfr_init(lirr);
4657 mpfr_mul(lirr, left_imag, right_real, GMP_RNDN);
4658
4659 mpfr_t liri;
4660 mpfr_init(liri);
4661 mpfr_mul(liri, left_imag, right_imag, GMP_RNDN);
4662
4663 mpfr_sub(real, lrrr, liri, GMP_RNDN);
4664 mpfr_add(imag, lrri, lirr, GMP_RNDN);
4665
4666 // If we get NaN on both sides, check whether it should really
4667 // be infinity. The rule is that if either side of the
4668 // complex number is infinity, then the whole value is
4669 // infinity, even if the other side is NaN. So the only case
4670 // we have to fix is the one in which both sides are NaN.
4671 if (mpfr_nan_p(real) && mpfr_nan_p(imag)
4672 && (!mpfr_nan_p(left_real) || !mpfr_nan_p(left_imag))
4673 && (!mpfr_nan_p(right_real) || !mpfr_nan_p(right_imag)))
4674 {
4675 bool is_infinity = false;
4676
4677 mpfr_t lr;
4678 mpfr_t li;
4679 mpfr_init_set(lr, left_real, GMP_RNDN);
4680 mpfr_init_set(li, left_imag, GMP_RNDN);
4681
4682 mpfr_t rr;
4683 mpfr_t ri;
4684 mpfr_init_set(rr, right_real, GMP_RNDN);
4685 mpfr_init_set(ri, right_imag, GMP_RNDN);
4686
4687 // If the left side is infinity, then the result is
4688 // infinity.
4689 if (mpfr_inf_p(lr) || mpfr_inf_p(li))
4690 {
4691 mpfr_set_ui(lr, mpfr_inf_p(lr) ? 1 : 0, GMP_RNDN);
4692 mpfr_copysign(lr, lr, left_real, GMP_RNDN);
4693 mpfr_set_ui(li, mpfr_inf_p(li) ? 1 : 0, GMP_RNDN);
4694 mpfr_copysign(li, li, left_imag, GMP_RNDN);
4695 if (mpfr_nan_p(rr))
4696 {
4697 mpfr_set_ui(rr, 0, GMP_RNDN);
4698 mpfr_copysign(rr, rr, right_real, GMP_RNDN);
4699 }
4700 if (mpfr_nan_p(ri))
4701 {
4702 mpfr_set_ui(ri, 0, GMP_RNDN);
4703 mpfr_copysign(ri, ri, right_imag, GMP_RNDN);
4704 }
4705 is_infinity = true;
4706 }
4707
4708 // If the right side is infinity, then the result is
4709 // infinity.
4710 if (mpfr_inf_p(rr) || mpfr_inf_p(ri))
4711 {
4712 mpfr_set_ui(rr, mpfr_inf_p(rr) ? 1 : 0, GMP_RNDN);
4713 mpfr_copysign(rr, rr, right_real, GMP_RNDN);
4714 mpfr_set_ui(ri, mpfr_inf_p(ri) ? 1 : 0, GMP_RNDN);
4715 mpfr_copysign(ri, ri, right_imag, GMP_RNDN);
4716 if (mpfr_nan_p(lr))
4717 {
4718 mpfr_set_ui(lr, 0, GMP_RNDN);
4719 mpfr_copysign(lr, lr, left_real, GMP_RNDN);
4720 }
4721 if (mpfr_nan_p(li))
4722 {
4723 mpfr_set_ui(li, 0, GMP_RNDN);
4724 mpfr_copysign(li, li, left_imag, GMP_RNDN);
4725 }
4726 is_infinity = true;
4727 }
4728
4729 // If we got an overflow in the intermediate computations,
4730 // then the result is infinity.
4731 if (!is_infinity
4732 && (mpfr_inf_p(lrrr) || mpfr_inf_p(lrri)
4733 || mpfr_inf_p(lirr) || mpfr_inf_p(liri)))
4734 {
4735 if (mpfr_nan_p(lr))
4736 {
4737 mpfr_set_ui(lr, 0, GMP_RNDN);
4738 mpfr_copysign(lr, lr, left_real, GMP_RNDN);
4739 }
4740 if (mpfr_nan_p(li))
4741 {
4742 mpfr_set_ui(li, 0, GMP_RNDN);
4743 mpfr_copysign(li, li, left_imag, GMP_RNDN);
4744 }
4745 if (mpfr_nan_p(rr))
4746 {
4747 mpfr_set_ui(rr, 0, GMP_RNDN);
4748 mpfr_copysign(rr, rr, right_real, GMP_RNDN);
4749 }
4750 if (mpfr_nan_p(ri))
4751 {
4752 mpfr_set_ui(ri, 0, GMP_RNDN);
4753 mpfr_copysign(ri, ri, right_imag, GMP_RNDN);
4754 }
4755 is_infinity = true;
4756 }
4757
4758 if (is_infinity)
4759 {
4760 mpfr_mul(lrrr, lr, rr, GMP_RNDN);
4761 mpfr_mul(lrri, lr, ri, GMP_RNDN);
4762 mpfr_mul(lirr, li, rr, GMP_RNDN);
4763 mpfr_mul(liri, li, ri, GMP_RNDN);
4764 mpfr_sub(real, lrrr, liri, GMP_RNDN);
4765 mpfr_add(imag, lrri, lirr, GMP_RNDN);
4766 mpfr_set_inf(real, mpfr_sgn(real));
4767 mpfr_set_inf(imag, mpfr_sgn(imag));
4768 }
4769
4770 mpfr_clear(lr);
4771 mpfr_clear(li);
4772 mpfr_clear(rr);
4773 mpfr_clear(ri);
4774 }
4775
4776 mpfr_clear(lrrr);
4777 mpfr_clear(lrri);
4778 mpfr_clear(lirr);
4779 mpfr_clear(liri);
4780 }
4781 break;
4782 case OPERATOR_DIV:
4783 {
4784 // For complex division we want to avoid having an
4785 // intermediate overflow turn the whole result in a NaN. We
4786 // scale the values to try to avoid this.
4787
4788 if (mpfr_zero_p(right_real) && mpfr_zero_p(right_imag))
4789 error_at(location, "division by zero");
4790
4791 mpfr_t rra;
4792 mpfr_t ria;
4793 mpfr_init(rra);
4794 mpfr_init(ria);
4795 mpfr_abs(rra, right_real, GMP_RNDN);
4796 mpfr_abs(ria, right_imag, GMP_RNDN);
4797 mpfr_t t;
4798 mpfr_init(t);
4799 mpfr_max(t, rra, ria, GMP_RNDN);
4800
4801 mpfr_t rr;
4802 mpfr_t ri;
4803 mpfr_init_set(rr, right_real, GMP_RNDN);
4804 mpfr_init_set(ri, right_imag, GMP_RNDN);
4805 long ilogbw = 0;
4806 if (!mpfr_inf_p(t) && !mpfr_nan_p(t) && !mpfr_zero_p(t))
4807 {
4808 ilogbw = mpfr_get_exp(t);
4809 mpfr_mul_2si(rr, rr, - ilogbw, GMP_RNDN);
4810 mpfr_mul_2si(ri, ri, - ilogbw, GMP_RNDN);
4811 }
4812
4813 mpfr_t denom;
4814 mpfr_init(denom);
4815 mpfr_mul(denom, rr, rr, GMP_RNDN);
4816 mpfr_mul(t, ri, ri, GMP_RNDN);
4817 mpfr_add(denom, denom, t, GMP_RNDN);
4818
4819 mpfr_mul(real, left_real, rr, GMP_RNDN);
4820 mpfr_mul(t, left_imag, ri, GMP_RNDN);
4821 mpfr_add(real, real, t, GMP_RNDN);
4822 mpfr_div(real, real, denom, GMP_RNDN);
4823 mpfr_mul_2si(real, real, - ilogbw, GMP_RNDN);
4824
4825 mpfr_mul(imag, left_imag, rr, GMP_RNDN);
4826 mpfr_mul(t, left_real, ri, GMP_RNDN);
4827 mpfr_sub(imag, imag, t, GMP_RNDN);
4828 mpfr_div(imag, imag, denom, GMP_RNDN);
4829 mpfr_mul_2si(imag, imag, - ilogbw, GMP_RNDN);
4830
4831 // If we wind up with NaN on both sides, check whether we
4832 // should really have infinity. The rule is that if either
4833 // side of the complex number is infinity, then the whole
4834 // value is infinity, even if the other side is NaN. So the
4835 // only case we have to fix is the one in which both sides are
4836 // NaN.
4837 if (mpfr_nan_p(real) && mpfr_nan_p(imag)
4838 && (!mpfr_nan_p(left_real) || !mpfr_nan_p(left_imag))
4839 && (!mpfr_nan_p(right_real) || !mpfr_nan_p(right_imag)))
4840 {
4841 if (mpfr_zero_p(denom))
4842 {
4843 mpfr_set_inf(real, mpfr_sgn(rr));
4844 mpfr_mul(real, real, left_real, GMP_RNDN);
4845 mpfr_set_inf(imag, mpfr_sgn(rr));
4846 mpfr_mul(imag, imag, left_imag, GMP_RNDN);
4847 }
4848 else if ((mpfr_inf_p(left_real) || mpfr_inf_p(left_imag))
4849 && mpfr_number_p(rr) && mpfr_number_p(ri))
4850 {
4851 mpfr_set_ui(t, mpfr_inf_p(left_real) ? 1 : 0, GMP_RNDN);
4852 mpfr_copysign(t, t, left_real, GMP_RNDN);
4853
4854 mpfr_t t2;
4855 mpfr_init_set_ui(t2, mpfr_inf_p(left_imag) ? 1 : 0, GMP_RNDN);
4856 mpfr_copysign(t2, t2, left_imag, GMP_RNDN);
4857
4858 mpfr_t t3;
4859 mpfr_init(t3);
4860 mpfr_mul(t3, t, rr, GMP_RNDN);
4861
4862 mpfr_t t4;
4863 mpfr_init(t4);
4864 mpfr_mul(t4, t2, ri, GMP_RNDN);
4865
4866 mpfr_add(t3, t3, t4, GMP_RNDN);
4867 mpfr_set_inf(real, mpfr_sgn(t3));
4868
4869 mpfr_mul(t3, t2, rr, GMP_RNDN);
4870 mpfr_mul(t4, t, ri, GMP_RNDN);
4871 mpfr_sub(t3, t3, t4, GMP_RNDN);
4872 mpfr_set_inf(imag, mpfr_sgn(t3));
4873
4874 mpfr_clear(t2);
4875 mpfr_clear(t3);
4876 mpfr_clear(t4);
4877 }
4878 else if ((mpfr_inf_p(right_real) || mpfr_inf_p(right_imag))
4879 && mpfr_number_p(left_real) && mpfr_number_p(left_imag))
4880 {
4881 mpfr_set_ui(t, mpfr_inf_p(rr) ? 1 : 0, GMP_RNDN);
4882 mpfr_copysign(t, t, rr, GMP_RNDN);
4883
4884 mpfr_t t2;
4885 mpfr_init_set_ui(t2, mpfr_inf_p(ri) ? 1 : 0, GMP_RNDN);
4886 mpfr_copysign(t2, t2, ri, GMP_RNDN);
4887
4888 mpfr_t t3;
4889 mpfr_init(t3);
4890 mpfr_mul(t3, left_real, t, GMP_RNDN);
4891
4892 mpfr_t t4;
4893 mpfr_init(t4);
4894 mpfr_mul(t4, left_imag, t2, GMP_RNDN);
4895
4896 mpfr_add(t3, t3, t4, GMP_RNDN);
4897 mpfr_set_ui(real, 0, GMP_RNDN);
4898 mpfr_mul(real, real, t3, GMP_RNDN);
4899
4900 mpfr_mul(t3, left_imag, t, GMP_RNDN);
4901 mpfr_mul(t4, left_real, t2, GMP_RNDN);
4902 mpfr_sub(t3, t3, t4, GMP_RNDN);
4903 mpfr_set_ui(imag, 0, GMP_RNDN);
4904 mpfr_mul(imag, imag, t3, GMP_RNDN);
4905
4906 mpfr_clear(t2);
4907 mpfr_clear(t3);
4908 mpfr_clear(t4);
4909 }
4910 }
4911
4912 mpfr_clear(denom);
4913 mpfr_clear(rr);
4914 mpfr_clear(ri);
4915 mpfr_clear(t);
4916 mpfr_clear(rra);
4917 mpfr_clear(ria);
4918 }
4919 break;
4920 case OPERATOR_MOD:
4921 return false;
4922 case OPERATOR_LSHIFT:
4923 case OPERATOR_RSHIFT:
4924 return false;
4925 default:
4926 gcc_unreachable();
4927 }
4928
4929 Type* type = left_type;
4930 if (type == NULL)
4931 type = right_type;
4932 else if (type != right_type && right_type != NULL)
4933 {
4934 if (type->is_abstract())
4935 type = right_type;
4936 else if (!right_type->is_abstract())
4937 {
4938 // This looks like a type error which should be diagnosed
4939 // elsewhere. Don't do anything here, to avoid an unhelpful
4940 // chain of error messages.
4941 return true;
4942 }
4943 }
4944
4945 if (type != NULL && !type->is_abstract())
4946 {
4947 if ((type != left_type
4948 && !Complex_expression::check_constant(left_real, left_imag,
4949 type, location))
4950 || (type != right_type
4951 && !Complex_expression::check_constant(right_real, right_imag,
4952 type, location))
4953 || !Complex_expression::check_constant(real, imag, type,
4954 location))
4955 {
4956 mpfr_set_ui(real, 0, GMP_RNDN);
4957 mpfr_set_ui(imag, 0, GMP_RNDN);
4958 }
4959 }
4960
4961 return true;
4962 }
4963
4964 // Lower a binary expression. We have to evaluate constant
4965 // expressions now, in order to implement Go's unlimited precision
4966 // constants.
4967
4968 Expression*
4969 Binary_expression::do_lower(Gogo*, Named_object*, int)
4970 {
4971 source_location location = this->location();
4972 Operator op = this->op_;
4973 Expression* left = this->left_;
4974 Expression* right = this->right_;
4975
4976 const bool is_comparison = (op == OPERATOR_EQEQ
4977 || op == OPERATOR_NOTEQ
4978 || op == OPERATOR_LT
4979 || op == OPERATOR_LE
4980 || op == OPERATOR_GT
4981 || op == OPERATOR_GE);
4982
4983 // Integer constant expressions.
4984 {
4985 mpz_t left_val;
4986 mpz_init(left_val);
4987 Type* left_type;
4988 mpz_t right_val;
4989 mpz_init(right_val);
4990 Type* right_type;
4991 if (left->integer_constant_value(false, left_val, &left_type)
4992 && right->integer_constant_value(false, right_val, &right_type))
4993 {
4994 Expression* ret = NULL;
4995 if (left_type != right_type
4996 && left_type != NULL
4997 && right_type != NULL
4998 && left_type->base() != right_type->base()
4999 && op != OPERATOR_LSHIFT
5000 && op != OPERATOR_RSHIFT)
5001 {
5002 // May be a type error--let it be diagnosed later.
5003 }
5004 else if (is_comparison)
5005 {
5006 bool b = Binary_expression::compare_integer(op, left_val,
5007 right_val);
5008 ret = Expression::make_cast(Type::lookup_bool_type(),
5009 Expression::make_boolean(b, location),
5010 location);
5011 }
5012 else
5013 {
5014 mpz_t val;
5015 mpz_init(val);
5016
5017 if (Binary_expression::eval_integer(op, left_type, left_val,
5018 right_type, right_val,
5019 location, val))
5020 {
5021 gcc_assert(op != OPERATOR_OROR && op != OPERATOR_ANDAND);
5022 Type* type;
5023 if (op == OPERATOR_LSHIFT || op == OPERATOR_RSHIFT)
5024 type = left_type;
5025 else if (left_type == NULL)
5026 type = right_type;
5027 else if (right_type == NULL)
5028 type = left_type;
5029 else if (!left_type->is_abstract()
5030 && left_type->named_type() != NULL)
5031 type = left_type;
5032 else if (!right_type->is_abstract()
5033 && right_type->named_type() != NULL)
5034 type = right_type;
5035 else if (!left_type->is_abstract())
5036 type = left_type;
5037 else if (!right_type->is_abstract())
5038 type = right_type;
5039 else if (left_type->float_type() != NULL)
5040 type = left_type;
5041 else if (right_type->float_type() != NULL)
5042 type = right_type;
5043 else if (left_type->complex_type() != NULL)
5044 type = left_type;
5045 else if (right_type->complex_type() != NULL)
5046 type = right_type;
5047 else
5048 type = left_type;
5049 ret = Expression::make_integer(&val, type, location);
5050 }
5051
5052 mpz_clear(val);
5053 }
5054
5055 if (ret != NULL)
5056 {
5057 mpz_clear(right_val);
5058 mpz_clear(left_val);
5059 return ret;
5060 }
5061 }
5062 mpz_clear(right_val);
5063 mpz_clear(left_val);
5064 }
5065
5066 // Floating point constant expressions.
5067 {
5068 mpfr_t left_val;
5069 mpfr_init(left_val);
5070 Type* left_type;
5071 mpfr_t right_val;
5072 mpfr_init(right_val);
5073 Type* right_type;
5074 if (left->float_constant_value(left_val, &left_type)
5075 && right->float_constant_value(right_val, &right_type))
5076 {
5077 Expression* ret = NULL;
5078 if (left_type != right_type
5079 && left_type != NULL
5080 && right_type != NULL
5081 && left_type->base() != right_type->base()
5082 && op != OPERATOR_LSHIFT
5083 && op != OPERATOR_RSHIFT)
5084 {
5085 // May be a type error--let it be diagnosed later.
5086 }
5087 else if (is_comparison)
5088 {
5089 bool b = Binary_expression::compare_float(op,
5090 (left_type != NULL
5091 ? left_type
5092 : right_type),
5093 left_val, right_val);
5094 ret = Expression::make_boolean(b, location);
5095 }
5096 else
5097 {
5098 mpfr_t val;
5099 mpfr_init(val);
5100
5101 if (Binary_expression::eval_float(op, left_type, left_val,
5102 right_type, right_val, val,
5103 location))
5104 {
5105 gcc_assert(op != OPERATOR_OROR && op != OPERATOR_ANDAND
5106 && op != OPERATOR_LSHIFT && op != OPERATOR_RSHIFT);
5107 Type* type;
5108 if (left_type == NULL)
5109 type = right_type;
5110 else if (right_type == NULL)
5111 type = left_type;
5112 else if (!left_type->is_abstract()
5113 && left_type->named_type() != NULL)
5114 type = left_type;
5115 else if (!right_type->is_abstract()
5116 && right_type->named_type() != NULL)
5117 type = right_type;
5118 else if (!left_type->is_abstract())
5119 type = left_type;
5120 else if (!right_type->is_abstract())
5121 type = right_type;
5122 else if (left_type->float_type() != NULL)
5123 type = left_type;
5124 else if (right_type->float_type() != NULL)
5125 type = right_type;
5126 else
5127 type = left_type;
5128 ret = Expression::make_float(&val, type, location);
5129 }
5130
5131 mpfr_clear(val);
5132 }
5133
5134 if (ret != NULL)
5135 {
5136 mpfr_clear(right_val);
5137 mpfr_clear(left_val);
5138 return ret;
5139 }
5140 }
5141 mpfr_clear(right_val);
5142 mpfr_clear(left_val);
5143 }
5144
5145 // Complex constant expressions.
5146 {
5147 mpfr_t left_real;
5148 mpfr_t left_imag;
5149 mpfr_init(left_real);
5150 mpfr_init(left_imag);
5151 Type* left_type;
5152
5153 mpfr_t right_real;
5154 mpfr_t right_imag;
5155 mpfr_init(right_real);
5156 mpfr_init(right_imag);
5157 Type* right_type;
5158
5159 if (left->complex_constant_value(left_real, left_imag, &left_type)
5160 && right->complex_constant_value(right_real, right_imag, &right_type))
5161 {
5162 Expression* ret = NULL;
5163 if (left_type != right_type
5164 && left_type != NULL
5165 && right_type != NULL
5166 && left_type->base() != right_type->base())
5167 {
5168 // May be a type error--let it be diagnosed later.
5169 }
5170 else if (op == OPERATOR_EQEQ || op == OPERATOR_NOTEQ)
5171 {
5172 bool b = Binary_expression::compare_complex(op,
5173 (left_type != NULL
5174 ? left_type
5175 : right_type),
5176 left_real,
5177 left_imag,
5178 right_real,
5179 right_imag);
5180 ret = Expression::make_boolean(b, location);
5181 }
5182 else
5183 {
5184 mpfr_t real;
5185 mpfr_t imag;
5186 mpfr_init(real);
5187 mpfr_init(imag);
5188
5189 if (Binary_expression::eval_complex(op, left_type,
5190 left_real, left_imag,
5191 right_type,
5192 right_real, right_imag,
5193 real, imag,
5194 location))
5195 {
5196 gcc_assert(op != OPERATOR_OROR && op != OPERATOR_ANDAND
5197 && op != OPERATOR_LSHIFT && op != OPERATOR_RSHIFT);
5198 Type* type;
5199 if (left_type == NULL)
5200 type = right_type;
5201 else if (right_type == NULL)
5202 type = left_type;
5203 else if (!left_type->is_abstract()
5204 && left_type->named_type() != NULL)
5205 type = left_type;
5206 else if (!right_type->is_abstract()
5207 && right_type->named_type() != NULL)
5208 type = right_type;
5209 else if (!left_type->is_abstract())
5210 type = left_type;
5211 else if (!right_type->is_abstract())
5212 type = right_type;
5213 else if (left_type->complex_type() != NULL)
5214 type = left_type;
5215 else if (right_type->complex_type() != NULL)
5216 type = right_type;
5217 else
5218 type = left_type;
5219 ret = Expression::make_complex(&real, &imag, type,
5220 location);
5221 }
5222 mpfr_clear(real);
5223 mpfr_clear(imag);
5224 }
5225
5226 if (ret != NULL)
5227 {
5228 mpfr_clear(left_real);
5229 mpfr_clear(left_imag);
5230 mpfr_clear(right_real);
5231 mpfr_clear(right_imag);
5232 return ret;
5233 }
5234 }
5235
5236 mpfr_clear(left_real);
5237 mpfr_clear(left_imag);
5238 mpfr_clear(right_real);
5239 mpfr_clear(right_imag);
5240 }
5241
5242 // String constant expressions.
5243 if (op == OPERATOR_PLUS
5244 && left->type()->is_string_type()
5245 && right->type()->is_string_type())
5246 {
5247 std::string left_string;
5248 std::string right_string;
5249 if (left->string_constant_value(&left_string)
5250 && right->string_constant_value(&right_string))
5251 return Expression::make_string(left_string + right_string, location);
5252 }
5253
5254 return this;
5255 }
5256
5257 // Return the integer constant value, if it has one.
5258
5259 bool
5260 Binary_expression::do_integer_constant_value(bool iota_is_constant, mpz_t val,
5261 Type** ptype) const
5262 {
5263 mpz_t left_val;
5264 mpz_init(left_val);
5265 Type* left_type;
5266 if (!this->left_->integer_constant_value(iota_is_constant, left_val,
5267 &left_type))
5268 {
5269 mpz_clear(left_val);
5270 return false;
5271 }
5272
5273 mpz_t right_val;
5274 mpz_init(right_val);
5275 Type* right_type;
5276 if (!this->right_->integer_constant_value(iota_is_constant, right_val,
5277 &right_type))
5278 {
5279 mpz_clear(right_val);
5280 mpz_clear(left_val);
5281 return false;
5282 }
5283
5284 bool ret;
5285 if (left_type != right_type
5286 && left_type != NULL
5287 && right_type != NULL
5288 && left_type->base() != right_type->base()
5289 && this->op_ != OPERATOR_RSHIFT
5290 && this->op_ != OPERATOR_LSHIFT)
5291 ret = false;
5292 else
5293 ret = Binary_expression::eval_integer(this->op_, left_type, left_val,
5294 right_type, right_val,
5295 this->location(), val);
5296
5297 mpz_clear(right_val);
5298 mpz_clear(left_val);
5299
5300 if (ret)
5301 *ptype = left_type;
5302
5303 return ret;
5304 }
5305
5306 // Return the floating point constant value, if it has one.
5307
5308 bool
5309 Binary_expression::do_float_constant_value(mpfr_t val, Type** ptype) const
5310 {
5311 mpfr_t left_val;
5312 mpfr_init(left_val);
5313 Type* left_type;
5314 if (!this->left_->float_constant_value(left_val, &left_type))
5315 {
5316 mpfr_clear(left_val);
5317 return false;
5318 }
5319
5320 mpfr_t right_val;
5321 mpfr_init(right_val);
5322 Type* right_type;
5323 if (!this->right_->float_constant_value(right_val, &right_type))
5324 {
5325 mpfr_clear(right_val);
5326 mpfr_clear(left_val);
5327 return false;
5328 }
5329
5330 bool ret;
5331 if (left_type != right_type
5332 && left_type != NULL
5333 && right_type != NULL
5334 && left_type->base() != right_type->base())
5335 ret = false;
5336 else
5337 ret = Binary_expression::eval_float(this->op_, left_type, left_val,
5338 right_type, right_val,
5339 val, this->location());
5340
5341 mpfr_clear(left_val);
5342 mpfr_clear(right_val);
5343
5344 if (ret)
5345 *ptype = left_type;
5346
5347 return ret;
5348 }
5349
5350 // Return the complex constant value, if it has one.
5351
5352 bool
5353 Binary_expression::do_complex_constant_value(mpfr_t real, mpfr_t imag,
5354 Type** ptype) const
5355 {
5356 mpfr_t left_real;
5357 mpfr_t left_imag;
5358 mpfr_init(left_real);
5359 mpfr_init(left_imag);
5360 Type* left_type;
5361 if (!this->left_->complex_constant_value(left_real, left_imag, &left_type))
5362 {
5363 mpfr_clear(left_real);
5364 mpfr_clear(left_imag);
5365 return false;
5366 }
5367
5368 mpfr_t right_real;
5369 mpfr_t right_imag;
5370 mpfr_init(right_real);
5371 mpfr_init(right_imag);
5372 Type* right_type;
5373 if (!this->right_->complex_constant_value(right_real, right_imag,
5374 &right_type))
5375 {
5376 mpfr_clear(left_real);
5377 mpfr_clear(left_imag);
5378 mpfr_clear(right_real);
5379 mpfr_clear(right_imag);
5380 return false;
5381 }
5382
5383 bool ret;
5384 if (left_type != right_type
5385 && left_type != NULL
5386 && right_type != NULL
5387 && left_type->base() != right_type->base())
5388 ret = false;
5389 else
5390 ret = Binary_expression::eval_complex(this->op_, left_type,
5391 left_real, left_imag,
5392 right_type,
5393 right_real, right_imag,
5394 real, imag,
5395 this->location());
5396 mpfr_clear(left_real);
5397 mpfr_clear(left_imag);
5398 mpfr_clear(right_real);
5399 mpfr_clear(right_imag);
5400
5401 if (ret)
5402 *ptype = left_type;
5403
5404 return ret;
5405 }
5406
5407 // Note that the value is being discarded.
5408
5409 void
5410 Binary_expression::do_discarding_value()
5411 {
5412 if (this->op_ == OPERATOR_OROR || this->op_ == OPERATOR_ANDAND)
5413 this->right_->discarding_value();
5414 else
5415 this->warn_about_unused_value();
5416 }
5417
5418 // Get type.
5419
5420 Type*
5421 Binary_expression::do_type()
5422 {
5423 if (this->classification() == EXPRESSION_ERROR)
5424 return Type::make_error_type();
5425
5426 switch (this->op_)
5427 {
5428 case OPERATOR_OROR:
5429 case OPERATOR_ANDAND:
5430 case OPERATOR_EQEQ:
5431 case OPERATOR_NOTEQ:
5432 case OPERATOR_LT:
5433 case OPERATOR_LE:
5434 case OPERATOR_GT:
5435 case OPERATOR_GE:
5436 return Type::lookup_bool_type();
5437
5438 case OPERATOR_PLUS:
5439 case OPERATOR_MINUS:
5440 case OPERATOR_OR:
5441 case OPERATOR_XOR:
5442 case OPERATOR_MULT:
5443 case OPERATOR_DIV:
5444 case OPERATOR_MOD:
5445 case OPERATOR_AND:
5446 case OPERATOR_BITCLEAR:
5447 {
5448 Type* left_type = this->left_->type();
5449 Type* right_type = this->right_->type();
5450 if (left_type->is_error_type())
5451 return left_type;
5452 else if (right_type->is_error_type())
5453 return right_type;
5454 else if (!Type::are_compatible_for_binop(left_type, right_type))
5455 {
5456 this->report_error(_("incompatible types in binary expression"));
5457 return Type::make_error_type();
5458 }
5459 else if (!left_type->is_abstract() && left_type->named_type() != NULL)
5460 return left_type;
5461 else if (!right_type->is_abstract() && right_type->named_type() != NULL)
5462 return right_type;
5463 else if (!left_type->is_abstract())
5464 return left_type;
5465 else if (!right_type->is_abstract())
5466 return right_type;
5467 else if (left_type->complex_type() != NULL)
5468 return left_type;
5469 else if (right_type->complex_type() != NULL)
5470 return right_type;
5471 else if (left_type->float_type() != NULL)
5472 return left_type;
5473 else if (right_type->float_type() != NULL)
5474 return right_type;
5475 else
5476 return left_type;
5477 }
5478
5479 case OPERATOR_LSHIFT:
5480 case OPERATOR_RSHIFT:
5481 return this->left_->type();
5482
5483 default:
5484 gcc_unreachable();
5485 }
5486 }
5487
5488 // Set type for a binary expression.
5489
5490 void
5491 Binary_expression::do_determine_type(const Type_context* context)
5492 {
5493 Type* tleft = this->left_->type();
5494 Type* tright = this->right_->type();
5495
5496 // Both sides should have the same type, except for the shift
5497 // operations. For a comparison, we should ignore the incoming
5498 // type.
5499
5500 bool is_shift_op = (this->op_ == OPERATOR_LSHIFT
5501 || this->op_ == OPERATOR_RSHIFT);
5502
5503 bool is_comparison = (this->op_ == OPERATOR_EQEQ
5504 || this->op_ == OPERATOR_NOTEQ
5505 || this->op_ == OPERATOR_LT
5506 || this->op_ == OPERATOR_LE
5507 || this->op_ == OPERATOR_GT
5508 || this->op_ == OPERATOR_GE);
5509
5510 Type_context subcontext(*context);
5511
5512 if (is_comparison)
5513 {
5514 // In a comparison, the context does not determine the types of
5515 // the operands.
5516 subcontext.type = NULL;
5517 }
5518
5519 // Set the context for the left hand operand.
5520 if (is_shift_op)
5521 {
5522 // The right hand operand plays no role in determining the type
5523 // of the left hand operand. A shift of an abstract integer in
5524 // a string context gets special treatment, which may be a
5525 // language bug.
5526 if (subcontext.type != NULL
5527 && subcontext.type->is_string_type()
5528 && tleft->is_abstract())
5529 error_at(this->location(), "shift of non-integer operand");
5530 }
5531 else if (!tleft->is_abstract())
5532 subcontext.type = tleft;
5533 else if (!tright->is_abstract())
5534 subcontext.type = tright;
5535 else if (subcontext.type == NULL)
5536 {
5537 if ((tleft->integer_type() != NULL && tright->integer_type() != NULL)
5538 || (tleft->float_type() != NULL && tright->float_type() != NULL)
5539 || (tleft->complex_type() != NULL && tright->complex_type() != NULL))
5540 {
5541 // Both sides have an abstract integer, abstract float, or
5542 // abstract complex type. Just let CONTEXT determine
5543 // whether they may remain abstract or not.
5544 }
5545 else if (tleft->complex_type() != NULL)
5546 subcontext.type = tleft;
5547 else if (tright->complex_type() != NULL)
5548 subcontext.type = tright;
5549 else if (tleft->float_type() != NULL)
5550 subcontext.type = tleft;
5551 else if (tright->float_type() != NULL)
5552 subcontext.type = tright;
5553 else
5554 subcontext.type = tleft;
5555
5556 if (subcontext.type != NULL && !context->may_be_abstract)
5557 subcontext.type = subcontext.type->make_non_abstract_type();
5558 }
5559
5560 this->left_->determine_type(&subcontext);
5561
5562 // The context for the right hand operand is the same as for the
5563 // left hand operand, except for a shift operator.
5564 if (is_shift_op)
5565 {
5566 subcontext.type = Type::lookup_integer_type("uint");
5567 subcontext.may_be_abstract = false;
5568 }
5569
5570 this->right_->determine_type(&subcontext);
5571 }
5572
5573 // Report an error if the binary operator OP does not support TYPE.
5574 // Return whether the operation is OK. This should not be used for
5575 // shift.
5576
5577 bool
5578 Binary_expression::check_operator_type(Operator op, Type* type,
5579 source_location location)
5580 {
5581 switch (op)
5582 {
5583 case OPERATOR_OROR:
5584 case OPERATOR_ANDAND:
5585 if (!type->is_boolean_type())
5586 {
5587 error_at(location, "expected boolean type");
5588 return false;
5589 }
5590 break;
5591
5592 case OPERATOR_EQEQ:
5593 case OPERATOR_NOTEQ:
5594 if (type->integer_type() == NULL
5595 && type->float_type() == NULL
5596 && type->complex_type() == NULL
5597 && !type->is_string_type()
5598 && type->points_to() == NULL
5599 && !type->is_nil_type()
5600 && !type->is_boolean_type()
5601 && type->interface_type() == NULL
5602 && (type->array_type() == NULL
5603 || type->array_type()->length() != NULL)
5604 && type->map_type() == NULL
5605 && type->channel_type() == NULL
5606 && type->function_type() == NULL)
5607 {
5608 error_at(location,
5609 ("expected integer, floating, complex, string, pointer, "
5610 "boolean, interface, slice, map, channel, "
5611 "or function type"));
5612 return false;
5613 }
5614 break;
5615
5616 case OPERATOR_LT:
5617 case OPERATOR_LE:
5618 case OPERATOR_GT:
5619 case OPERATOR_GE:
5620 if (type->integer_type() == NULL
5621 && type->float_type() == NULL
5622 && !type->is_string_type())
5623 {
5624 error_at(location, "expected integer, floating, or string type");
5625 return false;
5626 }
5627 break;
5628
5629 case OPERATOR_PLUS:
5630 case OPERATOR_PLUSEQ:
5631 if (type->integer_type() == NULL
5632 && type->float_type() == NULL
5633 && type->complex_type() == NULL
5634 && !type->is_string_type())
5635 {
5636 error_at(location,
5637 "expected integer, floating, complex, or string type");
5638 return false;
5639 }
5640 break;
5641
5642 case OPERATOR_MINUS:
5643 case OPERATOR_MINUSEQ:
5644 case OPERATOR_MULT:
5645 case OPERATOR_MULTEQ:
5646 case OPERATOR_DIV:
5647 case OPERATOR_DIVEQ:
5648 if (type->integer_type() == NULL
5649 && type->float_type() == NULL
5650 && type->complex_type() == NULL)
5651 {
5652 error_at(location, "expected integer, floating, or complex type");
5653 return false;
5654 }
5655 break;
5656
5657 case OPERATOR_MOD:
5658 case OPERATOR_MODEQ:
5659 case OPERATOR_OR:
5660 case OPERATOR_OREQ:
5661 case OPERATOR_AND:
5662 case OPERATOR_ANDEQ:
5663 case OPERATOR_XOR:
5664 case OPERATOR_XOREQ:
5665 case OPERATOR_BITCLEAR:
5666 case OPERATOR_BITCLEAREQ:
5667 if (type->integer_type() == NULL)
5668 {
5669 error_at(location, "expected integer type");
5670 return false;
5671 }
5672 break;
5673
5674 default:
5675 gcc_unreachable();
5676 }
5677
5678 return true;
5679 }
5680
5681 // Check types.
5682
5683 void
5684 Binary_expression::do_check_types(Gogo*)
5685 {
5686 if (this->classification() == EXPRESSION_ERROR)
5687 return;
5688
5689 Type* left_type = this->left_->type();
5690 Type* right_type = this->right_->type();
5691 if (left_type->is_error_type() || right_type->is_error_type())
5692 {
5693 this->set_is_error();
5694 return;
5695 }
5696
5697 if (this->op_ == OPERATOR_EQEQ
5698 || this->op_ == OPERATOR_NOTEQ
5699 || this->op_ == OPERATOR_LT
5700 || this->op_ == OPERATOR_LE
5701 || this->op_ == OPERATOR_GT
5702 || this->op_ == OPERATOR_GE)
5703 {
5704 if (!Type::are_assignable(left_type, right_type, NULL)
5705 && !Type::are_assignable(right_type, left_type, NULL))
5706 {
5707 this->report_error(_("incompatible types in binary expression"));
5708 return;
5709 }
5710 if (!Binary_expression::check_operator_type(this->op_, left_type,
5711 this->location())
5712 || !Binary_expression::check_operator_type(this->op_, right_type,
5713 this->location()))
5714 {
5715 this->set_is_error();
5716 return;
5717 }
5718 }
5719 else if (this->op_ != OPERATOR_LSHIFT && this->op_ != OPERATOR_RSHIFT)
5720 {
5721 if (!Type::are_compatible_for_binop(left_type, right_type))
5722 {
5723 this->report_error(_("incompatible types in binary expression"));
5724 return;
5725 }
5726 if (!Binary_expression::check_operator_type(this->op_, left_type,
5727 this->location()))
5728 {
5729 this->set_is_error();
5730 return;
5731 }
5732 }
5733 else
5734 {
5735 if (left_type->integer_type() == NULL)
5736 this->report_error(_("shift of non-integer operand"));
5737
5738 if (!right_type->is_abstract()
5739 && (right_type->integer_type() == NULL
5740 || !right_type->integer_type()->is_unsigned()))
5741 this->report_error(_("shift count not unsigned integer"));
5742 else
5743 {
5744 mpz_t val;
5745 mpz_init(val);
5746 Type* type;
5747 if (this->right_->integer_constant_value(true, val, &type))
5748 {
5749 if (mpz_sgn(val) < 0)
5750 this->report_error(_("negative shift count"));
5751 }
5752 mpz_clear(val);
5753 }
5754 }
5755 }
5756
5757 // Get a tree for a binary expression.
5758
5759 tree
5760 Binary_expression::do_get_tree(Translate_context* context)
5761 {
5762 tree left = this->left_->get_tree(context);
5763 tree right = this->right_->get_tree(context);
5764
5765 if (left == error_mark_node || right == error_mark_node)
5766 return error_mark_node;
5767
5768 enum tree_code code;
5769 bool use_left_type = true;
5770 bool is_shift_op = false;
5771 switch (this->op_)
5772 {
5773 case OPERATOR_EQEQ:
5774 case OPERATOR_NOTEQ:
5775 case OPERATOR_LT:
5776 case OPERATOR_LE:
5777 case OPERATOR_GT:
5778 case OPERATOR_GE:
5779 return Expression::comparison_tree(context, this->op_,
5780 this->left_->type(), left,
5781 this->right_->type(), right,
5782 this->location());
5783
5784 case OPERATOR_OROR:
5785 code = TRUTH_ORIF_EXPR;
5786 use_left_type = false;
5787 break;
5788 case OPERATOR_ANDAND:
5789 code = TRUTH_ANDIF_EXPR;
5790 use_left_type = false;
5791 break;
5792 case OPERATOR_PLUS:
5793 code = PLUS_EXPR;
5794 break;
5795 case OPERATOR_MINUS:
5796 code = MINUS_EXPR;
5797 break;
5798 case OPERATOR_OR:
5799 code = BIT_IOR_EXPR;
5800 break;
5801 case OPERATOR_XOR:
5802 code = BIT_XOR_EXPR;
5803 break;
5804 case OPERATOR_MULT:
5805 code = MULT_EXPR;
5806 break;
5807 case OPERATOR_DIV:
5808 {
5809 Type *t = this->left_->type();
5810 if (t->float_type() != NULL || t->complex_type() != NULL)
5811 code = RDIV_EXPR;
5812 else
5813 code = TRUNC_DIV_EXPR;
5814 }
5815 break;
5816 case OPERATOR_MOD:
5817 code = TRUNC_MOD_EXPR;
5818 break;
5819 case OPERATOR_LSHIFT:
5820 code = LSHIFT_EXPR;
5821 is_shift_op = true;
5822 break;
5823 case OPERATOR_RSHIFT:
5824 code = RSHIFT_EXPR;
5825 is_shift_op = true;
5826 break;
5827 case OPERATOR_AND:
5828 code = BIT_AND_EXPR;
5829 break;
5830 case OPERATOR_BITCLEAR:
5831 right = fold_build1(BIT_NOT_EXPR, TREE_TYPE(right), right);
5832 code = BIT_AND_EXPR;
5833 break;
5834 default:
5835 gcc_unreachable();
5836 }
5837
5838 tree type = use_left_type ? TREE_TYPE(left) : TREE_TYPE(right);
5839
5840 if (this->left_->type()->is_string_type())
5841 {
5842 gcc_assert(this->op_ == OPERATOR_PLUS);
5843 tree string_type = Type::make_string_type()->get_tree(context->gogo());
5844 static tree string_plus_decl;
5845 return Gogo::call_builtin(&string_plus_decl,
5846 this->location(),
5847 "__go_string_plus",
5848 2,
5849 string_type,
5850 string_type,
5851 left,
5852 string_type,
5853 right);
5854 }
5855
5856 tree compute_type = excess_precision_type(type);
5857 if (compute_type != NULL_TREE)
5858 {
5859 left = ::convert(compute_type, left);
5860 right = ::convert(compute_type, right);
5861 }
5862
5863 tree eval_saved = NULL_TREE;
5864 if (is_shift_op)
5865 {
5866 // Make sure the values are evaluated.
5867 if (!DECL_P(left) && TREE_SIDE_EFFECTS(left))
5868 {
5869 left = save_expr(left);
5870 eval_saved = left;
5871 }
5872 if (!DECL_P(right) && TREE_SIDE_EFFECTS(right))
5873 {
5874 right = save_expr(right);
5875 if (eval_saved == NULL_TREE)
5876 eval_saved = right;
5877 else
5878 eval_saved = fold_build2_loc(this->location(), COMPOUND_EXPR,
5879 void_type_node, eval_saved, right);
5880 }
5881 }
5882
5883 tree ret = fold_build2_loc(this->location(),
5884 code,
5885 compute_type != NULL_TREE ? compute_type : type,
5886 left, right);
5887
5888 if (compute_type != NULL_TREE)
5889 ret = ::convert(type, ret);
5890
5891 // In Go, a shift larger than the size of the type is well-defined.
5892 // This is not true in GENERIC, so we need to insert a conditional.
5893 if (is_shift_op)
5894 {
5895 gcc_assert(INTEGRAL_TYPE_P(TREE_TYPE(left)));
5896 gcc_assert(this->left_->type()->integer_type() != NULL);
5897 int bits = TYPE_PRECISION(TREE_TYPE(left));
5898
5899 tree compare = fold_build2(LT_EXPR, boolean_type_node, right,
5900 build_int_cst_type(TREE_TYPE(right), bits));
5901
5902 tree overflow_result = fold_convert_loc(this->location(),
5903 TREE_TYPE(left),
5904 integer_zero_node);
5905 if (this->op_ == OPERATOR_RSHIFT
5906 && !this->left_->type()->integer_type()->is_unsigned())
5907 {
5908 tree neg = fold_build2_loc(this->location(), LT_EXPR,
5909 boolean_type_node, left,
5910 fold_convert_loc(this->location(),
5911 TREE_TYPE(left),
5912 integer_zero_node));
5913 tree neg_one = fold_build2_loc(this->location(),
5914 MINUS_EXPR, TREE_TYPE(left),
5915 fold_convert_loc(this->location(),
5916 TREE_TYPE(left),
5917 integer_zero_node),
5918 fold_convert_loc(this->location(),
5919 TREE_TYPE(left),
5920 integer_one_node));
5921 overflow_result = fold_build3_loc(this->location(), COND_EXPR,
5922 TREE_TYPE(left), neg, neg_one,
5923 overflow_result);
5924 }
5925
5926 ret = fold_build3_loc(this->location(), COND_EXPR, TREE_TYPE(left),
5927 compare, ret, overflow_result);
5928
5929 if (eval_saved != NULL_TREE)
5930 ret = fold_build2_loc(this->location(), COMPOUND_EXPR,
5931 TREE_TYPE(ret), eval_saved, ret);
5932 }
5933
5934 return ret;
5935 }
5936
5937 // Export a binary expression.
5938
5939 void
5940 Binary_expression::do_export(Export* exp) const
5941 {
5942 exp->write_c_string("(");
5943 this->left_->export_expression(exp);
5944 switch (this->op_)
5945 {
5946 case OPERATOR_OROR:
5947 exp->write_c_string(" || ");
5948 break;
5949 case OPERATOR_ANDAND:
5950 exp->write_c_string(" && ");
5951 break;
5952 case OPERATOR_EQEQ:
5953 exp->write_c_string(" == ");
5954 break;
5955 case OPERATOR_NOTEQ:
5956 exp->write_c_string(" != ");
5957 break;
5958 case OPERATOR_LT:
5959 exp->write_c_string(" < ");
5960 break;
5961 case OPERATOR_LE:
5962 exp->write_c_string(" <= ");
5963 break;
5964 case OPERATOR_GT:
5965 exp->write_c_string(" > ");
5966 break;
5967 case OPERATOR_GE:
5968 exp->write_c_string(" >= ");
5969 break;
5970 case OPERATOR_PLUS:
5971 exp->write_c_string(" + ");
5972 break;
5973 case OPERATOR_MINUS:
5974 exp->write_c_string(" - ");
5975 break;
5976 case OPERATOR_OR:
5977 exp->write_c_string(" | ");
5978 break;
5979 case OPERATOR_XOR:
5980 exp->write_c_string(" ^ ");
5981 break;
5982 case OPERATOR_MULT:
5983 exp->write_c_string(" * ");
5984 break;
5985 case OPERATOR_DIV:
5986 exp->write_c_string(" / ");
5987 break;
5988 case OPERATOR_MOD:
5989 exp->write_c_string(" % ");
5990 break;
5991 case OPERATOR_LSHIFT:
5992 exp->write_c_string(" << ");
5993 break;
5994 case OPERATOR_RSHIFT:
5995 exp->write_c_string(" >> ");
5996 break;
5997 case OPERATOR_AND:
5998 exp->write_c_string(" & ");
5999 break;
6000 case OPERATOR_BITCLEAR:
6001 exp->write_c_string(" &^ ");
6002 break;
6003 default:
6004 gcc_unreachable();
6005 }
6006 this->right_->export_expression(exp);
6007 exp->write_c_string(")");
6008 }
6009
6010 // Import a binary expression.
6011
6012 Expression*
6013 Binary_expression::do_import(Import* imp)
6014 {
6015 imp->require_c_string("(");
6016
6017 Expression* left = Expression::import_expression(imp);
6018
6019 Operator op;
6020 if (imp->match_c_string(" || "))
6021 {
6022 op = OPERATOR_OROR;
6023 imp->advance(4);
6024 }
6025 else if (imp->match_c_string(" && "))
6026 {
6027 op = OPERATOR_ANDAND;
6028 imp->advance(4);
6029 }
6030 else if (imp->match_c_string(" == "))
6031 {
6032 op = OPERATOR_EQEQ;
6033 imp->advance(4);
6034 }
6035 else if (imp->match_c_string(" != "))
6036 {
6037 op = OPERATOR_NOTEQ;
6038 imp->advance(4);
6039 }
6040 else if (imp->match_c_string(" < "))
6041 {
6042 op = OPERATOR_LT;
6043 imp->advance(3);
6044 }
6045 else if (imp->match_c_string(" <= "))
6046 {
6047 op = OPERATOR_LE;
6048 imp->advance(4);
6049 }
6050 else if (imp->match_c_string(" > "))
6051 {
6052 op = OPERATOR_GT;
6053 imp->advance(3);
6054 }
6055 else if (imp->match_c_string(" >= "))
6056 {
6057 op = OPERATOR_GE;
6058 imp->advance(4);
6059 }
6060 else if (imp->match_c_string(" + "))
6061 {
6062 op = OPERATOR_PLUS;
6063 imp->advance(3);
6064 }
6065 else if (imp->match_c_string(" - "))
6066 {
6067 op = OPERATOR_MINUS;
6068 imp->advance(3);
6069 }
6070 else if (imp->match_c_string(" | "))
6071 {
6072 op = OPERATOR_OR;
6073 imp->advance(3);
6074 }
6075 else if (imp->match_c_string(" ^ "))
6076 {
6077 op = OPERATOR_XOR;
6078 imp->advance(3);
6079 }
6080 else if (imp->match_c_string(" * "))
6081 {
6082 op = OPERATOR_MULT;
6083 imp->advance(3);
6084 }
6085 else if (imp->match_c_string(" / "))
6086 {
6087 op = OPERATOR_DIV;
6088 imp->advance(3);
6089 }
6090 else if (imp->match_c_string(" % "))
6091 {
6092 op = OPERATOR_MOD;
6093 imp->advance(3);
6094 }
6095 else if (imp->match_c_string(" << "))
6096 {
6097 op = OPERATOR_LSHIFT;
6098 imp->advance(4);
6099 }
6100 else if (imp->match_c_string(" >> "))
6101 {
6102 op = OPERATOR_RSHIFT;
6103 imp->advance(4);
6104 }
6105 else if (imp->match_c_string(" & "))
6106 {
6107 op = OPERATOR_AND;
6108 imp->advance(3);
6109 }
6110 else if (imp->match_c_string(" &^ "))
6111 {
6112 op = OPERATOR_BITCLEAR;
6113 imp->advance(4);
6114 }
6115 else
6116 {
6117 error_at(imp->location(), "unrecognized binary operator");
6118 return Expression::make_error(imp->location());
6119 }
6120
6121 Expression* right = Expression::import_expression(imp);
6122
6123 imp->require_c_string(")");
6124
6125 return Expression::make_binary(op, left, right, imp->location());
6126 }
6127
6128 // Make a binary expression.
6129
6130 Expression*
6131 Expression::make_binary(Operator op, Expression* left, Expression* right,
6132 source_location location)
6133 {
6134 return new Binary_expression(op, left, right, location);
6135 }
6136
6137 // Implement a comparison.
6138
6139 tree
6140 Expression::comparison_tree(Translate_context* context, Operator op,
6141 Type* left_type, tree left_tree,
6142 Type* right_type, tree right_tree,
6143 source_location location)
6144 {
6145 enum tree_code code;
6146 switch (op)
6147 {
6148 case OPERATOR_EQEQ:
6149 code = EQ_EXPR;
6150 break;
6151 case OPERATOR_NOTEQ:
6152 code = NE_EXPR;
6153 break;
6154 case OPERATOR_LT:
6155 code = LT_EXPR;
6156 break;
6157 case OPERATOR_LE:
6158 code = LE_EXPR;
6159 break;
6160 case OPERATOR_GT:
6161 code = GT_EXPR;
6162 break;
6163 case OPERATOR_GE:
6164 code = GE_EXPR;
6165 break;
6166 default:
6167 gcc_unreachable();
6168 }
6169
6170 if (left_type->is_string_type() && right_type->is_string_type())
6171 {
6172 tree string_type = Type::make_string_type()->get_tree(context->gogo());
6173 static tree string_compare_decl;
6174 left_tree = Gogo::call_builtin(&string_compare_decl,
6175 location,
6176 "__go_strcmp",
6177 2,
6178 integer_type_node,
6179 string_type,
6180 left_tree,
6181 string_type,
6182 right_tree);
6183 right_tree = build_int_cst_type(integer_type_node, 0);
6184 }
6185 else if ((left_type->interface_type() != NULL
6186 && right_type->interface_type() == NULL
6187 && !right_type->is_nil_type())
6188 || (left_type->interface_type() == NULL
6189 && !left_type->is_nil_type()
6190 && right_type->interface_type() != NULL))
6191 {
6192 // Comparing an interface value to a non-interface value.
6193 if (left_type->interface_type() == NULL)
6194 {
6195 std::swap(left_type, right_type);
6196 std::swap(left_tree, right_tree);
6197 }
6198
6199 // The right operand is not an interface. We need to take its
6200 // address if it is not a pointer.
6201 tree make_tmp;
6202 tree arg;
6203 if (right_type->points_to() != NULL)
6204 {
6205 make_tmp = NULL_TREE;
6206 arg = right_tree;
6207 }
6208 else if (TREE_ADDRESSABLE(TREE_TYPE(right_tree)) || DECL_P(right_tree))
6209 {
6210 make_tmp = NULL_TREE;
6211 arg = build_fold_addr_expr_loc(location, right_tree);
6212 if (DECL_P(right_tree))
6213 TREE_ADDRESSABLE(right_tree) = 1;
6214 }
6215 else
6216 {
6217 tree tmp = create_tmp_var(TREE_TYPE(right_tree),
6218 get_name(right_tree));
6219 DECL_IGNORED_P(tmp) = 0;
6220 DECL_INITIAL(tmp) = right_tree;
6221 TREE_ADDRESSABLE(tmp) = 1;
6222 make_tmp = build1(DECL_EXPR, void_type_node, tmp);
6223 SET_EXPR_LOCATION(make_tmp, location);
6224 arg = build_fold_addr_expr_loc(location, tmp);
6225 }
6226 arg = fold_convert_loc(location, ptr_type_node, arg);
6227
6228 tree descriptor = right_type->type_descriptor_pointer(context->gogo());
6229
6230 if (left_type->interface_type()->is_empty())
6231 {
6232 static tree empty_interface_value_compare_decl;
6233 left_tree = Gogo::call_builtin(&empty_interface_value_compare_decl,
6234 location,
6235 "__go_empty_interface_value_compare",
6236 3,
6237 integer_type_node,
6238 TREE_TYPE(left_tree),
6239 left_tree,
6240 TREE_TYPE(descriptor),
6241 descriptor,
6242 ptr_type_node,
6243 arg);
6244 if (left_tree == error_mark_node)
6245 return error_mark_node;
6246 // This can panic if the type is not comparable.
6247 TREE_NOTHROW(empty_interface_value_compare_decl) = 0;
6248 }
6249 else
6250 {
6251 static tree interface_value_compare_decl;
6252 left_tree = Gogo::call_builtin(&interface_value_compare_decl,
6253 location,
6254 "__go_interface_value_compare",
6255 3,
6256 integer_type_node,
6257 TREE_TYPE(left_tree),
6258 left_tree,
6259 TREE_TYPE(descriptor),
6260 descriptor,
6261 ptr_type_node,
6262 arg);
6263 if (left_tree == error_mark_node)
6264 return error_mark_node;
6265 // This can panic if the type is not comparable.
6266 TREE_NOTHROW(interface_value_compare_decl) = 0;
6267 }
6268 right_tree = build_int_cst_type(integer_type_node, 0);
6269
6270 if (make_tmp != NULL_TREE)
6271 left_tree = build2(COMPOUND_EXPR, TREE_TYPE(left_tree), make_tmp,
6272 left_tree);
6273 }
6274 else if (left_type->interface_type() != NULL
6275 && right_type->interface_type() != NULL)
6276 {
6277 if (left_type->interface_type()->is_empty()
6278 && right_type->interface_type()->is_empty())
6279 {
6280 static tree empty_interface_compare_decl;
6281 left_tree = Gogo::call_builtin(&empty_interface_compare_decl,
6282 location,
6283 "__go_empty_interface_compare",
6284 2,
6285 integer_type_node,
6286 TREE_TYPE(left_tree),
6287 left_tree,
6288 TREE_TYPE(right_tree),
6289 right_tree);
6290 if (left_tree == error_mark_node)
6291 return error_mark_node;
6292 // This can panic if the type is uncomparable.
6293 TREE_NOTHROW(empty_interface_compare_decl) = 0;
6294 }
6295 else if (!left_type->interface_type()->is_empty()
6296 && !right_type->interface_type()->is_empty())
6297 {
6298 static tree interface_compare_decl;
6299 left_tree = Gogo::call_builtin(&interface_compare_decl,
6300 location,
6301 "__go_interface_compare",
6302 2,
6303 integer_type_node,
6304 TREE_TYPE(left_tree),
6305 left_tree,
6306 TREE_TYPE(right_tree),
6307 right_tree);
6308 if (left_tree == error_mark_node)
6309 return error_mark_node;
6310 // This can panic if the type is uncomparable.
6311 TREE_NOTHROW(interface_compare_decl) = 0;
6312 }
6313 else
6314 {
6315 if (left_type->interface_type()->is_empty())
6316 {
6317 gcc_assert(op == OPERATOR_EQEQ || op == OPERATOR_NOTEQ);
6318 std::swap(left_type, right_type);
6319 std::swap(left_tree, right_tree);
6320 }
6321 gcc_assert(!left_type->interface_type()->is_empty());
6322 gcc_assert(right_type->interface_type()->is_empty());
6323 static tree interface_empty_compare_decl;
6324 left_tree = Gogo::call_builtin(&interface_empty_compare_decl,
6325 location,
6326 "__go_interface_empty_compare",
6327 2,
6328 integer_type_node,
6329 TREE_TYPE(left_tree),
6330 left_tree,
6331 TREE_TYPE(right_tree),
6332 right_tree);
6333 if (left_tree == error_mark_node)
6334 return error_mark_node;
6335 // This can panic if the type is uncomparable.
6336 TREE_NOTHROW(interface_empty_compare_decl) = 0;
6337 }
6338
6339 right_tree = build_int_cst_type(integer_type_node, 0);
6340 }
6341
6342 if (left_type->is_nil_type()
6343 && (op == OPERATOR_EQEQ || op == OPERATOR_NOTEQ))
6344 {
6345 std::swap(left_type, right_type);
6346 std::swap(left_tree, right_tree);
6347 }
6348
6349 if (right_type->is_nil_type())
6350 {
6351 if (left_type->array_type() != NULL
6352 && left_type->array_type()->length() == NULL)
6353 {
6354 Array_type* at = left_type->array_type();
6355 left_tree = at->value_pointer_tree(context->gogo(), left_tree);
6356 right_tree = fold_convert(TREE_TYPE(left_tree), null_pointer_node);
6357 }
6358 else if (left_type->interface_type() != NULL)
6359 {
6360 // An interface is nil if the first field is nil.
6361 tree left_type_tree = TREE_TYPE(left_tree);
6362 gcc_assert(TREE_CODE(left_type_tree) == RECORD_TYPE);
6363 tree field = TYPE_FIELDS(left_type_tree);
6364 left_tree = build3(COMPONENT_REF, TREE_TYPE(field), left_tree,
6365 field, NULL_TREE);
6366 right_tree = fold_convert(TREE_TYPE(left_tree), null_pointer_node);
6367 }
6368 else
6369 {
6370 gcc_assert(POINTER_TYPE_P(TREE_TYPE(left_tree)));
6371 right_tree = fold_convert(TREE_TYPE(left_tree), null_pointer_node);
6372 }
6373 }
6374
6375 if (left_tree == error_mark_node || right_tree == error_mark_node)
6376 return error_mark_node;
6377
6378 tree ret = fold_build2(code, boolean_type_node, left_tree, right_tree);
6379 if (CAN_HAVE_LOCATION_P(ret))
6380 SET_EXPR_LOCATION(ret, location);
6381 return ret;
6382 }
6383
6384 // Class Bound_method_expression.
6385
6386 // Traversal.
6387
6388 int
6389 Bound_method_expression::do_traverse(Traverse* traverse)
6390 {
6391 if (Expression::traverse(&this->expr_, traverse) == TRAVERSE_EXIT)
6392 return TRAVERSE_EXIT;
6393 return Expression::traverse(&this->method_, traverse);
6394 }
6395
6396 // Return the type of a bound method expression. The type of this
6397 // object is really the type of the method with no receiver. We
6398 // should be able to get away with just returning the type of the
6399 // method.
6400
6401 Type*
6402 Bound_method_expression::do_type()
6403 {
6404 return this->method_->type();
6405 }
6406
6407 // Determine the types of a method expression.
6408
6409 void
6410 Bound_method_expression::do_determine_type(const Type_context*)
6411 {
6412 this->method_->determine_type_no_context();
6413 Type* mtype = this->method_->type();
6414 Function_type* fntype = mtype == NULL ? NULL : mtype->function_type();
6415 if (fntype == NULL || !fntype->is_method())
6416 this->expr_->determine_type_no_context();
6417 else
6418 {
6419 Type_context subcontext(fntype->receiver()->type(), false);
6420 this->expr_->determine_type(&subcontext);
6421 }
6422 }
6423
6424 // Check the types of a method expression.
6425
6426 void
6427 Bound_method_expression::do_check_types(Gogo*)
6428 {
6429 Type* type = this->method_->type()->deref();
6430 if (type == NULL
6431 || type->function_type() == NULL
6432 || !type->function_type()->is_method())
6433 this->report_error(_("object is not a method"));
6434 else
6435 {
6436 Type* rtype = type->function_type()->receiver()->type()->deref();
6437 Type* etype = (this->expr_type_ != NULL
6438 ? this->expr_type_
6439 : this->expr_->type());
6440 etype = etype->deref();
6441 if (!Type::are_identical(rtype, etype, true, NULL))
6442 this->report_error(_("method type does not match object type"));
6443 }
6444 }
6445
6446 // Get the tree for a method expression. There is no standard tree
6447 // representation for this. The only places it may currently be used
6448 // are in a Call_expression or a Go_statement, which will take it
6449 // apart directly. So this has nothing to do at present.
6450
6451 tree
6452 Bound_method_expression::do_get_tree(Translate_context*)
6453 {
6454 error_at(this->location(), "reference to method other than calling it");
6455 return error_mark_node;
6456 }
6457
6458 // Make a method expression.
6459
6460 Bound_method_expression*
6461 Expression::make_bound_method(Expression* expr, Expression* method,
6462 source_location location)
6463 {
6464 return new Bound_method_expression(expr, method, location);
6465 }
6466
6467 // Class Builtin_call_expression. This is used for a call to a
6468 // builtin function.
6469
6470 class Builtin_call_expression : public Call_expression
6471 {
6472 public:
6473 Builtin_call_expression(Gogo* gogo, Expression* fn, Expression_list* args,
6474 bool is_varargs, source_location location);
6475
6476 protected:
6477 // This overrides Call_expression::do_lower.
6478 Expression*
6479 do_lower(Gogo*, Named_object*, int);
6480
6481 bool
6482 do_is_constant() const;
6483
6484 bool
6485 do_integer_constant_value(bool, mpz_t, Type**) const;
6486
6487 bool
6488 do_float_constant_value(mpfr_t, Type**) const;
6489
6490 bool
6491 do_complex_constant_value(mpfr_t, mpfr_t, Type**) const;
6492
6493 Type*
6494 do_type();
6495
6496 void
6497 do_determine_type(const Type_context*);
6498
6499 void
6500 do_check_types(Gogo*);
6501
6502 Expression*
6503 do_copy()
6504 {
6505 return new Builtin_call_expression(this->gogo_, this->fn()->copy(),
6506 this->args()->copy(),
6507 this->is_varargs(),
6508 this->location());
6509 }
6510
6511 tree
6512 do_get_tree(Translate_context*);
6513
6514 void
6515 do_export(Export*) const;
6516
6517 virtual bool
6518 do_is_recover_call() const;
6519
6520 virtual void
6521 do_set_recover_arg(Expression*);
6522
6523 private:
6524 // The builtin functions.
6525 enum Builtin_function_code
6526 {
6527 BUILTIN_INVALID,
6528
6529 // Predeclared builtin functions.
6530 BUILTIN_APPEND,
6531 BUILTIN_CAP,
6532 BUILTIN_CLOSE,
6533 BUILTIN_COMPLEX,
6534 BUILTIN_COPY,
6535 BUILTIN_IMAG,
6536 BUILTIN_LEN,
6537 BUILTIN_MAKE,
6538 BUILTIN_NEW,
6539 BUILTIN_PANIC,
6540 BUILTIN_PRINT,
6541 BUILTIN_PRINTLN,
6542 BUILTIN_REAL,
6543 BUILTIN_RECOVER,
6544
6545 // Builtin functions from the unsafe package.
6546 BUILTIN_ALIGNOF,
6547 BUILTIN_OFFSETOF,
6548 BUILTIN_SIZEOF
6549 };
6550
6551 Expression*
6552 one_arg() const;
6553
6554 bool
6555 check_one_arg();
6556
6557 static Type*
6558 real_imag_type(Type*);
6559
6560 static Type*
6561 complex_type(Type*);
6562
6563 // A pointer back to the general IR structure. This avoids a global
6564 // variable, or passing it around everywhere.
6565 Gogo* gogo_;
6566 // The builtin function being called.
6567 Builtin_function_code code_;
6568 // Used to stop endless loops when the length of an array uses len
6569 // or cap of the array itself.
6570 mutable bool seen_;
6571 };
6572
6573 Builtin_call_expression::Builtin_call_expression(Gogo* gogo,
6574 Expression* fn,
6575 Expression_list* args,
6576 bool is_varargs,
6577 source_location location)
6578 : Call_expression(fn, args, is_varargs, location),
6579 gogo_(gogo), code_(BUILTIN_INVALID), seen_(false)
6580 {
6581 Func_expression* fnexp = this->fn()->func_expression();
6582 gcc_assert(fnexp != NULL);
6583 const std::string& name(fnexp->named_object()->name());
6584 if (name == "append")
6585 this->code_ = BUILTIN_APPEND;
6586 else if (name == "cap")
6587 this->code_ = BUILTIN_CAP;
6588 else if (name == "close")
6589 this->code_ = BUILTIN_CLOSE;
6590 else if (name == "complex")
6591 this->code_ = BUILTIN_COMPLEX;
6592 else if (name == "copy")
6593 this->code_ = BUILTIN_COPY;
6594 else if (name == "imag")
6595 this->code_ = BUILTIN_IMAG;
6596 else if (name == "len")
6597 this->code_ = BUILTIN_LEN;
6598 else if (name == "make")
6599 this->code_ = BUILTIN_MAKE;
6600 else if (name == "new")
6601 this->code_ = BUILTIN_NEW;
6602 else if (name == "panic")
6603 this->code_ = BUILTIN_PANIC;
6604 else if (name == "print")
6605 this->code_ = BUILTIN_PRINT;
6606 else if (name == "println")
6607 this->code_ = BUILTIN_PRINTLN;
6608 else if (name == "real")
6609 this->code_ = BUILTIN_REAL;
6610 else if (name == "recover")
6611 this->code_ = BUILTIN_RECOVER;
6612 else if (name == "Alignof")
6613 this->code_ = BUILTIN_ALIGNOF;
6614 else if (name == "Offsetof")
6615 this->code_ = BUILTIN_OFFSETOF;
6616 else if (name == "Sizeof")
6617 this->code_ = BUILTIN_SIZEOF;
6618 else
6619 gcc_unreachable();
6620 }
6621
6622 // Return whether this is a call to recover. This is a virtual
6623 // function called from the parent class.
6624
6625 bool
6626 Builtin_call_expression::do_is_recover_call() const
6627 {
6628 if (this->classification() == EXPRESSION_ERROR)
6629 return false;
6630 return this->code_ == BUILTIN_RECOVER;
6631 }
6632
6633 // Set the argument for a call to recover.
6634
6635 void
6636 Builtin_call_expression::do_set_recover_arg(Expression* arg)
6637 {
6638 const Expression_list* args = this->args();
6639 gcc_assert(args == NULL || args->empty());
6640 Expression_list* new_args = new Expression_list();
6641 new_args->push_back(arg);
6642 this->set_args(new_args);
6643 }
6644
6645 // A traversal class which looks for a call expression.
6646
6647 class Find_call_expression : public Traverse
6648 {
6649 public:
6650 Find_call_expression()
6651 : Traverse(traverse_expressions),
6652 found_(false)
6653 { }
6654
6655 int
6656 expression(Expression**);
6657
6658 bool
6659 found()
6660 { return this->found_; }
6661
6662 private:
6663 bool found_;
6664 };
6665
6666 int
6667 Find_call_expression::expression(Expression** pexpr)
6668 {
6669 if ((*pexpr)->call_expression() != NULL)
6670 {
6671 this->found_ = true;
6672 return TRAVERSE_EXIT;
6673 }
6674 return TRAVERSE_CONTINUE;
6675 }
6676
6677 // Lower a builtin call expression. This turns new and make into
6678 // specific expressions. We also convert to a constant if we can.
6679
6680 Expression*
6681 Builtin_call_expression::do_lower(Gogo* gogo, Named_object* function, int)
6682 {
6683 if (this->code_ == BUILTIN_NEW)
6684 {
6685 const Expression_list* args = this->args();
6686 if (args == NULL || args->size() < 1)
6687 this->report_error(_("not enough arguments"));
6688 else if (args->size() > 1)
6689 this->report_error(_("too many arguments"));
6690 else
6691 {
6692 Expression* arg = args->front();
6693 if (!arg->is_type_expression())
6694 {
6695 error_at(arg->location(), "expected type");
6696 this->set_is_error();
6697 }
6698 else
6699 return Expression::make_allocation(arg->type(), this->location());
6700 }
6701 }
6702 else if (this->code_ == BUILTIN_MAKE)
6703 {
6704 const Expression_list* args = this->args();
6705 if (args == NULL || args->size() < 1)
6706 this->report_error(_("not enough arguments"));
6707 else
6708 {
6709 Expression* arg = args->front();
6710 if (!arg->is_type_expression())
6711 {
6712 error_at(arg->location(), "expected type");
6713 this->set_is_error();
6714 }
6715 else
6716 {
6717 Expression_list* newargs;
6718 if (args->size() == 1)
6719 newargs = NULL;
6720 else
6721 {
6722 newargs = new Expression_list();
6723 Expression_list::const_iterator p = args->begin();
6724 ++p;
6725 for (; p != args->end(); ++p)
6726 newargs->push_back(*p);
6727 }
6728 return Expression::make_make(arg->type(), newargs,
6729 this->location());
6730 }
6731 }
6732 }
6733 else if (this->is_constant())
6734 {
6735 // We can only lower len and cap if there are no function calls
6736 // in the arguments. Otherwise we have to make the call.
6737 if (this->code_ == BUILTIN_LEN || this->code_ == BUILTIN_CAP)
6738 {
6739 Expression* arg = this->one_arg();
6740 if (!arg->is_constant())
6741 {
6742 Find_call_expression find_call;
6743 Expression::traverse(&arg, &find_call);
6744 if (find_call.found())
6745 return this;
6746 }
6747 }
6748
6749 mpz_t ival;
6750 mpz_init(ival);
6751 Type* type;
6752 if (this->integer_constant_value(true, ival, &type))
6753 {
6754 Expression* ret = Expression::make_integer(&ival, type,
6755 this->location());
6756 mpz_clear(ival);
6757 return ret;
6758 }
6759 mpz_clear(ival);
6760
6761 mpfr_t rval;
6762 mpfr_init(rval);
6763 if (this->float_constant_value(rval, &type))
6764 {
6765 Expression* ret = Expression::make_float(&rval, type,
6766 this->location());
6767 mpfr_clear(rval);
6768 return ret;
6769 }
6770
6771 mpfr_t imag;
6772 mpfr_init(imag);
6773 if (this->complex_constant_value(rval, imag, &type))
6774 {
6775 Expression* ret = Expression::make_complex(&rval, &imag, type,
6776 this->location());
6777 mpfr_clear(rval);
6778 mpfr_clear(imag);
6779 return ret;
6780 }
6781 mpfr_clear(rval);
6782 mpfr_clear(imag);
6783 }
6784 else if (this->code_ == BUILTIN_RECOVER)
6785 {
6786 if (function != NULL)
6787 function->func_value()->set_calls_recover();
6788 else
6789 {
6790 // Calling recover outside of a function always returns the
6791 // nil empty interface.
6792 Type* eface = Type::make_interface_type(NULL, this->location());
6793 return Expression::make_cast(eface,
6794 Expression::make_nil(this->location()),
6795 this->location());
6796 }
6797 }
6798 else if (this->code_ == BUILTIN_APPEND)
6799 {
6800 // Lower the varargs.
6801 const Expression_list* args = this->args();
6802 if (args == NULL || args->empty())
6803 return this;
6804 Type* slice_type = args->front()->type();
6805 if (!slice_type->is_open_array_type())
6806 {
6807 error_at(args->front()->location(), "argument 1 must be a slice");
6808 this->set_is_error();
6809 return this;
6810 }
6811 return this->lower_varargs(gogo, function, slice_type, 2);
6812 }
6813
6814 return this;
6815 }
6816
6817 // Return the type of the real or imag functions, given the type of
6818 // the argument. We need to map complex to float, complex64 to
6819 // float32, and complex128 to float64, so it has to be done by name.
6820 // This returns NULL if it can't figure out the type.
6821
6822 Type*
6823 Builtin_call_expression::real_imag_type(Type* arg_type)
6824 {
6825 if (arg_type == NULL || arg_type->is_abstract())
6826 return NULL;
6827 Named_type* nt = arg_type->named_type();
6828 if (nt == NULL)
6829 return NULL;
6830 while (nt->real_type()->named_type() != NULL)
6831 nt = nt->real_type()->named_type();
6832 if (nt->name() == "complex64")
6833 return Type::lookup_float_type("float32");
6834 else if (nt->name() == "complex128")
6835 return Type::lookup_float_type("float64");
6836 else
6837 return NULL;
6838 }
6839
6840 // Return the type of the complex function, given the type of one of the
6841 // argments. Like real_imag_type, we have to map by name.
6842
6843 Type*
6844 Builtin_call_expression::complex_type(Type* arg_type)
6845 {
6846 if (arg_type == NULL || arg_type->is_abstract())
6847 return NULL;
6848 Named_type* nt = arg_type->named_type();
6849 if (nt == NULL)
6850 return NULL;
6851 while (nt->real_type()->named_type() != NULL)
6852 nt = nt->real_type()->named_type();
6853 if (nt->name() == "float32")
6854 return Type::lookup_complex_type("complex64");
6855 else if (nt->name() == "float64")
6856 return Type::lookup_complex_type("complex128");
6857 else
6858 return NULL;
6859 }
6860
6861 // Return a single argument, or NULL if there isn't one.
6862
6863 Expression*
6864 Builtin_call_expression::one_arg() const
6865 {
6866 const Expression_list* args = this->args();
6867 if (args->size() != 1)
6868 return NULL;
6869 return args->front();
6870 }
6871
6872 // Return whether this is constant: len of a string, or len or cap of
6873 // a fixed array, or unsafe.Sizeof, unsafe.Offsetof, unsafe.Alignof.
6874
6875 bool
6876 Builtin_call_expression::do_is_constant() const
6877 {
6878 switch (this->code_)
6879 {
6880 case BUILTIN_LEN:
6881 case BUILTIN_CAP:
6882 {
6883 if (this->seen_)
6884 return false;
6885
6886 Expression* arg = this->one_arg();
6887 if (arg == NULL)
6888 return false;
6889 Type* arg_type = arg->type();
6890
6891 if (arg_type->points_to() != NULL
6892 && arg_type->points_to()->array_type() != NULL
6893 && !arg_type->points_to()->is_open_array_type())
6894 arg_type = arg_type->points_to();
6895
6896 if (arg_type->array_type() != NULL
6897 && arg_type->array_type()->length() != NULL)
6898 return true;
6899
6900 if (this->code_ == BUILTIN_LEN && arg_type->is_string_type())
6901 {
6902 this->seen_ = true;
6903 bool ret = arg->is_constant();
6904 this->seen_ = false;
6905 return ret;
6906 }
6907 }
6908 break;
6909
6910 case BUILTIN_SIZEOF:
6911 case BUILTIN_ALIGNOF:
6912 return this->one_arg() != NULL;
6913
6914 case BUILTIN_OFFSETOF:
6915 {
6916 Expression* arg = this->one_arg();
6917 if (arg == NULL)
6918 return false;
6919 return arg->field_reference_expression() != NULL;
6920 }
6921
6922 case BUILTIN_COMPLEX:
6923 {
6924 const Expression_list* args = this->args();
6925 if (args != NULL && args->size() == 2)
6926 return args->front()->is_constant() && args->back()->is_constant();
6927 }
6928 break;
6929
6930 case BUILTIN_REAL:
6931 case BUILTIN_IMAG:
6932 {
6933 Expression* arg = this->one_arg();
6934 return arg != NULL && arg->is_constant();
6935 }
6936
6937 default:
6938 break;
6939 }
6940
6941 return false;
6942 }
6943
6944 // Return an integer constant value if possible.
6945
6946 bool
6947 Builtin_call_expression::do_integer_constant_value(bool iota_is_constant,
6948 mpz_t val,
6949 Type** ptype) const
6950 {
6951 if (this->code_ == BUILTIN_LEN
6952 || this->code_ == BUILTIN_CAP)
6953 {
6954 Expression* arg = this->one_arg();
6955 if (arg == NULL)
6956 return false;
6957 Type* arg_type = arg->type();
6958
6959 if (this->code_ == BUILTIN_LEN && arg_type->is_string_type())
6960 {
6961 std::string sval;
6962 if (arg->string_constant_value(&sval))
6963 {
6964 mpz_set_ui(val, sval.length());
6965 *ptype = Type::lookup_integer_type("int");
6966 return true;
6967 }
6968 }
6969
6970 if (arg_type->points_to() != NULL
6971 && arg_type->points_to()->array_type() != NULL
6972 && !arg_type->points_to()->is_open_array_type())
6973 arg_type = arg_type->points_to();
6974
6975 if (arg_type->array_type() != NULL
6976 && arg_type->array_type()->length() != NULL)
6977 {
6978 if (this->seen_)
6979 return false;
6980 Expression* e = arg_type->array_type()->length();
6981 this->seen_ = true;
6982 bool r = e->integer_constant_value(iota_is_constant, val, ptype);
6983 this->seen_ = false;
6984 if (r)
6985 {
6986 *ptype = Type::lookup_integer_type("int");
6987 return true;
6988 }
6989 }
6990 }
6991 else if (this->code_ == BUILTIN_SIZEOF
6992 || this->code_ == BUILTIN_ALIGNOF)
6993 {
6994 Expression* arg = this->one_arg();
6995 if (arg == NULL)
6996 return false;
6997 Type* arg_type = arg->type();
6998 if (arg_type->is_error_type() || arg_type->is_undefined())
6999 return false;
7000 if (arg_type->is_abstract())
7001 return false;
7002 if (arg_type->named_type() != NULL)
7003 arg_type->named_type()->convert(this->gogo_);
7004 tree arg_type_tree = arg_type->get_tree(this->gogo_);
7005 if (arg_type_tree == error_mark_node)
7006 return false;
7007 unsigned long val_long;
7008 if (this->code_ == BUILTIN_SIZEOF)
7009 {
7010 tree type_size = TYPE_SIZE_UNIT(arg_type_tree);
7011 gcc_assert(TREE_CODE(type_size) == INTEGER_CST);
7012 if (TREE_INT_CST_HIGH(type_size) != 0)
7013 return false;
7014 unsigned HOST_WIDE_INT val_wide = TREE_INT_CST_LOW(type_size);
7015 val_long = static_cast<unsigned long>(val_wide);
7016 if (val_long != val_wide)
7017 return false;
7018 }
7019 else if (this->code_ == BUILTIN_ALIGNOF)
7020 {
7021 if (arg->field_reference_expression() == NULL)
7022 val_long = go_type_alignment(arg_type_tree);
7023 else
7024 {
7025 // Calling unsafe.Alignof(s.f) returns the alignment of
7026 // the type of f when it is used as a field in a struct.
7027 val_long = go_field_alignment(arg_type_tree);
7028 }
7029 }
7030 else
7031 gcc_unreachable();
7032 mpz_set_ui(val, val_long);
7033 *ptype = NULL;
7034 return true;
7035 }
7036 else if (this->code_ == BUILTIN_OFFSETOF)
7037 {
7038 Expression* arg = this->one_arg();
7039 if (arg == NULL)
7040 return false;
7041 Field_reference_expression* farg = arg->field_reference_expression();
7042 if (farg == NULL)
7043 return false;
7044 Expression* struct_expr = farg->expr();
7045 Type* st = struct_expr->type();
7046 if (st->struct_type() == NULL)
7047 return false;
7048 if (st->named_type() != NULL)
7049 st->named_type()->convert(this->gogo_);
7050 tree struct_tree = st->get_tree(this->gogo_);
7051 gcc_assert(TREE_CODE(struct_tree) == RECORD_TYPE);
7052 tree field = TYPE_FIELDS(struct_tree);
7053 for (unsigned int index = farg->field_index(); index > 0; --index)
7054 {
7055 field = DECL_CHAIN(field);
7056 gcc_assert(field != NULL_TREE);
7057 }
7058 HOST_WIDE_INT offset_wide = int_byte_position (field);
7059 if (offset_wide < 0)
7060 return false;
7061 unsigned long offset_long = static_cast<unsigned long>(offset_wide);
7062 if (offset_long != static_cast<unsigned HOST_WIDE_INT>(offset_wide))
7063 return false;
7064 mpz_set_ui(val, offset_long);
7065 return true;
7066 }
7067 return false;
7068 }
7069
7070 // Return a floating point constant value if possible.
7071
7072 bool
7073 Builtin_call_expression::do_float_constant_value(mpfr_t val,
7074 Type** ptype) const
7075 {
7076 if (this->code_ == BUILTIN_REAL || this->code_ == BUILTIN_IMAG)
7077 {
7078 Expression* arg = this->one_arg();
7079 if (arg == NULL)
7080 return false;
7081
7082 mpfr_t real;
7083 mpfr_t imag;
7084 mpfr_init(real);
7085 mpfr_init(imag);
7086
7087 bool ret = false;
7088 Type* type;
7089 if (arg->complex_constant_value(real, imag, &type))
7090 {
7091 if (this->code_ == BUILTIN_REAL)
7092 mpfr_set(val, real, GMP_RNDN);
7093 else
7094 mpfr_set(val, imag, GMP_RNDN);
7095 *ptype = Builtin_call_expression::real_imag_type(type);
7096 ret = true;
7097 }
7098
7099 mpfr_clear(real);
7100 mpfr_clear(imag);
7101 return ret;
7102 }
7103
7104 return false;
7105 }
7106
7107 // Return a complex constant value if possible.
7108
7109 bool
7110 Builtin_call_expression::do_complex_constant_value(mpfr_t real, mpfr_t imag,
7111 Type** ptype) const
7112 {
7113 if (this->code_ == BUILTIN_COMPLEX)
7114 {
7115 const Expression_list* args = this->args();
7116 if (args == NULL || args->size() != 2)
7117 return false;
7118
7119 mpfr_t r;
7120 mpfr_init(r);
7121 Type* rtype;
7122 if (!args->front()->float_constant_value(r, &rtype))
7123 {
7124 mpfr_clear(r);
7125 return false;
7126 }
7127
7128 mpfr_t i;
7129 mpfr_init(i);
7130
7131 bool ret = false;
7132 Type* itype;
7133 if (args->back()->float_constant_value(i, &itype)
7134 && Type::are_identical(rtype, itype, false, NULL))
7135 {
7136 mpfr_set(real, r, GMP_RNDN);
7137 mpfr_set(imag, i, GMP_RNDN);
7138 *ptype = Builtin_call_expression::complex_type(rtype);
7139 ret = true;
7140 }
7141
7142 mpfr_clear(r);
7143 mpfr_clear(i);
7144
7145 return ret;
7146 }
7147
7148 return false;
7149 }
7150
7151 // Return the type.
7152
7153 Type*
7154 Builtin_call_expression::do_type()
7155 {
7156 switch (this->code_)
7157 {
7158 case BUILTIN_INVALID:
7159 default:
7160 gcc_unreachable();
7161
7162 case BUILTIN_NEW:
7163 case BUILTIN_MAKE:
7164 {
7165 const Expression_list* args = this->args();
7166 if (args == NULL || args->empty())
7167 return Type::make_error_type();
7168 return Type::make_pointer_type(args->front()->type());
7169 }
7170
7171 case BUILTIN_CAP:
7172 case BUILTIN_COPY:
7173 case BUILTIN_LEN:
7174 case BUILTIN_ALIGNOF:
7175 case BUILTIN_OFFSETOF:
7176 case BUILTIN_SIZEOF:
7177 return Type::lookup_integer_type("int");
7178
7179 case BUILTIN_CLOSE:
7180 case BUILTIN_PANIC:
7181 case BUILTIN_PRINT:
7182 case BUILTIN_PRINTLN:
7183 return Type::make_void_type();
7184
7185 case BUILTIN_RECOVER:
7186 return Type::make_interface_type(NULL, BUILTINS_LOCATION);
7187
7188 case BUILTIN_APPEND:
7189 {
7190 const Expression_list* args = this->args();
7191 if (args == NULL || args->empty())
7192 return Type::make_error_type();
7193 return args->front()->type();
7194 }
7195
7196 case BUILTIN_REAL:
7197 case BUILTIN_IMAG:
7198 {
7199 Expression* arg = this->one_arg();
7200 if (arg == NULL)
7201 return Type::make_error_type();
7202 Type* t = arg->type();
7203 if (t->is_abstract())
7204 t = t->make_non_abstract_type();
7205 t = Builtin_call_expression::real_imag_type(t);
7206 if (t == NULL)
7207 t = Type::make_error_type();
7208 return t;
7209 }
7210
7211 case BUILTIN_COMPLEX:
7212 {
7213 const Expression_list* args = this->args();
7214 if (args == NULL || args->size() != 2)
7215 return Type::make_error_type();
7216 Type* t = args->front()->type();
7217 if (t->is_abstract())
7218 {
7219 t = args->back()->type();
7220 if (t->is_abstract())
7221 t = t->make_non_abstract_type();
7222 }
7223 t = Builtin_call_expression::complex_type(t);
7224 if (t == NULL)
7225 t = Type::make_error_type();
7226 return t;
7227 }
7228 }
7229 }
7230
7231 // Determine the type.
7232
7233 void
7234 Builtin_call_expression::do_determine_type(const Type_context* context)
7235 {
7236 if (!this->determining_types())
7237 return;
7238
7239 this->fn()->determine_type_no_context();
7240
7241 const Expression_list* args = this->args();
7242
7243 bool is_print;
7244 Type* arg_type = NULL;
7245 switch (this->code_)
7246 {
7247 case BUILTIN_PRINT:
7248 case BUILTIN_PRINTLN:
7249 // Do not force a large integer constant to "int".
7250 is_print = true;
7251 break;
7252
7253 case BUILTIN_REAL:
7254 case BUILTIN_IMAG:
7255 arg_type = Builtin_call_expression::complex_type(context->type);
7256 is_print = false;
7257 break;
7258
7259 case BUILTIN_COMPLEX:
7260 {
7261 // For the complex function the type of one operand can
7262 // determine the type of the other, as in a binary expression.
7263 arg_type = Builtin_call_expression::real_imag_type(context->type);
7264 if (args != NULL && args->size() == 2)
7265 {
7266 Type* t1 = args->front()->type();
7267 Type* t2 = args->front()->type();
7268 if (!t1->is_abstract())
7269 arg_type = t1;
7270 else if (!t2->is_abstract())
7271 arg_type = t2;
7272 }
7273 is_print = false;
7274 }
7275 break;
7276
7277 default:
7278 is_print = false;
7279 break;
7280 }
7281
7282 if (args != NULL)
7283 {
7284 for (Expression_list::const_iterator pa = args->begin();
7285 pa != args->end();
7286 ++pa)
7287 {
7288 Type_context subcontext;
7289 subcontext.type = arg_type;
7290
7291 if (is_print)
7292 {
7293 // We want to print large constants, we so can't just
7294 // use the appropriate nonabstract type. Use uint64 for
7295 // an integer if we know it is nonnegative, otherwise
7296 // use int64 for a integer, otherwise use float64 for a
7297 // float or complex128 for a complex.
7298 Type* want_type = NULL;
7299 Type* atype = (*pa)->type();
7300 if (atype->is_abstract())
7301 {
7302 if (atype->integer_type() != NULL)
7303 {
7304 mpz_t val;
7305 mpz_init(val);
7306 Type* dummy;
7307 if (this->integer_constant_value(true, val, &dummy)
7308 && mpz_sgn(val) >= 0)
7309 want_type = Type::lookup_integer_type("uint64");
7310 else
7311 want_type = Type::lookup_integer_type("int64");
7312 mpz_clear(val);
7313 }
7314 else if (atype->float_type() != NULL)
7315 want_type = Type::lookup_float_type("float64");
7316 else if (atype->complex_type() != NULL)
7317 want_type = Type::lookup_complex_type("complex128");
7318 else if (atype->is_abstract_string_type())
7319 want_type = Type::lookup_string_type();
7320 else if (atype->is_abstract_boolean_type())
7321 want_type = Type::lookup_bool_type();
7322 else
7323 gcc_unreachable();
7324 subcontext.type = want_type;
7325 }
7326 }
7327
7328 (*pa)->determine_type(&subcontext);
7329 }
7330 }
7331 }
7332
7333 // If there is exactly one argument, return true. Otherwise give an
7334 // error message and return false.
7335
7336 bool
7337 Builtin_call_expression::check_one_arg()
7338 {
7339 const Expression_list* args = this->args();
7340 if (args == NULL || args->size() < 1)
7341 {
7342 this->report_error(_("not enough arguments"));
7343 return false;
7344 }
7345 else if (args->size() > 1)
7346 {
7347 this->report_error(_("too many arguments"));
7348 return false;
7349 }
7350 if (args->front()->is_error_expression()
7351 || args->front()->type()->is_error_type()
7352 || args->front()->type()->is_undefined())
7353 {
7354 this->set_is_error();
7355 return false;
7356 }
7357 return true;
7358 }
7359
7360 // Check argument types for a builtin function.
7361
7362 void
7363 Builtin_call_expression::do_check_types(Gogo*)
7364 {
7365 switch (this->code_)
7366 {
7367 case BUILTIN_INVALID:
7368 case BUILTIN_NEW:
7369 case BUILTIN_MAKE:
7370 return;
7371
7372 case BUILTIN_LEN:
7373 case BUILTIN_CAP:
7374 {
7375 // The single argument may be either a string or an array or a
7376 // map or a channel, or a pointer to a closed array.
7377 if (this->check_one_arg())
7378 {
7379 Type* arg_type = this->one_arg()->type();
7380 if (arg_type->points_to() != NULL
7381 && arg_type->points_to()->array_type() != NULL
7382 && !arg_type->points_to()->is_open_array_type())
7383 arg_type = arg_type->points_to();
7384 if (this->code_ == BUILTIN_CAP)
7385 {
7386 if (!arg_type->is_error_type()
7387 && arg_type->array_type() == NULL
7388 && arg_type->channel_type() == NULL)
7389 this->report_error(_("argument must be array or slice "
7390 "or channel"));
7391 }
7392 else
7393 {
7394 if (!arg_type->is_error_type()
7395 && !arg_type->is_string_type()
7396 && arg_type->array_type() == NULL
7397 && arg_type->map_type() == NULL
7398 && arg_type->channel_type() == NULL)
7399 this->report_error(_("argument must be string or "
7400 "array or slice or map or channel"));
7401 }
7402 }
7403 }
7404 break;
7405
7406 case BUILTIN_PRINT:
7407 case BUILTIN_PRINTLN:
7408 {
7409 const Expression_list* args = this->args();
7410 if (args == NULL)
7411 {
7412 if (this->code_ == BUILTIN_PRINT)
7413 warning_at(this->location(), 0,
7414 "no arguments for builtin function %<%s%>",
7415 (this->code_ == BUILTIN_PRINT
7416 ? "print"
7417 : "println"));
7418 }
7419 else
7420 {
7421 for (Expression_list::const_iterator p = args->begin();
7422 p != args->end();
7423 ++p)
7424 {
7425 Type* type = (*p)->type();
7426 if (type->is_error_type()
7427 || type->is_string_type()
7428 || type->integer_type() != NULL
7429 || type->float_type() != NULL
7430 || type->complex_type() != NULL
7431 || type->is_boolean_type()
7432 || type->points_to() != NULL
7433 || type->interface_type() != NULL
7434 || type->channel_type() != NULL
7435 || type->map_type() != NULL
7436 || type->function_type() != NULL
7437 || type->is_open_array_type())
7438 ;
7439 else
7440 this->report_error(_("unsupported argument type to "
7441 "builtin function"));
7442 }
7443 }
7444 }
7445 break;
7446
7447 case BUILTIN_CLOSE:
7448 if (this->check_one_arg())
7449 {
7450 if (this->one_arg()->type()->channel_type() == NULL)
7451 this->report_error(_("argument must be channel"));
7452 }
7453 break;
7454
7455 case BUILTIN_PANIC:
7456 case BUILTIN_SIZEOF:
7457 case BUILTIN_ALIGNOF:
7458 this->check_one_arg();
7459 break;
7460
7461 case BUILTIN_RECOVER:
7462 if (this->args() != NULL && !this->args()->empty())
7463 this->report_error(_("too many arguments"));
7464 break;
7465
7466 case BUILTIN_OFFSETOF:
7467 if (this->check_one_arg())
7468 {
7469 Expression* arg = this->one_arg();
7470 if (arg->field_reference_expression() == NULL)
7471 this->report_error(_("argument must be a field reference"));
7472 }
7473 break;
7474
7475 case BUILTIN_COPY:
7476 {
7477 const Expression_list* args = this->args();
7478 if (args == NULL || args->size() < 2)
7479 {
7480 this->report_error(_("not enough arguments"));
7481 break;
7482 }
7483 else if (args->size() > 2)
7484 {
7485 this->report_error(_("too many arguments"));
7486 break;
7487 }
7488 Type* arg1_type = args->front()->type();
7489 Type* arg2_type = args->back()->type();
7490 if (arg1_type->is_error_type() || arg2_type->is_error_type())
7491 break;
7492
7493 Type* e1;
7494 if (arg1_type->is_open_array_type())
7495 e1 = arg1_type->array_type()->element_type();
7496 else
7497 {
7498 this->report_error(_("left argument must be a slice"));
7499 break;
7500 }
7501
7502 Type* e2;
7503 if (arg2_type->is_open_array_type())
7504 e2 = arg2_type->array_type()->element_type();
7505 else if (arg2_type->is_string_type())
7506 e2 = Type::lookup_integer_type("uint8");
7507 else
7508 {
7509 this->report_error(_("right argument must be a slice or a string"));
7510 break;
7511 }
7512
7513 if (!Type::are_identical(e1, e2, true, NULL))
7514 this->report_error(_("element types must be the same"));
7515 }
7516 break;
7517
7518 case BUILTIN_APPEND:
7519 {
7520 const Expression_list* args = this->args();
7521 if (args == NULL || args->size() < 2)
7522 {
7523 this->report_error(_("not enough arguments"));
7524 break;
7525 }
7526 if (args->size() > 2)
7527 {
7528 this->report_error(_("too many arguments"));
7529 break;
7530 }
7531 std::string reason;
7532 if (!Type::are_assignable(args->front()->type(), args->back()->type(),
7533 &reason))
7534 {
7535 if (reason.empty())
7536 this->report_error(_("arguments 1 and 2 have different types"));
7537 else
7538 {
7539 error_at(this->location(),
7540 "arguments 1 and 2 have different types (%s)",
7541 reason.c_str());
7542 this->set_is_error();
7543 }
7544 }
7545 break;
7546 }
7547
7548 case BUILTIN_REAL:
7549 case BUILTIN_IMAG:
7550 if (this->check_one_arg())
7551 {
7552 if (this->one_arg()->type()->complex_type() == NULL)
7553 this->report_error(_("argument must have complex type"));
7554 }
7555 break;
7556
7557 case BUILTIN_COMPLEX:
7558 {
7559 const Expression_list* args = this->args();
7560 if (args == NULL || args->size() < 2)
7561 this->report_error(_("not enough arguments"));
7562 else if (args->size() > 2)
7563 this->report_error(_("too many arguments"));
7564 else if (args->front()->is_error_expression()
7565 || args->front()->type()->is_error_type()
7566 || args->back()->is_error_expression()
7567 || args->back()->type()->is_error_type())
7568 this->set_is_error();
7569 else if (!Type::are_identical(args->front()->type(),
7570 args->back()->type(), true, NULL))
7571 this->report_error(_("complex arguments must have identical types"));
7572 else if (args->front()->type()->float_type() == NULL)
7573 this->report_error(_("complex arguments must have "
7574 "floating-point type"));
7575 }
7576 break;
7577
7578 default:
7579 gcc_unreachable();
7580 }
7581 }
7582
7583 // Return the tree for a builtin function.
7584
7585 tree
7586 Builtin_call_expression::do_get_tree(Translate_context* context)
7587 {
7588 Gogo* gogo = context->gogo();
7589 source_location location = this->location();
7590 switch (this->code_)
7591 {
7592 case BUILTIN_INVALID:
7593 case BUILTIN_NEW:
7594 case BUILTIN_MAKE:
7595 gcc_unreachable();
7596
7597 case BUILTIN_LEN:
7598 case BUILTIN_CAP:
7599 {
7600 const Expression_list* args = this->args();
7601 gcc_assert(args != NULL && args->size() == 1);
7602 Expression* arg = *args->begin();
7603 Type* arg_type = arg->type();
7604
7605 if (this->seen_)
7606 {
7607 gcc_assert(saw_errors());
7608 return error_mark_node;
7609 }
7610 this->seen_ = true;
7611
7612 tree arg_tree = arg->get_tree(context);
7613
7614 this->seen_ = false;
7615
7616 if (arg_tree == error_mark_node)
7617 return error_mark_node;
7618
7619 if (arg_type->points_to() != NULL)
7620 {
7621 arg_type = arg_type->points_to();
7622 gcc_assert(arg_type->array_type() != NULL
7623 && !arg_type->is_open_array_type());
7624 gcc_assert(POINTER_TYPE_P(TREE_TYPE(arg_tree)));
7625 arg_tree = build_fold_indirect_ref(arg_tree);
7626 }
7627
7628 tree val_tree;
7629 if (this->code_ == BUILTIN_LEN)
7630 {
7631 if (arg_type->is_string_type())
7632 val_tree = String_type::length_tree(gogo, arg_tree);
7633 else if (arg_type->array_type() != NULL)
7634 {
7635 if (this->seen_)
7636 {
7637 gcc_assert(saw_errors());
7638 return error_mark_node;
7639 }
7640 this->seen_ = true;
7641 val_tree = arg_type->array_type()->length_tree(gogo, arg_tree);
7642 this->seen_ = false;
7643 }
7644 else if (arg_type->map_type() != NULL)
7645 {
7646 static tree map_len_fndecl;
7647 val_tree = Gogo::call_builtin(&map_len_fndecl,
7648 location,
7649 "__go_map_len",
7650 1,
7651 sizetype,
7652 arg_type->get_tree(gogo),
7653 arg_tree);
7654 }
7655 else if (arg_type->channel_type() != NULL)
7656 {
7657 static tree chan_len_fndecl;
7658 val_tree = Gogo::call_builtin(&chan_len_fndecl,
7659 location,
7660 "__go_chan_len",
7661 1,
7662 sizetype,
7663 arg_type->get_tree(gogo),
7664 arg_tree);
7665 }
7666 else
7667 gcc_unreachable();
7668 }
7669 else
7670 {
7671 if (arg_type->array_type() != NULL)
7672 {
7673 if (this->seen_)
7674 {
7675 gcc_assert(saw_errors());
7676 return error_mark_node;
7677 }
7678 this->seen_ = true;
7679 val_tree = arg_type->array_type()->capacity_tree(gogo,
7680 arg_tree);
7681 this->seen_ = false;
7682 }
7683 else if (arg_type->channel_type() != NULL)
7684 {
7685 static tree chan_cap_fndecl;
7686 val_tree = Gogo::call_builtin(&chan_cap_fndecl,
7687 location,
7688 "__go_chan_cap",
7689 1,
7690 sizetype,
7691 arg_type->get_tree(gogo),
7692 arg_tree);
7693 }
7694 else
7695 gcc_unreachable();
7696 }
7697
7698 if (val_tree == error_mark_node)
7699 return error_mark_node;
7700
7701 tree type_tree = Type::lookup_integer_type("int")->get_tree(gogo);
7702 if (type_tree == TREE_TYPE(val_tree))
7703 return val_tree;
7704 else
7705 return fold(convert_to_integer(type_tree, val_tree));
7706 }
7707
7708 case BUILTIN_PRINT:
7709 case BUILTIN_PRINTLN:
7710 {
7711 const bool is_ln = this->code_ == BUILTIN_PRINTLN;
7712 tree stmt_list = NULL_TREE;
7713
7714 const Expression_list* call_args = this->args();
7715 if (call_args != NULL)
7716 {
7717 for (Expression_list::const_iterator p = call_args->begin();
7718 p != call_args->end();
7719 ++p)
7720 {
7721 if (is_ln && p != call_args->begin())
7722 {
7723 static tree print_space_fndecl;
7724 tree call = Gogo::call_builtin(&print_space_fndecl,
7725 location,
7726 "__go_print_space",
7727 0,
7728 void_type_node);
7729 if (call == error_mark_node)
7730 return error_mark_node;
7731 append_to_statement_list(call, &stmt_list);
7732 }
7733
7734 Type* type = (*p)->type();
7735
7736 tree arg = (*p)->get_tree(context);
7737 if (arg == error_mark_node)
7738 return error_mark_node;
7739
7740 tree* pfndecl;
7741 const char* fnname;
7742 if (type->is_string_type())
7743 {
7744 static tree print_string_fndecl;
7745 pfndecl = &print_string_fndecl;
7746 fnname = "__go_print_string";
7747 }
7748 else if (type->integer_type() != NULL
7749 && type->integer_type()->is_unsigned())
7750 {
7751 static tree print_uint64_fndecl;
7752 pfndecl = &print_uint64_fndecl;
7753 fnname = "__go_print_uint64";
7754 Type* itype = Type::lookup_integer_type("uint64");
7755 arg = fold_convert_loc(location, itype->get_tree(gogo),
7756 arg);
7757 }
7758 else if (type->integer_type() != NULL)
7759 {
7760 static tree print_int64_fndecl;
7761 pfndecl = &print_int64_fndecl;
7762 fnname = "__go_print_int64";
7763 Type* itype = Type::lookup_integer_type("int64");
7764 arg = fold_convert_loc(location, itype->get_tree(gogo),
7765 arg);
7766 }
7767 else if (type->float_type() != NULL)
7768 {
7769 static tree print_double_fndecl;
7770 pfndecl = &print_double_fndecl;
7771 fnname = "__go_print_double";
7772 arg = fold_convert_loc(location, double_type_node, arg);
7773 }
7774 else if (type->complex_type() != NULL)
7775 {
7776 static tree print_complex_fndecl;
7777 pfndecl = &print_complex_fndecl;
7778 fnname = "__go_print_complex";
7779 arg = fold_convert_loc(location, complex_double_type_node,
7780 arg);
7781 }
7782 else if (type->is_boolean_type())
7783 {
7784 static tree print_bool_fndecl;
7785 pfndecl = &print_bool_fndecl;
7786 fnname = "__go_print_bool";
7787 }
7788 else if (type->points_to() != NULL
7789 || type->channel_type() != NULL
7790 || type->map_type() != NULL
7791 || type->function_type() != NULL)
7792 {
7793 static tree print_pointer_fndecl;
7794 pfndecl = &print_pointer_fndecl;
7795 fnname = "__go_print_pointer";
7796 arg = fold_convert_loc(location, ptr_type_node, arg);
7797 }
7798 else if (type->interface_type() != NULL)
7799 {
7800 if (type->interface_type()->is_empty())
7801 {
7802 static tree print_empty_interface_fndecl;
7803 pfndecl = &print_empty_interface_fndecl;
7804 fnname = "__go_print_empty_interface";
7805 }
7806 else
7807 {
7808 static tree print_interface_fndecl;
7809 pfndecl = &print_interface_fndecl;
7810 fnname = "__go_print_interface";
7811 }
7812 }
7813 else if (type->is_open_array_type())
7814 {
7815 static tree print_slice_fndecl;
7816 pfndecl = &print_slice_fndecl;
7817 fnname = "__go_print_slice";
7818 }
7819 else
7820 gcc_unreachable();
7821
7822 tree call = Gogo::call_builtin(pfndecl,
7823 location,
7824 fnname,
7825 1,
7826 void_type_node,
7827 TREE_TYPE(arg),
7828 arg);
7829 if (call == error_mark_node)
7830 return error_mark_node;
7831 append_to_statement_list(call, &stmt_list);
7832 }
7833 }
7834
7835 if (is_ln)
7836 {
7837 static tree print_nl_fndecl;
7838 tree call = Gogo::call_builtin(&print_nl_fndecl,
7839 location,
7840 "__go_print_nl",
7841 0,
7842 void_type_node);
7843 if (call == error_mark_node)
7844 return error_mark_node;
7845 append_to_statement_list(call, &stmt_list);
7846 }
7847
7848 return stmt_list;
7849 }
7850
7851 case BUILTIN_PANIC:
7852 {
7853 const Expression_list* args = this->args();
7854 gcc_assert(args != NULL && args->size() == 1);
7855 Expression* arg = args->front();
7856 tree arg_tree = arg->get_tree(context);
7857 if (arg_tree == error_mark_node)
7858 return error_mark_node;
7859 Type *empty = Type::make_interface_type(NULL, BUILTINS_LOCATION);
7860 arg_tree = Expression::convert_for_assignment(context, empty,
7861 arg->type(),
7862 arg_tree, location);
7863 static tree panic_fndecl;
7864 tree call = Gogo::call_builtin(&panic_fndecl,
7865 location,
7866 "__go_panic",
7867 1,
7868 void_type_node,
7869 TREE_TYPE(arg_tree),
7870 arg_tree);
7871 if (call == error_mark_node)
7872 return error_mark_node;
7873 // This function will throw an exception.
7874 TREE_NOTHROW(panic_fndecl) = 0;
7875 // This function will not return.
7876 TREE_THIS_VOLATILE(panic_fndecl) = 1;
7877 return call;
7878 }
7879
7880 case BUILTIN_RECOVER:
7881 {
7882 // The argument is set when building recover thunks. It's a
7883 // boolean value which is true if we can recover a value now.
7884 const Expression_list* args = this->args();
7885 gcc_assert(args != NULL && args->size() == 1);
7886 Expression* arg = args->front();
7887 tree arg_tree = arg->get_tree(context);
7888 if (arg_tree == error_mark_node)
7889 return error_mark_node;
7890
7891 Type *empty = Type::make_interface_type(NULL, BUILTINS_LOCATION);
7892 tree empty_tree = empty->get_tree(context->gogo());
7893
7894 Type* nil_type = Type::make_nil_type();
7895 Expression* nil = Expression::make_nil(location);
7896 tree nil_tree = nil->get_tree(context);
7897 tree empty_nil_tree = Expression::convert_for_assignment(context,
7898 empty,
7899 nil_type,
7900 nil_tree,
7901 location);
7902
7903 // We need to handle a deferred call to recover specially,
7904 // because it changes whether it can recover a panic or not.
7905 // See test7 in test/recover1.go.
7906 tree call;
7907 if (this->is_deferred())
7908 {
7909 static tree deferred_recover_fndecl;
7910 call = Gogo::call_builtin(&deferred_recover_fndecl,
7911 location,
7912 "__go_deferred_recover",
7913 0,
7914 empty_tree);
7915 }
7916 else
7917 {
7918 static tree recover_fndecl;
7919 call = Gogo::call_builtin(&recover_fndecl,
7920 location,
7921 "__go_recover",
7922 0,
7923 empty_tree);
7924 }
7925 if (call == error_mark_node)
7926 return error_mark_node;
7927 return fold_build3_loc(location, COND_EXPR, empty_tree, arg_tree,
7928 call, empty_nil_tree);
7929 }
7930
7931 case BUILTIN_CLOSE:
7932 {
7933 const Expression_list* args = this->args();
7934 gcc_assert(args != NULL && args->size() == 1);
7935 Expression* arg = args->front();
7936 tree arg_tree = arg->get_tree(context);
7937 if (arg_tree == error_mark_node)
7938 return error_mark_node;
7939 static tree close_fndecl;
7940 return Gogo::call_builtin(&close_fndecl,
7941 location,
7942 "__go_builtin_close",
7943 1,
7944 void_type_node,
7945 TREE_TYPE(arg_tree),
7946 arg_tree);
7947 }
7948
7949 case BUILTIN_SIZEOF:
7950 case BUILTIN_OFFSETOF:
7951 case BUILTIN_ALIGNOF:
7952 {
7953 mpz_t val;
7954 mpz_init(val);
7955 Type* dummy;
7956 bool b = this->integer_constant_value(true, val, &dummy);
7957 if (!b)
7958 {
7959 gcc_assert(saw_errors());
7960 return error_mark_node;
7961 }
7962 tree type = Type::lookup_integer_type("int")->get_tree(gogo);
7963 tree ret = Expression::integer_constant_tree(val, type);
7964 mpz_clear(val);
7965 return ret;
7966 }
7967
7968 case BUILTIN_COPY:
7969 {
7970 const Expression_list* args = this->args();
7971 gcc_assert(args != NULL && args->size() == 2);
7972 Expression* arg1 = args->front();
7973 Expression* arg2 = args->back();
7974
7975 tree arg1_tree = arg1->get_tree(context);
7976 tree arg2_tree = arg2->get_tree(context);
7977 if (arg1_tree == error_mark_node || arg2_tree == error_mark_node)
7978 return error_mark_node;
7979
7980 Type* arg1_type = arg1->type();
7981 Array_type* at = arg1_type->array_type();
7982 arg1_tree = save_expr(arg1_tree);
7983 tree arg1_val = at->value_pointer_tree(gogo, arg1_tree);
7984 tree arg1_len = at->length_tree(gogo, arg1_tree);
7985 if (arg1_val == error_mark_node || arg1_len == error_mark_node)
7986 return error_mark_node;
7987
7988 Type* arg2_type = arg2->type();
7989 tree arg2_val;
7990 tree arg2_len;
7991 if (arg2_type->is_open_array_type())
7992 {
7993 at = arg2_type->array_type();
7994 arg2_tree = save_expr(arg2_tree);
7995 arg2_val = at->value_pointer_tree(gogo, arg2_tree);
7996 arg2_len = at->length_tree(gogo, arg2_tree);
7997 }
7998 else
7999 {
8000 arg2_tree = save_expr(arg2_tree);
8001 arg2_val = String_type::bytes_tree(gogo, arg2_tree);
8002 arg2_len = String_type::length_tree(gogo, arg2_tree);
8003 }
8004 if (arg2_val == error_mark_node || arg2_len == error_mark_node)
8005 return error_mark_node;
8006
8007 arg1_len = save_expr(arg1_len);
8008 arg2_len = save_expr(arg2_len);
8009 tree len = fold_build3_loc(location, COND_EXPR, TREE_TYPE(arg1_len),
8010 fold_build2_loc(location, LT_EXPR,
8011 boolean_type_node,
8012 arg1_len, arg2_len),
8013 arg1_len, arg2_len);
8014 len = save_expr(len);
8015
8016 Type* element_type = at->element_type();
8017 tree element_type_tree = element_type->get_tree(gogo);
8018 if (element_type_tree == error_mark_node)
8019 return error_mark_node;
8020 tree element_size = TYPE_SIZE_UNIT(element_type_tree);
8021 tree bytecount = fold_convert_loc(location, TREE_TYPE(element_size),
8022 len);
8023 bytecount = fold_build2_loc(location, MULT_EXPR,
8024 TREE_TYPE(element_size),
8025 bytecount, element_size);
8026 bytecount = fold_convert_loc(location, size_type_node, bytecount);
8027
8028 arg1_val = fold_convert_loc(location, ptr_type_node, arg1_val);
8029 arg2_val = fold_convert_loc(location, ptr_type_node, arg2_val);
8030
8031 static tree copy_fndecl;
8032 tree call = Gogo::call_builtin(&copy_fndecl,
8033 location,
8034 "__go_copy",
8035 3,
8036 void_type_node,
8037 ptr_type_node,
8038 arg1_val,
8039 ptr_type_node,
8040 arg2_val,
8041 size_type_node,
8042 bytecount);
8043 if (call == error_mark_node)
8044 return error_mark_node;
8045
8046 return fold_build2_loc(location, COMPOUND_EXPR, TREE_TYPE(len),
8047 call, len);
8048 }
8049
8050 case BUILTIN_APPEND:
8051 {
8052 const Expression_list* args = this->args();
8053 gcc_assert(args != NULL && args->size() == 2);
8054 Expression* arg1 = args->front();
8055 Expression* arg2 = args->back();
8056
8057 tree arg1_tree = arg1->get_tree(context);
8058 tree arg2_tree = arg2->get_tree(context);
8059 if (arg1_tree == error_mark_node || arg2_tree == error_mark_node)
8060 return error_mark_node;
8061
8062 Array_type* at = arg1->type()->array_type();
8063 Type* element_type = at->element_type();
8064
8065 arg2_tree = Expression::convert_for_assignment(context, at,
8066 arg2->type(),
8067 arg2_tree,
8068 location);
8069 if (arg2_tree == error_mark_node)
8070 return error_mark_node;
8071
8072 arg2_tree = save_expr(arg2_tree);
8073 tree arg2_val = at->value_pointer_tree(gogo, arg2_tree);
8074 tree arg2_len = at->length_tree(gogo, arg2_tree);
8075 if (arg2_val == error_mark_node || arg2_len == error_mark_node)
8076 return error_mark_node;
8077 arg2_val = fold_convert_loc(location, ptr_type_node, arg2_val);
8078 arg2_len = fold_convert_loc(location, size_type_node, arg2_len);
8079
8080 tree element_type_tree = element_type->get_tree(gogo);
8081 if (element_type_tree == error_mark_node)
8082 return error_mark_node;
8083 tree element_size = TYPE_SIZE_UNIT(element_type_tree);
8084 element_size = fold_convert_loc(location, size_type_node,
8085 element_size);
8086
8087 // We rebuild the decl each time since the slice types may
8088 // change.
8089 tree append_fndecl = NULL_TREE;
8090 return Gogo::call_builtin(&append_fndecl,
8091 location,
8092 "__go_append",
8093 4,
8094 TREE_TYPE(arg1_tree),
8095 TREE_TYPE(arg1_tree),
8096 arg1_tree,
8097 ptr_type_node,
8098 arg2_val,
8099 size_type_node,
8100 arg2_len,
8101 size_type_node,
8102 element_size);
8103 }
8104
8105 case BUILTIN_REAL:
8106 case BUILTIN_IMAG:
8107 {
8108 const Expression_list* args = this->args();
8109 gcc_assert(args != NULL && args->size() == 1);
8110 Expression* arg = args->front();
8111 tree arg_tree = arg->get_tree(context);
8112 if (arg_tree == error_mark_node)
8113 return error_mark_node;
8114 gcc_assert(COMPLEX_FLOAT_TYPE_P(TREE_TYPE(arg_tree)));
8115 if (this->code_ == BUILTIN_REAL)
8116 return fold_build1_loc(location, REALPART_EXPR,
8117 TREE_TYPE(TREE_TYPE(arg_tree)),
8118 arg_tree);
8119 else
8120 return fold_build1_loc(location, IMAGPART_EXPR,
8121 TREE_TYPE(TREE_TYPE(arg_tree)),
8122 arg_tree);
8123 }
8124
8125 case BUILTIN_COMPLEX:
8126 {
8127 const Expression_list* args = this->args();
8128 gcc_assert(args != NULL && args->size() == 2);
8129 tree r = args->front()->get_tree(context);
8130 tree i = args->back()->get_tree(context);
8131 if (r == error_mark_node || i == error_mark_node)
8132 return error_mark_node;
8133 gcc_assert(TYPE_MAIN_VARIANT(TREE_TYPE(r))
8134 == TYPE_MAIN_VARIANT(TREE_TYPE(i)));
8135 gcc_assert(SCALAR_FLOAT_TYPE_P(TREE_TYPE(r)));
8136 return fold_build2_loc(location, COMPLEX_EXPR,
8137 build_complex_type(TREE_TYPE(r)),
8138 r, i);
8139 }
8140
8141 default:
8142 gcc_unreachable();
8143 }
8144 }
8145
8146 // We have to support exporting a builtin call expression, because
8147 // code can set a constant to the result of a builtin expression.
8148
8149 void
8150 Builtin_call_expression::do_export(Export* exp) const
8151 {
8152 bool ok = false;
8153
8154 mpz_t val;
8155 mpz_init(val);
8156 Type* dummy;
8157 if (this->integer_constant_value(true, val, &dummy))
8158 {
8159 Integer_expression::export_integer(exp, val);
8160 ok = true;
8161 }
8162 mpz_clear(val);
8163
8164 if (!ok)
8165 {
8166 mpfr_t fval;
8167 mpfr_init(fval);
8168 if (this->float_constant_value(fval, &dummy))
8169 {
8170 Float_expression::export_float(exp, fval);
8171 ok = true;
8172 }
8173 mpfr_clear(fval);
8174 }
8175
8176 if (!ok)
8177 {
8178 mpfr_t real;
8179 mpfr_t imag;
8180 mpfr_init(real);
8181 mpfr_init(imag);
8182 if (this->complex_constant_value(real, imag, &dummy))
8183 {
8184 Complex_expression::export_complex(exp, real, imag);
8185 ok = true;
8186 }
8187 mpfr_clear(real);
8188 mpfr_clear(imag);
8189 }
8190
8191 if (!ok)
8192 {
8193 error_at(this->location(), "value is not constant");
8194 return;
8195 }
8196
8197 // A trailing space lets us reliably identify the end of the number.
8198 exp->write_c_string(" ");
8199 }
8200
8201 // Class Call_expression.
8202
8203 // Traversal.
8204
8205 int
8206 Call_expression::do_traverse(Traverse* traverse)
8207 {
8208 if (Expression::traverse(&this->fn_, traverse) == TRAVERSE_EXIT)
8209 return TRAVERSE_EXIT;
8210 if (this->args_ != NULL)
8211 {
8212 if (this->args_->traverse(traverse) == TRAVERSE_EXIT)
8213 return TRAVERSE_EXIT;
8214 }
8215 return TRAVERSE_CONTINUE;
8216 }
8217
8218 // Lower a call statement.
8219
8220 Expression*
8221 Call_expression::do_lower(Gogo* gogo, Named_object* function, int)
8222 {
8223 // A type case can look like a function call.
8224 if (this->fn_->is_type_expression()
8225 && this->args_ != NULL
8226 && this->args_->size() == 1)
8227 return Expression::make_cast(this->fn_->type(), this->args_->front(),
8228 this->location());
8229
8230 // Recognize a call to a builtin function.
8231 Func_expression* fne = this->fn_->func_expression();
8232 if (fne != NULL
8233 && fne->named_object()->is_function_declaration()
8234 && fne->named_object()->func_declaration_value()->type()->is_builtin())
8235 return new Builtin_call_expression(gogo, this->fn_, this->args_,
8236 this->is_varargs_, this->location());
8237
8238 // Handle an argument which is a call to a function which returns
8239 // multiple results.
8240 if (this->args_ != NULL
8241 && this->args_->size() == 1
8242 && this->args_->front()->call_expression() != NULL
8243 && this->fn_->type()->function_type() != NULL)
8244 {
8245 Function_type* fntype = this->fn_->type()->function_type();
8246 size_t rc = this->args_->front()->call_expression()->result_count();
8247 if (rc > 1
8248 && fntype->parameters() != NULL
8249 && (fntype->parameters()->size() == rc
8250 || (fntype->is_varargs()
8251 && fntype->parameters()->size() - 1 <= rc)))
8252 {
8253 Call_expression* call = this->args_->front()->call_expression();
8254 Expression_list* args = new Expression_list;
8255 for (size_t i = 0; i < rc; ++i)
8256 args->push_back(Expression::make_call_result(call, i));
8257 // We can't return a new call expression here, because this
8258 // one may be referenced by Call_result expressions. We
8259 // also can't delete the old arguments, because we may still
8260 // traverse them somewhere up the call stack. FIXME.
8261 this->args_ = args;
8262 }
8263 }
8264
8265 // Handle a call to a varargs function by packaging up the extra
8266 // parameters.
8267 if (this->fn_->type()->function_type() != NULL
8268 && this->fn_->type()->function_type()->is_varargs())
8269 {
8270 Function_type* fntype = this->fn_->type()->function_type();
8271 const Typed_identifier_list* parameters = fntype->parameters();
8272 gcc_assert(parameters != NULL && !parameters->empty());
8273 Type* varargs_type = parameters->back().type();
8274 return this->lower_varargs(gogo, function, varargs_type,
8275 parameters->size());
8276 }
8277
8278 return this;
8279 }
8280
8281 // Lower a call to a varargs function. FUNCTION is the function in
8282 // which the call occurs--it's not the function we are calling.
8283 // VARARGS_TYPE is the type of the varargs parameter, a slice type.
8284 // PARAM_COUNT is the number of parameters of the function we are
8285 // calling; the last of these parameters will be the varargs
8286 // parameter.
8287
8288 Expression*
8289 Call_expression::lower_varargs(Gogo* gogo, Named_object* function,
8290 Type* varargs_type, size_t param_count)
8291 {
8292 if (this->varargs_are_lowered_)
8293 return this;
8294
8295 source_location loc = this->location();
8296
8297 gcc_assert(param_count > 0);
8298 gcc_assert(varargs_type->is_open_array_type());
8299
8300 size_t arg_count = this->args_ == NULL ? 0 : this->args_->size();
8301 if (arg_count < param_count - 1)
8302 {
8303 // Not enough arguments; will be caught in check_types.
8304 return this;
8305 }
8306
8307 Expression_list* old_args = this->args_;
8308 Expression_list* new_args = new Expression_list();
8309 bool push_empty_arg = false;
8310 if (old_args == NULL || old_args->empty())
8311 {
8312 gcc_assert(param_count == 1);
8313 push_empty_arg = true;
8314 }
8315 else
8316 {
8317 Expression_list::const_iterator pa;
8318 int i = 1;
8319 for (pa = old_args->begin(); pa != old_args->end(); ++pa, ++i)
8320 {
8321 if (static_cast<size_t>(i) == param_count)
8322 break;
8323 new_args->push_back(*pa);
8324 }
8325
8326 // We have reached the varargs parameter.
8327
8328 bool issued_error = false;
8329 if (pa == old_args->end())
8330 push_empty_arg = true;
8331 else if (pa + 1 == old_args->end() && this->is_varargs_)
8332 new_args->push_back(*pa);
8333 else if (this->is_varargs_)
8334 {
8335 this->report_error(_("too many arguments"));
8336 return this;
8337 }
8338 else
8339 {
8340 Type* element_type = varargs_type->array_type()->element_type();
8341 Expression_list* vals = new Expression_list;
8342 for (; pa != old_args->end(); ++pa, ++i)
8343 {
8344 // Check types here so that we get a better message.
8345 Type* patype = (*pa)->type();
8346 source_location paloc = (*pa)->location();
8347 if (!this->check_argument_type(i, element_type, patype,
8348 paloc, issued_error))
8349 continue;
8350 vals->push_back(*pa);
8351 }
8352 Expression* val =
8353 Expression::make_slice_composite_literal(varargs_type, vals, loc);
8354 new_args->push_back(val);
8355 }
8356 }
8357
8358 if (push_empty_arg)
8359 new_args->push_back(Expression::make_nil(loc));
8360
8361 // We can't return a new call expression here, because this one may
8362 // be referenced by Call_result expressions. FIXME.
8363 if (old_args != NULL)
8364 delete old_args;
8365 this->args_ = new_args;
8366 this->varargs_are_lowered_ = true;
8367
8368 // Lower all the new subexpressions.
8369 Expression* ret = this;
8370 gogo->lower_expression(function, &ret);
8371 gcc_assert(ret == this);
8372 return ret;
8373 }
8374
8375 // Get the function type. Returns NULL if we don't know the type. If
8376 // this returns NULL, and if_ERROR is true, issues an error.
8377
8378 Function_type*
8379 Call_expression::get_function_type() const
8380 {
8381 return this->fn_->type()->function_type();
8382 }
8383
8384 // Return the number of values which this call will return.
8385
8386 size_t
8387 Call_expression::result_count() const
8388 {
8389 const Function_type* fntype = this->get_function_type();
8390 if (fntype == NULL)
8391 return 0;
8392 if (fntype->results() == NULL)
8393 return 0;
8394 return fntype->results()->size();
8395 }
8396
8397 // Return whether this is a call to the predeclared function recover.
8398
8399 bool
8400 Call_expression::is_recover_call() const
8401 {
8402 return this->do_is_recover_call();
8403 }
8404
8405 // Set the argument to the recover function.
8406
8407 void
8408 Call_expression::set_recover_arg(Expression* arg)
8409 {
8410 this->do_set_recover_arg(arg);
8411 }
8412
8413 // Virtual functions also implemented by Builtin_call_expression.
8414
8415 bool
8416 Call_expression::do_is_recover_call() const
8417 {
8418 return false;
8419 }
8420
8421 void
8422 Call_expression::do_set_recover_arg(Expression*)
8423 {
8424 gcc_unreachable();
8425 }
8426
8427 // Get the type.
8428
8429 Type*
8430 Call_expression::do_type()
8431 {
8432 if (this->type_ != NULL)
8433 return this->type_;
8434
8435 Type* ret;
8436 Function_type* fntype = this->get_function_type();
8437 if (fntype == NULL)
8438 return Type::make_error_type();
8439
8440 const Typed_identifier_list* results = fntype->results();
8441 if (results == NULL)
8442 ret = Type::make_void_type();
8443 else if (results->size() == 1)
8444 ret = results->begin()->type();
8445 else
8446 ret = Type::make_call_multiple_result_type(this);
8447
8448 this->type_ = ret;
8449
8450 return this->type_;
8451 }
8452
8453 // Determine types for a call expression. We can use the function
8454 // parameter types to set the types of the arguments.
8455
8456 void
8457 Call_expression::do_determine_type(const Type_context*)
8458 {
8459 if (!this->determining_types())
8460 return;
8461
8462 this->fn_->determine_type_no_context();
8463 Function_type* fntype = this->get_function_type();
8464 const Typed_identifier_list* parameters = NULL;
8465 if (fntype != NULL)
8466 parameters = fntype->parameters();
8467 if (this->args_ != NULL)
8468 {
8469 Typed_identifier_list::const_iterator pt;
8470 if (parameters != NULL)
8471 pt = parameters->begin();
8472 for (Expression_list::const_iterator pa = this->args_->begin();
8473 pa != this->args_->end();
8474 ++pa)
8475 {
8476 if (parameters != NULL && pt != parameters->end())
8477 {
8478 Type_context subcontext(pt->type(), false);
8479 (*pa)->determine_type(&subcontext);
8480 ++pt;
8481 }
8482 else
8483 (*pa)->determine_type_no_context();
8484 }
8485 }
8486 }
8487
8488 // Called when determining types for a Call_expression. Return true
8489 // if we should go ahead, false if they have already been determined.
8490
8491 bool
8492 Call_expression::determining_types()
8493 {
8494 if (this->types_are_determined_)
8495 return false;
8496 else
8497 {
8498 this->types_are_determined_ = true;
8499 return true;
8500 }
8501 }
8502
8503 // Check types for parameter I.
8504
8505 bool
8506 Call_expression::check_argument_type(int i, const Type* parameter_type,
8507 const Type* argument_type,
8508 source_location argument_location,
8509 bool issued_error)
8510 {
8511 std::string reason;
8512 if (!Type::are_assignable(parameter_type, argument_type, &reason))
8513 {
8514 if (!issued_error)
8515 {
8516 if (reason.empty())
8517 error_at(argument_location, "argument %d has incompatible type", i);
8518 else
8519 error_at(argument_location,
8520 "argument %d has incompatible type (%s)",
8521 i, reason.c_str());
8522 }
8523 this->set_is_error();
8524 return false;
8525 }
8526 return true;
8527 }
8528
8529 // Check types.
8530
8531 void
8532 Call_expression::do_check_types(Gogo*)
8533 {
8534 Function_type* fntype = this->get_function_type();
8535 if (fntype == NULL)
8536 {
8537 if (!this->fn_->type()->is_error_type())
8538 this->report_error(_("expected function"));
8539 return;
8540 }
8541
8542 if (fntype->is_method())
8543 {
8544 // We don't support pointers to methods, so the function has to
8545 // be a bound method expression.
8546 Bound_method_expression* bme = this->fn_->bound_method_expression();
8547 if (bme == NULL)
8548 {
8549 this->report_error(_("method call without object"));
8550 return;
8551 }
8552 Type* first_arg_type = bme->first_argument()->type();
8553 if (first_arg_type->points_to() == NULL)
8554 {
8555 // When passing a value, we need to check that we are
8556 // permitted to copy it.
8557 std::string reason;
8558 if (!Type::are_assignable(fntype->receiver()->type(),
8559 first_arg_type, &reason))
8560 {
8561 if (reason.empty())
8562 this->report_error(_("incompatible type for receiver"));
8563 else
8564 {
8565 error_at(this->location(),
8566 "incompatible type for receiver (%s)",
8567 reason.c_str());
8568 this->set_is_error();
8569 }
8570 }
8571 }
8572 }
8573
8574 // Note that varargs was handled by the lower_varargs() method, so
8575 // we don't have to worry about it here.
8576
8577 const Typed_identifier_list* parameters = fntype->parameters();
8578 if (this->args_ == NULL)
8579 {
8580 if (parameters != NULL && !parameters->empty())
8581 this->report_error(_("not enough arguments"));
8582 }
8583 else if (parameters == NULL)
8584 this->report_error(_("too many arguments"));
8585 else
8586 {
8587 int i = 0;
8588 Typed_identifier_list::const_iterator pt = parameters->begin();
8589 for (Expression_list::const_iterator pa = this->args_->begin();
8590 pa != this->args_->end();
8591 ++pa, ++pt, ++i)
8592 {
8593 if (pt == parameters->end())
8594 {
8595 this->report_error(_("too many arguments"));
8596 return;
8597 }
8598 this->check_argument_type(i + 1, pt->type(), (*pa)->type(),
8599 (*pa)->location(), false);
8600 }
8601 if (pt != parameters->end())
8602 this->report_error(_("not enough arguments"));
8603 }
8604 }
8605
8606 // Return whether we have to use a temporary variable to ensure that
8607 // we evaluate this call expression in order. If the call returns no
8608 // results then it will inevitably be executed last. If the call
8609 // returns more than one result then it will be used with Call_result
8610 // expressions. So we only have to use a temporary variable if the
8611 // call returns exactly one result.
8612
8613 bool
8614 Call_expression::do_must_eval_in_order() const
8615 {
8616 return this->result_count() == 1;
8617 }
8618
8619 // Get the function and the first argument to use when calling a bound
8620 // method.
8621
8622 tree
8623 Call_expression::bound_method_function(Translate_context* context,
8624 Bound_method_expression* bound_method,
8625 tree* first_arg_ptr)
8626 {
8627 Expression* first_argument = bound_method->first_argument();
8628 tree first_arg = first_argument->get_tree(context);
8629 if (first_arg == error_mark_node)
8630 return error_mark_node;
8631
8632 // We always pass a pointer to the first argument when calling a
8633 // method.
8634 if (first_argument->type()->points_to() == NULL)
8635 {
8636 tree pointer_to_arg_type = build_pointer_type(TREE_TYPE(first_arg));
8637 if (TREE_ADDRESSABLE(TREE_TYPE(first_arg))
8638 || DECL_P(first_arg)
8639 || TREE_CODE(first_arg) == INDIRECT_REF
8640 || TREE_CODE(first_arg) == COMPONENT_REF)
8641 {
8642 first_arg = build_fold_addr_expr(first_arg);
8643 if (DECL_P(first_arg))
8644 TREE_ADDRESSABLE(first_arg) = 1;
8645 }
8646 else
8647 {
8648 tree tmp = create_tmp_var(TREE_TYPE(first_arg),
8649 get_name(first_arg));
8650 DECL_IGNORED_P(tmp) = 0;
8651 DECL_INITIAL(tmp) = first_arg;
8652 first_arg = build2(COMPOUND_EXPR, pointer_to_arg_type,
8653 build1(DECL_EXPR, void_type_node, tmp),
8654 build_fold_addr_expr(tmp));
8655 TREE_ADDRESSABLE(tmp) = 1;
8656 }
8657 if (first_arg == error_mark_node)
8658 return error_mark_node;
8659 }
8660
8661 Type* fatype = bound_method->first_argument_type();
8662 if (fatype != NULL)
8663 {
8664 if (fatype->points_to() == NULL)
8665 fatype = Type::make_pointer_type(fatype);
8666 first_arg = fold_convert(fatype->get_tree(context->gogo()), first_arg);
8667 if (first_arg == error_mark_node
8668 || TREE_TYPE(first_arg) == error_mark_node)
8669 return error_mark_node;
8670 }
8671
8672 *first_arg_ptr = first_arg;
8673
8674 return bound_method->method()->get_tree(context);
8675 }
8676
8677 // Get the function and the first argument to use when calling an
8678 // interface method.
8679
8680 tree
8681 Call_expression::interface_method_function(
8682 Translate_context* context,
8683 Interface_field_reference_expression* interface_method,
8684 tree* first_arg_ptr)
8685 {
8686 tree expr = interface_method->expr()->get_tree(context);
8687 if (expr == error_mark_node)
8688 return error_mark_node;
8689 expr = save_expr(expr);
8690 tree first_arg = interface_method->get_underlying_object_tree(context, expr);
8691 if (first_arg == error_mark_node)
8692 return error_mark_node;
8693 *first_arg_ptr = first_arg;
8694 return interface_method->get_function_tree(context, expr);
8695 }
8696
8697 // Build the call expression.
8698
8699 tree
8700 Call_expression::do_get_tree(Translate_context* context)
8701 {
8702 if (this->tree_ != NULL_TREE)
8703 return this->tree_;
8704
8705 Function_type* fntype = this->get_function_type();
8706 if (fntype == NULL)
8707 return error_mark_node;
8708
8709 if (this->fn_->is_error_expression())
8710 return error_mark_node;
8711
8712 Gogo* gogo = context->gogo();
8713 source_location location = this->location();
8714
8715 Func_expression* func = this->fn_->func_expression();
8716 Bound_method_expression* bound_method = this->fn_->bound_method_expression();
8717 Interface_field_reference_expression* interface_method =
8718 this->fn_->interface_field_reference_expression();
8719 const bool has_closure = func != NULL && func->closure() != NULL;
8720 const bool is_method = bound_method != NULL || interface_method != NULL;
8721 gcc_assert(!fntype->is_method() || is_method);
8722
8723 int nargs;
8724 tree* args;
8725 if (this->args_ == NULL || this->args_->empty())
8726 {
8727 nargs = is_method ? 1 : 0;
8728 args = nargs == 0 ? NULL : new tree[nargs];
8729 }
8730 else
8731 {
8732 const Typed_identifier_list* params = fntype->parameters();
8733 gcc_assert(params != NULL);
8734
8735 nargs = this->args_->size();
8736 int i = is_method ? 1 : 0;
8737 nargs += i;
8738 args = new tree[nargs];
8739
8740 Typed_identifier_list::const_iterator pp = params->begin();
8741 Expression_list::const_iterator pe;
8742 for (pe = this->args_->begin();
8743 pe != this->args_->end();
8744 ++pe, ++pp, ++i)
8745 {
8746 gcc_assert(pp != params->end());
8747 tree arg_val = (*pe)->get_tree(context);
8748 args[i] = Expression::convert_for_assignment(context,
8749 pp->type(),
8750 (*pe)->type(),
8751 arg_val,
8752 location);
8753 if (args[i] == error_mark_node)
8754 {
8755 delete[] args;
8756 return error_mark_node;
8757 }
8758 }
8759 gcc_assert(pp == params->end());
8760 gcc_assert(i == nargs);
8761 }
8762
8763 tree rettype = TREE_TYPE(TREE_TYPE(fntype->get_tree(gogo)));
8764 if (rettype == error_mark_node)
8765 {
8766 delete[] args;
8767 return error_mark_node;
8768 }
8769
8770 tree fn;
8771 if (has_closure)
8772 fn = func->get_tree_without_closure(gogo);
8773 else if (!is_method)
8774 fn = this->fn_->get_tree(context);
8775 else if (bound_method != NULL)
8776 fn = this->bound_method_function(context, bound_method, &args[0]);
8777 else if (interface_method != NULL)
8778 fn = this->interface_method_function(context, interface_method, &args[0]);
8779 else
8780 gcc_unreachable();
8781
8782 if (fn == error_mark_node || TREE_TYPE(fn) == error_mark_node)
8783 {
8784 delete[] args;
8785 return error_mark_node;
8786 }
8787
8788 tree fndecl = fn;
8789 if (TREE_CODE(fndecl) == ADDR_EXPR)
8790 fndecl = TREE_OPERAND(fndecl, 0);
8791
8792 // Add a type cast in case the type of the function is a recursive
8793 // type which refers to itself.
8794 if (!DECL_P(fndecl) || !DECL_IS_BUILTIN(fndecl))
8795 {
8796 tree fnt = fntype->get_tree(gogo);
8797 if (fnt == error_mark_node)
8798 return error_mark_node;
8799 fn = fold_convert_loc(location, fnt, fn);
8800 }
8801
8802 // This is to support builtin math functions when using 80387 math.
8803 tree excess_type = NULL_TREE;
8804 if (DECL_P(fndecl)
8805 && DECL_IS_BUILTIN(fndecl)
8806 && DECL_BUILT_IN_CLASS(fndecl) == BUILT_IN_NORMAL
8807 && nargs > 0
8808 && ((SCALAR_FLOAT_TYPE_P(rettype)
8809 && SCALAR_FLOAT_TYPE_P(TREE_TYPE(args[0])))
8810 || (COMPLEX_FLOAT_TYPE_P(rettype)
8811 && COMPLEX_FLOAT_TYPE_P(TREE_TYPE(args[0])))))
8812 {
8813 excess_type = excess_precision_type(TREE_TYPE(args[0]));
8814 if (excess_type != NULL_TREE)
8815 {
8816 tree excess_fndecl = mathfn_built_in(excess_type,
8817 DECL_FUNCTION_CODE(fndecl));
8818 if (excess_fndecl == NULL_TREE)
8819 excess_type = NULL_TREE;
8820 else
8821 {
8822 fn = build_fold_addr_expr_loc(location, excess_fndecl);
8823 for (int i = 0; i < nargs; ++i)
8824 args[i] = ::convert(excess_type, args[i]);
8825 }
8826 }
8827 }
8828
8829 tree ret = build_call_array(excess_type != NULL_TREE ? excess_type : rettype,
8830 fn, nargs, args);
8831 delete[] args;
8832
8833 SET_EXPR_LOCATION(ret, location);
8834
8835 if (has_closure)
8836 {
8837 tree closure_tree = func->closure()->get_tree(context);
8838 if (closure_tree != error_mark_node)
8839 CALL_EXPR_STATIC_CHAIN(ret) = closure_tree;
8840 }
8841
8842 // If this is a recursive function type which returns itself, as in
8843 // type F func() F
8844 // we have used ptr_type_node for the return type. Add a cast here
8845 // to the correct type.
8846 if (TREE_TYPE(ret) == ptr_type_node)
8847 {
8848 tree t = this->type()->base()->get_tree(gogo);
8849 ret = fold_convert_loc(location, t, ret);
8850 }
8851
8852 if (excess_type != NULL_TREE)
8853 {
8854 // Calling convert here can undo our excess precision change.
8855 // That may or may not be a bug in convert_to_real.
8856 ret = build1(NOP_EXPR, rettype, ret);
8857 }
8858
8859 // If there is more than one result, we will refer to the call
8860 // multiple times.
8861 if (fntype->results() != NULL && fntype->results()->size() > 1)
8862 ret = save_expr(ret);
8863
8864 this->tree_ = ret;
8865
8866 return ret;
8867 }
8868
8869 // Make a call expression.
8870
8871 Call_expression*
8872 Expression::make_call(Expression* fn, Expression_list* args, bool is_varargs,
8873 source_location location)
8874 {
8875 return new Call_expression(fn, args, is_varargs, location);
8876 }
8877
8878 // A single result from a call which returns multiple results.
8879
8880 class Call_result_expression : public Expression
8881 {
8882 public:
8883 Call_result_expression(Call_expression* call, unsigned int index)
8884 : Expression(EXPRESSION_CALL_RESULT, call->location()),
8885 call_(call), index_(index)
8886 { }
8887
8888 protected:
8889 int
8890 do_traverse(Traverse*);
8891
8892 Type*
8893 do_type();
8894
8895 void
8896 do_determine_type(const Type_context*);
8897
8898 void
8899 do_check_types(Gogo*);
8900
8901 Expression*
8902 do_copy()
8903 {
8904 return new Call_result_expression(this->call_->call_expression(),
8905 this->index_);
8906 }
8907
8908 bool
8909 do_must_eval_in_order() const
8910 { return true; }
8911
8912 tree
8913 do_get_tree(Translate_context*);
8914
8915 private:
8916 // The underlying call expression.
8917 Expression* call_;
8918 // Which result we want.
8919 unsigned int index_;
8920 };
8921
8922 // Traverse a call result.
8923
8924 int
8925 Call_result_expression::do_traverse(Traverse* traverse)
8926 {
8927 if (traverse->remember_expression(this->call_))
8928 {
8929 // We have already traversed the call expression.
8930 return TRAVERSE_CONTINUE;
8931 }
8932 return Expression::traverse(&this->call_, traverse);
8933 }
8934
8935 // Get the type.
8936
8937 Type*
8938 Call_result_expression::do_type()
8939 {
8940 if (this->classification() == EXPRESSION_ERROR)
8941 return Type::make_error_type();
8942
8943 // THIS->CALL_ can be replaced with a temporary reference due to
8944 // Call_expression::do_must_eval_in_order when there is an error.
8945 Call_expression* ce = this->call_->call_expression();
8946 if (ce == NULL)
8947 {
8948 this->set_is_error();
8949 return Type::make_error_type();
8950 }
8951 Function_type* fntype = ce->get_function_type();
8952 if (fntype == NULL)
8953 {
8954 this->set_is_error();
8955 return Type::make_error_type();
8956 }
8957 const Typed_identifier_list* results = fntype->results();
8958 if (results == NULL)
8959 {
8960 this->report_error(_("number of results does not match "
8961 "number of values"));
8962 return Type::make_error_type();
8963 }
8964 Typed_identifier_list::const_iterator pr = results->begin();
8965 for (unsigned int i = 0; i < this->index_; ++i)
8966 {
8967 if (pr == results->end())
8968 break;
8969 ++pr;
8970 }
8971 if (pr == results->end())
8972 {
8973 this->report_error(_("number of results does not match "
8974 "number of values"));
8975 return Type::make_error_type();
8976 }
8977 return pr->type();
8978 }
8979
8980 // Check the type. Just make sure that we trigger the warning in
8981 // do_type.
8982
8983 void
8984 Call_result_expression::do_check_types(Gogo*)
8985 {
8986 this->type();
8987 }
8988
8989 // Determine the type. We have nothing to do here, but the 0 result
8990 // needs to pass down to the caller.
8991
8992 void
8993 Call_result_expression::do_determine_type(const Type_context*)
8994 {
8995 this->call_->determine_type_no_context();
8996 }
8997
8998 // Return the tree.
8999
9000 tree
9001 Call_result_expression::do_get_tree(Translate_context* context)
9002 {
9003 tree call_tree = this->call_->get_tree(context);
9004 if (call_tree == error_mark_node)
9005 return error_mark_node;
9006 if (TREE_CODE(TREE_TYPE(call_tree)) != RECORD_TYPE)
9007 {
9008 gcc_assert(saw_errors());
9009 return error_mark_node;
9010 }
9011 tree field = TYPE_FIELDS(TREE_TYPE(call_tree));
9012 for (unsigned int i = 0; i < this->index_; ++i)
9013 {
9014 gcc_assert(field != NULL_TREE);
9015 field = DECL_CHAIN(field);
9016 }
9017 gcc_assert(field != NULL_TREE);
9018 return build3(COMPONENT_REF, TREE_TYPE(field), call_tree, field, NULL_TREE);
9019 }
9020
9021 // Make a reference to a single result of a call which returns
9022 // multiple results.
9023
9024 Expression*
9025 Expression::make_call_result(Call_expression* call, unsigned int index)
9026 {
9027 return new Call_result_expression(call, index);
9028 }
9029
9030 // Class Index_expression.
9031
9032 // Traversal.
9033
9034 int
9035 Index_expression::do_traverse(Traverse* traverse)
9036 {
9037 if (Expression::traverse(&this->left_, traverse) == TRAVERSE_EXIT
9038 || Expression::traverse(&this->start_, traverse) == TRAVERSE_EXIT
9039 || (this->end_ != NULL
9040 && Expression::traverse(&this->end_, traverse) == TRAVERSE_EXIT))
9041 return TRAVERSE_EXIT;
9042 return TRAVERSE_CONTINUE;
9043 }
9044
9045 // Lower an index expression. This converts the generic index
9046 // expression into an array index, a string index, or a map index.
9047
9048 Expression*
9049 Index_expression::do_lower(Gogo*, Named_object*, int)
9050 {
9051 source_location location = this->location();
9052 Expression* left = this->left_;
9053 Expression* start = this->start_;
9054 Expression* end = this->end_;
9055
9056 Type* type = left->type();
9057 if (type->is_error_type())
9058 return Expression::make_error(location);
9059 else if (left->is_type_expression())
9060 {
9061 error_at(location, "attempt to index type expression");
9062 return Expression::make_error(location);
9063 }
9064 else if (type->array_type() != NULL)
9065 return Expression::make_array_index(left, start, end, location);
9066 else if (type->points_to() != NULL
9067 && type->points_to()->array_type() != NULL
9068 && !type->points_to()->is_open_array_type())
9069 {
9070 Expression* deref = Expression::make_unary(OPERATOR_MULT, left,
9071 location);
9072 return Expression::make_array_index(deref, start, end, location);
9073 }
9074 else if (type->is_string_type())
9075 return Expression::make_string_index(left, start, end, location);
9076 else if (type->map_type() != NULL)
9077 {
9078 if (end != NULL)
9079 {
9080 error_at(location, "invalid slice of map");
9081 return Expression::make_error(location);
9082 }
9083 Map_index_expression* ret= Expression::make_map_index(left, start,
9084 location);
9085 if (this->is_lvalue_)
9086 ret->set_is_lvalue();
9087 return ret;
9088 }
9089 else
9090 {
9091 error_at(location,
9092 "attempt to index object which is not array, string, or map");
9093 return Expression::make_error(location);
9094 }
9095 }
9096
9097 // Make an index expression.
9098
9099 Expression*
9100 Expression::make_index(Expression* left, Expression* start, Expression* end,
9101 source_location location)
9102 {
9103 return new Index_expression(left, start, end, location);
9104 }
9105
9106 // An array index. This is used for both indexing and slicing.
9107
9108 class Array_index_expression : public Expression
9109 {
9110 public:
9111 Array_index_expression(Expression* array, Expression* start,
9112 Expression* end, source_location location)
9113 : Expression(EXPRESSION_ARRAY_INDEX, location),
9114 array_(array), start_(start), end_(end), type_(NULL)
9115 { }
9116
9117 protected:
9118 int
9119 do_traverse(Traverse*);
9120
9121 Type*
9122 do_type();
9123
9124 void
9125 do_determine_type(const Type_context*);
9126
9127 void
9128 do_check_types(Gogo*);
9129
9130 Expression*
9131 do_copy()
9132 {
9133 return Expression::make_array_index(this->array_->copy(),
9134 this->start_->copy(),
9135 (this->end_ == NULL
9136 ? NULL
9137 : this->end_->copy()),
9138 this->location());
9139 }
9140
9141 bool
9142 do_is_addressable() const;
9143
9144 void
9145 do_address_taken(bool escapes)
9146 { this->array_->address_taken(escapes); }
9147
9148 tree
9149 do_get_tree(Translate_context*);
9150
9151 private:
9152 // The array we are getting a value from.
9153 Expression* array_;
9154 // The start or only index.
9155 Expression* start_;
9156 // The end index of a slice. This may be NULL for a simple array
9157 // index, or it may be a nil expression for the length of the array.
9158 Expression* end_;
9159 // The type of the expression.
9160 Type* type_;
9161 };
9162
9163 // Array index traversal.
9164
9165 int
9166 Array_index_expression::do_traverse(Traverse* traverse)
9167 {
9168 if (Expression::traverse(&this->array_, traverse) == TRAVERSE_EXIT)
9169 return TRAVERSE_EXIT;
9170 if (Expression::traverse(&this->start_, traverse) == TRAVERSE_EXIT)
9171 return TRAVERSE_EXIT;
9172 if (this->end_ != NULL)
9173 {
9174 if (Expression::traverse(&this->end_, traverse) == TRAVERSE_EXIT)
9175 return TRAVERSE_EXIT;
9176 }
9177 return TRAVERSE_CONTINUE;
9178 }
9179
9180 // Return the type of an array index.
9181
9182 Type*
9183 Array_index_expression::do_type()
9184 {
9185 if (this->type_ == NULL)
9186 {
9187 Array_type* type = this->array_->type()->array_type();
9188 if (type == NULL)
9189 this->type_ = Type::make_error_type();
9190 else if (this->end_ == NULL)
9191 this->type_ = type->element_type();
9192 else if (type->is_open_array_type())
9193 {
9194 // A slice of a slice has the same type as the original
9195 // slice.
9196 this->type_ = this->array_->type()->deref();
9197 }
9198 else
9199 {
9200 // A slice of an array is a slice.
9201 this->type_ = Type::make_array_type(type->element_type(), NULL);
9202 }
9203 }
9204 return this->type_;
9205 }
9206
9207 // Set the type of an array index.
9208
9209 void
9210 Array_index_expression::do_determine_type(const Type_context*)
9211 {
9212 this->array_->determine_type_no_context();
9213 this->start_->determine_type_no_context();
9214 if (this->end_ != NULL)
9215 this->end_->determine_type_no_context();
9216 }
9217
9218 // Check types of an array index.
9219
9220 void
9221 Array_index_expression::do_check_types(Gogo*)
9222 {
9223 if (this->start_->type()->integer_type() == NULL)
9224 this->report_error(_("index must be integer"));
9225 if (this->end_ != NULL
9226 && this->end_->type()->integer_type() == NULL
9227 && !this->end_->is_nil_expression())
9228 this->report_error(_("slice end must be integer"));
9229
9230 Array_type* array_type = this->array_->type()->array_type();
9231 if (array_type == NULL)
9232 {
9233 gcc_assert(this->array_->type()->is_error_type());
9234 return;
9235 }
9236
9237 unsigned int int_bits =
9238 Type::lookup_integer_type("int")->integer_type()->bits();
9239
9240 Type* dummy;
9241 mpz_t lval;
9242 mpz_init(lval);
9243 bool lval_valid = (array_type->length() != NULL
9244 && array_type->length()->integer_constant_value(true,
9245 lval,
9246 &dummy));
9247 mpz_t ival;
9248 mpz_init(ival);
9249 if (this->start_->integer_constant_value(true, ival, &dummy))
9250 {
9251 if (mpz_sgn(ival) < 0
9252 || mpz_sizeinbase(ival, 2) >= int_bits
9253 || (lval_valid
9254 && (this->end_ == NULL
9255 ? mpz_cmp(ival, lval) >= 0
9256 : mpz_cmp(ival, lval) > 0)))
9257 {
9258 error_at(this->start_->location(), "array index out of bounds");
9259 this->set_is_error();
9260 }
9261 }
9262 if (this->end_ != NULL && !this->end_->is_nil_expression())
9263 {
9264 if (this->end_->integer_constant_value(true, ival, &dummy))
9265 {
9266 if (mpz_sgn(ival) < 0
9267 || mpz_sizeinbase(ival, 2) >= int_bits
9268 || (lval_valid && mpz_cmp(ival, lval) > 0))
9269 {
9270 error_at(this->end_->location(), "array index out of bounds");
9271 this->set_is_error();
9272 }
9273 }
9274 }
9275 mpz_clear(ival);
9276 mpz_clear(lval);
9277
9278 // A slice of an array requires an addressable array. A slice of a
9279 // slice is always possible.
9280 if (this->end_ != NULL
9281 && !array_type->is_open_array_type()
9282 && !this->array_->is_addressable())
9283 this->report_error(_("array is not addressable"));
9284 }
9285
9286 // Return whether this expression is addressable.
9287
9288 bool
9289 Array_index_expression::do_is_addressable() const
9290 {
9291 // A slice expression is not addressable.
9292 if (this->end_ != NULL)
9293 return false;
9294
9295 // An index into a slice is addressable.
9296 if (this->array_->type()->is_open_array_type())
9297 return true;
9298
9299 // An index into an array is addressable if the array is
9300 // addressable.
9301 return this->array_->is_addressable();
9302 }
9303
9304 // Get a tree for an array index.
9305
9306 tree
9307 Array_index_expression::do_get_tree(Translate_context* context)
9308 {
9309 Gogo* gogo = context->gogo();
9310 source_location loc = this->location();
9311
9312 Array_type* array_type = this->array_->type()->array_type();
9313 if (array_type == NULL)
9314 {
9315 gcc_assert(this->array_->type()->is_error_type());
9316 return error_mark_node;
9317 }
9318
9319 tree type_tree = array_type->get_tree(gogo);
9320 if (type_tree == error_mark_node)
9321 return error_mark_node;
9322
9323 tree array_tree = this->array_->get_tree(context);
9324 if (array_tree == error_mark_node)
9325 return error_mark_node;
9326
9327 if (array_type->length() == NULL && !DECL_P(array_tree))
9328 array_tree = save_expr(array_tree);
9329 tree length_tree = array_type->length_tree(gogo, array_tree);
9330 if (length_tree == error_mark_node)
9331 return error_mark_node;
9332 length_tree = save_expr(length_tree);
9333 tree length_type = TREE_TYPE(length_tree);
9334
9335 tree bad_index = boolean_false_node;
9336
9337 tree start_tree = this->start_->get_tree(context);
9338 if (start_tree == error_mark_node)
9339 return error_mark_node;
9340 if (!DECL_P(start_tree))
9341 start_tree = save_expr(start_tree);
9342 if (!INTEGRAL_TYPE_P(TREE_TYPE(start_tree)))
9343 start_tree = convert_to_integer(length_type, start_tree);
9344
9345 bad_index = Expression::check_bounds(start_tree, length_type, bad_index,
9346 loc);
9347
9348 start_tree = fold_convert_loc(loc, length_type, start_tree);
9349 bad_index = fold_build2_loc(loc, TRUTH_OR_EXPR, boolean_type_node, bad_index,
9350 fold_build2_loc(loc,
9351 (this->end_ == NULL
9352 ? GE_EXPR
9353 : GT_EXPR),
9354 boolean_type_node, start_tree,
9355 length_tree));
9356
9357 int code = (array_type->length() != NULL
9358 ? (this->end_ == NULL
9359 ? RUNTIME_ERROR_ARRAY_INDEX_OUT_OF_BOUNDS
9360 : RUNTIME_ERROR_ARRAY_SLICE_OUT_OF_BOUNDS)
9361 : (this->end_ == NULL
9362 ? RUNTIME_ERROR_SLICE_INDEX_OUT_OF_BOUNDS
9363 : RUNTIME_ERROR_SLICE_SLICE_OUT_OF_BOUNDS));
9364 tree crash = Gogo::runtime_error(code, loc);
9365
9366 if (this->end_ == NULL)
9367 {
9368 // Simple array indexing. This has to return an l-value, so
9369 // wrap the index check into START_TREE.
9370 start_tree = build2(COMPOUND_EXPR, TREE_TYPE(start_tree),
9371 build3(COND_EXPR, void_type_node,
9372 bad_index, crash, NULL_TREE),
9373 start_tree);
9374 start_tree = fold_convert_loc(loc, sizetype, start_tree);
9375
9376 if (array_type->length() != NULL)
9377 {
9378 // Fixed array.
9379 return build4(ARRAY_REF, TREE_TYPE(type_tree), array_tree,
9380 start_tree, NULL_TREE, NULL_TREE);
9381 }
9382 else
9383 {
9384 // Open array.
9385 tree values = array_type->value_pointer_tree(gogo, array_tree);
9386 tree element_type_tree = array_type->element_type()->get_tree(gogo);
9387 if (element_type_tree == error_mark_node)
9388 return error_mark_node;
9389 tree element_size = TYPE_SIZE_UNIT(element_type_tree);
9390 tree offset = fold_build2_loc(loc, MULT_EXPR, sizetype,
9391 start_tree, element_size);
9392 tree ptr = fold_build2_loc(loc, POINTER_PLUS_EXPR,
9393 TREE_TYPE(values), values, offset);
9394 return build_fold_indirect_ref(ptr);
9395 }
9396 }
9397
9398 // Array slice.
9399
9400 tree capacity_tree = array_type->capacity_tree(gogo, array_tree);
9401 if (capacity_tree == error_mark_node)
9402 return error_mark_node;
9403 capacity_tree = fold_convert_loc(loc, length_type, capacity_tree);
9404
9405 tree end_tree;
9406 if (this->end_->is_nil_expression())
9407 end_tree = length_tree;
9408 else
9409 {
9410 end_tree = this->end_->get_tree(context);
9411 if (end_tree == error_mark_node)
9412 return error_mark_node;
9413 if (!DECL_P(end_tree))
9414 end_tree = save_expr(end_tree);
9415 if (!INTEGRAL_TYPE_P(TREE_TYPE(end_tree)))
9416 end_tree = convert_to_integer(length_type, end_tree);
9417
9418 bad_index = Expression::check_bounds(end_tree, length_type, bad_index,
9419 loc);
9420
9421 end_tree = fold_convert_loc(loc, length_type, end_tree);
9422
9423 capacity_tree = save_expr(capacity_tree);
9424 tree bad_end = fold_build2_loc(loc, TRUTH_OR_EXPR, boolean_type_node,
9425 fold_build2_loc(loc, LT_EXPR,
9426 boolean_type_node,
9427 end_tree, start_tree),
9428 fold_build2_loc(loc, GT_EXPR,
9429 boolean_type_node,
9430 end_tree, capacity_tree));
9431 bad_index = fold_build2_loc(loc, TRUTH_OR_EXPR, boolean_type_node,
9432 bad_index, bad_end);
9433 }
9434
9435 tree element_type_tree = array_type->element_type()->get_tree(gogo);
9436 if (element_type_tree == error_mark_node)
9437 return error_mark_node;
9438 tree element_size = TYPE_SIZE_UNIT(element_type_tree);
9439
9440 tree offset = fold_build2_loc(loc, MULT_EXPR, sizetype,
9441 fold_convert_loc(loc, sizetype, start_tree),
9442 element_size);
9443
9444 tree value_pointer = array_type->value_pointer_tree(gogo, array_tree);
9445 if (value_pointer == error_mark_node)
9446 return error_mark_node;
9447
9448 value_pointer = fold_build2_loc(loc, POINTER_PLUS_EXPR,
9449 TREE_TYPE(value_pointer),
9450 value_pointer, offset);
9451
9452 tree result_length_tree = fold_build2_loc(loc, MINUS_EXPR, length_type,
9453 end_tree, start_tree);
9454
9455 tree result_capacity_tree = fold_build2_loc(loc, MINUS_EXPR, length_type,
9456 capacity_tree, start_tree);
9457
9458 tree struct_tree = this->type()->get_tree(gogo);
9459 gcc_assert(TREE_CODE(struct_tree) == RECORD_TYPE);
9460
9461 VEC(constructor_elt,gc)* init = VEC_alloc(constructor_elt, gc, 3);
9462
9463 constructor_elt* elt = VEC_quick_push(constructor_elt, init, NULL);
9464 tree field = TYPE_FIELDS(struct_tree);
9465 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)), "__values") == 0);
9466 elt->index = field;
9467 elt->value = value_pointer;
9468
9469 elt = VEC_quick_push(constructor_elt, init, NULL);
9470 field = DECL_CHAIN(field);
9471 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)), "__count") == 0);
9472 elt->index = field;
9473 elt->value = fold_convert_loc(loc, TREE_TYPE(field), result_length_tree);
9474
9475 elt = VEC_quick_push(constructor_elt, init, NULL);
9476 field = DECL_CHAIN(field);
9477 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)), "__capacity") == 0);
9478 elt->index = field;
9479 elt->value = fold_convert_loc(loc, TREE_TYPE(field), result_capacity_tree);
9480
9481 tree constructor = build_constructor(struct_tree, init);
9482
9483 if (TREE_CONSTANT(value_pointer)
9484 && TREE_CONSTANT(result_length_tree)
9485 && TREE_CONSTANT(result_capacity_tree))
9486 TREE_CONSTANT(constructor) = 1;
9487
9488 return fold_build2_loc(loc, COMPOUND_EXPR, TREE_TYPE(constructor),
9489 build3(COND_EXPR, void_type_node,
9490 bad_index, crash, NULL_TREE),
9491 constructor);
9492 }
9493
9494 // Make an array index expression. END may be NULL.
9495
9496 Expression*
9497 Expression::make_array_index(Expression* array, Expression* start,
9498 Expression* end, source_location location)
9499 {
9500 // Taking a slice of a composite literal requires moving the literal
9501 // onto the heap.
9502 if (end != NULL && array->is_composite_literal())
9503 {
9504 array = Expression::make_heap_composite(array, location);
9505 array = Expression::make_unary(OPERATOR_MULT, array, location);
9506 }
9507 return new Array_index_expression(array, start, end, location);
9508 }
9509
9510 // A string index. This is used for both indexing and slicing.
9511
9512 class String_index_expression : public Expression
9513 {
9514 public:
9515 String_index_expression(Expression* string, Expression* start,
9516 Expression* end, source_location location)
9517 : Expression(EXPRESSION_STRING_INDEX, location),
9518 string_(string), start_(start), end_(end)
9519 { }
9520
9521 protected:
9522 int
9523 do_traverse(Traverse*);
9524
9525 Type*
9526 do_type();
9527
9528 void
9529 do_determine_type(const Type_context*);
9530
9531 void
9532 do_check_types(Gogo*);
9533
9534 Expression*
9535 do_copy()
9536 {
9537 return Expression::make_string_index(this->string_->copy(),
9538 this->start_->copy(),
9539 (this->end_ == NULL
9540 ? NULL
9541 : this->end_->copy()),
9542 this->location());
9543 }
9544
9545 tree
9546 do_get_tree(Translate_context*);
9547
9548 private:
9549 // The string we are getting a value from.
9550 Expression* string_;
9551 // The start or only index.
9552 Expression* start_;
9553 // The end index of a slice. This may be NULL for a single index,
9554 // or it may be a nil expression for the length of the string.
9555 Expression* end_;
9556 };
9557
9558 // String index traversal.
9559
9560 int
9561 String_index_expression::do_traverse(Traverse* traverse)
9562 {
9563 if (Expression::traverse(&this->string_, traverse) == TRAVERSE_EXIT)
9564 return TRAVERSE_EXIT;
9565 if (Expression::traverse(&this->start_, traverse) == TRAVERSE_EXIT)
9566 return TRAVERSE_EXIT;
9567 if (this->end_ != NULL)
9568 {
9569 if (Expression::traverse(&this->end_, traverse) == TRAVERSE_EXIT)
9570 return TRAVERSE_EXIT;
9571 }
9572 return TRAVERSE_CONTINUE;
9573 }
9574
9575 // Return the type of a string index.
9576
9577 Type*
9578 String_index_expression::do_type()
9579 {
9580 if (this->end_ == NULL)
9581 return Type::lookup_integer_type("uint8");
9582 else
9583 return this->string_->type();
9584 }
9585
9586 // Determine the type of a string index.
9587
9588 void
9589 String_index_expression::do_determine_type(const Type_context*)
9590 {
9591 this->string_->determine_type_no_context();
9592 this->start_->determine_type_no_context();
9593 if (this->end_ != NULL)
9594 this->end_->determine_type_no_context();
9595 }
9596
9597 // Check types of a string index.
9598
9599 void
9600 String_index_expression::do_check_types(Gogo*)
9601 {
9602 if (this->start_->type()->integer_type() == NULL)
9603 this->report_error(_("index must be integer"));
9604 if (this->end_ != NULL
9605 && this->end_->type()->integer_type() == NULL
9606 && !this->end_->is_nil_expression())
9607 this->report_error(_("slice end must be integer"));
9608
9609 std::string sval;
9610 bool sval_valid = this->string_->string_constant_value(&sval);
9611
9612 mpz_t ival;
9613 mpz_init(ival);
9614 Type* dummy;
9615 if (this->start_->integer_constant_value(true, ival, &dummy))
9616 {
9617 if (mpz_sgn(ival) < 0
9618 || (sval_valid && mpz_cmp_ui(ival, sval.length()) >= 0))
9619 {
9620 error_at(this->start_->location(), "string index out of bounds");
9621 this->set_is_error();
9622 }
9623 }
9624 if (this->end_ != NULL && !this->end_->is_nil_expression())
9625 {
9626 if (this->end_->integer_constant_value(true, ival, &dummy))
9627 {
9628 if (mpz_sgn(ival) < 0
9629 || (sval_valid && mpz_cmp_ui(ival, sval.length()) > 0))
9630 {
9631 error_at(this->end_->location(), "string index out of bounds");
9632 this->set_is_error();
9633 }
9634 }
9635 }
9636 mpz_clear(ival);
9637 }
9638
9639 // Get a tree for a string index.
9640
9641 tree
9642 String_index_expression::do_get_tree(Translate_context* context)
9643 {
9644 source_location loc = this->location();
9645
9646 tree string_tree = this->string_->get_tree(context);
9647 if (string_tree == error_mark_node)
9648 return error_mark_node;
9649
9650 if (this->string_->type()->points_to() != NULL)
9651 string_tree = build_fold_indirect_ref(string_tree);
9652 if (!DECL_P(string_tree))
9653 string_tree = save_expr(string_tree);
9654 tree string_type = TREE_TYPE(string_tree);
9655
9656 tree length_tree = String_type::length_tree(context->gogo(), string_tree);
9657 length_tree = save_expr(length_tree);
9658 tree length_type = TREE_TYPE(length_tree);
9659
9660 tree bad_index = boolean_false_node;
9661
9662 tree start_tree = this->start_->get_tree(context);
9663 if (start_tree == error_mark_node)
9664 return error_mark_node;
9665 if (!DECL_P(start_tree))
9666 start_tree = save_expr(start_tree);
9667 if (!INTEGRAL_TYPE_P(TREE_TYPE(start_tree)))
9668 start_tree = convert_to_integer(length_type, start_tree);
9669
9670 bad_index = Expression::check_bounds(start_tree, length_type, bad_index,
9671 loc);
9672
9673 start_tree = fold_convert_loc(loc, length_type, start_tree);
9674
9675 int code = (this->end_ == NULL
9676 ? RUNTIME_ERROR_STRING_INDEX_OUT_OF_BOUNDS
9677 : RUNTIME_ERROR_STRING_SLICE_OUT_OF_BOUNDS);
9678 tree crash = Gogo::runtime_error(code, loc);
9679
9680 if (this->end_ == NULL)
9681 {
9682 bad_index = fold_build2_loc(loc, TRUTH_OR_EXPR, boolean_type_node,
9683 bad_index,
9684 fold_build2_loc(loc, GE_EXPR,
9685 boolean_type_node,
9686 start_tree, length_tree));
9687
9688 tree bytes_tree = String_type::bytes_tree(context->gogo(), string_tree);
9689 tree ptr = fold_build2_loc(loc, POINTER_PLUS_EXPR, TREE_TYPE(bytes_tree),
9690 bytes_tree,
9691 fold_convert_loc(loc, sizetype, start_tree));
9692 tree index = build_fold_indirect_ref_loc(loc, ptr);
9693
9694 return build2(COMPOUND_EXPR, TREE_TYPE(index),
9695 build3(COND_EXPR, void_type_node,
9696 bad_index, crash, NULL_TREE),
9697 index);
9698 }
9699 else
9700 {
9701 tree end_tree;
9702 if (this->end_->is_nil_expression())
9703 end_tree = build_int_cst(length_type, -1);
9704 else
9705 {
9706 end_tree = this->end_->get_tree(context);
9707 if (end_tree == error_mark_node)
9708 return error_mark_node;
9709 if (!DECL_P(end_tree))
9710 end_tree = save_expr(end_tree);
9711 if (!INTEGRAL_TYPE_P(TREE_TYPE(end_tree)))
9712 end_tree = convert_to_integer(length_type, end_tree);
9713
9714 bad_index = Expression::check_bounds(end_tree, length_type,
9715 bad_index, loc);
9716
9717 end_tree = fold_convert_loc(loc, length_type, end_tree);
9718 }
9719
9720 static tree strslice_fndecl;
9721 tree ret = Gogo::call_builtin(&strslice_fndecl,
9722 loc,
9723 "__go_string_slice",
9724 3,
9725 string_type,
9726 string_type,
9727 string_tree,
9728 length_type,
9729 start_tree,
9730 length_type,
9731 end_tree);
9732 if (ret == error_mark_node)
9733 return error_mark_node;
9734 // This will panic if the bounds are out of range for the
9735 // string.
9736 TREE_NOTHROW(strslice_fndecl) = 0;
9737
9738 if (bad_index == boolean_false_node)
9739 return ret;
9740 else
9741 return build2(COMPOUND_EXPR, TREE_TYPE(ret),
9742 build3(COND_EXPR, void_type_node,
9743 bad_index, crash, NULL_TREE),
9744 ret);
9745 }
9746 }
9747
9748 // Make a string index expression. END may be NULL.
9749
9750 Expression*
9751 Expression::make_string_index(Expression* string, Expression* start,
9752 Expression* end, source_location location)
9753 {
9754 return new String_index_expression(string, start, end, location);
9755 }
9756
9757 // Class Map_index.
9758
9759 // Get the type of the map.
9760
9761 Map_type*
9762 Map_index_expression::get_map_type() const
9763 {
9764 Map_type* mt = this->map_->type()->deref()->map_type();
9765 if (mt == NULL)
9766 gcc_assert(saw_errors());
9767 return mt;
9768 }
9769
9770 // Map index traversal.
9771
9772 int
9773 Map_index_expression::do_traverse(Traverse* traverse)
9774 {
9775 if (Expression::traverse(&this->map_, traverse) == TRAVERSE_EXIT)
9776 return TRAVERSE_EXIT;
9777 return Expression::traverse(&this->index_, traverse);
9778 }
9779
9780 // Return the type of a map index.
9781
9782 Type*
9783 Map_index_expression::do_type()
9784 {
9785 Map_type* mt = this->get_map_type();
9786 if (mt == NULL)
9787 return Type::make_error_type();
9788 Type* type = mt->val_type();
9789 // If this map index is in a tuple assignment, we actually return a
9790 // pointer to the value type. Tuple_map_assignment_statement is
9791 // responsible for handling this correctly. We need to get the type
9792 // right in case this gets assigned to a temporary variable.
9793 if (this->is_in_tuple_assignment_)
9794 type = Type::make_pointer_type(type);
9795 return type;
9796 }
9797
9798 // Fix the type of a map index.
9799
9800 void
9801 Map_index_expression::do_determine_type(const Type_context*)
9802 {
9803 this->map_->determine_type_no_context();
9804 Map_type* mt = this->get_map_type();
9805 Type* key_type = mt == NULL ? NULL : mt->key_type();
9806 Type_context subcontext(key_type, false);
9807 this->index_->determine_type(&subcontext);
9808 }
9809
9810 // Check types of a map index.
9811
9812 void
9813 Map_index_expression::do_check_types(Gogo*)
9814 {
9815 std::string reason;
9816 Map_type* mt = this->get_map_type();
9817 if (mt == NULL)
9818 return;
9819 if (!Type::are_assignable(mt->key_type(), this->index_->type(), &reason))
9820 {
9821 if (reason.empty())
9822 this->report_error(_("incompatible type for map index"));
9823 else
9824 {
9825 error_at(this->location(), "incompatible type for map index (%s)",
9826 reason.c_str());
9827 this->set_is_error();
9828 }
9829 }
9830 }
9831
9832 // Get a tree for a map index.
9833
9834 tree
9835 Map_index_expression::do_get_tree(Translate_context* context)
9836 {
9837 Map_type* type = this->get_map_type();
9838 if (type == NULL)
9839 return error_mark_node;
9840
9841 tree valptr = this->get_value_pointer(context, this->is_lvalue_);
9842 if (valptr == error_mark_node)
9843 return error_mark_node;
9844 valptr = save_expr(valptr);
9845
9846 tree val_type_tree = TREE_TYPE(TREE_TYPE(valptr));
9847
9848 if (this->is_lvalue_)
9849 return build_fold_indirect_ref(valptr);
9850 else if (this->is_in_tuple_assignment_)
9851 {
9852 // Tuple_map_assignment_statement is responsible for using this
9853 // appropriately.
9854 return valptr;
9855 }
9856 else
9857 {
9858 return fold_build3(COND_EXPR, val_type_tree,
9859 fold_build2(EQ_EXPR, boolean_type_node, valptr,
9860 fold_convert(TREE_TYPE(valptr),
9861 null_pointer_node)),
9862 type->val_type()->get_init_tree(context->gogo(),
9863 false),
9864 build_fold_indirect_ref(valptr));
9865 }
9866 }
9867
9868 // Get a tree for the map index. This returns a tree which evaluates
9869 // to a pointer to a value. The pointer will be NULL if the key is
9870 // not in the map.
9871
9872 tree
9873 Map_index_expression::get_value_pointer(Translate_context* context,
9874 bool insert)
9875 {
9876 Map_type* type = this->get_map_type();
9877 if (type == NULL)
9878 return error_mark_node;
9879
9880 tree map_tree = this->map_->get_tree(context);
9881 tree index_tree = this->index_->get_tree(context);
9882 index_tree = Expression::convert_for_assignment(context, type->key_type(),
9883 this->index_->type(),
9884 index_tree,
9885 this->location());
9886 if (map_tree == error_mark_node || index_tree == error_mark_node)
9887 return error_mark_node;
9888
9889 if (this->map_->type()->points_to() != NULL)
9890 map_tree = build_fold_indirect_ref(map_tree);
9891
9892 // We need to pass in a pointer to the key, so stuff it into a
9893 // variable.
9894 tree tmp;
9895 tree make_tmp;
9896 if (current_function_decl != NULL)
9897 {
9898 tmp = create_tmp_var(TREE_TYPE(index_tree), get_name(index_tree));
9899 DECL_IGNORED_P(tmp) = 0;
9900 DECL_INITIAL(tmp) = index_tree;
9901 make_tmp = build1(DECL_EXPR, void_type_node, tmp);
9902 TREE_ADDRESSABLE(tmp) = 1;
9903 }
9904 else
9905 {
9906 tmp = build_decl(this->location(), VAR_DECL, create_tmp_var_name("M"),
9907 TREE_TYPE(index_tree));
9908 DECL_EXTERNAL(tmp) = 0;
9909 TREE_PUBLIC(tmp) = 0;
9910 TREE_STATIC(tmp) = 1;
9911 DECL_ARTIFICIAL(tmp) = 1;
9912 if (!TREE_CONSTANT(index_tree))
9913 make_tmp = fold_build2_loc(this->location(), INIT_EXPR, void_type_node,
9914 tmp, index_tree);
9915 else
9916 {
9917 TREE_READONLY(tmp) = 1;
9918 TREE_CONSTANT(tmp) = 1;
9919 DECL_INITIAL(tmp) = index_tree;
9920 make_tmp = NULL_TREE;
9921 }
9922 rest_of_decl_compilation(tmp, 1, 0);
9923 }
9924 tree tmpref = fold_convert_loc(this->location(), const_ptr_type_node,
9925 build_fold_addr_expr_loc(this->location(),
9926 tmp));
9927
9928 static tree map_index_fndecl;
9929 tree call = Gogo::call_builtin(&map_index_fndecl,
9930 this->location(),
9931 "__go_map_index",
9932 3,
9933 const_ptr_type_node,
9934 TREE_TYPE(map_tree),
9935 map_tree,
9936 const_ptr_type_node,
9937 tmpref,
9938 boolean_type_node,
9939 (insert
9940 ? boolean_true_node
9941 : boolean_false_node));
9942 if (call == error_mark_node)
9943 return error_mark_node;
9944 // This can panic on a map of interface type if the interface holds
9945 // an uncomparable or unhashable type.
9946 TREE_NOTHROW(map_index_fndecl) = 0;
9947
9948 tree val_type_tree = type->val_type()->get_tree(context->gogo());
9949 if (val_type_tree == error_mark_node)
9950 return error_mark_node;
9951 tree ptr_val_type_tree = build_pointer_type(val_type_tree);
9952
9953 tree ret = fold_convert_loc(this->location(), ptr_val_type_tree, call);
9954 if (make_tmp != NULL_TREE)
9955 ret = build2(COMPOUND_EXPR, ptr_val_type_tree, make_tmp, ret);
9956 return ret;
9957 }
9958
9959 // Make a map index expression.
9960
9961 Map_index_expression*
9962 Expression::make_map_index(Expression* map, Expression* index,
9963 source_location location)
9964 {
9965 return new Map_index_expression(map, index, location);
9966 }
9967
9968 // Class Field_reference_expression.
9969
9970 // Return the type of a field reference.
9971
9972 Type*
9973 Field_reference_expression::do_type()
9974 {
9975 Type* type = this->expr_->type();
9976 if (type->is_error_type())
9977 return type;
9978 Struct_type* struct_type = type->struct_type();
9979 gcc_assert(struct_type != NULL);
9980 return struct_type->field(this->field_index_)->type();
9981 }
9982
9983 // Check the types for a field reference.
9984
9985 void
9986 Field_reference_expression::do_check_types(Gogo*)
9987 {
9988 Type* type = this->expr_->type();
9989 if (type->is_error_type())
9990 return;
9991 Struct_type* struct_type = type->struct_type();
9992 gcc_assert(struct_type != NULL);
9993 gcc_assert(struct_type->field(this->field_index_) != NULL);
9994 }
9995
9996 // Get a tree for a field reference.
9997
9998 tree
9999 Field_reference_expression::do_get_tree(Translate_context* context)
10000 {
10001 tree struct_tree = this->expr_->get_tree(context);
10002 if (struct_tree == error_mark_node
10003 || TREE_TYPE(struct_tree) == error_mark_node)
10004 return error_mark_node;
10005 gcc_assert(TREE_CODE(TREE_TYPE(struct_tree)) == RECORD_TYPE);
10006 tree field = TYPE_FIELDS(TREE_TYPE(struct_tree));
10007 if (field == NULL_TREE)
10008 {
10009 // This can happen for a type which refers to itself indirectly
10010 // and then turns out to be erroneous.
10011 gcc_assert(saw_errors());
10012 return error_mark_node;
10013 }
10014 for (unsigned int i = this->field_index_; i > 0; --i)
10015 {
10016 field = DECL_CHAIN(field);
10017 gcc_assert(field != NULL_TREE);
10018 }
10019 if (TREE_TYPE(field) == error_mark_node)
10020 return error_mark_node;
10021 return build3(COMPONENT_REF, TREE_TYPE(field), struct_tree, field,
10022 NULL_TREE);
10023 }
10024
10025 // Make a reference to a qualified identifier in an expression.
10026
10027 Field_reference_expression*
10028 Expression::make_field_reference(Expression* expr, unsigned int field_index,
10029 source_location location)
10030 {
10031 return new Field_reference_expression(expr, field_index, location);
10032 }
10033
10034 // Class Interface_field_reference_expression.
10035
10036 // Return a tree for the pointer to the function to call.
10037
10038 tree
10039 Interface_field_reference_expression::get_function_tree(Translate_context*,
10040 tree expr)
10041 {
10042 if (this->expr_->type()->points_to() != NULL)
10043 expr = build_fold_indirect_ref(expr);
10044
10045 tree expr_type = TREE_TYPE(expr);
10046 gcc_assert(TREE_CODE(expr_type) == RECORD_TYPE);
10047
10048 tree field = TYPE_FIELDS(expr_type);
10049 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)), "__methods") == 0);
10050
10051 tree table = build3(COMPONENT_REF, TREE_TYPE(field), expr, field, NULL_TREE);
10052 gcc_assert(POINTER_TYPE_P(TREE_TYPE(table)));
10053
10054 table = build_fold_indirect_ref(table);
10055 gcc_assert(TREE_CODE(TREE_TYPE(table)) == RECORD_TYPE);
10056
10057 std::string name = Gogo::unpack_hidden_name(this->name_);
10058 for (field = DECL_CHAIN(TYPE_FIELDS(TREE_TYPE(table)));
10059 field != NULL_TREE;
10060 field = DECL_CHAIN(field))
10061 {
10062 if (name == IDENTIFIER_POINTER(DECL_NAME(field)))
10063 break;
10064 }
10065 gcc_assert(field != NULL_TREE);
10066
10067 return build3(COMPONENT_REF, TREE_TYPE(field), table, field, NULL_TREE);
10068 }
10069
10070 // Return a tree for the first argument to pass to the interface
10071 // function.
10072
10073 tree
10074 Interface_field_reference_expression::get_underlying_object_tree(
10075 Translate_context*,
10076 tree expr)
10077 {
10078 if (this->expr_->type()->points_to() != NULL)
10079 expr = build_fold_indirect_ref(expr);
10080
10081 tree expr_type = TREE_TYPE(expr);
10082 gcc_assert(TREE_CODE(expr_type) == RECORD_TYPE);
10083
10084 tree field = DECL_CHAIN(TYPE_FIELDS(expr_type));
10085 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)), "__object") == 0);
10086
10087 return build3(COMPONENT_REF, TREE_TYPE(field), expr, field, NULL_TREE);
10088 }
10089
10090 // Traversal.
10091
10092 int
10093 Interface_field_reference_expression::do_traverse(Traverse* traverse)
10094 {
10095 return Expression::traverse(&this->expr_, traverse);
10096 }
10097
10098 // Return the type of an interface field reference.
10099
10100 Type*
10101 Interface_field_reference_expression::do_type()
10102 {
10103 Type* expr_type = this->expr_->type();
10104
10105 Type* points_to = expr_type->points_to();
10106 if (points_to != NULL)
10107 expr_type = points_to;
10108
10109 Interface_type* interface_type = expr_type->interface_type();
10110 if (interface_type == NULL)
10111 return Type::make_error_type();
10112
10113 const Typed_identifier* method = interface_type->find_method(this->name_);
10114 if (method == NULL)
10115 return Type::make_error_type();
10116
10117 return method->type();
10118 }
10119
10120 // Determine types.
10121
10122 void
10123 Interface_field_reference_expression::do_determine_type(const Type_context*)
10124 {
10125 this->expr_->determine_type_no_context();
10126 }
10127
10128 // Check the types for an interface field reference.
10129
10130 void
10131 Interface_field_reference_expression::do_check_types(Gogo*)
10132 {
10133 Type* type = this->expr_->type();
10134
10135 Type* points_to = type->points_to();
10136 if (points_to != NULL)
10137 type = points_to;
10138
10139 Interface_type* interface_type = type->interface_type();
10140 if (interface_type == NULL)
10141 this->report_error(_("expected interface or pointer to interface"));
10142 else
10143 {
10144 const Typed_identifier* method =
10145 interface_type->find_method(this->name_);
10146 if (method == NULL)
10147 {
10148 error_at(this->location(), "method %qs not in interface",
10149 Gogo::message_name(this->name_).c_str());
10150 this->set_is_error();
10151 }
10152 }
10153 }
10154
10155 // Get a tree for a reference to a field in an interface. There is no
10156 // standard tree type representation for this: it's a function
10157 // attached to its first argument, like a Bound_method_expression.
10158 // The only places it may currently be used are in a Call_expression
10159 // or a Go_statement, which will take it apart directly. So this has
10160 // nothing to do at present.
10161
10162 tree
10163 Interface_field_reference_expression::do_get_tree(Translate_context*)
10164 {
10165 gcc_unreachable();
10166 }
10167
10168 // Make a reference to a field in an interface.
10169
10170 Expression*
10171 Expression::make_interface_field_reference(Expression* expr,
10172 const std::string& field,
10173 source_location location)
10174 {
10175 return new Interface_field_reference_expression(expr, field, location);
10176 }
10177
10178 // A general selector. This is a Parser_expression for LEFT.NAME. It
10179 // is lowered after we know the type of the left hand side.
10180
10181 class Selector_expression : public Parser_expression
10182 {
10183 public:
10184 Selector_expression(Expression* left, const std::string& name,
10185 source_location location)
10186 : Parser_expression(EXPRESSION_SELECTOR, location),
10187 left_(left), name_(name)
10188 { }
10189
10190 protected:
10191 int
10192 do_traverse(Traverse* traverse)
10193 { return Expression::traverse(&this->left_, traverse); }
10194
10195 Expression*
10196 do_lower(Gogo*, Named_object*, int);
10197
10198 Expression*
10199 do_copy()
10200 {
10201 return new Selector_expression(this->left_->copy(), this->name_,
10202 this->location());
10203 }
10204
10205 private:
10206 Expression*
10207 lower_method_expression(Gogo*);
10208
10209 // The expression on the left hand side.
10210 Expression* left_;
10211 // The name on the right hand side.
10212 std::string name_;
10213 };
10214
10215 // Lower a selector expression once we know the real type of the left
10216 // hand side.
10217
10218 Expression*
10219 Selector_expression::do_lower(Gogo* gogo, Named_object*, int)
10220 {
10221 Expression* left = this->left_;
10222 if (left->is_type_expression())
10223 return this->lower_method_expression(gogo);
10224 return Type::bind_field_or_method(gogo, left->type(), left, this->name_,
10225 this->location());
10226 }
10227
10228 // Lower a method expression T.M or (*T).M. We turn this into a
10229 // function literal.
10230
10231 Expression*
10232 Selector_expression::lower_method_expression(Gogo* gogo)
10233 {
10234 source_location location = this->location();
10235 Type* type = this->left_->type();
10236 const std::string& name(this->name_);
10237
10238 bool is_pointer;
10239 if (type->points_to() == NULL)
10240 is_pointer = false;
10241 else
10242 {
10243 is_pointer = true;
10244 type = type->points_to();
10245 }
10246 Named_type* nt = type->named_type();
10247 if (nt == NULL)
10248 {
10249 error_at(location,
10250 ("method expression requires named type or "
10251 "pointer to named type"));
10252 return Expression::make_error(location);
10253 }
10254
10255 bool is_ambiguous;
10256 Method* method = nt->method_function(name, &is_ambiguous);
10257 if (method == NULL)
10258 {
10259 if (!is_ambiguous)
10260 error_at(location, "type %<%s%> has no method %<%s%>",
10261 nt->message_name().c_str(),
10262 Gogo::message_name(name).c_str());
10263 else
10264 error_at(location, "method %<%s%> is ambiguous in type %<%s%>",
10265 Gogo::message_name(name).c_str(),
10266 nt->message_name().c_str());
10267 return Expression::make_error(location);
10268 }
10269
10270 if (!is_pointer && !method->is_value_method())
10271 {
10272 error_at(location, "method requires pointer (use %<(*%s).%s)%>",
10273 nt->message_name().c_str(),
10274 Gogo::message_name(name).c_str());
10275 return Expression::make_error(location);
10276 }
10277
10278 // Build a new function type in which the receiver becomes the first
10279 // argument.
10280 Function_type* method_type = method->type();
10281 gcc_assert(method_type->is_method());
10282
10283 const char* const receiver_name = "$this";
10284 Typed_identifier_list* parameters = new Typed_identifier_list();
10285 parameters->push_back(Typed_identifier(receiver_name, this->left_->type(),
10286 location));
10287
10288 const Typed_identifier_list* method_parameters = method_type->parameters();
10289 if (method_parameters != NULL)
10290 {
10291 for (Typed_identifier_list::const_iterator p = method_parameters->begin();
10292 p != method_parameters->end();
10293 ++p)
10294 parameters->push_back(*p);
10295 }
10296
10297 const Typed_identifier_list* method_results = method_type->results();
10298 Typed_identifier_list* results;
10299 if (method_results == NULL)
10300 results = NULL;
10301 else
10302 {
10303 results = new Typed_identifier_list();
10304 for (Typed_identifier_list::const_iterator p = method_results->begin();
10305 p != method_results->end();
10306 ++p)
10307 results->push_back(*p);
10308 }
10309
10310 Function_type* fntype = Type::make_function_type(NULL, parameters, results,
10311 location);
10312 if (method_type->is_varargs())
10313 fntype->set_is_varargs();
10314
10315 // We generate methods which always takes a pointer to the receiver
10316 // as their first argument. If this is for a pointer type, we can
10317 // simply reuse the existing function. We use an internal hack to
10318 // get the right type.
10319
10320 if (is_pointer)
10321 {
10322 Named_object* mno = (method->needs_stub_method()
10323 ? method->stub_object()
10324 : method->named_object());
10325 Expression* f = Expression::make_func_reference(mno, NULL, location);
10326 f = Expression::make_cast(fntype, f, location);
10327 Type_conversion_expression* tce =
10328 static_cast<Type_conversion_expression*>(f);
10329 tce->set_may_convert_function_types();
10330 return f;
10331 }
10332
10333 Named_object* no = gogo->start_function(Gogo::thunk_name(), fntype, false,
10334 location);
10335
10336 Named_object* vno = gogo->lookup(receiver_name, NULL);
10337 gcc_assert(vno != NULL);
10338 Expression* ve = Expression::make_var_reference(vno, location);
10339 Expression* bm = Type::bind_field_or_method(gogo, nt, ve, name, location);
10340
10341 // Even though we found the method above, if it has an error type we
10342 // may see an error here.
10343 if (bm->is_error_expression())
10344 {
10345 gogo->finish_function(location);
10346 return bm;
10347 }
10348
10349 Expression_list* args;
10350 if (method_parameters == NULL)
10351 args = NULL;
10352 else
10353 {
10354 args = new Expression_list();
10355 for (Typed_identifier_list::const_iterator p = method_parameters->begin();
10356 p != method_parameters->end();
10357 ++p)
10358 {
10359 vno = gogo->lookup(p->name(), NULL);
10360 gcc_assert(vno != NULL);
10361 args->push_back(Expression::make_var_reference(vno, location));
10362 }
10363 }
10364
10365 Call_expression* call = Expression::make_call(bm, args,
10366 method_type->is_varargs(),
10367 location);
10368
10369 size_t count = call->result_count();
10370 Statement* s;
10371 if (count == 0)
10372 s = Statement::make_statement(call);
10373 else
10374 {
10375 Expression_list* retvals = new Expression_list();
10376 if (count <= 1)
10377 retvals->push_back(call);
10378 else
10379 {
10380 for (size_t i = 0; i < count; ++i)
10381 retvals->push_back(Expression::make_call_result(call, i));
10382 }
10383 s = Statement::make_return_statement(no->func_value()->type()->results(),
10384 retvals, location);
10385 }
10386 gogo->add_statement(s);
10387
10388 gogo->finish_function(location);
10389
10390 return Expression::make_func_reference(no, NULL, location);
10391 }
10392
10393 // Make a selector expression.
10394
10395 Expression*
10396 Expression::make_selector(Expression* left, const std::string& name,
10397 source_location location)
10398 {
10399 return new Selector_expression(left, name, location);
10400 }
10401
10402 // Implement the builtin function new.
10403
10404 class Allocation_expression : public Expression
10405 {
10406 public:
10407 Allocation_expression(Type* type, source_location location)
10408 : Expression(EXPRESSION_ALLOCATION, location),
10409 type_(type)
10410 { }
10411
10412 protected:
10413 int
10414 do_traverse(Traverse* traverse)
10415 { return Type::traverse(this->type_, traverse); }
10416
10417 Type*
10418 do_type()
10419 { return Type::make_pointer_type(this->type_); }
10420
10421 void
10422 do_determine_type(const Type_context*)
10423 { }
10424
10425 void
10426 do_check_types(Gogo*);
10427
10428 Expression*
10429 do_copy()
10430 { return new Allocation_expression(this->type_, this->location()); }
10431
10432 tree
10433 do_get_tree(Translate_context*);
10434
10435 private:
10436 // The type we are allocating.
10437 Type* type_;
10438 };
10439
10440 // Check the type of an allocation expression.
10441
10442 void
10443 Allocation_expression::do_check_types(Gogo*)
10444 {
10445 if (this->type_->function_type() != NULL)
10446 this->report_error(_("invalid new of function type"));
10447 }
10448
10449 // Return a tree for an allocation expression.
10450
10451 tree
10452 Allocation_expression::do_get_tree(Translate_context* context)
10453 {
10454 tree type_tree = this->type_->get_tree(context->gogo());
10455 if (type_tree == error_mark_node)
10456 return error_mark_node;
10457 tree size_tree = TYPE_SIZE_UNIT(type_tree);
10458 tree space = context->gogo()->allocate_memory(this->type_, size_tree,
10459 this->location());
10460 if (space == error_mark_node)
10461 return error_mark_node;
10462 return fold_convert(build_pointer_type(type_tree), space);
10463 }
10464
10465 // Make an allocation expression.
10466
10467 Expression*
10468 Expression::make_allocation(Type* type, source_location location)
10469 {
10470 return new Allocation_expression(type, location);
10471 }
10472
10473 // Implement the builtin function make.
10474
10475 class Make_expression : public Expression
10476 {
10477 public:
10478 Make_expression(Type* type, Expression_list* args, source_location location)
10479 : Expression(EXPRESSION_MAKE, location),
10480 type_(type), args_(args)
10481 { }
10482
10483 protected:
10484 int
10485 do_traverse(Traverse* traverse);
10486
10487 Type*
10488 do_type()
10489 { return this->type_; }
10490
10491 void
10492 do_determine_type(const Type_context*);
10493
10494 void
10495 do_check_types(Gogo*);
10496
10497 Expression*
10498 do_copy()
10499 {
10500 return new Make_expression(this->type_, this->args_->copy(),
10501 this->location());
10502 }
10503
10504 tree
10505 do_get_tree(Translate_context*);
10506
10507 private:
10508 // The type we are making.
10509 Type* type_;
10510 // The arguments to pass to the make routine.
10511 Expression_list* args_;
10512 };
10513
10514 // Traversal.
10515
10516 int
10517 Make_expression::do_traverse(Traverse* traverse)
10518 {
10519 if (this->args_ != NULL
10520 && this->args_->traverse(traverse) == TRAVERSE_EXIT)
10521 return TRAVERSE_EXIT;
10522 if (Type::traverse(this->type_, traverse) == TRAVERSE_EXIT)
10523 return TRAVERSE_EXIT;
10524 return TRAVERSE_CONTINUE;
10525 }
10526
10527 // Set types of arguments.
10528
10529 void
10530 Make_expression::do_determine_type(const Type_context*)
10531 {
10532 if (this->args_ != NULL)
10533 {
10534 Type_context context(Type::lookup_integer_type("int"), false);
10535 for (Expression_list::const_iterator pe = this->args_->begin();
10536 pe != this->args_->end();
10537 ++pe)
10538 (*pe)->determine_type(&context);
10539 }
10540 }
10541
10542 // Check types for a make expression.
10543
10544 void
10545 Make_expression::do_check_types(Gogo*)
10546 {
10547 if (this->type_->channel_type() == NULL
10548 && this->type_->map_type() == NULL
10549 && (this->type_->array_type() == NULL
10550 || this->type_->array_type()->length() != NULL))
10551 this->report_error(_("invalid type for make function"));
10552 else if (!this->type_->check_make_expression(this->args_, this->location()))
10553 this->set_is_error();
10554 }
10555
10556 // Return a tree for a make expression.
10557
10558 tree
10559 Make_expression::do_get_tree(Translate_context* context)
10560 {
10561 return this->type_->make_expression_tree(context, this->args_,
10562 this->location());
10563 }
10564
10565 // Make a make expression.
10566
10567 Expression*
10568 Expression::make_make(Type* type, Expression_list* args,
10569 source_location location)
10570 {
10571 return new Make_expression(type, args, location);
10572 }
10573
10574 // Construct a struct.
10575
10576 class Struct_construction_expression : public Expression
10577 {
10578 public:
10579 Struct_construction_expression(Type* type, Expression_list* vals,
10580 source_location location)
10581 : Expression(EXPRESSION_STRUCT_CONSTRUCTION, location),
10582 type_(type), vals_(vals)
10583 { }
10584
10585 // Return whether this is a constant initializer.
10586 bool
10587 is_constant_struct() const;
10588
10589 protected:
10590 int
10591 do_traverse(Traverse* traverse);
10592
10593 Type*
10594 do_type()
10595 { return this->type_; }
10596
10597 void
10598 do_determine_type(const Type_context*);
10599
10600 void
10601 do_check_types(Gogo*);
10602
10603 Expression*
10604 do_copy()
10605 {
10606 return new Struct_construction_expression(this->type_, this->vals_->copy(),
10607 this->location());
10608 }
10609
10610 bool
10611 do_is_addressable() const
10612 { return true; }
10613
10614 tree
10615 do_get_tree(Translate_context*);
10616
10617 void
10618 do_export(Export*) const;
10619
10620 private:
10621 // The type of the struct to construct.
10622 Type* type_;
10623 // The list of values, in order of the fields in the struct. A NULL
10624 // entry means that the field should be zero-initialized.
10625 Expression_list* vals_;
10626 };
10627
10628 // Traversal.
10629
10630 int
10631 Struct_construction_expression::do_traverse(Traverse* traverse)
10632 {
10633 if (this->vals_ != NULL
10634 && this->vals_->traverse(traverse) == TRAVERSE_EXIT)
10635 return TRAVERSE_EXIT;
10636 if (Type::traverse(this->type_, traverse) == TRAVERSE_EXIT)
10637 return TRAVERSE_EXIT;
10638 return TRAVERSE_CONTINUE;
10639 }
10640
10641 // Return whether this is a constant initializer.
10642
10643 bool
10644 Struct_construction_expression::is_constant_struct() const
10645 {
10646 if (this->vals_ == NULL)
10647 return true;
10648 for (Expression_list::const_iterator pv = this->vals_->begin();
10649 pv != this->vals_->end();
10650 ++pv)
10651 {
10652 if (*pv != NULL
10653 && !(*pv)->is_constant()
10654 && (!(*pv)->is_composite_literal()
10655 || (*pv)->is_nonconstant_composite_literal()))
10656 return false;
10657 }
10658
10659 const Struct_field_list* fields = this->type_->struct_type()->fields();
10660 for (Struct_field_list::const_iterator pf = fields->begin();
10661 pf != fields->end();
10662 ++pf)
10663 {
10664 // There are no constant constructors for interfaces.
10665 if (pf->type()->interface_type() != NULL)
10666 return false;
10667 }
10668
10669 return true;
10670 }
10671
10672 // Final type determination.
10673
10674 void
10675 Struct_construction_expression::do_determine_type(const Type_context*)
10676 {
10677 if (this->vals_ == NULL)
10678 return;
10679 const Struct_field_list* fields = this->type_->struct_type()->fields();
10680 Expression_list::const_iterator pv = this->vals_->begin();
10681 for (Struct_field_list::const_iterator pf = fields->begin();
10682 pf != fields->end();
10683 ++pf, ++pv)
10684 {
10685 if (pv == this->vals_->end())
10686 return;
10687 if (*pv != NULL)
10688 {
10689 Type_context subcontext(pf->type(), false);
10690 (*pv)->determine_type(&subcontext);
10691 }
10692 }
10693 // Extra values are an error we will report elsewhere; we still want
10694 // to determine the type to avoid knockon errors.
10695 for (; pv != this->vals_->end(); ++pv)
10696 (*pv)->determine_type_no_context();
10697 }
10698
10699 // Check types.
10700
10701 void
10702 Struct_construction_expression::do_check_types(Gogo*)
10703 {
10704 if (this->vals_ == NULL)
10705 return;
10706
10707 Struct_type* st = this->type_->struct_type();
10708 if (this->vals_->size() > st->field_count())
10709 {
10710 this->report_error(_("too many expressions for struct"));
10711 return;
10712 }
10713
10714 const Struct_field_list* fields = st->fields();
10715 Expression_list::const_iterator pv = this->vals_->begin();
10716 int i = 0;
10717 for (Struct_field_list::const_iterator pf = fields->begin();
10718 pf != fields->end();
10719 ++pf, ++pv, ++i)
10720 {
10721 if (pv == this->vals_->end())
10722 {
10723 this->report_error(_("too few expressions for struct"));
10724 break;
10725 }
10726
10727 if (*pv == NULL)
10728 continue;
10729
10730 std::string reason;
10731 if (!Type::are_assignable(pf->type(), (*pv)->type(), &reason))
10732 {
10733 if (reason.empty())
10734 error_at((*pv)->location(),
10735 "incompatible type for field %d in struct construction",
10736 i + 1);
10737 else
10738 error_at((*pv)->location(),
10739 ("incompatible type for field %d in "
10740 "struct construction (%s)"),
10741 i + 1, reason.c_str());
10742 this->set_is_error();
10743 }
10744 }
10745 gcc_assert(pv == this->vals_->end());
10746 }
10747
10748 // Return a tree for constructing a struct.
10749
10750 tree
10751 Struct_construction_expression::do_get_tree(Translate_context* context)
10752 {
10753 Gogo* gogo = context->gogo();
10754
10755 if (this->vals_ == NULL)
10756 return this->type_->get_init_tree(gogo, false);
10757
10758 tree type_tree = this->type_->get_tree(gogo);
10759 if (type_tree == error_mark_node)
10760 return error_mark_node;
10761 gcc_assert(TREE_CODE(type_tree) == RECORD_TYPE);
10762
10763 bool is_constant = true;
10764 const Struct_field_list* fields = this->type_->struct_type()->fields();
10765 VEC(constructor_elt,gc)* elts = VEC_alloc(constructor_elt, gc,
10766 fields->size());
10767 Struct_field_list::const_iterator pf = fields->begin();
10768 Expression_list::const_iterator pv = this->vals_->begin();
10769 for (tree field = TYPE_FIELDS(type_tree);
10770 field != NULL_TREE;
10771 field = DECL_CHAIN(field), ++pf)
10772 {
10773 gcc_assert(pf != fields->end());
10774
10775 tree val;
10776 if (pv == this->vals_->end())
10777 val = pf->type()->get_init_tree(gogo, false);
10778 else if (*pv == NULL)
10779 {
10780 val = pf->type()->get_init_tree(gogo, false);
10781 ++pv;
10782 }
10783 else
10784 {
10785 val = Expression::convert_for_assignment(context, pf->type(),
10786 (*pv)->type(),
10787 (*pv)->get_tree(context),
10788 this->location());
10789 ++pv;
10790 }
10791
10792 if (val == error_mark_node || TREE_TYPE(val) == error_mark_node)
10793 return error_mark_node;
10794
10795 constructor_elt* elt = VEC_quick_push(constructor_elt, elts, NULL);
10796 elt->index = field;
10797 elt->value = val;
10798 if (!TREE_CONSTANT(val))
10799 is_constant = false;
10800 }
10801 gcc_assert(pf == fields->end());
10802
10803 tree ret = build_constructor(type_tree, elts);
10804 if (is_constant)
10805 TREE_CONSTANT(ret) = 1;
10806 return ret;
10807 }
10808
10809 // Export a struct construction.
10810
10811 void
10812 Struct_construction_expression::do_export(Export* exp) const
10813 {
10814 exp->write_c_string("convert(");
10815 exp->write_type(this->type_);
10816 for (Expression_list::const_iterator pv = this->vals_->begin();
10817 pv != this->vals_->end();
10818 ++pv)
10819 {
10820 exp->write_c_string(", ");
10821 if (*pv != NULL)
10822 (*pv)->export_expression(exp);
10823 }
10824 exp->write_c_string(")");
10825 }
10826
10827 // Make a struct composite literal. This used by the thunk code.
10828
10829 Expression*
10830 Expression::make_struct_composite_literal(Type* type, Expression_list* vals,
10831 source_location location)
10832 {
10833 gcc_assert(type->struct_type() != NULL);
10834 return new Struct_construction_expression(type, vals, location);
10835 }
10836
10837 // Construct an array. This class is not used directly; instead we
10838 // use the child classes, Fixed_array_construction_expression and
10839 // Open_array_construction_expression.
10840
10841 class Array_construction_expression : public Expression
10842 {
10843 protected:
10844 Array_construction_expression(Expression_classification classification,
10845 Type* type, Expression_list* vals,
10846 source_location location)
10847 : Expression(classification, location),
10848 type_(type), vals_(vals)
10849 { }
10850
10851 public:
10852 // Return whether this is a constant initializer.
10853 bool
10854 is_constant_array() const;
10855
10856 // Return the number of elements.
10857 size_t
10858 element_count() const
10859 { return this->vals_ == NULL ? 0 : this->vals_->size(); }
10860
10861 protected:
10862 int
10863 do_traverse(Traverse* traverse);
10864
10865 Type*
10866 do_type()
10867 { return this->type_; }
10868
10869 void
10870 do_determine_type(const Type_context*);
10871
10872 void
10873 do_check_types(Gogo*);
10874
10875 bool
10876 do_is_addressable() const
10877 { return true; }
10878
10879 void
10880 do_export(Export*) const;
10881
10882 // The list of values.
10883 Expression_list*
10884 vals()
10885 { return this->vals_; }
10886
10887 // Get a constructor tree for the array values.
10888 tree
10889 get_constructor_tree(Translate_context* context, tree type_tree);
10890
10891 private:
10892 // The type of the array to construct.
10893 Type* type_;
10894 // The list of values.
10895 Expression_list* vals_;
10896 };
10897
10898 // Traversal.
10899
10900 int
10901 Array_construction_expression::do_traverse(Traverse* traverse)
10902 {
10903 if (this->vals_ != NULL
10904 && this->vals_->traverse(traverse) == TRAVERSE_EXIT)
10905 return TRAVERSE_EXIT;
10906 if (Type::traverse(this->type_, traverse) == TRAVERSE_EXIT)
10907 return TRAVERSE_EXIT;
10908 return TRAVERSE_CONTINUE;
10909 }
10910
10911 // Return whether this is a constant initializer.
10912
10913 bool
10914 Array_construction_expression::is_constant_array() const
10915 {
10916 if (this->vals_ == NULL)
10917 return true;
10918
10919 // There are no constant constructors for interfaces.
10920 if (this->type_->array_type()->element_type()->interface_type() != NULL)
10921 return false;
10922
10923 for (Expression_list::const_iterator pv = this->vals_->begin();
10924 pv != this->vals_->end();
10925 ++pv)
10926 {
10927 if (*pv != NULL
10928 && !(*pv)->is_constant()
10929 && (!(*pv)->is_composite_literal()
10930 || (*pv)->is_nonconstant_composite_literal()))
10931 return false;
10932 }
10933 return true;
10934 }
10935
10936 // Final type determination.
10937
10938 void
10939 Array_construction_expression::do_determine_type(const Type_context*)
10940 {
10941 if (this->vals_ == NULL)
10942 return;
10943 Type_context subcontext(this->type_->array_type()->element_type(), false);
10944 for (Expression_list::const_iterator pv = this->vals_->begin();
10945 pv != this->vals_->end();
10946 ++pv)
10947 {
10948 if (*pv != NULL)
10949 (*pv)->determine_type(&subcontext);
10950 }
10951 }
10952
10953 // Check types.
10954
10955 void
10956 Array_construction_expression::do_check_types(Gogo*)
10957 {
10958 if (this->vals_ == NULL)
10959 return;
10960
10961 Array_type* at = this->type_->array_type();
10962 int i = 0;
10963 Type* element_type = at->element_type();
10964 for (Expression_list::const_iterator pv = this->vals_->begin();
10965 pv != this->vals_->end();
10966 ++pv, ++i)
10967 {
10968 if (*pv != NULL
10969 && !Type::are_assignable(element_type, (*pv)->type(), NULL))
10970 {
10971 error_at((*pv)->location(),
10972 "incompatible type for element %d in composite literal",
10973 i + 1);
10974 this->set_is_error();
10975 }
10976 }
10977
10978 Expression* length = at->length();
10979 if (length != NULL)
10980 {
10981 mpz_t val;
10982 mpz_init(val);
10983 Type* type;
10984 if (at->length()->integer_constant_value(true, val, &type))
10985 {
10986 if (this->vals_->size() > mpz_get_ui(val))
10987 this->report_error(_("too many elements in composite literal"));
10988 }
10989 mpz_clear(val);
10990 }
10991 }
10992
10993 // Get a constructor tree for the array values.
10994
10995 tree
10996 Array_construction_expression::get_constructor_tree(Translate_context* context,
10997 tree type_tree)
10998 {
10999 VEC(constructor_elt,gc)* values = VEC_alloc(constructor_elt, gc,
11000 (this->vals_ == NULL
11001 ? 0
11002 : this->vals_->size()));
11003 Type* element_type = this->type_->array_type()->element_type();
11004 bool is_constant = true;
11005 if (this->vals_ != NULL)
11006 {
11007 size_t i = 0;
11008 for (Expression_list::const_iterator pv = this->vals_->begin();
11009 pv != this->vals_->end();
11010 ++pv, ++i)
11011 {
11012 constructor_elt* elt = VEC_quick_push(constructor_elt, values, NULL);
11013 elt->index = size_int(i);
11014 if (*pv == NULL)
11015 elt->value = element_type->get_init_tree(context->gogo(), false);
11016 else
11017 {
11018 tree value_tree = (*pv)->get_tree(context);
11019 elt->value = Expression::convert_for_assignment(context,
11020 element_type,
11021 (*pv)->type(),
11022 value_tree,
11023 this->location());
11024 }
11025 if (elt->value == error_mark_node)
11026 return error_mark_node;
11027 if (!TREE_CONSTANT(elt->value))
11028 is_constant = false;
11029 }
11030 }
11031
11032 tree ret = build_constructor(type_tree, values);
11033 if (is_constant)
11034 TREE_CONSTANT(ret) = 1;
11035 return ret;
11036 }
11037
11038 // Export an array construction.
11039
11040 void
11041 Array_construction_expression::do_export(Export* exp) const
11042 {
11043 exp->write_c_string("convert(");
11044 exp->write_type(this->type_);
11045 if (this->vals_ != NULL)
11046 {
11047 for (Expression_list::const_iterator pv = this->vals_->begin();
11048 pv != this->vals_->end();
11049 ++pv)
11050 {
11051 exp->write_c_string(", ");
11052 if (*pv != NULL)
11053 (*pv)->export_expression(exp);
11054 }
11055 }
11056 exp->write_c_string(")");
11057 }
11058
11059 // Construct a fixed array.
11060
11061 class Fixed_array_construction_expression :
11062 public Array_construction_expression
11063 {
11064 public:
11065 Fixed_array_construction_expression(Type* type, Expression_list* vals,
11066 source_location location)
11067 : Array_construction_expression(EXPRESSION_FIXED_ARRAY_CONSTRUCTION,
11068 type, vals, location)
11069 {
11070 gcc_assert(type->array_type() != NULL
11071 && type->array_type()->length() != NULL);
11072 }
11073
11074 protected:
11075 Expression*
11076 do_copy()
11077 {
11078 return new Fixed_array_construction_expression(this->type(),
11079 (this->vals() == NULL
11080 ? NULL
11081 : this->vals()->copy()),
11082 this->location());
11083 }
11084
11085 tree
11086 do_get_tree(Translate_context*);
11087 };
11088
11089 // Return a tree for constructing a fixed array.
11090
11091 tree
11092 Fixed_array_construction_expression::do_get_tree(Translate_context* context)
11093 {
11094 return this->get_constructor_tree(context,
11095 this->type()->get_tree(context->gogo()));
11096 }
11097
11098 // Construct an open array.
11099
11100 class Open_array_construction_expression : public Array_construction_expression
11101 {
11102 public:
11103 Open_array_construction_expression(Type* type, Expression_list* vals,
11104 source_location location)
11105 : Array_construction_expression(EXPRESSION_OPEN_ARRAY_CONSTRUCTION,
11106 type, vals, location)
11107 {
11108 gcc_assert(type->array_type() != NULL
11109 && type->array_type()->length() == NULL);
11110 }
11111
11112 protected:
11113 // Note that taking the address of an open array literal is invalid.
11114
11115 Expression*
11116 do_copy()
11117 {
11118 return new Open_array_construction_expression(this->type(),
11119 (this->vals() == NULL
11120 ? NULL
11121 : this->vals()->copy()),
11122 this->location());
11123 }
11124
11125 tree
11126 do_get_tree(Translate_context*);
11127 };
11128
11129 // Return a tree for constructing an open array.
11130
11131 tree
11132 Open_array_construction_expression::do_get_tree(Translate_context* context)
11133 {
11134 Array_type* array_type = this->type()->array_type();
11135 if (array_type == NULL)
11136 {
11137 gcc_assert(this->type()->is_error_type());
11138 return error_mark_node;
11139 }
11140
11141 Type* element_type = array_type->element_type();
11142 tree element_type_tree = element_type->get_tree(context->gogo());
11143 if (element_type_tree == error_mark_node)
11144 return error_mark_node;
11145
11146 tree values;
11147 tree length_tree;
11148 if (this->vals() == NULL || this->vals()->empty())
11149 {
11150 // We need to create a unique value.
11151 tree max = size_int(0);
11152 tree constructor_type = build_array_type(element_type_tree,
11153 build_index_type(max));
11154 if (constructor_type == error_mark_node)
11155 return error_mark_node;
11156 VEC(constructor_elt,gc)* vec = VEC_alloc(constructor_elt, gc, 1);
11157 constructor_elt* elt = VEC_quick_push(constructor_elt, vec, NULL);
11158 elt->index = size_int(0);
11159 elt->value = element_type->get_init_tree(context->gogo(), false);
11160 values = build_constructor(constructor_type, vec);
11161 if (TREE_CONSTANT(elt->value))
11162 TREE_CONSTANT(values) = 1;
11163 length_tree = size_int(0);
11164 }
11165 else
11166 {
11167 tree max = size_int(this->vals()->size() - 1);
11168 tree constructor_type = build_array_type(element_type_tree,
11169 build_index_type(max));
11170 if (constructor_type == error_mark_node)
11171 return error_mark_node;
11172 values = this->get_constructor_tree(context, constructor_type);
11173 length_tree = size_int(this->vals()->size());
11174 }
11175
11176 if (values == error_mark_node)
11177 return error_mark_node;
11178
11179 bool is_constant_initializer = TREE_CONSTANT(values);
11180
11181 // We have to copy the initial values into heap memory if we are in
11182 // a function or if the values are not constants. We also have to
11183 // copy them if they may contain pointers in a non-constant context,
11184 // as otherwise the garbage collector won't see them.
11185 bool copy_to_heap = (context->function() != NULL
11186 || !is_constant_initializer
11187 || (element_type->has_pointer()
11188 && !context->is_const()));
11189
11190 if (is_constant_initializer)
11191 {
11192 tree tmp = build_decl(this->location(), VAR_DECL,
11193 create_tmp_var_name("C"), TREE_TYPE(values));
11194 DECL_EXTERNAL(tmp) = 0;
11195 TREE_PUBLIC(tmp) = 0;
11196 TREE_STATIC(tmp) = 1;
11197 DECL_ARTIFICIAL(tmp) = 1;
11198 if (copy_to_heap)
11199 {
11200 // If we are not copying the value to the heap, we will only
11201 // initialize the value once, so we can use this directly
11202 // rather than copying it. In that case we can't make it
11203 // read-only, because the program is permitted to change it.
11204 TREE_READONLY(tmp) = 1;
11205 TREE_CONSTANT(tmp) = 1;
11206 }
11207 DECL_INITIAL(tmp) = values;
11208 rest_of_decl_compilation(tmp, 1, 0);
11209 values = tmp;
11210 }
11211
11212 tree space;
11213 tree set;
11214 if (!copy_to_heap)
11215 {
11216 // the initializer will only run once.
11217 space = build_fold_addr_expr(values);
11218 set = NULL_TREE;
11219 }
11220 else
11221 {
11222 tree memsize = TYPE_SIZE_UNIT(TREE_TYPE(values));
11223 space = context->gogo()->allocate_memory(element_type, memsize,
11224 this->location());
11225 space = save_expr(space);
11226
11227 tree s = fold_convert(build_pointer_type(TREE_TYPE(values)), space);
11228 tree ref = build_fold_indirect_ref_loc(this->location(), s);
11229 TREE_THIS_NOTRAP(ref) = 1;
11230 set = build2(MODIFY_EXPR, void_type_node, ref, values);
11231 }
11232
11233 // Build a constructor for the open array.
11234
11235 tree type_tree = this->type()->get_tree(context->gogo());
11236 if (type_tree == error_mark_node)
11237 return error_mark_node;
11238 gcc_assert(TREE_CODE(type_tree) == RECORD_TYPE);
11239
11240 VEC(constructor_elt,gc)* init = VEC_alloc(constructor_elt, gc, 3);
11241
11242 constructor_elt* elt = VEC_quick_push(constructor_elt, init, NULL);
11243 tree field = TYPE_FIELDS(type_tree);
11244 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)), "__values") == 0);
11245 elt->index = field;
11246 elt->value = fold_convert(TREE_TYPE(field), space);
11247
11248 elt = VEC_quick_push(constructor_elt, init, NULL);
11249 field = DECL_CHAIN(field);
11250 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)), "__count") == 0);
11251 elt->index = field;
11252 elt->value = fold_convert(TREE_TYPE(field), length_tree);
11253
11254 elt = VEC_quick_push(constructor_elt, init, NULL);
11255 field = DECL_CHAIN(field);
11256 gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)),"__capacity") == 0);
11257 elt->index = field;
11258 elt->value = fold_convert(TREE_TYPE(field), length_tree);
11259
11260 tree constructor = build_constructor(type_tree, init);
11261 if (constructor == error_mark_node)
11262 return error_mark_node;
11263 if (!copy_to_heap)
11264 TREE_CONSTANT(constructor) = 1;
11265
11266 if (set == NULL_TREE)
11267 return constructor;
11268 else
11269 return build2(COMPOUND_EXPR, type_tree, set, constructor);
11270 }
11271
11272 // Make a slice composite literal. This is used by the type
11273 // descriptor code.
11274
11275 Expression*
11276 Expression::make_slice_composite_literal(Type* type, Expression_list* vals,
11277 source_location location)
11278 {
11279 gcc_assert(type->is_open_array_type());
11280 return new Open_array_construction_expression(type, vals, location);
11281 }
11282
11283 // Construct a map.
11284
11285 class Map_construction_expression : public Expression
11286 {
11287 public:
11288 Map_construction_expression(Type* type, Expression_list* vals,
11289 source_location location)
11290 : Expression(EXPRESSION_MAP_CONSTRUCTION, location),
11291 type_(type), vals_(vals)
11292 { gcc_assert(vals == NULL || vals->size() % 2 == 0); }
11293
11294 protected:
11295 int
11296 do_traverse(Traverse* traverse);
11297
11298 Type*
11299 do_type()
11300 { return this->type_; }
11301
11302 void
11303 do_determine_type(const Type_context*);
11304
11305 void
11306 do_check_types(Gogo*);
11307
11308 Expression*
11309 do_copy()
11310 {
11311 return new Map_construction_expression(this->type_, this->vals_->copy(),
11312 this->location());
11313 }
11314
11315 tree
11316 do_get_tree(Translate_context*);
11317
11318 void
11319 do_export(Export*) const;
11320
11321 private:
11322 // The type of the map to construct.
11323 Type* type_;
11324 // The list of values.
11325 Expression_list* vals_;
11326 };
11327
11328 // Traversal.
11329
11330 int
11331 Map_construction_expression::do_traverse(Traverse* traverse)
11332 {
11333 if (this->vals_ != NULL
11334 && this->vals_->traverse(traverse) == TRAVERSE_EXIT)
11335 return TRAVERSE_EXIT;
11336 if (Type::traverse(this->type_, traverse) == TRAVERSE_EXIT)
11337 return TRAVERSE_EXIT;
11338 return TRAVERSE_CONTINUE;
11339 }
11340
11341 // Final type determination.
11342
11343 void
11344 Map_construction_expression::do_determine_type(const Type_context*)
11345 {
11346 if (this->vals_ == NULL)
11347 return;
11348
11349 Map_type* mt = this->type_->map_type();
11350 Type_context key_context(mt->key_type(), false);
11351 Type_context val_context(mt->val_type(), false);
11352 for (Expression_list::const_iterator pv = this->vals_->begin();
11353 pv != this->vals_->end();
11354 ++pv)
11355 {
11356 (*pv)->determine_type(&key_context);
11357 ++pv;
11358 (*pv)->determine_type(&val_context);
11359 }
11360 }
11361
11362 // Check types.
11363
11364 void
11365 Map_construction_expression::do_check_types(Gogo*)
11366 {
11367 if (this->vals_ == NULL)
11368 return;
11369
11370 Map_type* mt = this->type_->map_type();
11371 int i = 0;
11372 Type* key_type = mt->key_type();
11373 Type* val_type = mt->val_type();
11374 for (Expression_list::const_iterator pv = this->vals_->begin();
11375 pv != this->vals_->end();
11376 ++pv, ++i)
11377 {
11378 if (!Type::are_assignable(key_type, (*pv)->type(), NULL))
11379 {
11380 error_at((*pv)->location(),
11381 "incompatible type for element %d key in map construction",
11382 i + 1);
11383 this->set_is_error();
11384 }
11385 ++pv;
11386 if (!Type::are_assignable(val_type, (*pv)->type(), NULL))
11387 {
11388 error_at((*pv)->location(),
11389 ("incompatible type for element %d value "
11390 "in map construction"),
11391 i + 1);
11392 this->set_is_error();
11393 }
11394 }
11395 }
11396
11397 // Return a tree for constructing a map.
11398
11399 tree
11400 Map_construction_expression::do_get_tree(Translate_context* context)
11401 {
11402 Gogo* gogo = context->gogo();
11403 source_location loc = this->location();
11404
11405 Map_type* mt = this->type_->map_type();
11406
11407 // Build a struct to hold the key and value.
11408 tree struct_type = make_node(RECORD_TYPE);
11409
11410 Type* key_type = mt->key_type();
11411 tree id = get_identifier("__key");
11412 tree key_type_tree = key_type->get_tree(gogo);
11413 if (key_type_tree == error_mark_node)
11414 return error_mark_node;
11415 tree key_field = build_decl(loc, FIELD_DECL, id, key_type_tree);
11416 DECL_CONTEXT(key_field) = struct_type;
11417 TYPE_FIELDS(struct_type) = key_field;
11418
11419 Type* val_type = mt->val_type();
11420 id = get_identifier("__val");
11421 tree val_type_tree = val_type->get_tree(gogo);
11422 if (val_type_tree == error_mark_node)
11423 return error_mark_node;
11424 tree val_field = build_decl(loc, FIELD_DECL, id, val_type_tree);
11425 DECL_CONTEXT(val_field) = struct_type;
11426 DECL_CHAIN(key_field) = val_field;
11427
11428 layout_type(struct_type);
11429
11430 bool is_constant = true;
11431 size_t i = 0;
11432 tree valaddr;
11433 tree make_tmp;
11434
11435 if (this->vals_ == NULL || this->vals_->empty())
11436 {
11437 valaddr = null_pointer_node;
11438 make_tmp = NULL_TREE;
11439 }
11440 else
11441 {
11442 VEC(constructor_elt,gc)* values = VEC_alloc(constructor_elt, gc,
11443 this->vals_->size() / 2);
11444
11445 for (Expression_list::const_iterator pv = this->vals_->begin();
11446 pv != this->vals_->end();
11447 ++pv, ++i)
11448 {
11449 bool one_is_constant = true;
11450
11451 VEC(constructor_elt,gc)* one = VEC_alloc(constructor_elt, gc, 2);
11452
11453 constructor_elt* elt = VEC_quick_push(constructor_elt, one, NULL);
11454 elt->index = key_field;
11455 tree val_tree = (*pv)->get_tree(context);
11456 elt->value = Expression::convert_for_assignment(context, key_type,
11457 (*pv)->type(),
11458 val_tree, loc);
11459 if (elt->value == error_mark_node)
11460 return error_mark_node;
11461 if (!TREE_CONSTANT(elt->value))
11462 one_is_constant = false;
11463
11464 ++pv;
11465
11466 elt = VEC_quick_push(constructor_elt, one, NULL);
11467 elt->index = val_field;
11468 val_tree = (*pv)->get_tree(context);
11469 elt->value = Expression::convert_for_assignment(context, val_type,
11470 (*pv)->type(),
11471 val_tree, loc);
11472 if (elt->value == error_mark_node)
11473 return error_mark_node;
11474 if (!TREE_CONSTANT(elt->value))
11475 one_is_constant = false;
11476
11477 elt = VEC_quick_push(constructor_elt, values, NULL);
11478 elt->index = size_int(i);
11479 elt->value = build_constructor(struct_type, one);
11480 if (one_is_constant)
11481 TREE_CONSTANT(elt->value) = 1;
11482 else
11483 is_constant = false;
11484 }
11485
11486 tree index_type = build_index_type(size_int(i - 1));
11487 tree array_type = build_array_type(struct_type, index_type);
11488 tree init = build_constructor(array_type, values);
11489 if (is_constant)
11490 TREE_CONSTANT(init) = 1;
11491 tree tmp;
11492 if (current_function_decl != NULL)
11493 {
11494 tmp = create_tmp_var(array_type, get_name(array_type));
11495 DECL_INITIAL(tmp) = init;
11496 make_tmp = fold_build1_loc(loc, DECL_EXPR, void_type_node, tmp);
11497 TREE_ADDRESSABLE(tmp) = 1;
11498 }
11499 else
11500 {
11501 tmp = build_decl(loc, VAR_DECL, create_tmp_var_name("M"), array_type);
11502 DECL_EXTERNAL(tmp) = 0;
11503 TREE_PUBLIC(tmp) = 0;
11504 TREE_STATIC(tmp) = 1;
11505 DECL_ARTIFICIAL(tmp) = 1;
11506 if (!TREE_CONSTANT(init))
11507 make_tmp = fold_build2_loc(loc, INIT_EXPR, void_type_node, tmp,
11508 init);
11509 else
11510 {
11511 TREE_READONLY(tmp) = 1;
11512 TREE_CONSTANT(tmp) = 1;
11513 DECL_INITIAL(tmp) = init;
11514 make_tmp = NULL_TREE;
11515 }
11516 rest_of_decl_compilation(tmp, 1, 0);
11517 }
11518
11519 valaddr = build_fold_addr_expr(tmp);
11520 }
11521
11522 tree descriptor = gogo->map_descriptor(mt);
11523
11524 tree type_tree = this->type_->get_tree(gogo);
11525 if (type_tree == error_mark_node)
11526 return error_mark_node;
11527
11528 static tree construct_map_fndecl;
11529 tree call = Gogo::call_builtin(&construct_map_fndecl,
11530 loc,
11531 "__go_construct_map",
11532 6,
11533 type_tree,
11534 TREE_TYPE(descriptor),
11535 descriptor,
11536 sizetype,
11537 size_int(i),
11538 sizetype,
11539 TYPE_SIZE_UNIT(struct_type),
11540 sizetype,
11541 byte_position(val_field),
11542 sizetype,
11543 TYPE_SIZE_UNIT(TREE_TYPE(val_field)),
11544 const_ptr_type_node,
11545 fold_convert(const_ptr_type_node, valaddr));
11546 if (call == error_mark_node)
11547 return error_mark_node;
11548
11549 tree ret;
11550 if (make_tmp == NULL)
11551 ret = call;
11552 else
11553 ret = fold_build2_loc(loc, COMPOUND_EXPR, type_tree, make_tmp, call);
11554 return ret;
11555 }
11556
11557 // Export an array construction.
11558
11559 void
11560 Map_construction_expression::do_export(Export* exp) const
11561 {
11562 exp->write_c_string("convert(");
11563 exp->write_type(this->type_);
11564 for (Expression_list::const_iterator pv = this->vals_->begin();
11565 pv != this->vals_->end();
11566 ++pv)
11567 {
11568 exp->write_c_string(", ");
11569 (*pv)->export_expression(exp);
11570 }
11571 exp->write_c_string(")");
11572 }
11573
11574 // A general composite literal. This is lowered to a type specific
11575 // version.
11576
11577 class Composite_literal_expression : public Parser_expression
11578 {
11579 public:
11580 Composite_literal_expression(Type* type, int depth, bool has_keys,
11581 Expression_list* vals, source_location location)
11582 : Parser_expression(EXPRESSION_COMPOSITE_LITERAL, location),
11583 type_(type), depth_(depth), vals_(vals), has_keys_(has_keys)
11584 { }
11585
11586 protected:
11587 int
11588 do_traverse(Traverse* traverse);
11589
11590 Expression*
11591 do_lower(Gogo*, Named_object*, int);
11592
11593 Expression*
11594 do_copy()
11595 {
11596 return new Composite_literal_expression(this->type_, this->depth_,
11597 this->has_keys_,
11598 (this->vals_ == NULL
11599 ? NULL
11600 : this->vals_->copy()),
11601 this->location());
11602 }
11603
11604 private:
11605 Expression*
11606 lower_struct(Gogo*, Type*);
11607
11608 Expression*
11609 lower_array(Type*);
11610
11611 Expression*
11612 make_array(Type*, Expression_list*);
11613
11614 Expression*
11615 lower_map(Gogo*, Named_object*, Type*);
11616
11617 // The type of the composite literal.
11618 Type* type_;
11619 // The depth within a list of composite literals within a composite
11620 // literal, when the type is omitted.
11621 int depth_;
11622 // The values to put in the composite literal.
11623 Expression_list* vals_;
11624 // If this is true, then VALS_ is a list of pairs: a key and a
11625 // value. In an array initializer, a missing key will be NULL.
11626 bool has_keys_;
11627 };
11628
11629 // Traversal.
11630
11631 int
11632 Composite_literal_expression::do_traverse(Traverse* traverse)
11633 {
11634 if (this->vals_ != NULL
11635 && this->vals_->traverse(traverse) == TRAVERSE_EXIT)
11636 return TRAVERSE_EXIT;
11637 return Type::traverse(this->type_, traverse);
11638 }
11639
11640 // Lower a generic composite literal into a specific version based on
11641 // the type.
11642
11643 Expression*
11644 Composite_literal_expression::do_lower(Gogo* gogo, Named_object* function, int)
11645 {
11646 Type* type = this->type_;
11647
11648 for (int depth = this->depth_; depth > 0; --depth)
11649 {
11650 if (type->array_type() != NULL)
11651 type = type->array_type()->element_type();
11652 else if (type->map_type() != NULL)
11653 type = type->map_type()->val_type();
11654 else
11655 {
11656 if (!type->is_error_type())
11657 error_at(this->location(),
11658 ("may only omit types within composite literals "
11659 "of slice, array, or map type"));
11660 return Expression::make_error(this->location());
11661 }
11662 }
11663
11664 if (type->is_error_type())
11665 return Expression::make_error(this->location());
11666 else if (type->struct_type() != NULL)
11667 return this->lower_struct(gogo, type);
11668 else if (type->array_type() != NULL)
11669 return this->lower_array(type);
11670 else if (type->map_type() != NULL)
11671 return this->lower_map(gogo, function, type);
11672 else
11673 {
11674 error_at(this->location(),
11675 ("expected struct, slice, array, or map type "
11676 "for composite literal"));
11677 return Expression::make_error(this->location());
11678 }
11679 }
11680
11681 // Lower a struct composite literal.
11682
11683 Expression*
11684 Composite_literal_expression::lower_struct(Gogo* gogo, Type* type)
11685 {
11686 source_location location = this->location();
11687 Struct_type* st = type->struct_type();
11688 if (this->vals_ == NULL || !this->has_keys_)
11689 return new Struct_construction_expression(type, this->vals_, location);
11690
11691 size_t field_count = st->field_count();
11692 std::vector<Expression*> vals(field_count);
11693 Expression_list::const_iterator p = this->vals_->begin();
11694 while (p != this->vals_->end())
11695 {
11696 Expression* name_expr = *p;
11697
11698 ++p;
11699 gcc_assert(p != this->vals_->end());
11700 Expression* val = *p;
11701
11702 ++p;
11703
11704 if (name_expr == NULL)
11705 {
11706 error_at(val->location(), "mixture of field and value initializers");
11707 return Expression::make_error(location);
11708 }
11709
11710 bool bad_key = false;
11711 std::string name;
11712 const Named_object* no = NULL;
11713 switch (name_expr->classification())
11714 {
11715 case EXPRESSION_UNKNOWN_REFERENCE:
11716 name = name_expr->unknown_expression()->name();
11717 break;
11718
11719 case EXPRESSION_CONST_REFERENCE:
11720 no = static_cast<Const_expression*>(name_expr)->named_object();
11721 break;
11722
11723 case EXPRESSION_TYPE:
11724 {
11725 Type* t = name_expr->type();
11726 Named_type* nt = t->named_type();
11727 if (nt == NULL)
11728 bad_key = true;
11729 else
11730 no = nt->named_object();
11731 }
11732 break;
11733
11734 case EXPRESSION_VAR_REFERENCE:
11735 no = name_expr->var_expression()->named_object();
11736 break;
11737
11738 case EXPRESSION_FUNC_REFERENCE:
11739 no = name_expr->func_expression()->named_object();
11740 break;
11741
11742 case EXPRESSION_UNARY:
11743 // If there is a local variable around with the same name as
11744 // the field, and this occurs in the closure, then the
11745 // parser may turn the field reference into an indirection
11746 // through the closure. FIXME: This is a mess.
11747 {
11748 bad_key = true;
11749 Unary_expression* ue = static_cast<Unary_expression*>(name_expr);
11750 if (ue->op() == OPERATOR_MULT)
11751 {
11752 Field_reference_expression* fre =
11753 ue->operand()->field_reference_expression();
11754 if (fre != NULL)
11755 {
11756 Struct_type* st =
11757 fre->expr()->type()->deref()->struct_type();
11758 if (st != NULL)
11759 {
11760 const Struct_field* sf = st->field(fre->field_index());
11761 name = sf->field_name();
11762 char buf[20];
11763 snprintf(buf, sizeof buf, "%u", fre->field_index());
11764 size_t buflen = strlen(buf);
11765 if (name.compare(name.length() - buflen, buflen, buf)
11766 == 0)
11767 {
11768 name = name.substr(0, name.length() - buflen);
11769 bad_key = false;
11770 }
11771 }
11772 }
11773 }
11774 }
11775 break;
11776
11777 default:
11778 bad_key = true;
11779 break;
11780 }
11781 if (bad_key)
11782 {
11783 error_at(name_expr->location(), "expected struct field name");
11784 return Expression::make_error(location);
11785 }
11786
11787 if (no != NULL)
11788 {
11789 name = no->name();
11790
11791 // A predefined name won't be packed. If it starts with a
11792 // lower case letter we need to check for that case, because
11793 // the field name will be packed.
11794 if (!Gogo::is_hidden_name(name)
11795 && name[0] >= 'a'
11796 && name[0] <= 'z')
11797 {
11798 Named_object* gno = gogo->lookup_global(name.c_str());
11799 if (gno == no)
11800 name = gogo->pack_hidden_name(name, false);
11801 }
11802 }
11803
11804 unsigned int index;
11805 const Struct_field* sf = st->find_local_field(name, &index);
11806 if (sf == NULL)
11807 {
11808 error_at(name_expr->location(), "unknown field %qs in %qs",
11809 Gogo::message_name(name).c_str(),
11810 (type->named_type() != NULL
11811 ? type->named_type()->message_name().c_str()
11812 : "unnamed struct"));
11813 return Expression::make_error(location);
11814 }
11815 if (vals[index] != NULL)
11816 {
11817 error_at(name_expr->location(),
11818 "duplicate value for field %qs in %qs",
11819 Gogo::message_name(name).c_str(),
11820 (type->named_type() != NULL
11821 ? type->named_type()->message_name().c_str()
11822 : "unnamed struct"));
11823 return Expression::make_error(location);
11824 }
11825
11826 vals[index] = val;
11827 }
11828
11829 Expression_list* list = new Expression_list;
11830 list->reserve(field_count);
11831 for (size_t i = 0; i < field_count; ++i)
11832 list->push_back(vals[i]);
11833
11834 return new Struct_construction_expression(type, list, location);
11835 }
11836
11837 // Lower an array composite literal.
11838
11839 Expression*
11840 Composite_literal_expression::lower_array(Type* type)
11841 {
11842 source_location location = this->location();
11843 if (this->vals_ == NULL || !this->has_keys_)
11844 return this->make_array(type, this->vals_);
11845
11846 std::vector<Expression*> vals;
11847 vals.reserve(this->vals_->size());
11848 unsigned long index = 0;
11849 Expression_list::const_iterator p = this->vals_->begin();
11850 while (p != this->vals_->end())
11851 {
11852 Expression* index_expr = *p;
11853
11854 ++p;
11855 gcc_assert(p != this->vals_->end());
11856 Expression* val = *p;
11857
11858 ++p;
11859
11860 if (index_expr != NULL)
11861 {
11862 mpz_t ival;
11863 mpz_init(ival);
11864
11865 Type* dummy;
11866 if (!index_expr->integer_constant_value(true, ival, &dummy))
11867 {
11868 mpz_clear(ival);
11869 error_at(index_expr->location(),
11870 "index expression is not integer constant");
11871 return Expression::make_error(location);
11872 }
11873
11874 if (mpz_sgn(ival) < 0)
11875 {
11876 mpz_clear(ival);
11877 error_at(index_expr->location(), "index expression is negative");
11878 return Expression::make_error(location);
11879 }
11880
11881 index = mpz_get_ui(ival);
11882 if (mpz_cmp_ui(ival, index) != 0)
11883 {
11884 mpz_clear(ival);
11885 error_at(index_expr->location(), "index value overflow");
11886 return Expression::make_error(location);
11887 }
11888
11889 Named_type* ntype = Type::lookup_integer_type("int");
11890 Integer_type* inttype = ntype->integer_type();
11891 mpz_t max;
11892 mpz_init_set_ui(max, 1);
11893 mpz_mul_2exp(max, max, inttype->bits() - 1);
11894 bool ok = mpz_cmp(ival, max) < 0;
11895 mpz_clear(max);
11896 if (!ok)
11897 {
11898 mpz_clear(ival);
11899 error_at(index_expr->location(), "index value overflow");
11900 return Expression::make_error(location);
11901 }
11902
11903 mpz_clear(ival);
11904
11905 // FIXME: Our representation isn't very good; this avoids
11906 // thrashing.
11907 if (index > 0x1000000)
11908 {
11909 error_at(index_expr->location(), "index too large for compiler");
11910 return Expression::make_error(location);
11911 }
11912 }
11913
11914 if (index == vals.size())
11915 vals.push_back(val);
11916 else
11917 {
11918 if (index > vals.size())
11919 {
11920 vals.reserve(index + 32);
11921 vals.resize(index + 1, static_cast<Expression*>(NULL));
11922 }
11923 if (vals[index] != NULL)
11924 {
11925 error_at((index_expr != NULL
11926 ? index_expr->location()
11927 : val->location()),
11928 "duplicate value for index %lu",
11929 index);
11930 return Expression::make_error(location);
11931 }
11932 vals[index] = val;
11933 }
11934
11935 ++index;
11936 }
11937
11938 size_t size = vals.size();
11939 Expression_list* list = new Expression_list;
11940 list->reserve(size);
11941 for (size_t i = 0; i < size; ++i)
11942 list->push_back(vals[i]);
11943
11944 return this->make_array(type, list);
11945 }
11946
11947 // Actually build the array composite literal. This handles
11948 // [...]{...}.
11949
11950 Expression*
11951 Composite_literal_expression::make_array(Type* type, Expression_list* vals)
11952 {
11953 source_location location = this->location();
11954 Array_type* at = type->array_type();
11955 if (at->length() != NULL && at->length()->is_nil_expression())
11956 {
11957 size_t size = vals == NULL ? 0 : vals->size();
11958 mpz_t vlen;
11959 mpz_init_set_ui(vlen, size);
11960 Expression* elen = Expression::make_integer(&vlen, NULL, location);
11961 mpz_clear(vlen);
11962 at = Type::make_array_type(at->element_type(), elen);
11963 type = at;
11964 }
11965 if (at->length() != NULL)
11966 return new Fixed_array_construction_expression(type, vals, location);
11967 else
11968 return new Open_array_construction_expression(type, vals, location);
11969 }
11970
11971 // Lower a map composite literal.
11972
11973 Expression*
11974 Composite_literal_expression::lower_map(Gogo* gogo, Named_object* function,
11975 Type* type)
11976 {
11977 source_location location = this->location();
11978 if (this->vals_ != NULL)
11979 {
11980 if (!this->has_keys_)
11981 {
11982 error_at(location, "map composite literal must have keys");
11983 return Expression::make_error(location);
11984 }
11985
11986 for (Expression_list::iterator p = this->vals_->begin();
11987 p != this->vals_->end();
11988 p += 2)
11989 {
11990 if (*p == NULL)
11991 {
11992 ++p;
11993 error_at((*p)->location(),
11994 "map composite literal must have keys for every value");
11995 return Expression::make_error(location);
11996 }
11997 // Make sure we have lowered the key; it may not have been
11998 // lowered in order to handle keys for struct composite
11999 // literals. Lower it now to get the right error message.
12000 if ((*p)->unknown_expression() != NULL)
12001 {
12002 (*p)->unknown_expression()->clear_is_composite_literal_key();
12003 gogo->lower_expression(function, &*p);
12004 gcc_assert((*p)->is_error_expression());
12005 return Expression::make_error(location);
12006 }
12007 }
12008 }
12009
12010 return new Map_construction_expression(type, this->vals_, location);
12011 }
12012
12013 // Make a composite literal expression.
12014
12015 Expression*
12016 Expression::make_composite_literal(Type* type, int depth, bool has_keys,
12017 Expression_list* vals,
12018 source_location location)
12019 {
12020 return new Composite_literal_expression(type, depth, has_keys, vals,
12021 location);
12022 }
12023
12024 // Return whether this expression is a composite literal.
12025
12026 bool
12027 Expression::is_composite_literal() const
12028 {
12029 switch (this->classification_)
12030 {
12031 case EXPRESSION_COMPOSITE_LITERAL:
12032 case EXPRESSION_STRUCT_CONSTRUCTION:
12033 case EXPRESSION_FIXED_ARRAY_CONSTRUCTION:
12034 case EXPRESSION_OPEN_ARRAY_CONSTRUCTION:
12035 case EXPRESSION_MAP_CONSTRUCTION:
12036 return true;
12037 default:
12038 return false;
12039 }
12040 }
12041
12042 // Return whether this expression is a composite literal which is not
12043 // constant.
12044
12045 bool
12046 Expression::is_nonconstant_composite_literal() const
12047 {
12048 switch (this->classification_)
12049 {
12050 case EXPRESSION_STRUCT_CONSTRUCTION:
12051 {
12052 const Struct_construction_expression *psce =
12053 static_cast<const Struct_construction_expression*>(this);
12054 return !psce->is_constant_struct();
12055 }
12056 case EXPRESSION_FIXED_ARRAY_CONSTRUCTION:
12057 {
12058 const Fixed_array_construction_expression *pace =
12059 static_cast<const Fixed_array_construction_expression*>(this);
12060 return !pace->is_constant_array();
12061 }
12062 case EXPRESSION_OPEN_ARRAY_CONSTRUCTION:
12063 {
12064 const Open_array_construction_expression *pace =
12065 static_cast<const Open_array_construction_expression*>(this);
12066 return !pace->is_constant_array();
12067 }
12068 case EXPRESSION_MAP_CONSTRUCTION:
12069 return true;
12070 default:
12071 return false;
12072 }
12073 }
12074
12075 // Return true if this is a reference to a local variable.
12076
12077 bool
12078 Expression::is_local_variable() const
12079 {
12080 const Var_expression* ve = this->var_expression();
12081 if (ve == NULL)
12082 return false;
12083 const Named_object* no = ve->named_object();
12084 return (no->is_result_variable()
12085 || (no->is_variable() && !no->var_value()->is_global()));
12086 }
12087
12088 // Class Type_guard_expression.
12089
12090 // Traversal.
12091
12092 int
12093 Type_guard_expression::do_traverse(Traverse* traverse)
12094 {
12095 if (Expression::traverse(&this->expr_, traverse) == TRAVERSE_EXIT
12096 || Type::traverse(this->type_, traverse) == TRAVERSE_EXIT)
12097 return TRAVERSE_EXIT;
12098 return TRAVERSE_CONTINUE;
12099 }
12100
12101 // Check types of a type guard expression. The expression must have
12102 // an interface type, but the actual type conversion is checked at run
12103 // time.
12104
12105 void
12106 Type_guard_expression::do_check_types(Gogo*)
12107 {
12108 // 6g permits using a type guard with unsafe.pointer; we are
12109 // compatible.
12110 Type* expr_type = this->expr_->type();
12111 if (expr_type->is_unsafe_pointer_type())
12112 {
12113 if (this->type_->points_to() == NULL
12114 && (this->type_->integer_type() == NULL
12115 || (this->type_->forwarded()
12116 != Type::lookup_integer_type("uintptr"))))
12117 this->report_error(_("invalid unsafe.Pointer conversion"));
12118 }
12119 else if (this->type_->is_unsafe_pointer_type())
12120 {
12121 if (expr_type->points_to() == NULL
12122 && (expr_type->integer_type() == NULL
12123 || (expr_type->forwarded()
12124 != Type::lookup_integer_type("uintptr"))))
12125 this->report_error(_("invalid unsafe.Pointer conversion"));
12126 }
12127 else if (expr_type->interface_type() == NULL)
12128 {
12129 if (!expr_type->is_error_type() && !this->type_->is_error_type())
12130 this->report_error(_("type assertion only valid for interface types"));
12131 this->set_is_error();
12132 }
12133 else if (this->type_->interface_type() == NULL)
12134 {
12135 std::string reason;
12136 if (!expr_type->interface_type()->implements_interface(this->type_,
12137 &reason))
12138 {
12139 if (!this->type_->is_error_type())
12140 {
12141 if (reason.empty())
12142 this->report_error(_("impossible type assertion: "
12143 "type does not implement interface"));
12144 else
12145 error_at(this->location(),
12146 ("impossible type assertion: "
12147 "type does not implement interface (%s)"),
12148 reason.c_str());
12149 }
12150 this->set_is_error();
12151 }
12152 }
12153 }
12154
12155 // Return a tree for a type guard expression.
12156
12157 tree
12158 Type_guard_expression::do_get_tree(Translate_context* context)
12159 {
12160 Gogo* gogo = context->gogo();
12161 tree expr_tree = this->expr_->get_tree(context);
12162 if (expr_tree == error_mark_node)
12163 return error_mark_node;
12164 Type* expr_type = this->expr_->type();
12165 if ((this->type_->is_unsafe_pointer_type()
12166 && (expr_type->points_to() != NULL
12167 || expr_type->integer_type() != NULL))
12168 || (expr_type->is_unsafe_pointer_type()
12169 && this->type_->points_to() != NULL))
12170 return convert_to_pointer(this->type_->get_tree(gogo), expr_tree);
12171 else if (expr_type->is_unsafe_pointer_type()
12172 && this->type_->integer_type() != NULL)
12173 return convert_to_integer(this->type_->get_tree(gogo), expr_tree);
12174 else if (this->type_->interface_type() != NULL)
12175 return Expression::convert_interface_to_interface(context, this->type_,
12176 this->expr_->type(),
12177 expr_tree, true,
12178 this->location());
12179 else
12180 return Expression::convert_for_assignment(context, this->type_,
12181 this->expr_->type(), expr_tree,
12182 this->location());
12183 }
12184
12185 // Make a type guard expression.
12186
12187 Expression*
12188 Expression::make_type_guard(Expression* expr, Type* type,
12189 source_location location)
12190 {
12191 return new Type_guard_expression(expr, type, location);
12192 }
12193
12194 // Class Heap_composite_expression.
12195
12196 // When you take the address of a composite literal, it is allocated
12197 // on the heap. This class implements that.
12198
12199 class Heap_composite_expression : public Expression
12200 {
12201 public:
12202 Heap_composite_expression(Expression* expr, source_location location)
12203 : Expression(EXPRESSION_HEAP_COMPOSITE, location),
12204 expr_(expr)
12205 { }
12206
12207 protected:
12208 int
12209 do_traverse(Traverse* traverse)
12210 { return Expression::traverse(&this->expr_, traverse); }
12211
12212 Type*
12213 do_type()
12214 { return Type::make_pointer_type(this->expr_->type()); }
12215
12216 void
12217 do_determine_type(const Type_context*)
12218 { this->expr_->determine_type_no_context(); }
12219
12220 Expression*
12221 do_copy()
12222 {
12223 return Expression::make_heap_composite(this->expr_->copy(),
12224 this->location());
12225 }
12226
12227 tree
12228 do_get_tree(Translate_context*);
12229
12230 // We only export global objects, and the parser does not generate
12231 // this in global scope.
12232 void
12233 do_export(Export*) const
12234 { gcc_unreachable(); }
12235
12236 private:
12237 // The composite literal which is being put on the heap.
12238 Expression* expr_;
12239 };
12240
12241 // Return a tree which allocates a composite literal on the heap.
12242
12243 tree
12244 Heap_composite_expression::do_get_tree(Translate_context* context)
12245 {
12246 tree expr_tree = this->expr_->get_tree(context);
12247 if (expr_tree == error_mark_node)
12248 return error_mark_node;
12249 tree expr_size = TYPE_SIZE_UNIT(TREE_TYPE(expr_tree));
12250 gcc_assert(TREE_CODE(expr_size) == INTEGER_CST);
12251 tree space = context->gogo()->allocate_memory(this->expr_->type(),
12252 expr_size, this->location());
12253 space = fold_convert(build_pointer_type(TREE_TYPE(expr_tree)), space);
12254 space = save_expr(space);
12255 tree ref = build_fold_indirect_ref_loc(this->location(), space);
12256 TREE_THIS_NOTRAP(ref) = 1;
12257 tree ret = build2(COMPOUND_EXPR, TREE_TYPE(space),
12258 build2(MODIFY_EXPR, void_type_node, ref, expr_tree),
12259 space);
12260 SET_EXPR_LOCATION(ret, this->location());
12261 return ret;
12262 }
12263
12264 // Allocate a composite literal on the heap.
12265
12266 Expression*
12267 Expression::make_heap_composite(Expression* expr, source_location location)
12268 {
12269 return new Heap_composite_expression(expr, location);
12270 }
12271
12272 // Class Receive_expression.
12273
12274 // Return the type of a receive expression.
12275
12276 Type*
12277 Receive_expression::do_type()
12278 {
12279 Channel_type* channel_type = this->channel_->type()->channel_type();
12280 if (channel_type == NULL)
12281 return Type::make_error_type();
12282 return channel_type->element_type();
12283 }
12284
12285 // Check types for a receive expression.
12286
12287 void
12288 Receive_expression::do_check_types(Gogo*)
12289 {
12290 Type* type = this->channel_->type();
12291 if (type->is_error_type())
12292 {
12293 this->set_is_error();
12294 return;
12295 }
12296 if (type->channel_type() == NULL)
12297 {
12298 this->report_error(_("expected channel"));
12299 return;
12300 }
12301 if (!type->channel_type()->may_receive())
12302 {
12303 this->report_error(_("invalid receive on send-only channel"));
12304 return;
12305 }
12306 }
12307
12308 // Get a tree for a receive expression.
12309
12310 tree
12311 Receive_expression::do_get_tree(Translate_context* context)
12312 {
12313 Channel_type* channel_type = this->channel_->type()->channel_type();
12314 if (channel_type == NULL)
12315 {
12316 gcc_assert(this->channel_->type()->is_error_type());
12317 return error_mark_node;
12318 }
12319 Type* element_type = channel_type->element_type();
12320 tree element_type_tree = element_type->get_tree(context->gogo());
12321
12322 tree channel = this->channel_->get_tree(context);
12323 if (element_type_tree == error_mark_node || channel == error_mark_node)
12324 return error_mark_node;
12325
12326 return Gogo::receive_from_channel(element_type_tree, channel,
12327 this->for_select_, this->location());
12328 }
12329
12330 // Make a receive expression.
12331
12332 Receive_expression*
12333 Expression::make_receive(Expression* channel, source_location location)
12334 {
12335 return new Receive_expression(channel, location);
12336 }
12337
12338 // An expression which evaluates to a pointer to the type descriptor
12339 // of a type.
12340
12341 class Type_descriptor_expression : public Expression
12342 {
12343 public:
12344 Type_descriptor_expression(Type* type, source_location location)
12345 : Expression(EXPRESSION_TYPE_DESCRIPTOR, location),
12346 type_(type)
12347 { }
12348
12349 protected:
12350 Type*
12351 do_type()
12352 { return Type::make_type_descriptor_ptr_type(); }
12353
12354 void
12355 do_determine_type(const Type_context*)
12356 { }
12357
12358 Expression*
12359 do_copy()
12360 { return this; }
12361
12362 tree
12363 do_get_tree(Translate_context* context)
12364 { return this->type_->type_descriptor_pointer(context->gogo()); }
12365
12366 private:
12367 // The type for which this is the descriptor.
12368 Type* type_;
12369 };
12370
12371 // Make a type descriptor expression.
12372
12373 Expression*
12374 Expression::make_type_descriptor(Type* type, source_location location)
12375 {
12376 return new Type_descriptor_expression(type, location);
12377 }
12378
12379 // An expression which evaluates to some characteristic of a type.
12380 // This is only used to initialize fields of a type descriptor. Using
12381 // a new expression class is slightly inefficient but gives us a good
12382 // separation between the frontend and the middle-end with regard to
12383 // how types are laid out.
12384
12385 class Type_info_expression : public Expression
12386 {
12387 public:
12388 Type_info_expression(Type* type, Type_info type_info)
12389 : Expression(EXPRESSION_TYPE_INFO, BUILTINS_LOCATION),
12390 type_(type), type_info_(type_info)
12391 { }
12392
12393 protected:
12394 Type*
12395 do_type();
12396
12397 void
12398 do_determine_type(const Type_context*)
12399 { }
12400
12401 Expression*
12402 do_copy()
12403 { return this; }
12404
12405 tree
12406 do_get_tree(Translate_context* context);
12407
12408 private:
12409 // The type for which we are getting information.
12410 Type* type_;
12411 // What information we want.
12412 Type_info type_info_;
12413 };
12414
12415 // The type is chosen to match what the type descriptor struct
12416 // expects.
12417
12418 Type*
12419 Type_info_expression::do_type()
12420 {
12421 switch (this->type_info_)
12422 {
12423 case TYPE_INFO_SIZE:
12424 return Type::lookup_integer_type("uintptr");
12425 case TYPE_INFO_ALIGNMENT:
12426 case TYPE_INFO_FIELD_ALIGNMENT:
12427 return Type::lookup_integer_type("uint8");
12428 default:
12429 gcc_unreachable();
12430 }
12431 }
12432
12433 // Return type information in GENERIC.
12434
12435 tree
12436 Type_info_expression::do_get_tree(Translate_context* context)
12437 {
12438 tree type_tree = this->type_->get_tree(context->gogo());
12439 if (type_tree == error_mark_node)
12440 return error_mark_node;
12441
12442 tree val_type_tree = this->type()->get_tree(context->gogo());
12443 gcc_assert(val_type_tree != error_mark_node);
12444
12445 if (this->type_info_ == TYPE_INFO_SIZE)
12446 return fold_convert_loc(BUILTINS_LOCATION, val_type_tree,
12447 TYPE_SIZE_UNIT(type_tree));
12448 else
12449 {
12450 unsigned int val;
12451 if (this->type_info_ == TYPE_INFO_ALIGNMENT)
12452 val = go_type_alignment(type_tree);
12453 else
12454 val = go_field_alignment(type_tree);
12455 return build_int_cstu(val_type_tree, val);
12456 }
12457 }
12458
12459 // Make a type info expression.
12460
12461 Expression*
12462 Expression::make_type_info(Type* type, Type_info type_info)
12463 {
12464 return new Type_info_expression(type, type_info);
12465 }
12466
12467 // An expression which evaluates to the offset of a field within a
12468 // struct. This, like Type_info_expression, q.v., is only used to
12469 // initialize fields of a type descriptor.
12470
12471 class Struct_field_offset_expression : public Expression
12472 {
12473 public:
12474 Struct_field_offset_expression(Struct_type* type, const Struct_field* field)
12475 : Expression(EXPRESSION_STRUCT_FIELD_OFFSET, BUILTINS_LOCATION),
12476 type_(type), field_(field)
12477 { }
12478
12479 protected:
12480 Type*
12481 do_type()
12482 { return Type::lookup_integer_type("uintptr"); }
12483
12484 void
12485 do_determine_type(const Type_context*)
12486 { }
12487
12488 Expression*
12489 do_copy()
12490 { return this; }
12491
12492 tree
12493 do_get_tree(Translate_context* context);
12494
12495 private:
12496 // The type of the struct.
12497 Struct_type* type_;
12498 // The field.
12499 const Struct_field* field_;
12500 };
12501
12502 // Return a struct field offset in GENERIC.
12503
12504 tree
12505 Struct_field_offset_expression::do_get_tree(Translate_context* context)
12506 {
12507 tree type_tree = this->type_->get_tree(context->gogo());
12508 if (type_tree == error_mark_node)
12509 return error_mark_node;
12510
12511 tree val_type_tree = this->type()->get_tree(context->gogo());
12512 gcc_assert(val_type_tree != error_mark_node);
12513
12514 const Struct_field_list* fields = this->type_->fields();
12515 tree struct_field_tree = TYPE_FIELDS(type_tree);
12516 Struct_field_list::const_iterator p;
12517 for (p = fields->begin();
12518 p != fields->end();
12519 ++p, struct_field_tree = DECL_CHAIN(struct_field_tree))
12520 {
12521 gcc_assert(struct_field_tree != NULL_TREE);
12522 if (&*p == this->field_)
12523 break;
12524 }
12525 gcc_assert(&*p == this->field_);
12526
12527 return fold_convert_loc(BUILTINS_LOCATION, val_type_tree,
12528 byte_position(struct_field_tree));
12529 }
12530
12531 // Make an expression for a struct field offset.
12532
12533 Expression*
12534 Expression::make_struct_field_offset(Struct_type* type,
12535 const Struct_field* field)
12536 {
12537 return new Struct_field_offset_expression(type, field);
12538 }
12539
12540 // An expression which evaluates to the address of an unnamed label.
12541
12542 class Label_addr_expression : public Expression
12543 {
12544 public:
12545 Label_addr_expression(Label* label, source_location location)
12546 : Expression(EXPRESSION_LABEL_ADDR, location),
12547 label_(label)
12548 { }
12549
12550 protected:
12551 Type*
12552 do_type()
12553 { return Type::make_pointer_type(Type::make_void_type()); }
12554
12555 void
12556 do_determine_type(const Type_context*)
12557 { }
12558
12559 Expression*
12560 do_copy()
12561 { return new Label_addr_expression(this->label_, this->location()); }
12562
12563 tree
12564 do_get_tree(Translate_context*)
12565 { return this->label_->get_addr(this->location()); }
12566
12567 private:
12568 // The label whose address we are taking.
12569 Label* label_;
12570 };
12571
12572 // Make an expression for the address of an unnamed label.
12573
12574 Expression*
12575 Expression::make_label_addr(Label* label, source_location location)
12576 {
12577 return new Label_addr_expression(label, location);
12578 }
12579
12580 // Import an expression. This comes at the end in order to see the
12581 // various class definitions.
12582
12583 Expression*
12584 Expression::import_expression(Import* imp)
12585 {
12586 int c = imp->peek_char();
12587 if (imp->match_c_string("- ")
12588 || imp->match_c_string("! ")
12589 || imp->match_c_string("^ "))
12590 return Unary_expression::do_import(imp);
12591 else if (c == '(')
12592 return Binary_expression::do_import(imp);
12593 else if (imp->match_c_string("true")
12594 || imp->match_c_string("false"))
12595 return Boolean_expression::do_import(imp);
12596 else if (c == '"')
12597 return String_expression::do_import(imp);
12598 else if (c == '-' || (c >= '0' && c <= '9'))
12599 {
12600 // This handles integers, floats and complex constants.
12601 return Integer_expression::do_import(imp);
12602 }
12603 else if (imp->match_c_string("nil"))
12604 return Nil_expression::do_import(imp);
12605 else if (imp->match_c_string("convert"))
12606 return Type_conversion_expression::do_import(imp);
12607 else
12608 {
12609 error_at(imp->location(), "import error: expected expression");
12610 return Expression::make_error(imp->location());
12611 }
12612 }
12613
12614 // Class Expression_list.
12615
12616 // Traverse the list.
12617
12618 int
12619 Expression_list::traverse(Traverse* traverse)
12620 {
12621 for (Expression_list::iterator p = this->begin();
12622 p != this->end();
12623 ++p)
12624 {
12625 if (*p != NULL)
12626 {
12627 if (Expression::traverse(&*p, traverse) == TRAVERSE_EXIT)
12628 return TRAVERSE_EXIT;
12629 }
12630 }
12631 return TRAVERSE_CONTINUE;
12632 }
12633
12634 // Copy the list.
12635
12636 Expression_list*
12637 Expression_list::copy()
12638 {
12639 Expression_list* ret = new Expression_list();
12640 for (Expression_list::iterator p = this->begin();
12641 p != this->end();
12642 ++p)
12643 {
12644 if (*p == NULL)
12645 ret->push_back(NULL);
12646 else
12647 ret->push_back((*p)->copy());
12648 }
12649 return ret;
12650 }
12651
12652 // Return whether an expression list has an error expression.
12653
12654 bool
12655 Expression_list::contains_error() const
12656 {
12657 for (Expression_list::const_iterator p = this->begin();
12658 p != this->end();
12659 ++p)
12660 if (*p != NULL && (*p)->is_error_expression())
12661 return true;
12662 return false;
12663 }