trans-types.c (gfc_type_for_size): Return wider type if no suitable narrower type...
[gcc.git] / gcc / fortran / trans-types.c
1 /* Backend support for Fortran 95 basic types and derived types.
2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
3 2010, 2011
4 Free Software Foundation, Inc.
5 Contributed by Paul Brook <paul@nowt.org>
6 and Steven Bosscher <s.bosscher@student.tudelft.nl>
7
8 This file is part of GCC.
9
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
13 version.
14
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
23
24 /* trans-types.c -- gfortran backend types */
25
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h" /* For INTMAX_TYPE, INT8_TYPE, INT16_TYPE, INT32_TYPE,
30 INT64_TYPE, INT_LEAST8_TYPE, INT_LEAST16_TYPE,
31 INT_LEAST32_TYPE, INT_LEAST64_TYPE, INT_FAST8_TYPE,
32 INT_FAST16_TYPE, INT_FAST32_TYPE, INT_FAST64_TYPE,
33 BOOL_TYPE_SIZE, BITS_PER_UNIT, POINTER_SIZE,
34 INT_TYPE_SIZE, CHAR_TYPE_SIZE, SHORT_TYPE_SIZE,
35 LONG_TYPE_SIZE, LONG_LONG_TYPE_SIZE,
36 FLOAT_TYPE_SIZE, DOUBLE_TYPE_SIZE,
37 LONG_DOUBLE_TYPE_SIZE and LIBGCC2_HAS_TF_MODE. */
38 #include "tree.h"
39 #include "langhooks.h" /* For iso-c-bindings.def. */
40 #include "target.h"
41 #include "ggc.h"
42 #include "diagnostic-core.h" /* For fatal_error. */
43 #include "toplev.h" /* For rest_of_decl_compilation. */
44 #include "gfortran.h"
45 #include "trans.h"
46 #include "trans-types.h"
47 #include "trans-const.h"
48 #include "flags.h"
49 #include "dwarf2out.h" /* For struct array_descr_info. */
50 \f
51
52 #if (GFC_MAX_DIMENSIONS < 10)
53 #define GFC_RANK_DIGITS 1
54 #define GFC_RANK_PRINTF_FORMAT "%01d"
55 #elif (GFC_MAX_DIMENSIONS < 100)
56 #define GFC_RANK_DIGITS 2
57 #define GFC_RANK_PRINTF_FORMAT "%02d"
58 #else
59 #error If you really need >99 dimensions, continue the sequence above...
60 #endif
61
62 /* array of structs so we don't have to worry about xmalloc or free */
63 CInteropKind_t c_interop_kinds_table[ISOCBINDING_NUMBER];
64
65 tree gfc_array_index_type;
66 tree gfc_array_range_type;
67 tree gfc_character1_type_node;
68 tree pvoid_type_node;
69 tree prvoid_type_node;
70 tree ppvoid_type_node;
71 tree pchar_type_node;
72 tree pfunc_type_node;
73
74 tree gfc_charlen_type_node;
75
76 tree float128_type_node = NULL_TREE;
77 tree complex_float128_type_node = NULL_TREE;
78
79 bool gfc_real16_is_float128 = false;
80
81 static GTY(()) tree gfc_desc_dim_type;
82 static GTY(()) tree gfc_max_array_element_size;
83 static GTY(()) tree gfc_array_descriptor_base[2 * GFC_MAX_DIMENSIONS];
84 static GTY(()) tree gfc_array_descriptor_base_caf[2 * GFC_MAX_DIMENSIONS];
85
86 /* Arrays for all integral and real kinds. We'll fill this in at runtime
87 after the target has a chance to process command-line options. */
88
89 #define MAX_INT_KINDS 5
90 gfc_integer_info gfc_integer_kinds[MAX_INT_KINDS + 1];
91 gfc_logical_info gfc_logical_kinds[MAX_INT_KINDS + 1];
92 static GTY(()) tree gfc_integer_types[MAX_INT_KINDS + 1];
93 static GTY(()) tree gfc_logical_types[MAX_INT_KINDS + 1];
94
95 #define MAX_REAL_KINDS 5
96 gfc_real_info gfc_real_kinds[MAX_REAL_KINDS + 1];
97 static GTY(()) tree gfc_real_types[MAX_REAL_KINDS + 1];
98 static GTY(()) tree gfc_complex_types[MAX_REAL_KINDS + 1];
99
100 #define MAX_CHARACTER_KINDS 2
101 gfc_character_info gfc_character_kinds[MAX_CHARACTER_KINDS + 1];
102 static GTY(()) tree gfc_character_types[MAX_CHARACTER_KINDS + 1];
103 static GTY(()) tree gfc_pcharacter_types[MAX_CHARACTER_KINDS + 1];
104
105 static tree gfc_add_field_to_struct_1 (tree, tree, tree, tree **);
106
107 /* The integer kind to use for array indices. This will be set to the
108 proper value based on target information from the backend. */
109
110 int gfc_index_integer_kind;
111
112 /* The default kinds of the various types. */
113
114 int gfc_default_integer_kind;
115 int gfc_max_integer_kind;
116 int gfc_default_real_kind;
117 int gfc_default_double_kind;
118 int gfc_default_character_kind;
119 int gfc_default_logical_kind;
120 int gfc_default_complex_kind;
121 int gfc_c_int_kind;
122 int gfc_atomic_int_kind;
123 int gfc_atomic_logical_kind;
124
125 /* The kind size used for record offsets. If the target system supports
126 kind=8, this will be set to 8, otherwise it is set to 4. */
127 int gfc_intio_kind;
128
129 /* The integer kind used to store character lengths. */
130 int gfc_charlen_int_kind;
131
132 /* The size of the numeric storage unit and character storage unit. */
133 int gfc_numeric_storage_size;
134 int gfc_character_storage_size;
135
136
137 gfc_try
138 gfc_check_any_c_kind (gfc_typespec *ts)
139 {
140 int i;
141
142 for (i = 0; i < ISOCBINDING_NUMBER; i++)
143 {
144 /* Check for any C interoperable kind for the given type/kind in ts.
145 This can be used after verify_c_interop to make sure that the
146 Fortran kind being used exists in at least some form for C. */
147 if (c_interop_kinds_table[i].f90_type == ts->type &&
148 c_interop_kinds_table[i].value == ts->kind)
149 return SUCCESS;
150 }
151
152 return FAILURE;
153 }
154
155
156 static int
157 get_real_kind_from_node (tree type)
158 {
159 int i;
160
161 for (i = 0; gfc_real_kinds[i].kind != 0; i++)
162 if (gfc_real_kinds[i].mode_precision == TYPE_PRECISION (type))
163 return gfc_real_kinds[i].kind;
164
165 return -4;
166 }
167
168 static int
169 get_int_kind_from_node (tree type)
170 {
171 int i;
172
173 if (!type)
174 return -2;
175
176 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
177 if (gfc_integer_kinds[i].bit_size == TYPE_PRECISION (type))
178 return gfc_integer_kinds[i].kind;
179
180 return -1;
181 }
182
183 /* Return a typenode for the "standard" C type with a given name. */
184 static tree
185 get_typenode_from_name (const char *name)
186 {
187 if (name == NULL || *name == '\0')
188 return NULL_TREE;
189
190 if (strcmp (name, "char") == 0)
191 return char_type_node;
192 if (strcmp (name, "unsigned char") == 0)
193 return unsigned_char_type_node;
194 if (strcmp (name, "signed char") == 0)
195 return signed_char_type_node;
196
197 if (strcmp (name, "short int") == 0)
198 return short_integer_type_node;
199 if (strcmp (name, "short unsigned int") == 0)
200 return short_unsigned_type_node;
201
202 if (strcmp (name, "int") == 0)
203 return integer_type_node;
204 if (strcmp (name, "unsigned int") == 0)
205 return unsigned_type_node;
206
207 if (strcmp (name, "long int") == 0)
208 return long_integer_type_node;
209 if (strcmp (name, "long unsigned int") == 0)
210 return long_unsigned_type_node;
211
212 if (strcmp (name, "long long int") == 0)
213 return long_long_integer_type_node;
214 if (strcmp (name, "long long unsigned int") == 0)
215 return long_long_unsigned_type_node;
216
217 gcc_unreachable ();
218 }
219
220 static int
221 get_int_kind_from_name (const char *name)
222 {
223 return get_int_kind_from_node (get_typenode_from_name (name));
224 }
225
226
227 /* Get the kind number corresponding to an integer of given size,
228 following the required return values for ISO_FORTRAN_ENV INT* constants:
229 -2 is returned if we support a kind of larger size, -1 otherwise. */
230 int
231 gfc_get_int_kind_from_width_isofortranenv (int size)
232 {
233 int i;
234
235 /* Look for a kind with matching storage size. */
236 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
237 if (gfc_integer_kinds[i].bit_size == size)
238 return gfc_integer_kinds[i].kind;
239
240 /* Look for a kind with larger storage size. */
241 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
242 if (gfc_integer_kinds[i].bit_size > size)
243 return -2;
244
245 return -1;
246 }
247
248 /* Get the kind number corresponding to a real of given storage size,
249 following the required return values for ISO_FORTRAN_ENV REAL* constants:
250 -2 is returned if we support a kind of larger size, -1 otherwise. */
251 int
252 gfc_get_real_kind_from_width_isofortranenv (int size)
253 {
254 int i;
255
256 size /= 8;
257
258 /* Look for a kind with matching storage size. */
259 for (i = 0; gfc_real_kinds[i].kind != 0; i++)
260 if (int_size_in_bytes (gfc_get_real_type (gfc_real_kinds[i].kind)) == size)
261 return gfc_real_kinds[i].kind;
262
263 /* Look for a kind with larger storage size. */
264 for (i = 0; gfc_real_kinds[i].kind != 0; i++)
265 if (int_size_in_bytes (gfc_get_real_type (gfc_real_kinds[i].kind)) > size)
266 return -2;
267
268 return -1;
269 }
270
271
272
273 static int
274 get_int_kind_from_width (int size)
275 {
276 int i;
277
278 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
279 if (gfc_integer_kinds[i].bit_size == size)
280 return gfc_integer_kinds[i].kind;
281
282 return -2;
283 }
284
285 static int
286 get_int_kind_from_minimal_width (int size)
287 {
288 int i;
289
290 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
291 if (gfc_integer_kinds[i].bit_size >= size)
292 return gfc_integer_kinds[i].kind;
293
294 return -2;
295 }
296
297
298 /* Generate the CInteropKind_t objects for the C interoperable
299 kinds. */
300
301 static
302 void init_c_interop_kinds (void)
303 {
304 int i;
305
306 /* init all pointers in the list to NULL */
307 for (i = 0; i < ISOCBINDING_NUMBER; i++)
308 {
309 /* Initialize the name and value fields. */
310 c_interop_kinds_table[i].name[0] = '\0';
311 c_interop_kinds_table[i].value = -100;
312 c_interop_kinds_table[i].f90_type = BT_UNKNOWN;
313 }
314
315 #define NAMED_INTCST(a,b,c,d) \
316 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
317 c_interop_kinds_table[a].f90_type = BT_INTEGER; \
318 c_interop_kinds_table[a].value = c;
319 #define NAMED_REALCST(a,b,c) \
320 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
321 c_interop_kinds_table[a].f90_type = BT_REAL; \
322 c_interop_kinds_table[a].value = c;
323 #define NAMED_CMPXCST(a,b,c) \
324 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
325 c_interop_kinds_table[a].f90_type = BT_COMPLEX; \
326 c_interop_kinds_table[a].value = c;
327 #define NAMED_LOGCST(a,b,c) \
328 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
329 c_interop_kinds_table[a].f90_type = BT_LOGICAL; \
330 c_interop_kinds_table[a].value = c;
331 #define NAMED_CHARKNDCST(a,b,c) \
332 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
333 c_interop_kinds_table[a].f90_type = BT_CHARACTER; \
334 c_interop_kinds_table[a].value = c;
335 #define NAMED_CHARCST(a,b,c) \
336 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
337 c_interop_kinds_table[a].f90_type = BT_CHARACTER; \
338 c_interop_kinds_table[a].value = c;
339 #define DERIVED_TYPE(a,b,c) \
340 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
341 c_interop_kinds_table[a].f90_type = BT_DERIVED; \
342 c_interop_kinds_table[a].value = c;
343 #define PROCEDURE(a,b) \
344 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
345 c_interop_kinds_table[a].f90_type = BT_PROCEDURE; \
346 c_interop_kinds_table[a].value = 0;
347 #include "iso-c-binding.def"
348 #define NAMED_FUNCTION(a,b,c,d) \
349 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
350 c_interop_kinds_table[a].f90_type = BT_PROCEDURE; \
351 c_interop_kinds_table[a].value = c;
352 #include "iso-c-binding.def"
353 }
354
355
356 /* Query the target to determine which machine modes are available for
357 computation. Choose KIND numbers for them. */
358
359 void
360 gfc_init_kinds (void)
361 {
362 unsigned int mode;
363 int i_index, r_index, kind;
364 bool saw_i4 = false, saw_i8 = false;
365 bool saw_r4 = false, saw_r8 = false, saw_r16 = false;
366
367 for (i_index = 0, mode = MIN_MODE_INT; mode <= MAX_MODE_INT; mode++)
368 {
369 int kind, bitsize;
370
371 if (!targetm.scalar_mode_supported_p ((enum machine_mode) mode))
372 continue;
373
374 /* The middle end doesn't support constants larger than 2*HWI.
375 Perhaps the target hook shouldn't have accepted these either,
376 but just to be safe... */
377 bitsize = GET_MODE_BITSIZE (mode);
378 if (bitsize > 2*HOST_BITS_PER_WIDE_INT)
379 continue;
380
381 gcc_assert (i_index != MAX_INT_KINDS);
382
383 /* Let the kind equal the bit size divided by 8. This insulates the
384 programmer from the underlying byte size. */
385 kind = bitsize / 8;
386
387 if (kind == 4)
388 saw_i4 = true;
389 if (kind == 8)
390 saw_i8 = true;
391
392 gfc_integer_kinds[i_index].kind = kind;
393 gfc_integer_kinds[i_index].radix = 2;
394 gfc_integer_kinds[i_index].digits = bitsize - 1;
395 gfc_integer_kinds[i_index].bit_size = bitsize;
396
397 gfc_logical_kinds[i_index].kind = kind;
398 gfc_logical_kinds[i_index].bit_size = bitsize;
399
400 i_index += 1;
401 }
402
403 /* Set the kind used to match GFC_INT_IO in libgfortran. This is
404 used for large file access. */
405
406 if (saw_i8)
407 gfc_intio_kind = 8;
408 else
409 gfc_intio_kind = 4;
410
411 /* If we do not at least have kind = 4, everything is pointless. */
412 gcc_assert(saw_i4);
413
414 /* Set the maximum integer kind. Used with at least BOZ constants. */
415 gfc_max_integer_kind = gfc_integer_kinds[i_index - 1].kind;
416
417 for (r_index = 0, mode = MIN_MODE_FLOAT; mode <= MAX_MODE_FLOAT; mode++)
418 {
419 const struct real_format *fmt =
420 REAL_MODE_FORMAT ((enum machine_mode) mode);
421 int kind;
422
423 if (fmt == NULL)
424 continue;
425 if (!targetm.scalar_mode_supported_p ((enum machine_mode) mode))
426 continue;
427
428 /* Only let float, double, long double and __float128 go through.
429 Runtime support for others is not provided, so they would be
430 useless. */
431 if (mode != TYPE_MODE (float_type_node)
432 && (mode != TYPE_MODE (double_type_node))
433 && (mode != TYPE_MODE (long_double_type_node))
434 #if defined(LIBGCC2_HAS_TF_MODE) && defined(ENABLE_LIBQUADMATH_SUPPORT)
435 && (mode != TFmode)
436 #endif
437 )
438 continue;
439
440 /* Let the kind equal the precision divided by 8, rounding up. Again,
441 this insulates the programmer from the underlying byte size.
442
443 Also, it effectively deals with IEEE extended formats. There, the
444 total size of the type may equal 16, but it's got 6 bytes of padding
445 and the increased size can get in the way of a real IEEE quad format
446 which may also be supported by the target.
447
448 We round up so as to handle IA-64 __floatreg (RFmode), which is an
449 82 bit type. Not to be confused with __float80 (XFmode), which is
450 an 80 bit type also supported by IA-64. So XFmode should come out
451 to be kind=10, and RFmode should come out to be kind=11. Egads. */
452
453 kind = (GET_MODE_PRECISION (mode) + 7) / 8;
454
455 if (kind == 4)
456 saw_r4 = true;
457 if (kind == 8)
458 saw_r8 = true;
459 if (kind == 16)
460 saw_r16 = true;
461
462 /* Careful we don't stumble a weird internal mode. */
463 gcc_assert (r_index <= 0 || gfc_real_kinds[r_index-1].kind != kind);
464 /* Or have too many modes for the allocated space. */
465 gcc_assert (r_index != MAX_REAL_KINDS);
466
467 gfc_real_kinds[r_index].kind = kind;
468 gfc_real_kinds[r_index].radix = fmt->b;
469 gfc_real_kinds[r_index].digits = fmt->p;
470 gfc_real_kinds[r_index].min_exponent = fmt->emin;
471 gfc_real_kinds[r_index].max_exponent = fmt->emax;
472 if (fmt->pnan < fmt->p)
473 /* This is an IBM extended double format (or the MIPS variant)
474 made up of two IEEE doubles. The value of the long double is
475 the sum of the values of the two parts. The most significant
476 part is required to be the value of the long double rounded
477 to the nearest double. If we use emax of 1024 then we can't
478 represent huge(x) = (1 - b**(-p)) * b**(emax-1) * b, because
479 rounding will make the most significant part overflow. */
480 gfc_real_kinds[r_index].max_exponent = fmt->emax - 1;
481 gfc_real_kinds[r_index].mode_precision = GET_MODE_PRECISION (mode);
482 r_index += 1;
483 }
484
485 /* Choose the default integer kind. We choose 4 unless the user
486 directs us otherwise. */
487 if (gfc_option.flag_default_integer)
488 {
489 if (!saw_i8)
490 fatal_error ("integer kind=8 not available for -fdefault-integer-8 option");
491 gfc_default_integer_kind = 8;
492
493 /* Even if the user specified that the default integer kind be 8,
494 the numeric storage size isn't 64. In this case, a warning will
495 be issued when NUMERIC_STORAGE_SIZE is used. */
496 gfc_numeric_storage_size = 4 * 8;
497 }
498 else if (saw_i4)
499 {
500 gfc_default_integer_kind = 4;
501 gfc_numeric_storage_size = 4 * 8;
502 }
503 else
504 {
505 gfc_default_integer_kind = gfc_integer_kinds[i_index - 1].kind;
506 gfc_numeric_storage_size = gfc_integer_kinds[i_index - 1].bit_size;
507 }
508
509 /* Choose the default real kind. Again, we choose 4 when possible. */
510 if (gfc_option.flag_default_real)
511 {
512 if (!saw_r8)
513 fatal_error ("real kind=8 not available for -fdefault-real-8 option");
514 gfc_default_real_kind = 8;
515 }
516 else if (saw_r4)
517 gfc_default_real_kind = 4;
518 else
519 gfc_default_real_kind = gfc_real_kinds[0].kind;
520
521 /* Choose the default double kind. If -fdefault-real and -fdefault-double
522 are specified, we use kind=8, if it's available. If -fdefault-real is
523 specified without -fdefault-double, we use kind=16, if it's available.
524 Otherwise we do not change anything. */
525 if (gfc_option.flag_default_double && !gfc_option.flag_default_real)
526 fatal_error ("Use of -fdefault-double-8 requires -fdefault-real-8");
527
528 if (gfc_option.flag_default_real && gfc_option.flag_default_double && saw_r8)
529 gfc_default_double_kind = 8;
530 else if (gfc_option.flag_default_real && saw_r16)
531 gfc_default_double_kind = 16;
532 else if (saw_r4 && saw_r8)
533 gfc_default_double_kind = 8;
534 else
535 {
536 /* F95 14.6.3.1: A nonpointer scalar object of type double precision
537 real ... occupies two contiguous numeric storage units.
538
539 Therefore we must be supplied a kind twice as large as we chose
540 for single precision. There are loopholes, in that double
541 precision must *occupy* two storage units, though it doesn't have
542 to *use* two storage units. Which means that you can make this
543 kind artificially wide by padding it. But at present there are
544 no GCC targets for which a two-word type does not exist, so we
545 just let gfc_validate_kind abort and tell us if something breaks. */
546
547 gfc_default_double_kind
548 = gfc_validate_kind (BT_REAL, gfc_default_real_kind * 2, false);
549 }
550
551 /* The default logical kind is constrained to be the same as the
552 default integer kind. Similarly with complex and real. */
553 gfc_default_logical_kind = gfc_default_integer_kind;
554 gfc_default_complex_kind = gfc_default_real_kind;
555
556 /* We only have two character kinds: ASCII and UCS-4.
557 ASCII corresponds to a 8-bit integer type, if one is available.
558 UCS-4 corresponds to a 32-bit integer type, if one is available. */
559 i_index = 0;
560 if ((kind = get_int_kind_from_width (8)) > 0)
561 {
562 gfc_character_kinds[i_index].kind = kind;
563 gfc_character_kinds[i_index].bit_size = 8;
564 gfc_character_kinds[i_index].name = "ascii";
565 i_index++;
566 }
567 if ((kind = get_int_kind_from_width (32)) > 0)
568 {
569 gfc_character_kinds[i_index].kind = kind;
570 gfc_character_kinds[i_index].bit_size = 32;
571 gfc_character_kinds[i_index].name = "iso_10646";
572 i_index++;
573 }
574
575 /* Choose the smallest integer kind for our default character. */
576 gfc_default_character_kind = gfc_character_kinds[0].kind;
577 gfc_character_storage_size = gfc_default_character_kind * 8;
578
579 /* Choose the integer kind the same size as "void*" for our index kind. */
580 gfc_index_integer_kind = POINTER_SIZE / 8;
581 /* Pick a kind the same size as the C "int" type. */
582 gfc_c_int_kind = INT_TYPE_SIZE / 8;
583
584 /* Choose atomic kinds to match C's int. */
585 gfc_atomic_int_kind = gfc_c_int_kind;
586 gfc_atomic_logical_kind = gfc_c_int_kind;
587
588 /* initialize the C interoperable kinds */
589 init_c_interop_kinds();
590 }
591
592 /* Make sure that a valid kind is present. Returns an index into the
593 associated kinds array, -1 if the kind is not present. */
594
595 static int
596 validate_integer (int kind)
597 {
598 int i;
599
600 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
601 if (gfc_integer_kinds[i].kind == kind)
602 return i;
603
604 return -1;
605 }
606
607 static int
608 validate_real (int kind)
609 {
610 int i;
611
612 for (i = 0; gfc_real_kinds[i].kind != 0; i++)
613 if (gfc_real_kinds[i].kind == kind)
614 return i;
615
616 return -1;
617 }
618
619 static int
620 validate_logical (int kind)
621 {
622 int i;
623
624 for (i = 0; gfc_logical_kinds[i].kind; i++)
625 if (gfc_logical_kinds[i].kind == kind)
626 return i;
627
628 return -1;
629 }
630
631 static int
632 validate_character (int kind)
633 {
634 int i;
635
636 for (i = 0; gfc_character_kinds[i].kind; i++)
637 if (gfc_character_kinds[i].kind == kind)
638 return i;
639
640 return -1;
641 }
642
643 /* Validate a kind given a basic type. The return value is the same
644 for the child functions, with -1 indicating nonexistence of the
645 type. If MAY_FAIL is false, then -1 is never returned, and we ICE. */
646
647 int
648 gfc_validate_kind (bt type, int kind, bool may_fail)
649 {
650 int rc;
651
652 switch (type)
653 {
654 case BT_REAL: /* Fall through */
655 case BT_COMPLEX:
656 rc = validate_real (kind);
657 break;
658 case BT_INTEGER:
659 rc = validate_integer (kind);
660 break;
661 case BT_LOGICAL:
662 rc = validate_logical (kind);
663 break;
664 case BT_CHARACTER:
665 rc = validate_character (kind);
666 break;
667
668 default:
669 gfc_internal_error ("gfc_validate_kind(): Got bad type");
670 }
671
672 if (rc < 0 && !may_fail)
673 gfc_internal_error ("gfc_validate_kind(): Got bad kind");
674
675 return rc;
676 }
677
678
679 /* Four subroutines of gfc_init_types. Create type nodes for the given kind.
680 Reuse common type nodes where possible. Recognize if the kind matches up
681 with a C type. This will be used later in determining which routines may
682 be scarfed from libm. */
683
684 static tree
685 gfc_build_int_type (gfc_integer_info *info)
686 {
687 int mode_precision = info->bit_size;
688
689 if (mode_precision == CHAR_TYPE_SIZE)
690 info->c_char = 1;
691 if (mode_precision == SHORT_TYPE_SIZE)
692 info->c_short = 1;
693 if (mode_precision == INT_TYPE_SIZE)
694 info->c_int = 1;
695 if (mode_precision == LONG_TYPE_SIZE)
696 info->c_long = 1;
697 if (mode_precision == LONG_LONG_TYPE_SIZE)
698 info->c_long_long = 1;
699
700 if (TYPE_PRECISION (intQI_type_node) == mode_precision)
701 return intQI_type_node;
702 if (TYPE_PRECISION (intHI_type_node) == mode_precision)
703 return intHI_type_node;
704 if (TYPE_PRECISION (intSI_type_node) == mode_precision)
705 return intSI_type_node;
706 if (TYPE_PRECISION (intDI_type_node) == mode_precision)
707 return intDI_type_node;
708 if (TYPE_PRECISION (intTI_type_node) == mode_precision)
709 return intTI_type_node;
710
711 return make_signed_type (mode_precision);
712 }
713
714 tree
715 gfc_build_uint_type (int size)
716 {
717 if (size == CHAR_TYPE_SIZE)
718 return unsigned_char_type_node;
719 if (size == SHORT_TYPE_SIZE)
720 return short_unsigned_type_node;
721 if (size == INT_TYPE_SIZE)
722 return unsigned_type_node;
723 if (size == LONG_TYPE_SIZE)
724 return long_unsigned_type_node;
725 if (size == LONG_LONG_TYPE_SIZE)
726 return long_long_unsigned_type_node;
727
728 return make_unsigned_type (size);
729 }
730
731
732 static tree
733 gfc_build_real_type (gfc_real_info *info)
734 {
735 int mode_precision = info->mode_precision;
736 tree new_type;
737
738 if (mode_precision == FLOAT_TYPE_SIZE)
739 info->c_float = 1;
740 if (mode_precision == DOUBLE_TYPE_SIZE)
741 info->c_double = 1;
742 if (mode_precision == LONG_DOUBLE_TYPE_SIZE)
743 info->c_long_double = 1;
744 if (mode_precision != LONG_DOUBLE_TYPE_SIZE && mode_precision == 128)
745 {
746 info->c_float128 = 1;
747 gfc_real16_is_float128 = true;
748 }
749
750 if (TYPE_PRECISION (float_type_node) == mode_precision)
751 return float_type_node;
752 if (TYPE_PRECISION (double_type_node) == mode_precision)
753 return double_type_node;
754 if (TYPE_PRECISION (long_double_type_node) == mode_precision)
755 return long_double_type_node;
756
757 new_type = make_node (REAL_TYPE);
758 TYPE_PRECISION (new_type) = mode_precision;
759 layout_type (new_type);
760 return new_type;
761 }
762
763 static tree
764 gfc_build_complex_type (tree scalar_type)
765 {
766 tree new_type;
767
768 if (scalar_type == NULL)
769 return NULL;
770 if (scalar_type == float_type_node)
771 return complex_float_type_node;
772 if (scalar_type == double_type_node)
773 return complex_double_type_node;
774 if (scalar_type == long_double_type_node)
775 return complex_long_double_type_node;
776
777 new_type = make_node (COMPLEX_TYPE);
778 TREE_TYPE (new_type) = scalar_type;
779 layout_type (new_type);
780 return new_type;
781 }
782
783 static tree
784 gfc_build_logical_type (gfc_logical_info *info)
785 {
786 int bit_size = info->bit_size;
787 tree new_type;
788
789 if (bit_size == BOOL_TYPE_SIZE)
790 {
791 info->c_bool = 1;
792 return boolean_type_node;
793 }
794
795 new_type = make_unsigned_type (bit_size);
796 TREE_SET_CODE (new_type, BOOLEAN_TYPE);
797 TYPE_MAX_VALUE (new_type) = build_int_cst (new_type, 1);
798 TYPE_PRECISION (new_type) = 1;
799
800 return new_type;
801 }
802
803
804 /* Create the backend type nodes. We map them to their
805 equivalent C type, at least for now. We also give
806 names to the types here, and we push them in the
807 global binding level context.*/
808
809 void
810 gfc_init_types (void)
811 {
812 char name_buf[18];
813 int index;
814 tree type;
815 unsigned n;
816 unsigned HOST_WIDE_INT hi;
817 unsigned HOST_WIDE_INT lo;
818
819 /* Create and name the types. */
820 #define PUSH_TYPE(name, node) \
821 pushdecl (build_decl (input_location, \
822 TYPE_DECL, get_identifier (name), node))
823
824 for (index = 0; gfc_integer_kinds[index].kind != 0; ++index)
825 {
826 type = gfc_build_int_type (&gfc_integer_kinds[index]);
827 /* Ensure integer(kind=1) doesn't have TYPE_STRING_FLAG set. */
828 if (TYPE_STRING_FLAG (type))
829 type = make_signed_type (gfc_integer_kinds[index].bit_size);
830 gfc_integer_types[index] = type;
831 snprintf (name_buf, sizeof(name_buf), "integer(kind=%d)",
832 gfc_integer_kinds[index].kind);
833 PUSH_TYPE (name_buf, type);
834 }
835
836 for (index = 0; gfc_logical_kinds[index].kind != 0; ++index)
837 {
838 type = gfc_build_logical_type (&gfc_logical_kinds[index]);
839 gfc_logical_types[index] = type;
840 snprintf (name_buf, sizeof(name_buf), "logical(kind=%d)",
841 gfc_logical_kinds[index].kind);
842 PUSH_TYPE (name_buf, type);
843 }
844
845 for (index = 0; gfc_real_kinds[index].kind != 0; index++)
846 {
847 type = gfc_build_real_type (&gfc_real_kinds[index]);
848 gfc_real_types[index] = type;
849 snprintf (name_buf, sizeof(name_buf), "real(kind=%d)",
850 gfc_real_kinds[index].kind);
851 PUSH_TYPE (name_buf, type);
852
853 if (gfc_real_kinds[index].c_float128)
854 float128_type_node = type;
855
856 type = gfc_build_complex_type (type);
857 gfc_complex_types[index] = type;
858 snprintf (name_buf, sizeof(name_buf), "complex(kind=%d)",
859 gfc_real_kinds[index].kind);
860 PUSH_TYPE (name_buf, type);
861
862 if (gfc_real_kinds[index].c_float128)
863 complex_float128_type_node = type;
864 }
865
866 for (index = 0; gfc_character_kinds[index].kind != 0; ++index)
867 {
868 type = gfc_build_uint_type (gfc_character_kinds[index].bit_size);
869 type = build_qualified_type (type, TYPE_UNQUALIFIED);
870 snprintf (name_buf, sizeof(name_buf), "character(kind=%d)",
871 gfc_character_kinds[index].kind);
872 PUSH_TYPE (name_buf, type);
873 gfc_character_types[index] = type;
874 gfc_pcharacter_types[index] = build_pointer_type (type);
875 }
876 gfc_character1_type_node = gfc_character_types[0];
877
878 PUSH_TYPE ("byte", unsigned_char_type_node);
879 PUSH_TYPE ("void", void_type_node);
880
881 /* DBX debugging output gets upset if these aren't set. */
882 if (!TYPE_NAME (integer_type_node))
883 PUSH_TYPE ("c_integer", integer_type_node);
884 if (!TYPE_NAME (char_type_node))
885 PUSH_TYPE ("c_char", char_type_node);
886
887 #undef PUSH_TYPE
888
889 pvoid_type_node = build_pointer_type (void_type_node);
890 prvoid_type_node = build_qualified_type (pvoid_type_node, TYPE_QUAL_RESTRICT);
891 ppvoid_type_node = build_pointer_type (pvoid_type_node);
892 pchar_type_node = build_pointer_type (gfc_character1_type_node);
893 pfunc_type_node
894 = build_pointer_type (build_function_type_list (void_type_node, NULL_TREE));
895
896 gfc_array_index_type = gfc_get_int_type (gfc_index_integer_kind);
897 /* We cannot use gfc_index_zero_node in definition of gfc_array_range_type,
898 since this function is called before gfc_init_constants. */
899 gfc_array_range_type
900 = build_range_type (gfc_array_index_type,
901 build_int_cst (gfc_array_index_type, 0),
902 NULL_TREE);
903
904 /* The maximum array element size that can be handled is determined
905 by the number of bits available to store this field in the array
906 descriptor. */
907
908 n = TYPE_PRECISION (gfc_array_index_type) - GFC_DTYPE_SIZE_SHIFT;
909 lo = ~ (unsigned HOST_WIDE_INT) 0;
910 if (n > HOST_BITS_PER_WIDE_INT)
911 hi = lo >> (2*HOST_BITS_PER_WIDE_INT - n);
912 else
913 hi = 0, lo >>= HOST_BITS_PER_WIDE_INT - n;
914 gfc_max_array_element_size
915 = build_int_cst_wide (long_unsigned_type_node, lo, hi);
916
917 boolean_type_node = gfc_get_logical_type (gfc_default_logical_kind);
918 boolean_true_node = build_int_cst (boolean_type_node, 1);
919 boolean_false_node = build_int_cst (boolean_type_node, 0);
920
921 /* ??? Shouldn't this be based on gfc_index_integer_kind or so? */
922 gfc_charlen_int_kind = 4;
923 gfc_charlen_type_node = gfc_get_int_type (gfc_charlen_int_kind);
924 }
925
926 /* Get the type node for the given type and kind. */
927
928 tree
929 gfc_get_int_type (int kind)
930 {
931 int index = gfc_validate_kind (BT_INTEGER, kind, true);
932 return index < 0 ? 0 : gfc_integer_types[index];
933 }
934
935 tree
936 gfc_get_real_type (int kind)
937 {
938 int index = gfc_validate_kind (BT_REAL, kind, true);
939 return index < 0 ? 0 : gfc_real_types[index];
940 }
941
942 tree
943 gfc_get_complex_type (int kind)
944 {
945 int index = gfc_validate_kind (BT_COMPLEX, kind, true);
946 return index < 0 ? 0 : gfc_complex_types[index];
947 }
948
949 tree
950 gfc_get_logical_type (int kind)
951 {
952 int index = gfc_validate_kind (BT_LOGICAL, kind, true);
953 return index < 0 ? 0 : gfc_logical_types[index];
954 }
955
956 tree
957 gfc_get_char_type (int kind)
958 {
959 int index = gfc_validate_kind (BT_CHARACTER, kind, true);
960 return index < 0 ? 0 : gfc_character_types[index];
961 }
962
963 tree
964 gfc_get_pchar_type (int kind)
965 {
966 int index = gfc_validate_kind (BT_CHARACTER, kind, true);
967 return index < 0 ? 0 : gfc_pcharacter_types[index];
968 }
969
970 \f
971 /* Create a character type with the given kind and length. */
972
973 tree
974 gfc_get_character_type_len_for_eltype (tree eltype, tree len)
975 {
976 tree bounds, type;
977
978 bounds = build_range_type (gfc_charlen_type_node, gfc_index_one_node, len);
979 type = build_array_type (eltype, bounds);
980 TYPE_STRING_FLAG (type) = 1;
981
982 return type;
983 }
984
985 tree
986 gfc_get_character_type_len (int kind, tree len)
987 {
988 gfc_validate_kind (BT_CHARACTER, kind, false);
989 return gfc_get_character_type_len_for_eltype (gfc_get_char_type (kind), len);
990 }
991
992
993 /* Get a type node for a character kind. */
994
995 tree
996 gfc_get_character_type (int kind, gfc_charlen * cl)
997 {
998 tree len;
999
1000 len = (cl == NULL) ? NULL_TREE : cl->backend_decl;
1001
1002 return gfc_get_character_type_len (kind, len);
1003 }
1004 \f
1005 /* Covert a basic type. This will be an array for character types. */
1006
1007 tree
1008 gfc_typenode_for_spec (gfc_typespec * spec)
1009 {
1010 tree basetype;
1011
1012 switch (spec->type)
1013 {
1014 case BT_UNKNOWN:
1015 gcc_unreachable ();
1016
1017 case BT_INTEGER:
1018 /* We use INTEGER(c_intptr_t) for C_PTR and C_FUNPTR once the symbol
1019 has been resolved. This is done so we can convert C_PTR and
1020 C_FUNPTR to simple variables that get translated to (void *). */
1021 if (spec->f90_type == BT_VOID)
1022 {
1023 if (spec->u.derived
1024 && spec->u.derived->intmod_sym_id == ISOCBINDING_PTR)
1025 basetype = ptr_type_node;
1026 else
1027 basetype = pfunc_type_node;
1028 }
1029 else
1030 basetype = gfc_get_int_type (spec->kind);
1031 break;
1032
1033 case BT_REAL:
1034 basetype = gfc_get_real_type (spec->kind);
1035 break;
1036
1037 case BT_COMPLEX:
1038 basetype = gfc_get_complex_type (spec->kind);
1039 break;
1040
1041 case BT_LOGICAL:
1042 basetype = gfc_get_logical_type (spec->kind);
1043 break;
1044
1045 case BT_CHARACTER:
1046 #if 0
1047 if (spec->deferred)
1048 basetype = gfc_get_character_type (spec->kind, NULL);
1049 else
1050 #endif
1051 basetype = gfc_get_character_type (spec->kind, spec->u.cl);
1052 break;
1053
1054 case BT_DERIVED:
1055 case BT_CLASS:
1056 basetype = gfc_get_derived_type (spec->u.derived);
1057
1058 /* If we're dealing with either C_PTR or C_FUNPTR, we modified the
1059 type and kind to fit a (void *) and the basetype returned was a
1060 ptr_type_node. We need to pass up this new information to the
1061 symbol that was declared of type C_PTR or C_FUNPTR. */
1062 if (spec->u.derived->attr.is_iso_c)
1063 {
1064 spec->type = spec->u.derived->ts.type;
1065 spec->kind = spec->u.derived->ts.kind;
1066 spec->f90_type = spec->u.derived->ts.f90_type;
1067 }
1068 break;
1069 case BT_VOID:
1070 /* This is for the second arg to c_f_pointer and c_f_procpointer
1071 of the iso_c_binding module, to accept any ptr type. */
1072 basetype = ptr_type_node;
1073 if (spec->f90_type == BT_VOID)
1074 {
1075 if (spec->u.derived
1076 && spec->u.derived->intmod_sym_id == ISOCBINDING_PTR)
1077 basetype = ptr_type_node;
1078 else
1079 basetype = pfunc_type_node;
1080 }
1081 break;
1082 default:
1083 gcc_unreachable ();
1084 }
1085 return basetype;
1086 }
1087 \f
1088 /* Build an INT_CST for constant expressions, otherwise return NULL_TREE. */
1089
1090 static tree
1091 gfc_conv_array_bound (gfc_expr * expr)
1092 {
1093 /* If expr is an integer constant, return that. */
1094 if (expr != NULL && expr->expr_type == EXPR_CONSTANT)
1095 return gfc_conv_mpz_to_tree (expr->value.integer, gfc_index_integer_kind);
1096
1097 /* Otherwise return NULL. */
1098 return NULL_TREE;
1099 }
1100 \f
1101 tree
1102 gfc_get_element_type (tree type)
1103 {
1104 tree element;
1105
1106 if (GFC_ARRAY_TYPE_P (type))
1107 {
1108 if (TREE_CODE (type) == POINTER_TYPE)
1109 type = TREE_TYPE (type);
1110 if (GFC_TYPE_ARRAY_RANK (type) == 0)
1111 {
1112 gcc_assert (GFC_TYPE_ARRAY_CORANK (type) > 0);
1113 element = type;
1114 }
1115 else
1116 {
1117 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
1118 element = TREE_TYPE (type);
1119 }
1120 }
1121 else
1122 {
1123 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
1124 element = GFC_TYPE_ARRAY_DATAPTR_TYPE (type);
1125
1126 gcc_assert (TREE_CODE (element) == POINTER_TYPE);
1127 element = TREE_TYPE (element);
1128
1129 /* For arrays, which are not scalar coarrays. */
1130 if (TREE_CODE (element) == ARRAY_TYPE)
1131 element = TREE_TYPE (element);
1132 }
1133
1134 return element;
1135 }
1136 \f
1137 /* Build an array. This function is called from gfc_sym_type().
1138 Actually returns array descriptor type.
1139
1140 Format of array descriptors is as follows:
1141
1142 struct gfc_array_descriptor
1143 {
1144 array *data
1145 index offset;
1146 index dtype;
1147 struct descriptor_dimension dimension[N_DIM];
1148 }
1149
1150 struct descriptor_dimension
1151 {
1152 index stride;
1153 index lbound;
1154 index ubound;
1155 }
1156
1157 Translation code should use gfc_conv_descriptor_* rather than
1158 accessing the descriptor directly. Any changes to the array
1159 descriptor type will require changes in gfc_conv_descriptor_* and
1160 gfc_build_array_initializer.
1161
1162 This is represented internally as a RECORD_TYPE. The index nodes
1163 are gfc_array_index_type and the data node is a pointer to the
1164 data. See below for the handling of character types.
1165
1166 The dtype member is formatted as follows:
1167 rank = dtype & GFC_DTYPE_RANK_MASK // 3 bits
1168 type = (dtype & GFC_DTYPE_TYPE_MASK) >> GFC_DTYPE_TYPE_SHIFT // 3 bits
1169 size = dtype >> GFC_DTYPE_SIZE_SHIFT
1170
1171 I originally used nested ARRAY_TYPE nodes to represent arrays, but
1172 this generated poor code for assumed/deferred size arrays. These
1173 require use of PLACEHOLDER_EXPR/WITH_RECORD_EXPR, which isn't part
1174 of the GENERIC grammar. Also, there is no way to explicitly set
1175 the array stride, so all data must be packed(1). I've tried to
1176 mark all the functions which would require modification with a GCC
1177 ARRAYS comment.
1178
1179 The data component points to the first element in the array. The
1180 offset field is the position of the origin of the array (i.e. element
1181 (0, 0 ...)). This may be outside the bounds of the array.
1182
1183 An element is accessed by
1184 data[offset + index0*stride0 + index1*stride1 + index2*stride2]
1185 This gives good performance as the computation does not involve the
1186 bounds of the array. For packed arrays, this is optimized further
1187 by substituting the known strides.
1188
1189 This system has one problem: all array bounds must be within 2^31
1190 elements of the origin (2^63 on 64-bit machines). For example
1191 integer, dimension (80000:90000, 80000:90000, 2) :: array
1192 may not work properly on 32-bit machines because 80000*80000 >
1193 2^31, so the calculation for stride2 would overflow. This may
1194 still work, but I haven't checked, and it relies on the overflow
1195 doing the right thing.
1196
1197 The way to fix this problem is to access elements as follows:
1198 data[(index0-lbound0)*stride0 + (index1-lbound1)*stride1]
1199 Obviously this is much slower. I will make this a compile time
1200 option, something like -fsmall-array-offsets. Mixing code compiled
1201 with and without this switch will work.
1202
1203 (1) This can be worked around by modifying the upper bound of the
1204 previous dimension. This requires extra fields in the descriptor
1205 (both real_ubound and fake_ubound). */
1206
1207
1208 /* Returns true if the array sym does not require a descriptor. */
1209
1210 int
1211 gfc_is_nodesc_array (gfc_symbol * sym)
1212 {
1213 gcc_assert (sym->attr.dimension || sym->attr.codimension);
1214
1215 /* We only want local arrays. */
1216 if (sym->attr.pointer || sym->attr.allocatable)
1217 return 0;
1218
1219 /* We want a descriptor for associate-name arrays that do not have an
1220 explicitely known shape already. */
1221 if (sym->assoc && sym->as->type != AS_EXPLICIT)
1222 return 0;
1223
1224 if (sym->attr.dummy)
1225 return sym->as->type != AS_ASSUMED_SHAPE;
1226
1227 if (sym->attr.result || sym->attr.function)
1228 return 0;
1229
1230 gcc_assert (sym->as->type == AS_EXPLICIT || sym->as->cp_was_assumed);
1231
1232 return 1;
1233 }
1234
1235
1236 /* Create an array descriptor type. */
1237
1238 static tree
1239 gfc_build_array_type (tree type, gfc_array_spec * as,
1240 enum gfc_array_kind akind, bool restricted,
1241 bool contiguous)
1242 {
1243 tree lbound[GFC_MAX_DIMENSIONS];
1244 tree ubound[GFC_MAX_DIMENSIONS];
1245 int n;
1246
1247 for (n = 0; n < as->rank; n++)
1248 {
1249 /* Create expressions for the known bounds of the array. */
1250 if (as->type == AS_ASSUMED_SHAPE && as->lower[n] == NULL)
1251 lbound[n] = gfc_index_one_node;
1252 else
1253 lbound[n] = gfc_conv_array_bound (as->lower[n]);
1254 ubound[n] = gfc_conv_array_bound (as->upper[n]);
1255 }
1256
1257 for (n = as->rank; n < as->rank + as->corank; n++)
1258 {
1259 if (as->lower[n] == NULL)
1260 lbound[n] = gfc_index_one_node;
1261 else
1262 lbound[n] = gfc_conv_array_bound (as->lower[n]);
1263
1264 if (n < as->rank + as->corank - 1)
1265 ubound[n] = gfc_conv_array_bound (as->upper[n]);
1266 }
1267
1268 if (as->type == AS_ASSUMED_SHAPE)
1269 akind = contiguous ? GFC_ARRAY_ASSUMED_SHAPE_CONT
1270 : GFC_ARRAY_ASSUMED_SHAPE;
1271 return gfc_get_array_type_bounds (type, as->rank, as->corank, lbound,
1272 ubound, 0, akind, restricted);
1273 }
1274 \f
1275 /* Returns the struct descriptor_dimension type. */
1276
1277 static tree
1278 gfc_get_desc_dim_type (void)
1279 {
1280 tree type;
1281 tree decl, *chain = NULL;
1282
1283 if (gfc_desc_dim_type)
1284 return gfc_desc_dim_type;
1285
1286 /* Build the type node. */
1287 type = make_node (RECORD_TYPE);
1288
1289 TYPE_NAME (type) = get_identifier ("descriptor_dimension");
1290 TYPE_PACKED (type) = 1;
1291
1292 /* Consists of the stride, lbound and ubound members. */
1293 decl = gfc_add_field_to_struct_1 (type,
1294 get_identifier ("stride"),
1295 gfc_array_index_type, &chain);
1296 TREE_NO_WARNING (decl) = 1;
1297
1298 decl = gfc_add_field_to_struct_1 (type,
1299 get_identifier ("lbound"),
1300 gfc_array_index_type, &chain);
1301 TREE_NO_WARNING (decl) = 1;
1302
1303 decl = gfc_add_field_to_struct_1 (type,
1304 get_identifier ("ubound"),
1305 gfc_array_index_type, &chain);
1306 TREE_NO_WARNING (decl) = 1;
1307
1308 /* Finish off the type. */
1309 gfc_finish_type (type);
1310 TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type)) = 1;
1311
1312 gfc_desc_dim_type = type;
1313 return type;
1314 }
1315
1316
1317 /* Return the DTYPE for an array. This describes the type and type parameters
1318 of the array. */
1319 /* TODO: Only call this when the value is actually used, and make all the
1320 unknown cases abort. */
1321
1322 tree
1323 gfc_get_dtype (tree type)
1324 {
1325 tree size;
1326 int n;
1327 HOST_WIDE_INT i;
1328 tree tmp;
1329 tree dtype;
1330 tree etype;
1331 int rank;
1332
1333 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type) || GFC_ARRAY_TYPE_P (type));
1334
1335 if (GFC_TYPE_ARRAY_DTYPE (type))
1336 return GFC_TYPE_ARRAY_DTYPE (type);
1337
1338 rank = GFC_TYPE_ARRAY_RANK (type);
1339 etype = gfc_get_element_type (type);
1340
1341 switch (TREE_CODE (etype))
1342 {
1343 case INTEGER_TYPE:
1344 n = BT_INTEGER;
1345 break;
1346
1347 case BOOLEAN_TYPE:
1348 n = BT_LOGICAL;
1349 break;
1350
1351 case REAL_TYPE:
1352 n = BT_REAL;
1353 break;
1354
1355 case COMPLEX_TYPE:
1356 n = BT_COMPLEX;
1357 break;
1358
1359 /* We will never have arrays of arrays. */
1360 case RECORD_TYPE:
1361 n = BT_DERIVED;
1362 break;
1363
1364 case ARRAY_TYPE:
1365 n = BT_CHARACTER;
1366 break;
1367
1368 default:
1369 /* TODO: Don't do dtype for temporary descriptorless arrays. */
1370 /* We can strange array types for temporary arrays. */
1371 return gfc_index_zero_node;
1372 }
1373
1374 gcc_assert (rank <= GFC_DTYPE_RANK_MASK);
1375 size = TYPE_SIZE_UNIT (etype);
1376
1377 i = rank | (n << GFC_DTYPE_TYPE_SHIFT);
1378 if (size && INTEGER_CST_P (size))
1379 {
1380 if (tree_int_cst_lt (gfc_max_array_element_size, size))
1381 internal_error ("Array element size too big");
1382
1383 i += TREE_INT_CST_LOW (size) << GFC_DTYPE_SIZE_SHIFT;
1384 }
1385 dtype = build_int_cst (gfc_array_index_type, i);
1386
1387 if (size && !INTEGER_CST_P (size))
1388 {
1389 tmp = build_int_cst (gfc_array_index_type, GFC_DTYPE_SIZE_SHIFT);
1390 tmp = fold_build2_loc (input_location, LSHIFT_EXPR,
1391 gfc_array_index_type,
1392 fold_convert (gfc_array_index_type, size), tmp);
1393 dtype = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
1394 tmp, dtype);
1395 }
1396 /* If we don't know the size we leave it as zero. This should never happen
1397 for anything that is actually used. */
1398 /* TODO: Check this is actually true, particularly when repacking
1399 assumed size parameters. */
1400
1401 GFC_TYPE_ARRAY_DTYPE (type) = dtype;
1402 return dtype;
1403 }
1404
1405
1406 /* Build an array type for use without a descriptor, packed according
1407 to the value of PACKED. */
1408
1409 tree
1410 gfc_get_nodesc_array_type (tree etype, gfc_array_spec * as, gfc_packed packed,
1411 bool restricted)
1412 {
1413 tree range;
1414 tree type;
1415 tree tmp;
1416 int n;
1417 int known_stride;
1418 int known_offset;
1419 mpz_t offset;
1420 mpz_t stride;
1421 mpz_t delta;
1422 gfc_expr *expr;
1423
1424 mpz_init_set_ui (offset, 0);
1425 mpz_init_set_ui (stride, 1);
1426 mpz_init (delta);
1427
1428 /* We don't use build_array_type because this does not include include
1429 lang-specific information (i.e. the bounds of the array) when checking
1430 for duplicates. */
1431 if (as->rank)
1432 type = make_node (ARRAY_TYPE);
1433 else
1434 type = build_variant_type_copy (etype);
1435
1436 GFC_ARRAY_TYPE_P (type) = 1;
1437 TYPE_LANG_SPECIFIC (type)
1438 = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));
1439
1440 known_stride = (packed != PACKED_NO);
1441 known_offset = 1;
1442 for (n = 0; n < as->rank; n++)
1443 {
1444 /* Fill in the stride and bound components of the type. */
1445 if (known_stride)
1446 tmp = gfc_conv_mpz_to_tree (stride, gfc_index_integer_kind);
1447 else
1448 tmp = NULL_TREE;
1449 GFC_TYPE_ARRAY_STRIDE (type, n) = tmp;
1450
1451 expr = as->lower[n];
1452 if (expr->expr_type == EXPR_CONSTANT)
1453 {
1454 tmp = gfc_conv_mpz_to_tree (expr->value.integer,
1455 gfc_index_integer_kind);
1456 }
1457 else
1458 {
1459 known_stride = 0;
1460 tmp = NULL_TREE;
1461 }
1462 GFC_TYPE_ARRAY_LBOUND (type, n) = tmp;
1463
1464 if (known_stride)
1465 {
1466 /* Calculate the offset. */
1467 mpz_mul (delta, stride, as->lower[n]->value.integer);
1468 mpz_sub (offset, offset, delta);
1469 }
1470 else
1471 known_offset = 0;
1472
1473 expr = as->upper[n];
1474 if (expr && expr->expr_type == EXPR_CONSTANT)
1475 {
1476 tmp = gfc_conv_mpz_to_tree (expr->value.integer,
1477 gfc_index_integer_kind);
1478 }
1479 else
1480 {
1481 tmp = NULL_TREE;
1482 known_stride = 0;
1483 }
1484 GFC_TYPE_ARRAY_UBOUND (type, n) = tmp;
1485
1486 if (known_stride)
1487 {
1488 /* Calculate the stride. */
1489 mpz_sub (delta, as->upper[n]->value.integer,
1490 as->lower[n]->value.integer);
1491 mpz_add_ui (delta, delta, 1);
1492 mpz_mul (stride, stride, delta);
1493 }
1494
1495 /* Only the first stride is known for partial packed arrays. */
1496 if (packed == PACKED_NO || packed == PACKED_PARTIAL)
1497 known_stride = 0;
1498 }
1499 for (n = as->rank; n < as->rank + as->corank; n++)
1500 {
1501 expr = as->lower[n];
1502 if (expr->expr_type == EXPR_CONSTANT)
1503 tmp = gfc_conv_mpz_to_tree (expr->value.integer,
1504 gfc_index_integer_kind);
1505 else
1506 tmp = NULL_TREE;
1507 GFC_TYPE_ARRAY_LBOUND (type, n) = tmp;
1508
1509 expr = as->upper[n];
1510 if (expr && expr->expr_type == EXPR_CONSTANT)
1511 tmp = gfc_conv_mpz_to_tree (expr->value.integer,
1512 gfc_index_integer_kind);
1513 else
1514 tmp = NULL_TREE;
1515 if (n < as->rank + as->corank - 1)
1516 GFC_TYPE_ARRAY_UBOUND (type, n) = tmp;
1517 }
1518
1519 if (known_offset)
1520 {
1521 GFC_TYPE_ARRAY_OFFSET (type) =
1522 gfc_conv_mpz_to_tree (offset, gfc_index_integer_kind);
1523 }
1524 else
1525 GFC_TYPE_ARRAY_OFFSET (type) = NULL_TREE;
1526
1527 if (known_stride)
1528 {
1529 GFC_TYPE_ARRAY_SIZE (type) =
1530 gfc_conv_mpz_to_tree (stride, gfc_index_integer_kind);
1531 }
1532 else
1533 GFC_TYPE_ARRAY_SIZE (type) = NULL_TREE;
1534
1535 GFC_TYPE_ARRAY_RANK (type) = as->rank;
1536 GFC_TYPE_ARRAY_CORANK (type) = as->corank;
1537 GFC_TYPE_ARRAY_DTYPE (type) = NULL_TREE;
1538 range = build_range_type (gfc_array_index_type, gfc_index_zero_node,
1539 NULL_TREE);
1540 /* TODO: use main type if it is unbounded. */
1541 GFC_TYPE_ARRAY_DATAPTR_TYPE (type) =
1542 build_pointer_type (build_array_type (etype, range));
1543 if (restricted)
1544 GFC_TYPE_ARRAY_DATAPTR_TYPE (type) =
1545 build_qualified_type (GFC_TYPE_ARRAY_DATAPTR_TYPE (type),
1546 TYPE_QUAL_RESTRICT);
1547
1548 if (as->rank == 0)
1549 {
1550 if (packed != PACKED_STATIC || gfc_option.coarray == GFC_FCOARRAY_LIB)
1551 {
1552 type = build_pointer_type (type);
1553
1554 if (restricted)
1555 type = build_qualified_type (type, TYPE_QUAL_RESTRICT);
1556
1557 GFC_ARRAY_TYPE_P (type) = 1;
1558 TYPE_LANG_SPECIFIC (type) = TYPE_LANG_SPECIFIC (TREE_TYPE (type));
1559 }
1560
1561 return type;
1562 }
1563
1564 if (known_stride)
1565 {
1566 mpz_sub_ui (stride, stride, 1);
1567 range = gfc_conv_mpz_to_tree (stride, gfc_index_integer_kind);
1568 }
1569 else
1570 range = NULL_TREE;
1571
1572 range = build_range_type (gfc_array_index_type, gfc_index_zero_node, range);
1573 TYPE_DOMAIN (type) = range;
1574
1575 build_pointer_type (etype);
1576 TREE_TYPE (type) = etype;
1577
1578 layout_type (type);
1579
1580 mpz_clear (offset);
1581 mpz_clear (stride);
1582 mpz_clear (delta);
1583
1584 /* Represent packed arrays as multi-dimensional if they have rank >
1585 1 and with proper bounds, instead of flat arrays. This makes for
1586 better debug info. */
1587 if (known_offset)
1588 {
1589 tree gtype = etype, rtype, type_decl;
1590
1591 for (n = as->rank - 1; n >= 0; n--)
1592 {
1593 rtype = build_range_type (gfc_array_index_type,
1594 GFC_TYPE_ARRAY_LBOUND (type, n),
1595 GFC_TYPE_ARRAY_UBOUND (type, n));
1596 gtype = build_array_type (gtype, rtype);
1597 }
1598 TYPE_NAME (type) = type_decl = build_decl (input_location,
1599 TYPE_DECL, NULL, gtype);
1600 DECL_ORIGINAL_TYPE (type_decl) = gtype;
1601 }
1602
1603 if (packed != PACKED_STATIC || !known_stride
1604 || (as->corank && gfc_option.coarray == GFC_FCOARRAY_LIB))
1605 {
1606 /* For dummy arrays and automatic (heap allocated) arrays we
1607 want a pointer to the array. */
1608 type = build_pointer_type (type);
1609 if (restricted)
1610 type = build_qualified_type (type, TYPE_QUAL_RESTRICT);
1611 GFC_ARRAY_TYPE_P (type) = 1;
1612 TYPE_LANG_SPECIFIC (type) = TYPE_LANG_SPECIFIC (TREE_TYPE (type));
1613 }
1614 return type;
1615 }
1616
1617
1618 /* Return or create the base type for an array descriptor. */
1619
1620 static tree
1621 gfc_get_array_descriptor_base (int dimen, int codimen, bool restricted,
1622 enum gfc_array_kind akind)
1623 {
1624 tree fat_type, decl, arraytype, *chain = NULL;
1625 char name[16 + 2*GFC_RANK_DIGITS + 1 + 1];
1626 int idx = 2 * (codimen + dimen - 1) + restricted;
1627
1628 gcc_assert (codimen + dimen >= 1 && codimen + dimen <= GFC_MAX_DIMENSIONS);
1629
1630 if (gfc_option.coarray == GFC_FCOARRAY_LIB && codimen)
1631 {
1632 if (gfc_array_descriptor_base_caf[idx])
1633 return gfc_array_descriptor_base_caf[idx];
1634 }
1635 else if (gfc_array_descriptor_base[idx])
1636 return gfc_array_descriptor_base[idx];
1637
1638 /* Build the type node. */
1639 fat_type = make_node (RECORD_TYPE);
1640
1641 sprintf (name, "array_descriptor" GFC_RANK_PRINTF_FORMAT, dimen + codimen);
1642 TYPE_NAME (fat_type) = get_identifier (name);
1643 TYPE_NAMELESS (fat_type) = 1;
1644
1645 /* Add the data member as the first element of the descriptor. */
1646 decl = gfc_add_field_to_struct_1 (fat_type,
1647 get_identifier ("data"),
1648 (restricted
1649 ? prvoid_type_node
1650 : ptr_type_node), &chain);
1651
1652 /* Add the base component. */
1653 decl = gfc_add_field_to_struct_1 (fat_type,
1654 get_identifier ("offset"),
1655 gfc_array_index_type, &chain);
1656 TREE_NO_WARNING (decl) = 1;
1657
1658 /* Add the dtype component. */
1659 decl = gfc_add_field_to_struct_1 (fat_type,
1660 get_identifier ("dtype"),
1661 gfc_array_index_type, &chain);
1662 TREE_NO_WARNING (decl) = 1;
1663
1664 /* Build the array type for the stride and bound components. */
1665 arraytype =
1666 build_array_type (gfc_get_desc_dim_type (),
1667 build_range_type (gfc_array_index_type,
1668 gfc_index_zero_node,
1669 gfc_rank_cst[codimen + dimen - 1]));
1670
1671 decl = gfc_add_field_to_struct_1 (fat_type,
1672 get_identifier ("dim"),
1673 arraytype, &chain);
1674 TREE_NO_WARNING (decl) = 1;
1675
1676 if (gfc_option.coarray == GFC_FCOARRAY_LIB && codimen
1677 && akind == GFC_ARRAY_ALLOCATABLE)
1678 {
1679 decl = gfc_add_field_to_struct_1 (fat_type,
1680 get_identifier ("token"),
1681 prvoid_type_node, &chain);
1682 TREE_NO_WARNING (decl) = 1;
1683 }
1684
1685 /* Finish off the type. */
1686 gfc_finish_type (fat_type);
1687 TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (fat_type)) = 1;
1688
1689 if (gfc_option.coarray == GFC_FCOARRAY_LIB && codimen
1690 && akind == GFC_ARRAY_ALLOCATABLE)
1691 gfc_array_descriptor_base_caf[idx] = fat_type;
1692 else
1693 gfc_array_descriptor_base[idx] = fat_type;
1694
1695 return fat_type;
1696 }
1697
1698
1699 /* Build an array (descriptor) type with given bounds. */
1700
1701 tree
1702 gfc_get_array_type_bounds (tree etype, int dimen, int codimen, tree * lbound,
1703 tree * ubound, int packed,
1704 enum gfc_array_kind akind, bool restricted)
1705 {
1706 char name[8 + 2*GFC_RANK_DIGITS + 1 + GFC_MAX_SYMBOL_LEN];
1707 tree fat_type, base_type, arraytype, lower, upper, stride, tmp, rtype;
1708 const char *type_name;
1709 int n;
1710
1711 base_type = gfc_get_array_descriptor_base (dimen, codimen, restricted, akind);
1712 fat_type = build_distinct_type_copy (base_type);
1713 /* Make sure that nontarget and target array type have the same canonical
1714 type (and same stub decl for debug info). */
1715 base_type = gfc_get_array_descriptor_base (dimen, codimen, false, akind);
1716 TYPE_CANONICAL (fat_type) = base_type;
1717 TYPE_STUB_DECL (fat_type) = TYPE_STUB_DECL (base_type);
1718
1719 tmp = TYPE_NAME (etype);
1720 if (tmp && TREE_CODE (tmp) == TYPE_DECL)
1721 tmp = DECL_NAME (tmp);
1722 if (tmp)
1723 type_name = IDENTIFIER_POINTER (tmp);
1724 else
1725 type_name = "unknown";
1726 sprintf (name, "array" GFC_RANK_PRINTF_FORMAT "_%.*s", dimen + codimen,
1727 GFC_MAX_SYMBOL_LEN, type_name);
1728 TYPE_NAME (fat_type) = get_identifier (name);
1729 TYPE_NAMELESS (fat_type) = 1;
1730
1731 GFC_DESCRIPTOR_TYPE_P (fat_type) = 1;
1732 TYPE_LANG_SPECIFIC (fat_type)
1733 = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));
1734
1735 GFC_TYPE_ARRAY_RANK (fat_type) = dimen;
1736 GFC_TYPE_ARRAY_CORANK (fat_type) = codimen;
1737 GFC_TYPE_ARRAY_DTYPE (fat_type) = NULL_TREE;
1738 GFC_TYPE_ARRAY_AKIND (fat_type) = akind;
1739
1740 /* Build an array descriptor record type. */
1741 if (packed != 0)
1742 stride = gfc_index_one_node;
1743 else
1744 stride = NULL_TREE;
1745 for (n = 0; n < dimen + codimen; n++)
1746 {
1747 if (n < dimen)
1748 GFC_TYPE_ARRAY_STRIDE (fat_type, n) = stride;
1749
1750 if (lbound)
1751 lower = lbound[n];
1752 else
1753 lower = NULL_TREE;
1754
1755 if (lower != NULL_TREE)
1756 {
1757 if (INTEGER_CST_P (lower))
1758 GFC_TYPE_ARRAY_LBOUND (fat_type, n) = lower;
1759 else
1760 lower = NULL_TREE;
1761 }
1762
1763 if (codimen && n == dimen + codimen - 1)
1764 break;
1765
1766 upper = ubound[n];
1767 if (upper != NULL_TREE)
1768 {
1769 if (INTEGER_CST_P (upper))
1770 GFC_TYPE_ARRAY_UBOUND (fat_type, n) = upper;
1771 else
1772 upper = NULL_TREE;
1773 }
1774
1775 if (n >= dimen)
1776 continue;
1777
1778 if (upper != NULL_TREE && lower != NULL_TREE && stride != NULL_TREE)
1779 {
1780 tmp = fold_build2_loc (input_location, MINUS_EXPR,
1781 gfc_array_index_type, upper, lower);
1782 tmp = fold_build2_loc (input_location, PLUS_EXPR,
1783 gfc_array_index_type, tmp,
1784 gfc_index_one_node);
1785 stride = fold_build2_loc (input_location, MULT_EXPR,
1786 gfc_array_index_type, tmp, stride);
1787 /* Check the folding worked. */
1788 gcc_assert (INTEGER_CST_P (stride));
1789 }
1790 else
1791 stride = NULL_TREE;
1792 }
1793 GFC_TYPE_ARRAY_SIZE (fat_type) = stride;
1794
1795 /* TODO: known offsets for descriptors. */
1796 GFC_TYPE_ARRAY_OFFSET (fat_type) = NULL_TREE;
1797
1798 if (dimen == 0)
1799 {
1800 arraytype = build_pointer_type (etype);
1801 if (restricted)
1802 arraytype = build_qualified_type (arraytype, TYPE_QUAL_RESTRICT);
1803
1804 GFC_TYPE_ARRAY_DATAPTR_TYPE (fat_type) = arraytype;
1805 return fat_type;
1806 }
1807
1808 /* We define data as an array with the correct size if possible.
1809 Much better than doing pointer arithmetic. */
1810 if (stride)
1811 rtype = build_range_type (gfc_array_index_type, gfc_index_zero_node,
1812 int_const_binop (MINUS_EXPR, stride,
1813 integer_one_node));
1814 else
1815 rtype = gfc_array_range_type;
1816 arraytype = build_array_type (etype, rtype);
1817 arraytype = build_pointer_type (arraytype);
1818 if (restricted)
1819 arraytype = build_qualified_type (arraytype, TYPE_QUAL_RESTRICT);
1820 GFC_TYPE_ARRAY_DATAPTR_TYPE (fat_type) = arraytype;
1821
1822 /* This will generate the base declarations we need to emit debug
1823 information for this type. FIXME: there must be a better way to
1824 avoid divergence between compilations with and without debug
1825 information. */
1826 {
1827 struct array_descr_info info;
1828 gfc_get_array_descr_info (fat_type, &info);
1829 gfc_get_array_descr_info (build_pointer_type (fat_type), &info);
1830 }
1831
1832 return fat_type;
1833 }
1834 \f
1835 /* Build a pointer type. This function is called from gfc_sym_type(). */
1836
1837 static tree
1838 gfc_build_pointer_type (gfc_symbol * sym, tree type)
1839 {
1840 /* Array pointer types aren't actually pointers. */
1841 if (sym->attr.dimension)
1842 return type;
1843 else
1844 return build_pointer_type (type);
1845 }
1846
1847 static tree gfc_nonrestricted_type (tree t);
1848 /* Given two record or union type nodes TO and FROM, ensure
1849 that all fields in FROM have a corresponding field in TO,
1850 their type being nonrestrict variants. This accepts a TO
1851 node that already has a prefix of the fields in FROM. */
1852 static void
1853 mirror_fields (tree to, tree from)
1854 {
1855 tree fto, ffrom;
1856 tree *chain;
1857
1858 /* Forward to the end of TOs fields. */
1859 fto = TYPE_FIELDS (to);
1860 ffrom = TYPE_FIELDS (from);
1861 chain = &TYPE_FIELDS (to);
1862 while (fto)
1863 {
1864 gcc_assert (ffrom && DECL_NAME (fto) == DECL_NAME (ffrom));
1865 chain = &DECL_CHAIN (fto);
1866 fto = DECL_CHAIN (fto);
1867 ffrom = DECL_CHAIN (ffrom);
1868 }
1869
1870 /* Now add all fields remaining in FROM (starting with ffrom). */
1871 for (; ffrom; ffrom = DECL_CHAIN (ffrom))
1872 {
1873 tree newfield = copy_node (ffrom);
1874 DECL_CONTEXT (newfield) = to;
1875 /* The store to DECL_CHAIN might seem redundant with the
1876 stores to *chain, but not clearing it here would mean
1877 leaving a chain into the old fields. If ever
1878 our called functions would look at them confusion
1879 will arise. */
1880 DECL_CHAIN (newfield) = NULL_TREE;
1881 *chain = newfield;
1882 chain = &DECL_CHAIN (newfield);
1883
1884 if (TREE_CODE (ffrom) == FIELD_DECL)
1885 {
1886 tree elemtype = gfc_nonrestricted_type (TREE_TYPE (ffrom));
1887 TREE_TYPE (newfield) = elemtype;
1888 }
1889 }
1890 *chain = NULL_TREE;
1891 }
1892
1893 /* Given a type T, returns a different type of the same structure,
1894 except that all types it refers to (recursively) are always
1895 non-restrict qualified types. */
1896 static tree
1897 gfc_nonrestricted_type (tree t)
1898 {
1899 tree ret = t;
1900
1901 /* If the type isn't layed out yet, don't copy it. If something
1902 needs it for real it should wait until the type got finished. */
1903 if (!TYPE_SIZE (t))
1904 return t;
1905
1906 if (!TYPE_LANG_SPECIFIC (t))
1907 TYPE_LANG_SPECIFIC (t)
1908 = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));
1909 /* If we're dealing with this very node already further up
1910 the call chain (recursion via pointers and struct members)
1911 we haven't yet determined if we really need a new type node.
1912 Assume we don't, return T itself. */
1913 if (TYPE_LANG_SPECIFIC (t)->nonrestricted_type == error_mark_node)
1914 return t;
1915
1916 /* If we have calculated this all already, just return it. */
1917 if (TYPE_LANG_SPECIFIC (t)->nonrestricted_type)
1918 return TYPE_LANG_SPECIFIC (t)->nonrestricted_type;
1919
1920 /* Mark this type. */
1921 TYPE_LANG_SPECIFIC (t)->nonrestricted_type = error_mark_node;
1922
1923 switch (TREE_CODE (t))
1924 {
1925 default:
1926 break;
1927
1928 case POINTER_TYPE:
1929 case REFERENCE_TYPE:
1930 {
1931 tree totype = gfc_nonrestricted_type (TREE_TYPE (t));
1932 if (totype == TREE_TYPE (t))
1933 ret = t;
1934 else if (TREE_CODE (t) == POINTER_TYPE)
1935 ret = build_pointer_type (totype);
1936 else
1937 ret = build_reference_type (totype);
1938 ret = build_qualified_type (ret,
1939 TYPE_QUALS (t) & ~TYPE_QUAL_RESTRICT);
1940 }
1941 break;
1942
1943 case ARRAY_TYPE:
1944 {
1945 tree elemtype = gfc_nonrestricted_type (TREE_TYPE (t));
1946 if (elemtype == TREE_TYPE (t))
1947 ret = t;
1948 else
1949 {
1950 ret = build_variant_type_copy (t);
1951 TREE_TYPE (ret) = elemtype;
1952 if (TYPE_LANG_SPECIFIC (t)
1953 && GFC_TYPE_ARRAY_DATAPTR_TYPE (t))
1954 {
1955 tree dataptr_type = GFC_TYPE_ARRAY_DATAPTR_TYPE (t);
1956 dataptr_type = gfc_nonrestricted_type (dataptr_type);
1957 if (dataptr_type != GFC_TYPE_ARRAY_DATAPTR_TYPE (t))
1958 {
1959 TYPE_LANG_SPECIFIC (ret)
1960 = ggc_alloc_cleared_lang_type (sizeof (struct
1961 lang_type));
1962 *TYPE_LANG_SPECIFIC (ret) = *TYPE_LANG_SPECIFIC (t);
1963 GFC_TYPE_ARRAY_DATAPTR_TYPE (ret) = dataptr_type;
1964 }
1965 }
1966 }
1967 }
1968 break;
1969
1970 case RECORD_TYPE:
1971 case UNION_TYPE:
1972 case QUAL_UNION_TYPE:
1973 {
1974 tree field;
1975 /* First determine if we need a new type at all.
1976 Careful, the two calls to gfc_nonrestricted_type per field
1977 might return different values. That happens exactly when
1978 one of the fields reaches back to this very record type
1979 (via pointers). The first calls will assume that we don't
1980 need to copy T (see the error_mark_node marking). If there
1981 are any reasons for copying T apart from having to copy T,
1982 we'll indeed copy it, and the second calls to
1983 gfc_nonrestricted_type will use that new node if they
1984 reach back to T. */
1985 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
1986 if (TREE_CODE (field) == FIELD_DECL)
1987 {
1988 tree elemtype = gfc_nonrestricted_type (TREE_TYPE (field));
1989 if (elemtype != TREE_TYPE (field))
1990 break;
1991 }
1992 if (!field)
1993 break;
1994 ret = build_variant_type_copy (t);
1995 TYPE_FIELDS (ret) = NULL_TREE;
1996
1997 /* Here we make sure that as soon as we know we have to copy
1998 T, that also fields reaching back to us will use the new
1999 copy. It's okay if that copy still contains the old fields,
2000 we won't look at them. */
2001 TYPE_LANG_SPECIFIC (t)->nonrestricted_type = ret;
2002 mirror_fields (ret, t);
2003 }
2004 break;
2005 }
2006
2007 TYPE_LANG_SPECIFIC (t)->nonrestricted_type = ret;
2008 return ret;
2009 }
2010
2011 \f
2012 /* Return the type for a symbol. Special handling is required for character
2013 types to get the correct level of indirection.
2014 For functions return the return type.
2015 For subroutines return void_type_node.
2016 Calling this multiple times for the same symbol should be avoided,
2017 especially for character and array types. */
2018
2019 tree
2020 gfc_sym_type (gfc_symbol * sym)
2021 {
2022 tree type;
2023 int byref;
2024 bool restricted;
2025
2026 /* Procedure Pointers inside COMMON blocks. */
2027 if (sym->attr.proc_pointer && sym->attr.in_common)
2028 {
2029 /* Unset proc_pointer as gfc_get_function_type calls gfc_sym_type. */
2030 sym->attr.proc_pointer = 0;
2031 type = build_pointer_type (gfc_get_function_type (sym));
2032 sym->attr.proc_pointer = 1;
2033 return type;
2034 }
2035
2036 if (sym->attr.flavor == FL_PROCEDURE && !sym->attr.function)
2037 return void_type_node;
2038
2039 /* In the case of a function the fake result variable may have a
2040 type different from the function type, so don't return early in
2041 that case. */
2042 if (sym->backend_decl && !sym->attr.function)
2043 return TREE_TYPE (sym->backend_decl);
2044
2045 if (sym->ts.type == BT_CHARACTER
2046 && ((sym->attr.function && sym->attr.is_bind_c)
2047 || (sym->attr.result
2048 && sym->ns->proc_name
2049 && sym->ns->proc_name->attr.is_bind_c)))
2050 type = gfc_character1_type_node;
2051 else
2052 type = gfc_typenode_for_spec (&sym->ts);
2053
2054 if (sym->attr.dummy && !sym->attr.function && !sym->attr.value)
2055 byref = 1;
2056 else
2057 byref = 0;
2058
2059 restricted = !sym->attr.target && !sym->attr.pointer
2060 && !sym->attr.proc_pointer && !sym->attr.cray_pointee;
2061 if (!restricted)
2062 type = gfc_nonrestricted_type (type);
2063
2064 if (sym->attr.dimension || sym->attr.codimension)
2065 {
2066 if (gfc_is_nodesc_array (sym))
2067 {
2068 /* If this is a character argument of unknown length, just use the
2069 base type. */
2070 if (sym->ts.type != BT_CHARACTER
2071 || !(sym->attr.dummy || sym->attr.function)
2072 || sym->ts.u.cl->backend_decl)
2073 {
2074 type = gfc_get_nodesc_array_type (type, sym->as,
2075 byref ? PACKED_FULL
2076 : PACKED_STATIC,
2077 restricted);
2078 byref = 0;
2079 }
2080
2081 if (sym->attr.cray_pointee)
2082 GFC_POINTER_TYPE_P (type) = 1;
2083 }
2084 else
2085 {
2086 enum gfc_array_kind akind = GFC_ARRAY_UNKNOWN;
2087 if (sym->attr.pointer)
2088 akind = sym->attr.contiguous ? GFC_ARRAY_POINTER_CONT
2089 : GFC_ARRAY_POINTER;
2090 else if (sym->attr.allocatable)
2091 akind = GFC_ARRAY_ALLOCATABLE;
2092 type = gfc_build_array_type (type, sym->as, akind, restricted,
2093 sym->attr.contiguous);
2094 }
2095 }
2096 else
2097 {
2098 if (sym->attr.allocatable || sym->attr.pointer
2099 || gfc_is_associate_pointer (sym))
2100 type = gfc_build_pointer_type (sym, type);
2101 if (sym->attr.pointer || sym->attr.cray_pointee)
2102 GFC_POINTER_TYPE_P (type) = 1;
2103 }
2104
2105 /* We currently pass all parameters by reference.
2106 See f95_get_function_decl. For dummy function parameters return the
2107 function type. */
2108 if (byref)
2109 {
2110 /* We must use pointer types for potentially absent variables. The
2111 optimizers assume a reference type argument is never NULL. */
2112 if (sym->attr.optional
2113 || (sym->ns->proc_name && sym->ns->proc_name->attr.entry_master))
2114 type = build_pointer_type (type);
2115 else
2116 {
2117 type = build_reference_type (type);
2118 if (restricted)
2119 type = build_qualified_type (type, TYPE_QUAL_RESTRICT);
2120 }
2121 }
2122
2123 return (type);
2124 }
2125 \f
2126 /* Layout and output debug info for a record type. */
2127
2128 void
2129 gfc_finish_type (tree type)
2130 {
2131 tree decl;
2132
2133 decl = build_decl (input_location,
2134 TYPE_DECL, NULL_TREE, type);
2135 TYPE_STUB_DECL (type) = decl;
2136 layout_type (type);
2137 rest_of_type_compilation (type, 1);
2138 rest_of_decl_compilation (decl, 1, 0);
2139 }
2140 \f
2141 /* Add a field of given NAME and TYPE to the context of a UNION_TYPE
2142 or RECORD_TYPE pointed to by CONTEXT. The new field is chained
2143 to the end of the field list pointed to by *CHAIN.
2144
2145 Returns a pointer to the new field. */
2146
2147 static tree
2148 gfc_add_field_to_struct_1 (tree context, tree name, tree type, tree **chain)
2149 {
2150 tree decl = build_decl (input_location, FIELD_DECL, name, type);
2151
2152 DECL_CONTEXT (decl) = context;
2153 DECL_CHAIN (decl) = NULL_TREE;
2154 if (TYPE_FIELDS (context) == NULL_TREE)
2155 TYPE_FIELDS (context) = decl;
2156 if (chain != NULL)
2157 {
2158 if (*chain != NULL)
2159 **chain = decl;
2160 *chain = &DECL_CHAIN (decl);
2161 }
2162
2163 return decl;
2164 }
2165
2166 /* Like `gfc_add_field_to_struct_1', but adds alignment
2167 information. */
2168
2169 tree
2170 gfc_add_field_to_struct (tree context, tree name, tree type, tree **chain)
2171 {
2172 tree decl = gfc_add_field_to_struct_1 (context, name, type, chain);
2173
2174 DECL_INITIAL (decl) = 0;
2175 DECL_ALIGN (decl) = 0;
2176 DECL_USER_ALIGN (decl) = 0;
2177
2178 return decl;
2179 }
2180
2181
2182 /* Copy the backend_decl and component backend_decls if
2183 the two derived type symbols are "equal", as described
2184 in 4.4.2 and resolved by gfc_compare_derived_types. */
2185
2186 int
2187 gfc_copy_dt_decls_ifequal (gfc_symbol *from, gfc_symbol *to,
2188 bool from_gsym)
2189 {
2190 gfc_component *to_cm;
2191 gfc_component *from_cm;
2192
2193 if (from->backend_decl == NULL
2194 || !gfc_compare_derived_types (from, to))
2195 return 0;
2196
2197 to->backend_decl = from->backend_decl;
2198
2199 to_cm = to->components;
2200 from_cm = from->components;
2201
2202 /* Copy the component declarations. If a component is itself
2203 a derived type, we need a copy of its component declarations.
2204 This is done by recursing into gfc_get_derived_type and
2205 ensures that the component's component declarations have
2206 been built. If it is a character, we need the character
2207 length, as well. */
2208 for (; to_cm; to_cm = to_cm->next, from_cm = from_cm->next)
2209 {
2210 to_cm->backend_decl = from_cm->backend_decl;
2211 if (from_cm->ts.type == BT_DERIVED
2212 && (!from_cm->attr.pointer || from_gsym))
2213 gfc_get_derived_type (to_cm->ts.u.derived);
2214 else if (from_cm->ts.type == BT_CLASS
2215 && (!CLASS_DATA (from_cm)->attr.class_pointer || from_gsym))
2216 gfc_get_derived_type (to_cm->ts.u.derived);
2217 else if (from_cm->ts.type == BT_CHARACTER)
2218 to_cm->ts.u.cl->backend_decl = from_cm->ts.u.cl->backend_decl;
2219 }
2220
2221 return 1;
2222 }
2223
2224
2225 /* Build a tree node for a procedure pointer component. */
2226
2227 tree
2228 gfc_get_ppc_type (gfc_component* c)
2229 {
2230 tree t;
2231
2232 /* Explicit interface. */
2233 if (c->attr.if_source != IFSRC_UNKNOWN && c->ts.interface)
2234 return build_pointer_type (gfc_get_function_type (c->ts.interface));
2235
2236 /* Implicit interface (only return value may be known). */
2237 if (c->attr.function && !c->attr.dimension && c->ts.type != BT_CHARACTER)
2238 t = gfc_typenode_for_spec (&c->ts);
2239 else
2240 t = void_type_node;
2241
2242 return build_pointer_type (build_function_type_list (t, NULL_TREE));
2243 }
2244
2245
2246 /* Build a tree node for a derived type. If there are equal
2247 derived types, with different local names, these are built
2248 at the same time. If an equal derived type has been built
2249 in a parent namespace, this is used. */
2250
2251 tree
2252 gfc_get_derived_type (gfc_symbol * derived)
2253 {
2254 tree typenode = NULL, field = NULL, field_type = NULL;
2255 tree canonical = NULL_TREE;
2256 tree *chain = NULL;
2257 bool got_canonical = false;
2258 gfc_component *c;
2259 gfc_dt_list *dt;
2260 gfc_namespace *ns;
2261
2262 gcc_assert (derived && derived->attr.flavor == FL_DERIVED);
2263
2264 /* See if it's one of the iso_c_binding derived types. */
2265 if (derived->attr.is_iso_c == 1)
2266 {
2267 if (derived->backend_decl)
2268 return derived->backend_decl;
2269
2270 if (derived->intmod_sym_id == ISOCBINDING_PTR)
2271 derived->backend_decl = ptr_type_node;
2272 else
2273 derived->backend_decl = pfunc_type_node;
2274
2275 derived->ts.kind = gfc_index_integer_kind;
2276 derived->ts.type = BT_INTEGER;
2277 /* Set the f90_type to BT_VOID as a way to recognize something of type
2278 BT_INTEGER that needs to fit a void * for the purpose of the
2279 iso_c_binding derived types. */
2280 derived->ts.f90_type = BT_VOID;
2281
2282 return derived->backend_decl;
2283 }
2284
2285 /* If use associated, use the module type for this one. */
2286 if (gfc_option.flag_whole_file
2287 && derived->backend_decl == NULL
2288 && derived->attr.use_assoc
2289 && derived->module
2290 && gfc_get_module_backend_decl (derived))
2291 goto copy_derived_types;
2292
2293 /* If a whole file compilation, the derived types from an earlier
2294 namespace can be used as the canonical type. */
2295 if (gfc_option.flag_whole_file
2296 && derived->backend_decl == NULL
2297 && !derived->attr.use_assoc
2298 && gfc_global_ns_list)
2299 {
2300 for (ns = gfc_global_ns_list;
2301 ns->translated && !got_canonical;
2302 ns = ns->sibling)
2303 {
2304 dt = ns->derived_types;
2305 for (; dt && !canonical; dt = dt->next)
2306 {
2307 gfc_copy_dt_decls_ifequal (dt->derived, derived, true);
2308 if (derived->backend_decl)
2309 got_canonical = true;
2310 }
2311 }
2312 }
2313
2314 /* Store up the canonical type to be added to this one. */
2315 if (got_canonical)
2316 {
2317 if (TYPE_CANONICAL (derived->backend_decl))
2318 canonical = TYPE_CANONICAL (derived->backend_decl);
2319 else
2320 canonical = derived->backend_decl;
2321
2322 derived->backend_decl = NULL_TREE;
2323 }
2324
2325 /* derived->backend_decl != 0 means we saw it before, but its
2326 components' backend_decl may have not been built. */
2327 if (derived->backend_decl)
2328 {
2329 /* Its components' backend_decl have been built or we are
2330 seeing recursion through the formal arglist of a procedure
2331 pointer component. */
2332 if (TYPE_FIELDS (derived->backend_decl)
2333 || derived->attr.proc_pointer_comp)
2334 return derived->backend_decl;
2335 else
2336 typenode = derived->backend_decl;
2337 }
2338 else
2339 {
2340 /* We see this derived type first time, so build the type node. */
2341 typenode = make_node (RECORD_TYPE);
2342 TYPE_NAME (typenode) = get_identifier (derived->name);
2343 TYPE_PACKED (typenode) = gfc_option.flag_pack_derived;
2344 derived->backend_decl = typenode;
2345 }
2346
2347 /* Go through the derived type components, building them as
2348 necessary. The reason for doing this now is that it is
2349 possible to recurse back to this derived type through a
2350 pointer component (PR24092). If this happens, the fields
2351 will be built and so we can return the type. */
2352 for (c = derived->components; c; c = c->next)
2353 {
2354 if (c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
2355 continue;
2356
2357 if ((!c->attr.pointer && !c->attr.proc_pointer)
2358 || c->ts.u.derived->backend_decl == NULL)
2359 c->ts.u.derived->backend_decl = gfc_get_derived_type (c->ts.u.derived);
2360
2361 if (c->ts.u.derived && c->ts.u.derived->attr.is_iso_c)
2362 {
2363 /* Need to copy the modified ts from the derived type. The
2364 typespec was modified because C_PTR/C_FUNPTR are translated
2365 into (void *) from derived types. */
2366 c->ts.type = c->ts.u.derived->ts.type;
2367 c->ts.kind = c->ts.u.derived->ts.kind;
2368 c->ts.f90_type = c->ts.u.derived->ts.f90_type;
2369 if (c->initializer)
2370 {
2371 c->initializer->ts.type = c->ts.type;
2372 c->initializer->ts.kind = c->ts.kind;
2373 c->initializer->ts.f90_type = c->ts.f90_type;
2374 c->initializer->expr_type = EXPR_NULL;
2375 }
2376 }
2377 }
2378
2379 if (TYPE_FIELDS (derived->backend_decl))
2380 return derived->backend_decl;
2381
2382 /* Build the type member list. Install the newly created RECORD_TYPE
2383 node as DECL_CONTEXT of each FIELD_DECL. */
2384 for (c = derived->components; c; c = c->next)
2385 {
2386 if (c->attr.proc_pointer)
2387 field_type = gfc_get_ppc_type (c);
2388 else if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
2389 field_type = c->ts.u.derived->backend_decl;
2390 else
2391 {
2392 if (c->ts.type == BT_CHARACTER)
2393 {
2394 /* Evaluate the string length. */
2395 gfc_conv_const_charlen (c->ts.u.cl);
2396 gcc_assert (c->ts.u.cl->backend_decl);
2397 }
2398
2399 field_type = gfc_typenode_for_spec (&c->ts);
2400 }
2401
2402 /* This returns an array descriptor type. Initialization may be
2403 required. */
2404 if ((c->attr.dimension || c->attr.codimension) && !c->attr.proc_pointer )
2405 {
2406 if (c->attr.pointer || c->attr.allocatable)
2407 {
2408 enum gfc_array_kind akind;
2409 if (c->attr.pointer)
2410 akind = c->attr.contiguous ? GFC_ARRAY_POINTER_CONT
2411 : GFC_ARRAY_POINTER;
2412 else
2413 akind = GFC_ARRAY_ALLOCATABLE;
2414 /* Pointers to arrays aren't actually pointer types. The
2415 descriptors are separate, but the data is common. */
2416 field_type = gfc_build_array_type (field_type, c->as, akind,
2417 !c->attr.target
2418 && !c->attr.pointer,
2419 c->attr.contiguous);
2420 }
2421 else
2422 field_type = gfc_get_nodesc_array_type (field_type, c->as,
2423 PACKED_STATIC,
2424 !c->attr.target);
2425 }
2426 else if ((c->attr.pointer || c->attr.allocatable)
2427 && !c->attr.proc_pointer)
2428 field_type = build_pointer_type (field_type);
2429
2430 if (c->attr.pointer)
2431 field_type = gfc_nonrestricted_type (field_type);
2432
2433 /* vtype fields can point to different types to the base type. */
2434 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.vtype)
2435 field_type = build_pointer_type_for_mode (TREE_TYPE (field_type),
2436 ptr_mode, true);
2437
2438 field = gfc_add_field_to_struct (typenode,
2439 get_identifier (c->name),
2440 field_type, &chain);
2441 if (c->loc.lb)
2442 gfc_set_decl_location (field, &c->loc);
2443 else if (derived->declared_at.lb)
2444 gfc_set_decl_location (field, &derived->declared_at);
2445
2446 DECL_PACKED (field) |= TYPE_PACKED (typenode);
2447
2448 gcc_assert (field);
2449 if (!c->backend_decl)
2450 c->backend_decl = field;
2451 }
2452
2453 /* Now lay out the derived type, including the fields. */
2454 if (canonical)
2455 TYPE_CANONICAL (typenode) = canonical;
2456
2457 gfc_finish_type (typenode);
2458 gfc_set_decl_location (TYPE_STUB_DECL (typenode), &derived->declared_at);
2459 if (derived->module && derived->ns->proc_name
2460 && derived->ns->proc_name->attr.flavor == FL_MODULE)
2461 {
2462 if (derived->ns->proc_name->backend_decl
2463 && TREE_CODE (derived->ns->proc_name->backend_decl)
2464 == NAMESPACE_DECL)
2465 {
2466 TYPE_CONTEXT (typenode) = derived->ns->proc_name->backend_decl;
2467 DECL_CONTEXT (TYPE_STUB_DECL (typenode))
2468 = derived->ns->proc_name->backend_decl;
2469 }
2470 }
2471
2472 derived->backend_decl = typenode;
2473
2474 copy_derived_types:
2475
2476 for (dt = gfc_derived_types; dt; dt = dt->next)
2477 gfc_copy_dt_decls_ifequal (derived, dt->derived, false);
2478
2479 return derived->backend_decl;
2480 }
2481
2482
2483 int
2484 gfc_return_by_reference (gfc_symbol * sym)
2485 {
2486 if (!sym->attr.function)
2487 return 0;
2488
2489 if (sym->attr.dimension)
2490 return 1;
2491
2492 if (sym->ts.type == BT_CHARACTER
2493 && !sym->attr.is_bind_c
2494 && (!sym->attr.result
2495 || !sym->ns->proc_name
2496 || !sym->ns->proc_name->attr.is_bind_c))
2497 return 1;
2498
2499 /* Possibly return complex numbers by reference for g77 compatibility.
2500 We don't do this for calls to intrinsics (as the library uses the
2501 -fno-f2c calling convention), nor for calls to functions which always
2502 require an explicit interface, as no compatibility problems can
2503 arise there. */
2504 if (gfc_option.flag_f2c
2505 && sym->ts.type == BT_COMPLEX
2506 && !sym->attr.intrinsic && !sym->attr.always_explicit)
2507 return 1;
2508
2509 return 0;
2510 }
2511 \f
2512 static tree
2513 gfc_get_mixed_entry_union (gfc_namespace *ns)
2514 {
2515 tree type;
2516 tree *chain = NULL;
2517 char name[GFC_MAX_SYMBOL_LEN + 1];
2518 gfc_entry_list *el, *el2;
2519
2520 gcc_assert (ns->proc_name->attr.mixed_entry_master);
2521 gcc_assert (memcmp (ns->proc_name->name, "master.", 7) == 0);
2522
2523 snprintf (name, GFC_MAX_SYMBOL_LEN, "munion.%s", ns->proc_name->name + 7);
2524
2525 /* Build the type node. */
2526 type = make_node (UNION_TYPE);
2527
2528 TYPE_NAME (type) = get_identifier (name);
2529
2530 for (el = ns->entries; el; el = el->next)
2531 {
2532 /* Search for duplicates. */
2533 for (el2 = ns->entries; el2 != el; el2 = el2->next)
2534 if (el2->sym->result == el->sym->result)
2535 break;
2536
2537 if (el == el2)
2538 gfc_add_field_to_struct_1 (type,
2539 get_identifier (el->sym->result->name),
2540 gfc_sym_type (el->sym->result), &chain);
2541 }
2542
2543 /* Finish off the type. */
2544 gfc_finish_type (type);
2545 TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type)) = 1;
2546 return type;
2547 }
2548 \f
2549 /* Create a "fn spec" based on the formal arguments;
2550 cf. create_function_arglist. */
2551
2552 static tree
2553 create_fn_spec (gfc_symbol *sym, tree fntype)
2554 {
2555 char spec[150];
2556 size_t spec_len;
2557 gfc_formal_arglist *f;
2558 tree tmp;
2559
2560 memset (&spec, 0, sizeof (spec));
2561 spec[0] = '.';
2562 spec_len = 1;
2563
2564 if (sym->attr.entry_master)
2565 spec[spec_len++] = 'R';
2566 if (gfc_return_by_reference (sym))
2567 {
2568 gfc_symbol *result = sym->result ? sym->result : sym;
2569
2570 if (result->attr.pointer || sym->attr.proc_pointer)
2571 spec[spec_len++] = '.';
2572 else
2573 spec[spec_len++] = 'w';
2574 if (sym->ts.type == BT_CHARACTER)
2575 spec[spec_len++] = 'R';
2576 }
2577
2578 for (f = sym->formal; f; f = f->next)
2579 if (spec_len < sizeof (spec))
2580 {
2581 if (!f->sym || f->sym->attr.pointer || f->sym->attr.target
2582 || f->sym->attr.external || f->sym->attr.cray_pointer
2583 || (f->sym->ts.type == BT_DERIVED
2584 && (f->sym->ts.u.derived->attr.proc_pointer_comp
2585 || f->sym->ts.u.derived->attr.pointer_comp))
2586 || (f->sym->ts.type == BT_CLASS
2587 && (CLASS_DATA (f->sym)->ts.u.derived->attr.proc_pointer_comp
2588 || CLASS_DATA (f->sym)->ts.u.derived->attr.pointer_comp)))
2589 spec[spec_len++] = '.';
2590 else if (f->sym->attr.intent == INTENT_IN)
2591 spec[spec_len++] = 'r';
2592 else if (f->sym)
2593 spec[spec_len++] = 'w';
2594 }
2595
2596 tmp = build_tree_list (NULL_TREE, build_string (spec_len, spec));
2597 tmp = tree_cons (get_identifier ("fn spec"), tmp, TYPE_ATTRIBUTES (fntype));
2598 return build_type_attribute_variant (fntype, tmp);
2599 }
2600
2601
2602 tree
2603 gfc_get_function_type (gfc_symbol * sym)
2604 {
2605 tree type;
2606 VEC(tree,gc) *typelist;
2607 gfc_formal_arglist *f;
2608 gfc_symbol *arg;
2609 int alternate_return;
2610 bool is_varargs = true;
2611
2612 /* Make sure this symbol is a function, a subroutine or the main
2613 program. */
2614 gcc_assert (sym->attr.flavor == FL_PROCEDURE
2615 || sym->attr.flavor == FL_PROGRAM);
2616
2617 if (sym->backend_decl)
2618 return TREE_TYPE (sym->backend_decl);
2619
2620 alternate_return = 0;
2621 typelist = NULL;
2622
2623 if (sym->attr.entry_master)
2624 /* Additional parameter for selecting an entry point. */
2625 VEC_safe_push (tree, gc, typelist, gfc_array_index_type);
2626
2627 if (sym->result)
2628 arg = sym->result;
2629 else
2630 arg = sym;
2631
2632 if (arg->ts.type == BT_CHARACTER)
2633 gfc_conv_const_charlen (arg->ts.u.cl);
2634
2635 /* Some functions we use an extra parameter for the return value. */
2636 if (gfc_return_by_reference (sym))
2637 {
2638 type = gfc_sym_type (arg);
2639 if (arg->ts.type == BT_COMPLEX
2640 || arg->attr.dimension
2641 || arg->ts.type == BT_CHARACTER)
2642 type = build_reference_type (type);
2643
2644 VEC_safe_push (tree, gc, typelist, type);
2645 if (arg->ts.type == BT_CHARACTER)
2646 {
2647 if (!arg->ts.deferred)
2648 /* Transfer by value. */
2649 VEC_safe_push (tree, gc, typelist, gfc_charlen_type_node);
2650 else
2651 /* Deferred character lengths are transferred by reference
2652 so that the value can be returned. */
2653 VEC_safe_push (tree, gc, typelist,
2654 build_pointer_type (gfc_charlen_type_node));
2655 }
2656 }
2657
2658 /* Build the argument types for the function. */
2659 for (f = sym->formal; f; f = f->next)
2660 {
2661 arg = f->sym;
2662 if (arg)
2663 {
2664 /* Evaluate constant character lengths here so that they can be
2665 included in the type. */
2666 if (arg->ts.type == BT_CHARACTER)
2667 gfc_conv_const_charlen (arg->ts.u.cl);
2668
2669 if (arg->attr.flavor == FL_PROCEDURE)
2670 {
2671 type = gfc_get_function_type (arg);
2672 type = build_pointer_type (type);
2673 }
2674 else
2675 type = gfc_sym_type (arg);
2676
2677 /* Parameter Passing Convention
2678
2679 We currently pass all parameters by reference.
2680 Parameters with INTENT(IN) could be passed by value.
2681 The problem arises if a function is called via an implicit
2682 prototype. In this situation the INTENT is not known.
2683 For this reason all parameters to global functions must be
2684 passed by reference. Passing by value would potentially
2685 generate bad code. Worse there would be no way of telling that
2686 this code was bad, except that it would give incorrect results.
2687
2688 Contained procedures could pass by value as these are never
2689 used without an explicit interface, and cannot be passed as
2690 actual parameters for a dummy procedure. */
2691
2692 VEC_safe_push (tree, gc, typelist, type);
2693 }
2694 else
2695 {
2696 if (sym->attr.subroutine)
2697 alternate_return = 1;
2698 }
2699 }
2700
2701 /* Add hidden string length parameters. */
2702 for (f = sym->formal; f; f = f->next)
2703 {
2704 arg = f->sym;
2705 if (arg && arg->ts.type == BT_CHARACTER && !sym->attr.is_bind_c)
2706 {
2707 if (!arg->ts.deferred)
2708 /* Transfer by value. */
2709 type = gfc_charlen_type_node;
2710 else
2711 /* Deferred character lengths are transferred by reference
2712 so that the value can be returned. */
2713 type = build_pointer_type (gfc_charlen_type_node);
2714
2715 VEC_safe_push (tree, gc, typelist, type);
2716 }
2717 }
2718
2719 if (!VEC_empty (tree, typelist)
2720 || sym->attr.is_main_program
2721 || sym->attr.if_source != IFSRC_UNKNOWN)
2722 is_varargs = false;
2723
2724 if (alternate_return)
2725 type = integer_type_node;
2726 else if (!sym->attr.function || gfc_return_by_reference (sym))
2727 type = void_type_node;
2728 else if (sym->attr.mixed_entry_master)
2729 type = gfc_get_mixed_entry_union (sym->ns);
2730 else if (gfc_option.flag_f2c
2731 && sym->ts.type == BT_REAL
2732 && sym->ts.kind == gfc_default_real_kind
2733 && !sym->attr.always_explicit)
2734 {
2735 /* Special case: f2c calling conventions require that (scalar)
2736 default REAL functions return the C type double instead. f2c
2737 compatibility is only an issue with functions that don't
2738 require an explicit interface, as only these could be
2739 implemented in Fortran 77. */
2740 sym->ts.kind = gfc_default_double_kind;
2741 type = gfc_typenode_for_spec (&sym->ts);
2742 sym->ts.kind = gfc_default_real_kind;
2743 }
2744 else if (sym->result && sym->result->attr.proc_pointer)
2745 /* Procedure pointer return values. */
2746 {
2747 if (sym->result->attr.result && strcmp (sym->name,"ppr@") != 0)
2748 {
2749 /* Unset proc_pointer as gfc_get_function_type
2750 is called recursively. */
2751 sym->result->attr.proc_pointer = 0;
2752 type = build_pointer_type (gfc_get_function_type (sym->result));
2753 sym->result->attr.proc_pointer = 1;
2754 }
2755 else
2756 type = gfc_sym_type (sym->result);
2757 }
2758 else
2759 type = gfc_sym_type (sym);
2760
2761 if (is_varargs)
2762 type = build_varargs_function_type_vec (type, typelist);
2763 else
2764 type = build_function_type_vec (type, typelist);
2765 type = create_fn_spec (sym, type);
2766
2767 return type;
2768 }
2769 \f
2770 /* Language hooks for middle-end access to type nodes. */
2771
2772 /* Return an integer type with BITS bits of precision,
2773 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
2774
2775 tree
2776 gfc_type_for_size (unsigned bits, int unsignedp)
2777 {
2778 if (!unsignedp)
2779 {
2780 int i;
2781 for (i = 0; i <= MAX_INT_KINDS; ++i)
2782 {
2783 tree type = gfc_integer_types[i];
2784 if (type && bits == TYPE_PRECISION (type))
2785 return type;
2786 }
2787
2788 /* Handle TImode as a special case because it is used by some backends
2789 (e.g. ARM) even though it is not available for normal use. */
2790 #if HOST_BITS_PER_WIDE_INT >= 64
2791 if (bits == TYPE_PRECISION (intTI_type_node))
2792 return intTI_type_node;
2793 #endif
2794
2795 if (bits <= TYPE_PRECISION (intQI_type_node))
2796 return intQI_type_node;
2797 if (bits <= TYPE_PRECISION (intHI_type_node))
2798 return intHI_type_node;
2799 if (bits <= TYPE_PRECISION (intSI_type_node))
2800 return intSI_type_node;
2801 if (bits <= TYPE_PRECISION (intDI_type_node))
2802 return intDI_type_node;
2803 if (bits <= TYPE_PRECISION (intTI_type_node))
2804 return intTI_type_node;
2805 }
2806 else
2807 {
2808 if (bits <= TYPE_PRECISION (unsigned_intQI_type_node))
2809 return unsigned_intQI_type_node;
2810 if (bits <= TYPE_PRECISION (unsigned_intHI_type_node))
2811 return unsigned_intHI_type_node;
2812 if (bits <= TYPE_PRECISION (unsigned_intSI_type_node))
2813 return unsigned_intSI_type_node;
2814 if (bits <= TYPE_PRECISION (unsigned_intDI_type_node))
2815 return unsigned_intDI_type_node;
2816 if (bits <= TYPE_PRECISION (unsigned_intTI_type_node))
2817 return unsigned_intTI_type_node;
2818 }
2819
2820 return NULL_TREE;
2821 }
2822
2823 /* Return a data type that has machine mode MODE. If the mode is an
2824 integer, then UNSIGNEDP selects between signed and unsigned types. */
2825
2826 tree
2827 gfc_type_for_mode (enum machine_mode mode, int unsignedp)
2828 {
2829 int i;
2830 tree *base;
2831
2832 if (GET_MODE_CLASS (mode) == MODE_FLOAT)
2833 base = gfc_real_types;
2834 else if (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT)
2835 base = gfc_complex_types;
2836 else if (SCALAR_INT_MODE_P (mode))
2837 {
2838 tree type = gfc_type_for_size (GET_MODE_PRECISION (mode), unsignedp);
2839 return type != NULL_TREE && mode == TYPE_MODE (type) ? type : NULL_TREE;
2840 }
2841 else if (VECTOR_MODE_P (mode))
2842 {
2843 enum machine_mode inner_mode = GET_MODE_INNER (mode);
2844 tree inner_type = gfc_type_for_mode (inner_mode, unsignedp);
2845 if (inner_type != NULL_TREE)
2846 return build_vector_type_for_mode (inner_type, mode);
2847 return NULL_TREE;
2848 }
2849 else
2850 return NULL_TREE;
2851
2852 for (i = 0; i <= MAX_REAL_KINDS; ++i)
2853 {
2854 tree type = base[i];
2855 if (type && mode == TYPE_MODE (type))
2856 return type;
2857 }
2858
2859 return NULL_TREE;
2860 }
2861
2862 /* Return TRUE if TYPE is a type with a hidden descriptor, fill in INFO
2863 in that case. */
2864
2865 bool
2866 gfc_get_array_descr_info (const_tree type, struct array_descr_info *info)
2867 {
2868 int rank, dim;
2869 bool indirect = false;
2870 tree etype, ptype, field, t, base_decl;
2871 tree data_off, dim_off, dim_size, elem_size;
2872 tree lower_suboff, upper_suboff, stride_suboff;
2873
2874 if (! GFC_DESCRIPTOR_TYPE_P (type))
2875 {
2876 if (! POINTER_TYPE_P (type))
2877 return false;
2878 type = TREE_TYPE (type);
2879 if (! GFC_DESCRIPTOR_TYPE_P (type))
2880 return false;
2881 indirect = true;
2882 }
2883
2884 rank = GFC_TYPE_ARRAY_RANK (type);
2885 if (rank >= (int) (sizeof (info->dimen) / sizeof (info->dimen[0])))
2886 return false;
2887
2888 etype = GFC_TYPE_ARRAY_DATAPTR_TYPE (type);
2889 gcc_assert (POINTER_TYPE_P (etype));
2890 etype = TREE_TYPE (etype);
2891
2892 /* If the type is not a scalar coarray. */
2893 if (TREE_CODE (etype) == ARRAY_TYPE)
2894 etype = TREE_TYPE (etype);
2895
2896 /* Can't handle variable sized elements yet. */
2897 if (int_size_in_bytes (etype) <= 0)
2898 return false;
2899 /* Nor non-constant lower bounds in assumed shape arrays. */
2900 if (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ASSUMED_SHAPE
2901 || GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ASSUMED_SHAPE_CONT)
2902 {
2903 for (dim = 0; dim < rank; dim++)
2904 if (GFC_TYPE_ARRAY_LBOUND (type, dim) == NULL_TREE
2905 || TREE_CODE (GFC_TYPE_ARRAY_LBOUND (type, dim)) != INTEGER_CST)
2906 return false;
2907 }
2908
2909 memset (info, '\0', sizeof (*info));
2910 info->ndimensions = rank;
2911 info->element_type = etype;
2912 ptype = build_pointer_type (gfc_array_index_type);
2913 base_decl = GFC_TYPE_ARRAY_BASE_DECL (type, indirect);
2914 if (!base_decl)
2915 {
2916 base_decl = build_decl (input_location, VAR_DECL, NULL_TREE,
2917 indirect ? build_pointer_type (ptype) : ptype);
2918 GFC_TYPE_ARRAY_BASE_DECL (type, indirect) = base_decl;
2919 }
2920 info->base_decl = base_decl;
2921 if (indirect)
2922 base_decl = build1 (INDIRECT_REF, ptype, base_decl);
2923
2924 if (GFC_TYPE_ARRAY_SPAN (type))
2925 elem_size = GFC_TYPE_ARRAY_SPAN (type);
2926 else
2927 elem_size = fold_convert (gfc_array_index_type, TYPE_SIZE_UNIT (etype));
2928 field = TYPE_FIELDS (TYPE_MAIN_VARIANT (type));
2929 data_off = byte_position (field);
2930 field = DECL_CHAIN (field);
2931 field = DECL_CHAIN (field);
2932 field = DECL_CHAIN (field);
2933 dim_off = byte_position (field);
2934 dim_size = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (field)));
2935 field = TYPE_FIELDS (TREE_TYPE (TREE_TYPE (field)));
2936 stride_suboff = byte_position (field);
2937 field = DECL_CHAIN (field);
2938 lower_suboff = byte_position (field);
2939 field = DECL_CHAIN (field);
2940 upper_suboff = byte_position (field);
2941
2942 t = base_decl;
2943 if (!integer_zerop (data_off))
2944 t = fold_build_pointer_plus (t, data_off);
2945 t = build1 (NOP_EXPR, build_pointer_type (ptr_type_node), t);
2946 info->data_location = build1 (INDIRECT_REF, ptr_type_node, t);
2947 if (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ALLOCATABLE)
2948 info->allocated = build2 (NE_EXPR, boolean_type_node,
2949 info->data_location, null_pointer_node);
2950 else if (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_POINTER
2951 || GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_POINTER_CONT)
2952 info->associated = build2 (NE_EXPR, boolean_type_node,
2953 info->data_location, null_pointer_node);
2954
2955 for (dim = 0; dim < rank; dim++)
2956 {
2957 t = fold_build_pointer_plus (base_decl,
2958 size_binop (PLUS_EXPR,
2959 dim_off, lower_suboff));
2960 t = build1 (INDIRECT_REF, gfc_array_index_type, t);
2961 info->dimen[dim].lower_bound = t;
2962 t = fold_build_pointer_plus (base_decl,
2963 size_binop (PLUS_EXPR,
2964 dim_off, upper_suboff));
2965 t = build1 (INDIRECT_REF, gfc_array_index_type, t);
2966 info->dimen[dim].upper_bound = t;
2967 if (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ASSUMED_SHAPE
2968 || GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ASSUMED_SHAPE_CONT)
2969 {
2970 /* Assumed shape arrays have known lower bounds. */
2971 info->dimen[dim].upper_bound
2972 = build2 (MINUS_EXPR, gfc_array_index_type,
2973 info->dimen[dim].upper_bound,
2974 info->dimen[dim].lower_bound);
2975 info->dimen[dim].lower_bound
2976 = fold_convert (gfc_array_index_type,
2977 GFC_TYPE_ARRAY_LBOUND (type, dim));
2978 info->dimen[dim].upper_bound
2979 = build2 (PLUS_EXPR, gfc_array_index_type,
2980 info->dimen[dim].lower_bound,
2981 info->dimen[dim].upper_bound);
2982 }
2983 t = fold_build_pointer_plus (base_decl,
2984 size_binop (PLUS_EXPR,
2985 dim_off, stride_suboff));
2986 t = build1 (INDIRECT_REF, gfc_array_index_type, t);
2987 t = build2 (MULT_EXPR, gfc_array_index_type, t, elem_size);
2988 info->dimen[dim].stride = t;
2989 dim_off = size_binop (PLUS_EXPR, dim_off, dim_size);
2990 }
2991
2992 return true;
2993 }
2994
2995 #include "gt-fortran-trans-types.h"