* doc/Makefile.am (stamp-pdf-doxygen): Grep for LaTeX errors in log.
[official-gcc.git] / gcc / fortran / trans-types.c
blobdb628a5dc846cd14d4c3e2a6d53ea08d15959e7a
1 /* Backend support for Fortran 95 basic types and derived types.
2 Copyright (C) 2002-2015 Free Software Foundation, Inc.
3 Contributed by Paul Brook <paul@nowt.org>
4 and Steven Bosscher <s.bosscher@student.tudelft.nl>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* trans-types.c -- gfortran backend types */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h" /* For INTMAX_TYPE, INT8_TYPE, INT16_TYPE, INT32_TYPE,
28 INT64_TYPE, INT_LEAST8_TYPE, INT_LEAST16_TYPE,
29 INT_LEAST32_TYPE, INT_LEAST64_TYPE, INT_FAST8_TYPE,
30 INT_FAST16_TYPE, INT_FAST32_TYPE, INT_FAST64_TYPE,
31 BOOL_TYPE_SIZE, BITS_PER_UNIT, POINTER_SIZE,
32 INT_TYPE_SIZE, CHAR_TYPE_SIZE, SHORT_TYPE_SIZE,
33 LONG_TYPE_SIZE, LONG_LONG_TYPE_SIZE,
34 FLOAT_TYPE_SIZE, DOUBLE_TYPE_SIZE and
35 LONG_DOUBLE_TYPE_SIZE. */
36 #include "alias.h"
37 #include "symtab.h"
38 #include "tree.h"
39 #include "fold-const.h"
40 #include "stor-layout.h"
41 #include "stringpool.h"
42 #include "langhooks.h" /* For iso-c-bindings.def. */
43 #include "target.h"
44 #include "gfortran.h"
45 #include "diagnostic-core.h" /* For fatal_error. */
46 #include "toplev.h" /* For rest_of_decl_compilation. */
47 #include "trans.h"
48 #include "trans-types.h"
49 #include "trans-const.h"
50 #include "flags.h"
51 #include "dwarf2out.h" /* For struct array_descr_info. */
54 #if (GFC_MAX_DIMENSIONS < 10)
55 #define GFC_RANK_DIGITS 1
56 #define GFC_RANK_PRINTF_FORMAT "%01d"
57 #elif (GFC_MAX_DIMENSIONS < 100)
58 #define GFC_RANK_DIGITS 2
59 #define GFC_RANK_PRINTF_FORMAT "%02d"
60 #else
61 #error If you really need >99 dimensions, continue the sequence above...
62 #endif
64 /* array of structs so we don't have to worry about xmalloc or free */
65 CInteropKind_t c_interop_kinds_table[ISOCBINDING_NUMBER];
67 tree gfc_array_index_type;
68 tree gfc_array_range_type;
69 tree gfc_character1_type_node;
70 tree pvoid_type_node;
71 tree prvoid_type_node;
72 tree ppvoid_type_node;
73 tree pchar_type_node;
74 tree pfunc_type_node;
76 tree gfc_charlen_type_node;
78 tree float128_type_node = NULL_TREE;
79 tree complex_float128_type_node = NULL_TREE;
81 bool gfc_real16_is_float128 = false;
83 static GTY(()) tree gfc_desc_dim_type;
84 static GTY(()) tree gfc_max_array_element_size;
85 static GTY(()) tree gfc_array_descriptor_base[2 * (GFC_MAX_DIMENSIONS+1)];
86 static GTY(()) tree gfc_array_descriptor_base_caf[2 * (GFC_MAX_DIMENSIONS+1)];
88 /* Arrays for all integral and real kinds. We'll fill this in at runtime
89 after the target has a chance to process command-line options. */
91 #define MAX_INT_KINDS 5
92 gfc_integer_info gfc_integer_kinds[MAX_INT_KINDS + 1];
93 gfc_logical_info gfc_logical_kinds[MAX_INT_KINDS + 1];
94 static GTY(()) tree gfc_integer_types[MAX_INT_KINDS + 1];
95 static GTY(()) tree gfc_logical_types[MAX_INT_KINDS + 1];
97 #define MAX_REAL_KINDS 5
98 gfc_real_info gfc_real_kinds[MAX_REAL_KINDS + 1];
99 static GTY(()) tree gfc_real_types[MAX_REAL_KINDS + 1];
100 static GTY(()) tree gfc_complex_types[MAX_REAL_KINDS + 1];
102 #define MAX_CHARACTER_KINDS 2
103 gfc_character_info gfc_character_kinds[MAX_CHARACTER_KINDS + 1];
104 static GTY(()) tree gfc_character_types[MAX_CHARACTER_KINDS + 1];
105 static GTY(()) tree gfc_pcharacter_types[MAX_CHARACTER_KINDS + 1];
107 static tree gfc_add_field_to_struct_1 (tree, tree, tree, tree **);
109 /* The integer kind to use for array indices. This will be set to the
110 proper value based on target information from the backend. */
112 int gfc_index_integer_kind;
114 /* The default kinds of the various types. */
116 int gfc_default_integer_kind;
117 int gfc_max_integer_kind;
118 int gfc_default_real_kind;
119 int gfc_default_double_kind;
120 int gfc_default_character_kind;
121 int gfc_default_logical_kind;
122 int gfc_default_complex_kind;
123 int gfc_c_int_kind;
124 int gfc_atomic_int_kind;
125 int gfc_atomic_logical_kind;
127 /* The kind size used for record offsets. If the target system supports
128 kind=8, this will be set to 8, otherwise it is set to 4. */
129 int gfc_intio_kind;
131 /* The integer kind used to store character lengths. */
132 int gfc_charlen_int_kind;
134 /* The size of the numeric storage unit and character storage unit. */
135 int gfc_numeric_storage_size;
136 int gfc_character_storage_size;
139 bool
140 gfc_check_any_c_kind (gfc_typespec *ts)
142 int i;
144 for (i = 0; i < ISOCBINDING_NUMBER; i++)
146 /* Check for any C interoperable kind for the given type/kind in ts.
147 This can be used after verify_c_interop to make sure that the
148 Fortran kind being used exists in at least some form for C. */
149 if (c_interop_kinds_table[i].f90_type == ts->type &&
150 c_interop_kinds_table[i].value == ts->kind)
151 return true;
154 return false;
158 static int
159 get_real_kind_from_node (tree type)
161 int i;
163 for (i = 0; gfc_real_kinds[i].kind != 0; i++)
164 if (gfc_real_kinds[i].mode_precision == TYPE_PRECISION (type))
165 return gfc_real_kinds[i].kind;
167 return -4;
170 static int
171 get_int_kind_from_node (tree type)
173 int i;
175 if (!type)
176 return -2;
178 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
179 if (gfc_integer_kinds[i].bit_size == TYPE_PRECISION (type))
180 return gfc_integer_kinds[i].kind;
182 return -1;
185 /* Return a typenode for the "standard" C type with a given name. */
186 static tree
187 get_typenode_from_name (const char *name)
189 if (name == NULL || *name == '\0')
190 return NULL_TREE;
192 if (strcmp (name, "char") == 0)
193 return char_type_node;
194 if (strcmp (name, "unsigned char") == 0)
195 return unsigned_char_type_node;
196 if (strcmp (name, "signed char") == 0)
197 return signed_char_type_node;
199 if (strcmp (name, "short int") == 0)
200 return short_integer_type_node;
201 if (strcmp (name, "short unsigned int") == 0)
202 return short_unsigned_type_node;
204 if (strcmp (name, "int") == 0)
205 return integer_type_node;
206 if (strcmp (name, "unsigned int") == 0)
207 return unsigned_type_node;
209 if (strcmp (name, "long int") == 0)
210 return long_integer_type_node;
211 if (strcmp (name, "long unsigned int") == 0)
212 return long_unsigned_type_node;
214 if (strcmp (name, "long long int") == 0)
215 return long_long_integer_type_node;
216 if (strcmp (name, "long long unsigned int") == 0)
217 return long_long_unsigned_type_node;
219 gcc_unreachable ();
222 static int
223 get_int_kind_from_name (const char *name)
225 return get_int_kind_from_node (get_typenode_from_name (name));
229 /* Get the kind number corresponding to an integer of given size,
230 following the required return values for ISO_FORTRAN_ENV INT* constants:
231 -2 is returned if we support a kind of larger size, -1 otherwise. */
233 gfc_get_int_kind_from_width_isofortranenv (int size)
235 int i;
237 /* Look for a kind with matching storage size. */
238 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
239 if (gfc_integer_kinds[i].bit_size == size)
240 return gfc_integer_kinds[i].kind;
242 /* Look for a kind with larger storage size. */
243 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
244 if (gfc_integer_kinds[i].bit_size > size)
245 return -2;
247 return -1;
250 /* Get the kind number corresponding to a real of given storage size,
251 following the required return values for ISO_FORTRAN_ENV REAL* constants:
252 -2 is returned if we support a kind of larger size, -1 otherwise. */
254 gfc_get_real_kind_from_width_isofortranenv (int size)
256 int i;
258 size /= 8;
260 /* Look for a kind with matching storage size. */
261 for (i = 0; gfc_real_kinds[i].kind != 0; i++)
262 if (int_size_in_bytes (gfc_get_real_type (gfc_real_kinds[i].kind)) == size)
263 return gfc_real_kinds[i].kind;
265 /* Look for a kind with larger storage size. */
266 for (i = 0; gfc_real_kinds[i].kind != 0; i++)
267 if (int_size_in_bytes (gfc_get_real_type (gfc_real_kinds[i].kind)) > size)
268 return -2;
270 return -1;
275 static int
276 get_int_kind_from_width (int size)
278 int i;
280 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
281 if (gfc_integer_kinds[i].bit_size == size)
282 return gfc_integer_kinds[i].kind;
284 return -2;
287 static int
288 get_int_kind_from_minimal_width (int size)
290 int i;
292 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
293 if (gfc_integer_kinds[i].bit_size >= size)
294 return gfc_integer_kinds[i].kind;
296 return -2;
300 /* Generate the CInteropKind_t objects for the C interoperable
301 kinds. */
303 void
304 gfc_init_c_interop_kinds (void)
306 int i;
308 /* init all pointers in the list to NULL */
309 for (i = 0; i < ISOCBINDING_NUMBER; i++)
311 /* Initialize the name and value fields. */
312 c_interop_kinds_table[i].name[0] = '\0';
313 c_interop_kinds_table[i].value = -100;
314 c_interop_kinds_table[i].f90_type = BT_UNKNOWN;
317 #define NAMED_INTCST(a,b,c,d) \
318 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
319 c_interop_kinds_table[a].f90_type = BT_INTEGER; \
320 c_interop_kinds_table[a].value = c;
321 #define NAMED_REALCST(a,b,c,d) \
322 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
323 c_interop_kinds_table[a].f90_type = BT_REAL; \
324 c_interop_kinds_table[a].value = c;
325 #define NAMED_CMPXCST(a,b,c,d) \
326 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
327 c_interop_kinds_table[a].f90_type = BT_COMPLEX; \
328 c_interop_kinds_table[a].value = c;
329 #define NAMED_LOGCST(a,b,c) \
330 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
331 c_interop_kinds_table[a].f90_type = BT_LOGICAL; \
332 c_interop_kinds_table[a].value = c;
333 #define NAMED_CHARKNDCST(a,b,c) \
334 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
335 c_interop_kinds_table[a].f90_type = BT_CHARACTER; \
336 c_interop_kinds_table[a].value = c;
337 #define NAMED_CHARCST(a,b,c) \
338 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
339 c_interop_kinds_table[a].f90_type = BT_CHARACTER; \
340 c_interop_kinds_table[a].value = c;
341 #define DERIVED_TYPE(a,b,c) \
342 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
343 c_interop_kinds_table[a].f90_type = BT_DERIVED; \
344 c_interop_kinds_table[a].value = c;
345 #define NAMED_FUNCTION(a,b,c,d) \
346 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
347 c_interop_kinds_table[a].f90_type = BT_PROCEDURE; \
348 c_interop_kinds_table[a].value = c;
349 #define NAMED_SUBROUTINE(a,b,c,d) \
350 strncpy (c_interop_kinds_table[a].name, b, strlen(b) + 1); \
351 c_interop_kinds_table[a].f90_type = BT_PROCEDURE; \
352 c_interop_kinds_table[a].value = c;
353 #include "iso-c-binding.def"
357 /* Query the target to determine which machine modes are available for
358 computation. Choose KIND numbers for them. */
360 void
361 gfc_init_kinds (void)
363 unsigned int mode;
364 int i_index, r_index, kind;
365 bool saw_i4 = false, saw_i8 = false;
366 bool saw_r4 = false, saw_r8 = false, saw_r10 = false, saw_r16 = false;
368 for (i_index = 0, mode = MIN_MODE_INT; mode <= MAX_MODE_INT; mode++)
370 int kind, bitsize;
372 if (!targetm.scalar_mode_supported_p ((machine_mode) mode))
373 continue;
375 /* The middle end doesn't support constants larger than 2*HWI.
376 Perhaps the target hook shouldn't have accepted these either,
377 but just to be safe... */
378 bitsize = GET_MODE_BITSIZE ((machine_mode) mode);
379 if (bitsize > 2*HOST_BITS_PER_WIDE_INT)
380 continue;
382 gcc_assert (i_index != MAX_INT_KINDS);
384 /* Let the kind equal the bit size divided by 8. This insulates the
385 programmer from the underlying byte size. */
386 kind = bitsize / 8;
388 if (kind == 4)
389 saw_i4 = true;
390 if (kind == 8)
391 saw_i8 = true;
393 gfc_integer_kinds[i_index].kind = kind;
394 gfc_integer_kinds[i_index].radix = 2;
395 gfc_integer_kinds[i_index].digits = bitsize - 1;
396 gfc_integer_kinds[i_index].bit_size = bitsize;
398 gfc_logical_kinds[i_index].kind = kind;
399 gfc_logical_kinds[i_index].bit_size = bitsize;
401 i_index += 1;
404 /* Set the kind used to match GFC_INT_IO in libgfortran. This is
405 used for large file access. */
407 if (saw_i8)
408 gfc_intio_kind = 8;
409 else
410 gfc_intio_kind = 4;
412 /* If we do not at least have kind = 4, everything is pointless. */
413 gcc_assert(saw_i4);
415 /* Set the maximum integer kind. Used with at least BOZ constants. */
416 gfc_max_integer_kind = gfc_integer_kinds[i_index - 1].kind;
418 for (r_index = 0, mode = MIN_MODE_FLOAT; mode <= MAX_MODE_FLOAT; mode++)
420 const struct real_format *fmt =
421 REAL_MODE_FORMAT ((machine_mode) mode);
422 int kind;
424 if (fmt == NULL)
425 continue;
426 if (!targetm.scalar_mode_supported_p ((machine_mode) mode))
427 continue;
429 /* Only let float, double, long double and __float128 go through.
430 Runtime support for others is not provided, so they would be
431 useless. */
432 if (!targetm.libgcc_floating_mode_supported_p ((machine_mode)
433 mode))
434 continue;
435 if (mode != TYPE_MODE (float_type_node)
436 && (mode != TYPE_MODE (double_type_node))
437 && (mode != TYPE_MODE (long_double_type_node))
438 #if defined(HAVE_TFmode) && defined(ENABLE_LIBQUADMATH_SUPPORT)
439 && (mode != TFmode)
440 #endif
442 continue;
444 /* Let the kind equal the precision divided by 8, rounding up. Again,
445 this insulates the programmer from the underlying byte size.
447 Also, it effectively deals with IEEE extended formats. There, the
448 total size of the type may equal 16, but it's got 6 bytes of padding
449 and the increased size can get in the way of a real IEEE quad format
450 which may also be supported by the target.
452 We round up so as to handle IA-64 __floatreg (RFmode), which is an
453 82 bit type. Not to be confused with __float80 (XFmode), which is
454 an 80 bit type also supported by IA-64. So XFmode should come out
455 to be kind=10, and RFmode should come out to be kind=11. Egads. */
457 kind = (GET_MODE_PRECISION (mode) + 7) / 8;
459 if (kind == 4)
460 saw_r4 = true;
461 if (kind == 8)
462 saw_r8 = true;
463 if (kind == 10)
464 saw_r10 = true;
465 if (kind == 16)
466 saw_r16 = true;
468 /* Careful we don't stumble a weird internal mode. */
469 gcc_assert (r_index <= 0 || gfc_real_kinds[r_index-1].kind != kind);
470 /* Or have too many modes for the allocated space. */
471 gcc_assert (r_index != MAX_REAL_KINDS);
473 gfc_real_kinds[r_index].kind = kind;
474 gfc_real_kinds[r_index].radix = fmt->b;
475 gfc_real_kinds[r_index].digits = fmt->p;
476 gfc_real_kinds[r_index].min_exponent = fmt->emin;
477 gfc_real_kinds[r_index].max_exponent = fmt->emax;
478 if (fmt->pnan < fmt->p)
479 /* This is an IBM extended double format (or the MIPS variant)
480 made up of two IEEE doubles. The value of the long double is
481 the sum of the values of the two parts. The most significant
482 part is required to be the value of the long double rounded
483 to the nearest double. If we use emax of 1024 then we can't
484 represent huge(x) = (1 - b**(-p)) * b**(emax-1) * b, because
485 rounding will make the most significant part overflow. */
486 gfc_real_kinds[r_index].max_exponent = fmt->emax - 1;
487 gfc_real_kinds[r_index].mode_precision = GET_MODE_PRECISION (mode);
488 r_index += 1;
491 /* Choose the default integer kind. We choose 4 unless the user directs us
492 otherwise. Even if the user specified that the default integer kind is 8,
493 the numeric storage size is not 64 bits. In this case, a warning will be
494 issued when NUMERIC_STORAGE_SIZE is used. Set NUMERIC_STORAGE_SIZE to 32. */
496 gfc_numeric_storage_size = 4 * 8;
498 if (flag_default_integer)
500 if (!saw_i8)
501 gfc_fatal_error ("INTEGER(KIND=8) is not available for "
502 "%<-fdefault-integer-8%> option");
504 gfc_default_integer_kind = 8;
507 else if (flag_integer4_kind == 8)
509 if (!saw_i8)
510 gfc_fatal_error ("INTEGER(KIND=8) is not available for "
511 "%<-finteger-4-integer-8%> option");
513 gfc_default_integer_kind = 8;
515 else if (saw_i4)
517 gfc_default_integer_kind = 4;
519 else
521 gfc_default_integer_kind = gfc_integer_kinds[i_index - 1].kind;
522 gfc_numeric_storage_size = gfc_integer_kinds[i_index - 1].bit_size;
525 /* Choose the default real kind. Again, we choose 4 when possible. */
526 if (flag_default_real)
528 if (!saw_r8)
529 gfc_fatal_error ("REAL(KIND=8) is not available for "
530 "%<-fdefault-real-8%> option");
532 gfc_default_real_kind = 8;
534 else if (flag_real4_kind == 8)
536 if (!saw_r8)
537 gfc_fatal_error ("REAL(KIND=8) is not available for %<-freal-4-real-8%> "
538 "option");
540 gfc_default_real_kind = 8;
542 else if (flag_real4_kind == 10)
544 if (!saw_r10)
545 gfc_fatal_error ("REAL(KIND=10) is not available for "
546 "%<-freal-4-real-10%> option");
548 gfc_default_real_kind = 10;
550 else if (flag_real4_kind == 16)
552 if (!saw_r16)
553 gfc_fatal_error ("REAL(KIND=16) is not available for "
554 "%<-freal-4-real-16%> option");
556 gfc_default_real_kind = 16;
558 else if (saw_r4)
559 gfc_default_real_kind = 4;
560 else
561 gfc_default_real_kind = gfc_real_kinds[0].kind;
563 /* Choose the default double kind. If -fdefault-real and -fdefault-double
564 are specified, we use kind=8, if it's available. If -fdefault-real is
565 specified without -fdefault-double, we use kind=16, if it's available.
566 Otherwise we do not change anything. */
567 if (flag_default_double && !flag_default_real)
568 gfc_fatal_error ("Use of %<-fdefault-double-8%> requires "
569 "%<-fdefault-real-8%>");
571 if (flag_default_real && flag_default_double && saw_r8)
572 gfc_default_double_kind = 8;
573 else if (flag_default_real && saw_r16)
574 gfc_default_double_kind = 16;
575 else if (flag_real8_kind == 4)
577 if (!saw_r4)
578 gfc_fatal_error ("REAL(KIND=4) is not available for "
579 "%<-freal-8-real-4%> option");
581 gfc_default_double_kind = 4;
583 else if (flag_real8_kind == 10 )
585 if (!saw_r10)
586 gfc_fatal_error ("REAL(KIND=10) is not available for "
587 "%<-freal-8-real-10%> option");
589 gfc_default_double_kind = 10;
591 else if (flag_real8_kind == 16 )
593 if (!saw_r16)
594 gfc_fatal_error ("REAL(KIND=10) is not available for "
595 "%<-freal-8-real-16%> option");
597 gfc_default_double_kind = 16;
599 else if (saw_r4 && saw_r8)
600 gfc_default_double_kind = 8;
601 else
603 /* F95 14.6.3.1: A nonpointer scalar object of type double precision
604 real ... occupies two contiguous numeric storage units.
606 Therefore we must be supplied a kind twice as large as we chose
607 for single precision. There are loopholes, in that double
608 precision must *occupy* two storage units, though it doesn't have
609 to *use* two storage units. Which means that you can make this
610 kind artificially wide by padding it. But at present there are
611 no GCC targets for which a two-word type does not exist, so we
612 just let gfc_validate_kind abort and tell us if something breaks. */
614 gfc_default_double_kind
615 = gfc_validate_kind (BT_REAL, gfc_default_real_kind * 2, false);
618 /* The default logical kind is constrained to be the same as the
619 default integer kind. Similarly with complex and real. */
620 gfc_default_logical_kind = gfc_default_integer_kind;
621 gfc_default_complex_kind = gfc_default_real_kind;
623 /* We only have two character kinds: ASCII and UCS-4.
624 ASCII corresponds to a 8-bit integer type, if one is available.
625 UCS-4 corresponds to a 32-bit integer type, if one is available. */
626 i_index = 0;
627 if ((kind = get_int_kind_from_width (8)) > 0)
629 gfc_character_kinds[i_index].kind = kind;
630 gfc_character_kinds[i_index].bit_size = 8;
631 gfc_character_kinds[i_index].name = "ascii";
632 i_index++;
634 if ((kind = get_int_kind_from_width (32)) > 0)
636 gfc_character_kinds[i_index].kind = kind;
637 gfc_character_kinds[i_index].bit_size = 32;
638 gfc_character_kinds[i_index].name = "iso_10646";
639 i_index++;
642 /* Choose the smallest integer kind for our default character. */
643 gfc_default_character_kind = gfc_character_kinds[0].kind;
644 gfc_character_storage_size = gfc_default_character_kind * 8;
646 gfc_index_integer_kind = get_int_kind_from_name (PTRDIFF_TYPE);
648 /* Pick a kind the same size as the C "int" type. */
649 gfc_c_int_kind = INT_TYPE_SIZE / 8;
651 /* Choose atomic kinds to match C's int. */
652 gfc_atomic_int_kind = gfc_c_int_kind;
653 gfc_atomic_logical_kind = gfc_c_int_kind;
657 /* Make sure that a valid kind is present. Returns an index into the
658 associated kinds array, -1 if the kind is not present. */
660 static int
661 validate_integer (int kind)
663 int i;
665 for (i = 0; gfc_integer_kinds[i].kind != 0; i++)
666 if (gfc_integer_kinds[i].kind == kind)
667 return i;
669 return -1;
672 static int
673 validate_real (int kind)
675 int i;
677 for (i = 0; gfc_real_kinds[i].kind != 0; i++)
678 if (gfc_real_kinds[i].kind == kind)
679 return i;
681 return -1;
684 static int
685 validate_logical (int kind)
687 int i;
689 for (i = 0; gfc_logical_kinds[i].kind; i++)
690 if (gfc_logical_kinds[i].kind == kind)
691 return i;
693 return -1;
696 static int
697 validate_character (int kind)
699 int i;
701 for (i = 0; gfc_character_kinds[i].kind; i++)
702 if (gfc_character_kinds[i].kind == kind)
703 return i;
705 return -1;
708 /* Validate a kind given a basic type. The return value is the same
709 for the child functions, with -1 indicating nonexistence of the
710 type. If MAY_FAIL is false, then -1 is never returned, and we ICE. */
713 gfc_validate_kind (bt type, int kind, bool may_fail)
715 int rc;
717 switch (type)
719 case BT_REAL: /* Fall through */
720 case BT_COMPLEX:
721 rc = validate_real (kind);
722 break;
723 case BT_INTEGER:
724 rc = validate_integer (kind);
725 break;
726 case BT_LOGICAL:
727 rc = validate_logical (kind);
728 break;
729 case BT_CHARACTER:
730 rc = validate_character (kind);
731 break;
733 default:
734 gfc_internal_error ("gfc_validate_kind(): Got bad type");
737 if (rc < 0 && !may_fail)
738 gfc_internal_error ("gfc_validate_kind(): Got bad kind");
740 return rc;
744 /* Four subroutines of gfc_init_types. Create type nodes for the given kind.
745 Reuse common type nodes where possible. Recognize if the kind matches up
746 with a C type. This will be used later in determining which routines may
747 be scarfed from libm. */
749 static tree
750 gfc_build_int_type (gfc_integer_info *info)
752 int mode_precision = info->bit_size;
754 if (mode_precision == CHAR_TYPE_SIZE)
755 info->c_char = 1;
756 if (mode_precision == SHORT_TYPE_SIZE)
757 info->c_short = 1;
758 if (mode_precision == INT_TYPE_SIZE)
759 info->c_int = 1;
760 if (mode_precision == LONG_TYPE_SIZE)
761 info->c_long = 1;
762 if (mode_precision == LONG_LONG_TYPE_SIZE)
763 info->c_long_long = 1;
765 if (TYPE_PRECISION (intQI_type_node) == mode_precision)
766 return intQI_type_node;
767 if (TYPE_PRECISION (intHI_type_node) == mode_precision)
768 return intHI_type_node;
769 if (TYPE_PRECISION (intSI_type_node) == mode_precision)
770 return intSI_type_node;
771 if (TYPE_PRECISION (intDI_type_node) == mode_precision)
772 return intDI_type_node;
773 if (TYPE_PRECISION (intTI_type_node) == mode_precision)
774 return intTI_type_node;
776 return make_signed_type (mode_precision);
779 tree
780 gfc_build_uint_type (int size)
782 if (size == CHAR_TYPE_SIZE)
783 return unsigned_char_type_node;
784 if (size == SHORT_TYPE_SIZE)
785 return short_unsigned_type_node;
786 if (size == INT_TYPE_SIZE)
787 return unsigned_type_node;
788 if (size == LONG_TYPE_SIZE)
789 return long_unsigned_type_node;
790 if (size == LONG_LONG_TYPE_SIZE)
791 return long_long_unsigned_type_node;
793 return make_unsigned_type (size);
797 static tree
798 gfc_build_real_type (gfc_real_info *info)
800 int mode_precision = info->mode_precision;
801 tree new_type;
803 if (mode_precision == FLOAT_TYPE_SIZE)
804 info->c_float = 1;
805 if (mode_precision == DOUBLE_TYPE_SIZE)
806 info->c_double = 1;
807 if (mode_precision == LONG_DOUBLE_TYPE_SIZE)
808 info->c_long_double = 1;
809 if (mode_precision != LONG_DOUBLE_TYPE_SIZE && mode_precision == 128)
811 info->c_float128 = 1;
812 gfc_real16_is_float128 = true;
815 if (TYPE_PRECISION (float_type_node) == mode_precision)
816 return float_type_node;
817 if (TYPE_PRECISION (double_type_node) == mode_precision)
818 return double_type_node;
819 if (TYPE_PRECISION (long_double_type_node) == mode_precision)
820 return long_double_type_node;
822 new_type = make_node (REAL_TYPE);
823 TYPE_PRECISION (new_type) = mode_precision;
824 layout_type (new_type);
825 return new_type;
828 static tree
829 gfc_build_complex_type (tree scalar_type)
831 tree new_type;
833 if (scalar_type == NULL)
834 return NULL;
835 if (scalar_type == float_type_node)
836 return complex_float_type_node;
837 if (scalar_type == double_type_node)
838 return complex_double_type_node;
839 if (scalar_type == long_double_type_node)
840 return complex_long_double_type_node;
842 new_type = make_node (COMPLEX_TYPE);
843 TREE_TYPE (new_type) = scalar_type;
844 layout_type (new_type);
845 return new_type;
848 static tree
849 gfc_build_logical_type (gfc_logical_info *info)
851 int bit_size = info->bit_size;
852 tree new_type;
854 if (bit_size == BOOL_TYPE_SIZE)
856 info->c_bool = 1;
857 return boolean_type_node;
860 new_type = make_unsigned_type (bit_size);
861 TREE_SET_CODE (new_type, BOOLEAN_TYPE);
862 TYPE_MAX_VALUE (new_type) = build_int_cst (new_type, 1);
863 TYPE_PRECISION (new_type) = 1;
865 return new_type;
869 /* Create the backend type nodes. We map them to their
870 equivalent C type, at least for now. We also give
871 names to the types here, and we push them in the
872 global binding level context.*/
874 void
875 gfc_init_types (void)
877 char name_buf[18];
878 int index;
879 tree type;
880 unsigned n;
882 /* Create and name the types. */
883 #define PUSH_TYPE(name, node) \
884 pushdecl (build_decl (input_location, \
885 TYPE_DECL, get_identifier (name), node))
887 for (index = 0; gfc_integer_kinds[index].kind != 0; ++index)
889 type = gfc_build_int_type (&gfc_integer_kinds[index]);
890 /* Ensure integer(kind=1) doesn't have TYPE_STRING_FLAG set. */
891 if (TYPE_STRING_FLAG (type))
892 type = make_signed_type (gfc_integer_kinds[index].bit_size);
893 gfc_integer_types[index] = type;
894 snprintf (name_buf, sizeof(name_buf), "integer(kind=%d)",
895 gfc_integer_kinds[index].kind);
896 PUSH_TYPE (name_buf, type);
899 for (index = 0; gfc_logical_kinds[index].kind != 0; ++index)
901 type = gfc_build_logical_type (&gfc_logical_kinds[index]);
902 gfc_logical_types[index] = type;
903 snprintf (name_buf, sizeof(name_buf), "logical(kind=%d)",
904 gfc_logical_kinds[index].kind);
905 PUSH_TYPE (name_buf, type);
908 for (index = 0; gfc_real_kinds[index].kind != 0; index++)
910 type = gfc_build_real_type (&gfc_real_kinds[index]);
911 gfc_real_types[index] = type;
912 snprintf (name_buf, sizeof(name_buf), "real(kind=%d)",
913 gfc_real_kinds[index].kind);
914 PUSH_TYPE (name_buf, type);
916 if (gfc_real_kinds[index].c_float128)
917 float128_type_node = type;
919 type = gfc_build_complex_type (type);
920 gfc_complex_types[index] = type;
921 snprintf (name_buf, sizeof(name_buf), "complex(kind=%d)",
922 gfc_real_kinds[index].kind);
923 PUSH_TYPE (name_buf, type);
925 if (gfc_real_kinds[index].c_float128)
926 complex_float128_type_node = type;
929 for (index = 0; gfc_character_kinds[index].kind != 0; ++index)
931 type = gfc_build_uint_type (gfc_character_kinds[index].bit_size);
932 type = build_qualified_type (type, TYPE_UNQUALIFIED);
933 snprintf (name_buf, sizeof(name_buf), "character(kind=%d)",
934 gfc_character_kinds[index].kind);
935 PUSH_TYPE (name_buf, type);
936 gfc_character_types[index] = type;
937 gfc_pcharacter_types[index] = build_pointer_type (type);
939 gfc_character1_type_node = gfc_character_types[0];
941 PUSH_TYPE ("byte", unsigned_char_type_node);
942 PUSH_TYPE ("void", void_type_node);
944 /* DBX debugging output gets upset if these aren't set. */
945 if (!TYPE_NAME (integer_type_node))
946 PUSH_TYPE ("c_integer", integer_type_node);
947 if (!TYPE_NAME (char_type_node))
948 PUSH_TYPE ("c_char", char_type_node);
950 #undef PUSH_TYPE
952 pvoid_type_node = build_pointer_type (void_type_node);
953 prvoid_type_node = build_qualified_type (pvoid_type_node, TYPE_QUAL_RESTRICT);
954 ppvoid_type_node = build_pointer_type (pvoid_type_node);
955 pchar_type_node = build_pointer_type (gfc_character1_type_node);
956 pfunc_type_node
957 = build_pointer_type (build_function_type_list (void_type_node, NULL_TREE));
959 gfc_array_index_type = gfc_get_int_type (gfc_index_integer_kind);
960 /* We cannot use gfc_index_zero_node in definition of gfc_array_range_type,
961 since this function is called before gfc_init_constants. */
962 gfc_array_range_type
963 = build_range_type (gfc_array_index_type,
964 build_int_cst (gfc_array_index_type, 0),
965 NULL_TREE);
967 /* The maximum array element size that can be handled is determined
968 by the number of bits available to store this field in the array
969 descriptor. */
971 n = TYPE_PRECISION (gfc_array_index_type) - GFC_DTYPE_SIZE_SHIFT;
972 gfc_max_array_element_size
973 = wide_int_to_tree (size_type_node,
974 wi::mask (n, UNSIGNED,
975 TYPE_PRECISION (size_type_node)));
977 boolean_type_node = gfc_get_logical_type (gfc_default_logical_kind);
978 boolean_true_node = build_int_cst (boolean_type_node, 1);
979 boolean_false_node = build_int_cst (boolean_type_node, 0);
981 /* ??? Shouldn't this be based on gfc_index_integer_kind or so? */
982 gfc_charlen_int_kind = 4;
983 gfc_charlen_type_node = gfc_get_int_type (gfc_charlen_int_kind);
986 /* Get the type node for the given type and kind. */
988 tree
989 gfc_get_int_type (int kind)
991 int index = gfc_validate_kind (BT_INTEGER, kind, true);
992 return index < 0 ? 0 : gfc_integer_types[index];
995 tree
996 gfc_get_real_type (int kind)
998 int index = gfc_validate_kind (BT_REAL, kind, true);
999 return index < 0 ? 0 : gfc_real_types[index];
1002 tree
1003 gfc_get_complex_type (int kind)
1005 int index = gfc_validate_kind (BT_COMPLEX, kind, true);
1006 return index < 0 ? 0 : gfc_complex_types[index];
1009 tree
1010 gfc_get_logical_type (int kind)
1012 int index = gfc_validate_kind (BT_LOGICAL, kind, true);
1013 return index < 0 ? 0 : gfc_logical_types[index];
1016 tree
1017 gfc_get_char_type (int kind)
1019 int index = gfc_validate_kind (BT_CHARACTER, kind, true);
1020 return index < 0 ? 0 : gfc_character_types[index];
1023 tree
1024 gfc_get_pchar_type (int kind)
1026 int index = gfc_validate_kind (BT_CHARACTER, kind, true);
1027 return index < 0 ? 0 : gfc_pcharacter_types[index];
1031 /* Create a character type with the given kind and length. */
1033 tree
1034 gfc_get_character_type_len_for_eltype (tree eltype, tree len)
1036 tree bounds, type;
1038 bounds = build_range_type (gfc_charlen_type_node, gfc_index_one_node, len);
1039 type = build_array_type (eltype, bounds);
1040 TYPE_STRING_FLAG (type) = 1;
1042 return type;
1045 tree
1046 gfc_get_character_type_len (int kind, tree len)
1048 gfc_validate_kind (BT_CHARACTER, kind, false);
1049 return gfc_get_character_type_len_for_eltype (gfc_get_char_type (kind), len);
1053 /* Get a type node for a character kind. */
1055 tree
1056 gfc_get_character_type (int kind, gfc_charlen * cl)
1058 tree len;
1060 len = (cl == NULL) ? NULL_TREE : cl->backend_decl;
1062 return gfc_get_character_type_len (kind, len);
1065 /* Covert a basic type. This will be an array for character types. */
1067 tree
1068 gfc_typenode_for_spec (gfc_typespec * spec)
1070 tree basetype;
1072 switch (spec->type)
1074 case BT_UNKNOWN:
1075 gcc_unreachable ();
1077 case BT_INTEGER:
1078 /* We use INTEGER(c_intptr_t) for C_PTR and C_FUNPTR once the symbol
1079 has been resolved. This is done so we can convert C_PTR and
1080 C_FUNPTR to simple variables that get translated to (void *). */
1081 if (spec->f90_type == BT_VOID)
1083 if (spec->u.derived
1084 && spec->u.derived->intmod_sym_id == ISOCBINDING_PTR)
1085 basetype = ptr_type_node;
1086 else
1087 basetype = pfunc_type_node;
1089 else
1090 basetype = gfc_get_int_type (spec->kind);
1091 break;
1093 case BT_REAL:
1094 basetype = gfc_get_real_type (spec->kind);
1095 break;
1097 case BT_COMPLEX:
1098 basetype = gfc_get_complex_type (spec->kind);
1099 break;
1101 case BT_LOGICAL:
1102 basetype = gfc_get_logical_type (spec->kind);
1103 break;
1105 case BT_CHARACTER:
1106 basetype = gfc_get_character_type (spec->kind, spec->u.cl);
1107 break;
1109 case BT_HOLLERITH:
1110 /* Since this cannot be used, return a length one character. */
1111 basetype = gfc_get_character_type_len (gfc_default_character_kind,
1112 gfc_index_one_node);
1113 break;
1115 case BT_DERIVED:
1116 case BT_CLASS:
1117 basetype = gfc_get_derived_type (spec->u.derived);
1119 if (spec->type == BT_CLASS)
1120 GFC_CLASS_TYPE_P (basetype) = 1;
1122 /* If we're dealing with either C_PTR or C_FUNPTR, we modified the
1123 type and kind to fit a (void *) and the basetype returned was a
1124 ptr_type_node. We need to pass up this new information to the
1125 symbol that was declared of type C_PTR or C_FUNPTR. */
1126 if (spec->u.derived->ts.f90_type == BT_VOID)
1128 spec->type = BT_INTEGER;
1129 spec->kind = gfc_index_integer_kind;
1130 spec->f90_type = BT_VOID;
1132 break;
1133 case BT_VOID:
1134 case BT_ASSUMED:
1135 /* This is for the second arg to c_f_pointer and c_f_procpointer
1136 of the iso_c_binding module, to accept any ptr type. */
1137 basetype = ptr_type_node;
1138 if (spec->f90_type == BT_VOID)
1140 if (spec->u.derived
1141 && spec->u.derived->intmod_sym_id == ISOCBINDING_PTR)
1142 basetype = ptr_type_node;
1143 else
1144 basetype = pfunc_type_node;
1146 break;
1147 default:
1148 gcc_unreachable ();
1150 return basetype;
1153 /* Build an INT_CST for constant expressions, otherwise return NULL_TREE. */
1155 static tree
1156 gfc_conv_array_bound (gfc_expr * expr)
1158 /* If expr is an integer constant, return that. */
1159 if (expr != NULL && expr->expr_type == EXPR_CONSTANT)
1160 return gfc_conv_mpz_to_tree (expr->value.integer, gfc_index_integer_kind);
1162 /* Otherwise return NULL. */
1163 return NULL_TREE;
1166 /* Return the type of an element of the array. Note that scalar coarrays
1167 are special. In particular, for GFC_ARRAY_TYPE_P, the original argument
1168 (with POINTER_TYPE stripped) is returned. */
1170 tree
1171 gfc_get_element_type (tree type)
1173 tree element;
1175 if (GFC_ARRAY_TYPE_P (type))
1177 if (TREE_CODE (type) == POINTER_TYPE)
1178 type = TREE_TYPE (type);
1179 if (GFC_TYPE_ARRAY_RANK (type) == 0)
1181 gcc_assert (GFC_TYPE_ARRAY_CORANK (type) > 0);
1182 element = type;
1184 else
1186 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
1187 element = TREE_TYPE (type);
1190 else
1192 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
1193 element = GFC_TYPE_ARRAY_DATAPTR_TYPE (type);
1195 gcc_assert (TREE_CODE (element) == POINTER_TYPE);
1196 element = TREE_TYPE (element);
1198 /* For arrays, which are not scalar coarrays. */
1199 if (TREE_CODE (element) == ARRAY_TYPE && !TYPE_STRING_FLAG (element))
1200 element = TREE_TYPE (element);
1203 return element;
1206 /* Build an array. This function is called from gfc_sym_type().
1207 Actually returns array descriptor type.
1209 Format of array descriptors is as follows:
1211 struct gfc_array_descriptor
1213 array *data
1214 index offset;
1215 index dtype;
1216 struct descriptor_dimension dimension[N_DIM];
1219 struct descriptor_dimension
1221 index stride;
1222 index lbound;
1223 index ubound;
1226 Translation code should use gfc_conv_descriptor_* rather than
1227 accessing the descriptor directly. Any changes to the array
1228 descriptor type will require changes in gfc_conv_descriptor_* and
1229 gfc_build_array_initializer.
1231 This is represented internally as a RECORD_TYPE. The index nodes
1232 are gfc_array_index_type and the data node is a pointer to the
1233 data. See below for the handling of character types.
1235 The dtype member is formatted as follows:
1236 rank = dtype & GFC_DTYPE_RANK_MASK // 3 bits
1237 type = (dtype & GFC_DTYPE_TYPE_MASK) >> GFC_DTYPE_TYPE_SHIFT // 3 bits
1238 size = dtype >> GFC_DTYPE_SIZE_SHIFT
1240 I originally used nested ARRAY_TYPE nodes to represent arrays, but
1241 this generated poor code for assumed/deferred size arrays. These
1242 require use of PLACEHOLDER_EXPR/WITH_RECORD_EXPR, which isn't part
1243 of the GENERIC grammar. Also, there is no way to explicitly set
1244 the array stride, so all data must be packed(1). I've tried to
1245 mark all the functions which would require modification with a GCC
1246 ARRAYS comment.
1248 The data component points to the first element in the array. The
1249 offset field is the position of the origin of the array (i.e. element
1250 (0, 0 ...)). This may be outside the bounds of the array.
1252 An element is accessed by
1253 data[offset + index0*stride0 + index1*stride1 + index2*stride2]
1254 This gives good performance as the computation does not involve the
1255 bounds of the array. For packed arrays, this is optimized further
1256 by substituting the known strides.
1258 This system has one problem: all array bounds must be within 2^31
1259 elements of the origin (2^63 on 64-bit machines). For example
1260 integer, dimension (80000:90000, 80000:90000, 2) :: array
1261 may not work properly on 32-bit machines because 80000*80000 >
1262 2^31, so the calculation for stride2 would overflow. This may
1263 still work, but I haven't checked, and it relies on the overflow
1264 doing the right thing.
1266 The way to fix this problem is to access elements as follows:
1267 data[(index0-lbound0)*stride0 + (index1-lbound1)*stride1]
1268 Obviously this is much slower. I will make this a compile time
1269 option, something like -fsmall-array-offsets. Mixing code compiled
1270 with and without this switch will work.
1272 (1) This can be worked around by modifying the upper bound of the
1273 previous dimension. This requires extra fields in the descriptor
1274 (both real_ubound and fake_ubound). */
1277 /* Returns true if the array sym does not require a descriptor. */
1280 gfc_is_nodesc_array (gfc_symbol * sym)
1282 symbol_attribute *array_attr;
1283 gfc_array_spec *as;
1284 bool is_classarray = IS_CLASS_ARRAY (sym);
1286 array_attr = is_classarray ? &CLASS_DATA (sym)->attr : &sym->attr;
1287 as = is_classarray ? CLASS_DATA (sym)->as : sym->as;
1289 gcc_assert (array_attr->dimension || array_attr->codimension);
1291 /* We only want local arrays. */
1292 if ((sym->ts.type != BT_CLASS && sym->attr.pointer)
1293 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->attr.class_pointer)
1294 || array_attr->allocatable)
1295 return 0;
1297 /* We want a descriptor for associate-name arrays that do not have an
1298 explicitly known shape already. */
1299 if (sym->assoc && as->type != AS_EXPLICIT)
1300 return 0;
1302 /* The dummy is stored in sym and not in the component. */
1303 if (sym->attr.dummy)
1304 return as->type != AS_ASSUMED_SHAPE
1305 && as->type != AS_ASSUMED_RANK;
1307 if (sym->attr.result || sym->attr.function)
1308 return 0;
1310 gcc_assert (as->type == AS_EXPLICIT || as->cp_was_assumed);
1312 return 1;
1316 /* Create an array descriptor type. */
1318 static tree
1319 gfc_build_array_type (tree type, gfc_array_spec * as,
1320 enum gfc_array_kind akind, bool restricted,
1321 bool contiguous)
1323 tree lbound[GFC_MAX_DIMENSIONS];
1324 tree ubound[GFC_MAX_DIMENSIONS];
1325 int n, corank;
1327 /* Assumed-shape arrays do not have codimension information stored in the
1328 descriptor. */
1329 corank = as->corank;
1330 if (as->type == AS_ASSUMED_SHAPE ||
1331 (as->type == AS_ASSUMED_RANK && akind == GFC_ARRAY_ALLOCATABLE))
1332 corank = 0;
1334 if (as->type == AS_ASSUMED_RANK)
1335 for (n = 0; n < GFC_MAX_DIMENSIONS; n++)
1337 lbound[n] = NULL_TREE;
1338 ubound[n] = NULL_TREE;
1341 for (n = 0; n < as->rank; n++)
1343 /* Create expressions for the known bounds of the array. */
1344 if (as->type == AS_ASSUMED_SHAPE && as->lower[n] == NULL)
1345 lbound[n] = gfc_index_one_node;
1346 else
1347 lbound[n] = gfc_conv_array_bound (as->lower[n]);
1348 ubound[n] = gfc_conv_array_bound (as->upper[n]);
1351 for (n = as->rank; n < as->rank + corank; n++)
1353 if (as->type != AS_DEFERRED && as->lower[n] == NULL)
1354 lbound[n] = gfc_index_one_node;
1355 else
1356 lbound[n] = gfc_conv_array_bound (as->lower[n]);
1358 if (n < as->rank + corank - 1)
1359 ubound[n] = gfc_conv_array_bound (as->upper[n]);
1362 if (as->type == AS_ASSUMED_SHAPE)
1363 akind = contiguous ? GFC_ARRAY_ASSUMED_SHAPE_CONT
1364 : GFC_ARRAY_ASSUMED_SHAPE;
1365 else if (as->type == AS_ASSUMED_RANK)
1366 akind = contiguous ? GFC_ARRAY_ASSUMED_RANK_CONT
1367 : GFC_ARRAY_ASSUMED_RANK;
1368 return gfc_get_array_type_bounds (type, as->rank == -1
1369 ? GFC_MAX_DIMENSIONS : as->rank,
1370 corank, lbound,
1371 ubound, 0, akind, restricted);
1374 /* Returns the struct descriptor_dimension type. */
1376 static tree
1377 gfc_get_desc_dim_type (void)
1379 tree type;
1380 tree decl, *chain = NULL;
1382 if (gfc_desc_dim_type)
1383 return gfc_desc_dim_type;
1385 /* Build the type node. */
1386 type = make_node (RECORD_TYPE);
1388 TYPE_NAME (type) = get_identifier ("descriptor_dimension");
1389 TYPE_PACKED (type) = 1;
1391 /* Consists of the stride, lbound and ubound members. */
1392 decl = gfc_add_field_to_struct_1 (type,
1393 get_identifier ("stride"),
1394 gfc_array_index_type, &chain);
1395 TREE_NO_WARNING (decl) = 1;
1397 decl = gfc_add_field_to_struct_1 (type,
1398 get_identifier ("lbound"),
1399 gfc_array_index_type, &chain);
1400 TREE_NO_WARNING (decl) = 1;
1402 decl = gfc_add_field_to_struct_1 (type,
1403 get_identifier ("ubound"),
1404 gfc_array_index_type, &chain);
1405 TREE_NO_WARNING (decl) = 1;
1407 /* Finish off the type. */
1408 gfc_finish_type (type);
1409 TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type)) = 1;
1411 gfc_desc_dim_type = type;
1412 return type;
1416 /* Return the DTYPE for an array. This describes the type and type parameters
1417 of the array. */
1418 /* TODO: Only call this when the value is actually used, and make all the
1419 unknown cases abort. */
1421 tree
1422 gfc_get_dtype_rank_type (int rank, tree etype)
1424 tree size;
1425 int n;
1426 HOST_WIDE_INT i;
1427 tree tmp;
1428 tree dtype;
1430 switch (TREE_CODE (etype))
1432 case INTEGER_TYPE:
1433 n = BT_INTEGER;
1434 break;
1436 case BOOLEAN_TYPE:
1437 n = BT_LOGICAL;
1438 break;
1440 case REAL_TYPE:
1441 n = BT_REAL;
1442 break;
1444 case COMPLEX_TYPE:
1445 n = BT_COMPLEX;
1446 break;
1448 /* We will never have arrays of arrays. */
1449 case RECORD_TYPE:
1450 n = BT_DERIVED;
1451 break;
1453 case ARRAY_TYPE:
1454 n = BT_CHARACTER;
1455 break;
1457 case POINTER_TYPE:
1458 n = BT_ASSUMED;
1459 break;
1461 default:
1462 /* TODO: Don't do dtype for temporary descriptorless arrays. */
1463 /* We can strange array types for temporary arrays. */
1464 return gfc_index_zero_node;
1467 gcc_assert (rank <= GFC_DTYPE_RANK_MASK);
1468 size = TYPE_SIZE_UNIT (etype);
1470 i = rank | (n << GFC_DTYPE_TYPE_SHIFT);
1471 if (size && INTEGER_CST_P (size))
1473 if (tree_int_cst_lt (gfc_max_array_element_size, size))
1474 gfc_fatal_error ("Array element size too big at %C");
1476 i += TREE_INT_CST_LOW (size) << GFC_DTYPE_SIZE_SHIFT;
1478 dtype = build_int_cst (gfc_array_index_type, i);
1480 if (size && !INTEGER_CST_P (size))
1482 tmp = build_int_cst (gfc_array_index_type, GFC_DTYPE_SIZE_SHIFT);
1483 tmp = fold_build2_loc (input_location, LSHIFT_EXPR,
1484 gfc_array_index_type,
1485 fold_convert (gfc_array_index_type, size), tmp);
1486 dtype = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
1487 tmp, dtype);
1489 /* If we don't know the size we leave it as zero. This should never happen
1490 for anything that is actually used. */
1491 /* TODO: Check this is actually true, particularly when repacking
1492 assumed size parameters. */
1494 return dtype;
1498 tree
1499 gfc_get_dtype (tree type)
1501 tree dtype;
1502 tree etype;
1503 int rank;
1505 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type) || GFC_ARRAY_TYPE_P (type));
1507 if (GFC_TYPE_ARRAY_DTYPE (type))
1508 return GFC_TYPE_ARRAY_DTYPE (type);
1510 rank = GFC_TYPE_ARRAY_RANK (type);
1511 etype = gfc_get_element_type (type);
1512 dtype = gfc_get_dtype_rank_type (rank, etype);
1514 GFC_TYPE_ARRAY_DTYPE (type) = dtype;
1515 return dtype;
1519 /* Build an array type for use without a descriptor, packed according
1520 to the value of PACKED. */
1522 tree
1523 gfc_get_nodesc_array_type (tree etype, gfc_array_spec * as, gfc_packed packed,
1524 bool restricted)
1526 tree range;
1527 tree type;
1528 tree tmp;
1529 int n;
1530 int known_stride;
1531 int known_offset;
1532 mpz_t offset;
1533 mpz_t stride;
1534 mpz_t delta;
1535 gfc_expr *expr;
1537 mpz_init_set_ui (offset, 0);
1538 mpz_init_set_ui (stride, 1);
1539 mpz_init (delta);
1541 /* We don't use build_array_type because this does not include include
1542 lang-specific information (i.e. the bounds of the array) when checking
1543 for duplicates. */
1544 if (as->rank)
1545 type = make_node (ARRAY_TYPE);
1546 else
1547 type = build_variant_type_copy (etype);
1549 GFC_ARRAY_TYPE_P (type) = 1;
1550 TYPE_LANG_SPECIFIC (type) = ggc_cleared_alloc<struct lang_type> ();
1552 known_stride = (packed != PACKED_NO);
1553 known_offset = 1;
1554 for (n = 0; n < as->rank; n++)
1556 /* Fill in the stride and bound components of the type. */
1557 if (known_stride)
1558 tmp = gfc_conv_mpz_to_tree (stride, gfc_index_integer_kind);
1559 else
1560 tmp = NULL_TREE;
1561 GFC_TYPE_ARRAY_STRIDE (type, n) = tmp;
1563 expr = as->lower[n];
1564 if (expr->expr_type == EXPR_CONSTANT)
1566 tmp = gfc_conv_mpz_to_tree (expr->value.integer,
1567 gfc_index_integer_kind);
1569 else
1571 known_stride = 0;
1572 tmp = NULL_TREE;
1574 GFC_TYPE_ARRAY_LBOUND (type, n) = tmp;
1576 if (known_stride)
1578 /* Calculate the offset. */
1579 mpz_mul (delta, stride, as->lower[n]->value.integer);
1580 mpz_sub (offset, offset, delta);
1582 else
1583 known_offset = 0;
1585 expr = as->upper[n];
1586 if (expr && expr->expr_type == EXPR_CONSTANT)
1588 tmp = gfc_conv_mpz_to_tree (expr->value.integer,
1589 gfc_index_integer_kind);
1591 else
1593 tmp = NULL_TREE;
1594 known_stride = 0;
1596 GFC_TYPE_ARRAY_UBOUND (type, n) = tmp;
1598 if (known_stride)
1600 /* Calculate the stride. */
1601 mpz_sub (delta, as->upper[n]->value.integer,
1602 as->lower[n]->value.integer);
1603 mpz_add_ui (delta, delta, 1);
1604 mpz_mul (stride, stride, delta);
1607 /* Only the first stride is known for partial packed arrays. */
1608 if (packed == PACKED_NO || packed == PACKED_PARTIAL)
1609 known_stride = 0;
1611 for (n = as->rank; n < as->rank + as->corank; n++)
1613 expr = as->lower[n];
1614 if (expr->expr_type == EXPR_CONSTANT)
1615 tmp = gfc_conv_mpz_to_tree (expr->value.integer,
1616 gfc_index_integer_kind);
1617 else
1618 tmp = NULL_TREE;
1619 GFC_TYPE_ARRAY_LBOUND (type, n) = tmp;
1621 expr = as->upper[n];
1622 if (expr && expr->expr_type == EXPR_CONSTANT)
1623 tmp = gfc_conv_mpz_to_tree (expr->value.integer,
1624 gfc_index_integer_kind);
1625 else
1626 tmp = NULL_TREE;
1627 if (n < as->rank + as->corank - 1)
1628 GFC_TYPE_ARRAY_UBOUND (type, n) = tmp;
1631 if (known_offset)
1633 GFC_TYPE_ARRAY_OFFSET (type) =
1634 gfc_conv_mpz_to_tree (offset, gfc_index_integer_kind);
1636 else
1637 GFC_TYPE_ARRAY_OFFSET (type) = NULL_TREE;
1639 if (known_stride)
1641 GFC_TYPE_ARRAY_SIZE (type) =
1642 gfc_conv_mpz_to_tree (stride, gfc_index_integer_kind);
1644 else
1645 GFC_TYPE_ARRAY_SIZE (type) = NULL_TREE;
1647 GFC_TYPE_ARRAY_RANK (type) = as->rank;
1648 GFC_TYPE_ARRAY_CORANK (type) = as->corank;
1649 GFC_TYPE_ARRAY_DTYPE (type) = NULL_TREE;
1650 range = build_range_type (gfc_array_index_type, gfc_index_zero_node,
1651 NULL_TREE);
1652 /* TODO: use main type if it is unbounded. */
1653 GFC_TYPE_ARRAY_DATAPTR_TYPE (type) =
1654 build_pointer_type (build_array_type (etype, range));
1655 if (restricted)
1656 GFC_TYPE_ARRAY_DATAPTR_TYPE (type) =
1657 build_qualified_type (GFC_TYPE_ARRAY_DATAPTR_TYPE (type),
1658 TYPE_QUAL_RESTRICT);
1660 if (as->rank == 0)
1662 if (packed != PACKED_STATIC || flag_coarray == GFC_FCOARRAY_LIB)
1664 type = build_pointer_type (type);
1666 if (restricted)
1667 type = build_qualified_type (type, TYPE_QUAL_RESTRICT);
1669 GFC_ARRAY_TYPE_P (type) = 1;
1670 TYPE_LANG_SPECIFIC (type) = TYPE_LANG_SPECIFIC (TREE_TYPE (type));
1673 return type;
1676 if (known_stride)
1678 mpz_sub_ui (stride, stride, 1);
1679 range = gfc_conv_mpz_to_tree (stride, gfc_index_integer_kind);
1681 else
1682 range = NULL_TREE;
1684 range = build_range_type (gfc_array_index_type, gfc_index_zero_node, range);
1685 TYPE_DOMAIN (type) = range;
1687 build_pointer_type (etype);
1688 TREE_TYPE (type) = etype;
1690 layout_type (type);
1692 mpz_clear (offset);
1693 mpz_clear (stride);
1694 mpz_clear (delta);
1696 /* Represent packed arrays as multi-dimensional if they have rank >
1697 1 and with proper bounds, instead of flat arrays. This makes for
1698 better debug info. */
1699 if (known_offset)
1701 tree gtype = etype, rtype, type_decl;
1703 for (n = as->rank - 1; n >= 0; n--)
1705 rtype = build_range_type (gfc_array_index_type,
1706 GFC_TYPE_ARRAY_LBOUND (type, n),
1707 GFC_TYPE_ARRAY_UBOUND (type, n));
1708 gtype = build_array_type (gtype, rtype);
1710 TYPE_NAME (type) = type_decl = build_decl (input_location,
1711 TYPE_DECL, NULL, gtype);
1712 DECL_ORIGINAL_TYPE (type_decl) = gtype;
1715 if (packed != PACKED_STATIC || !known_stride
1716 || (as->corank && flag_coarray == GFC_FCOARRAY_LIB))
1718 /* For dummy arrays and automatic (heap allocated) arrays we
1719 want a pointer to the array. */
1720 type = build_pointer_type (type);
1721 if (restricted)
1722 type = build_qualified_type (type, TYPE_QUAL_RESTRICT);
1723 GFC_ARRAY_TYPE_P (type) = 1;
1724 TYPE_LANG_SPECIFIC (type) = TYPE_LANG_SPECIFIC (TREE_TYPE (type));
1726 return type;
1730 /* Return or create the base type for an array descriptor. */
1732 static tree
1733 gfc_get_array_descriptor_base (int dimen, int codimen, bool restricted,
1734 enum gfc_array_kind akind)
1736 tree fat_type, decl, arraytype, *chain = NULL;
1737 char name[16 + 2*GFC_RANK_DIGITS + 1 + 1];
1738 int idx;
1740 /* Assumed-rank array. */
1741 if (dimen == -1)
1742 dimen = GFC_MAX_DIMENSIONS;
1744 idx = 2 * (codimen + dimen) + restricted;
1746 gcc_assert (codimen + dimen >= 0 && codimen + dimen <= GFC_MAX_DIMENSIONS);
1748 if (flag_coarray == GFC_FCOARRAY_LIB && codimen)
1750 if (gfc_array_descriptor_base_caf[idx])
1751 return gfc_array_descriptor_base_caf[idx];
1753 else if (gfc_array_descriptor_base[idx])
1754 return gfc_array_descriptor_base[idx];
1756 /* Build the type node. */
1757 fat_type = make_node (RECORD_TYPE);
1759 sprintf (name, "array_descriptor" GFC_RANK_PRINTF_FORMAT, dimen + codimen);
1760 TYPE_NAME (fat_type) = get_identifier (name);
1761 TYPE_NAMELESS (fat_type) = 1;
1763 /* Add the data member as the first element of the descriptor. */
1764 decl = gfc_add_field_to_struct_1 (fat_type,
1765 get_identifier ("data"),
1766 (restricted
1767 ? prvoid_type_node
1768 : ptr_type_node), &chain);
1770 /* Add the base component. */
1771 decl = gfc_add_field_to_struct_1 (fat_type,
1772 get_identifier ("offset"),
1773 gfc_array_index_type, &chain);
1774 TREE_NO_WARNING (decl) = 1;
1776 /* Add the dtype component. */
1777 decl = gfc_add_field_to_struct_1 (fat_type,
1778 get_identifier ("dtype"),
1779 gfc_array_index_type, &chain);
1780 TREE_NO_WARNING (decl) = 1;
1782 /* Build the array type for the stride and bound components. */
1783 if (dimen + codimen > 0)
1785 arraytype =
1786 build_array_type (gfc_get_desc_dim_type (),
1787 build_range_type (gfc_array_index_type,
1788 gfc_index_zero_node,
1789 gfc_rank_cst[codimen + dimen - 1]));
1791 decl = gfc_add_field_to_struct_1 (fat_type, get_identifier ("dim"),
1792 arraytype, &chain);
1793 TREE_NO_WARNING (decl) = 1;
1796 if (flag_coarray == GFC_FCOARRAY_LIB && codimen
1797 && akind == GFC_ARRAY_ALLOCATABLE)
1799 decl = gfc_add_field_to_struct_1 (fat_type,
1800 get_identifier ("token"),
1801 prvoid_type_node, &chain);
1802 TREE_NO_WARNING (decl) = 1;
1805 /* Finish off the type. */
1806 gfc_finish_type (fat_type);
1807 TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (fat_type)) = 1;
1809 if (flag_coarray == GFC_FCOARRAY_LIB && codimen
1810 && akind == GFC_ARRAY_ALLOCATABLE)
1811 gfc_array_descriptor_base_caf[idx] = fat_type;
1812 else
1813 gfc_array_descriptor_base[idx] = fat_type;
1815 return fat_type;
1819 /* Build an array (descriptor) type with given bounds. */
1821 tree
1822 gfc_get_array_type_bounds (tree etype, int dimen, int codimen, tree * lbound,
1823 tree * ubound, int packed,
1824 enum gfc_array_kind akind, bool restricted)
1826 char name[8 + 2*GFC_RANK_DIGITS + 1 + GFC_MAX_SYMBOL_LEN];
1827 tree fat_type, base_type, arraytype, lower, upper, stride, tmp, rtype;
1828 const char *type_name;
1829 int n;
1831 base_type = gfc_get_array_descriptor_base (dimen, codimen, restricted, akind);
1832 fat_type = build_distinct_type_copy (base_type);
1833 /* Make sure that nontarget and target array type have the same canonical
1834 type (and same stub decl for debug info). */
1835 base_type = gfc_get_array_descriptor_base (dimen, codimen, false, akind);
1836 TYPE_CANONICAL (fat_type) = base_type;
1837 TYPE_STUB_DECL (fat_type) = TYPE_STUB_DECL (base_type);
1839 tmp = TYPE_NAME (etype);
1840 if (tmp && TREE_CODE (tmp) == TYPE_DECL)
1841 tmp = DECL_NAME (tmp);
1842 if (tmp)
1843 type_name = IDENTIFIER_POINTER (tmp);
1844 else
1845 type_name = "unknown";
1846 sprintf (name, "array" GFC_RANK_PRINTF_FORMAT "_%.*s", dimen + codimen,
1847 GFC_MAX_SYMBOL_LEN, type_name);
1848 TYPE_NAME (fat_type) = get_identifier (name);
1849 TYPE_NAMELESS (fat_type) = 1;
1851 GFC_DESCRIPTOR_TYPE_P (fat_type) = 1;
1852 TYPE_LANG_SPECIFIC (fat_type) = ggc_cleared_alloc<struct lang_type> ();
1854 GFC_TYPE_ARRAY_RANK (fat_type) = dimen;
1855 GFC_TYPE_ARRAY_CORANK (fat_type) = codimen;
1856 GFC_TYPE_ARRAY_DTYPE (fat_type) = NULL_TREE;
1857 GFC_TYPE_ARRAY_AKIND (fat_type) = akind;
1859 /* Build an array descriptor record type. */
1860 if (packed != 0)
1861 stride = gfc_index_one_node;
1862 else
1863 stride = NULL_TREE;
1864 for (n = 0; n < dimen + codimen; n++)
1866 if (n < dimen)
1867 GFC_TYPE_ARRAY_STRIDE (fat_type, n) = stride;
1869 if (lbound)
1870 lower = lbound[n];
1871 else
1872 lower = NULL_TREE;
1874 if (lower != NULL_TREE)
1876 if (INTEGER_CST_P (lower))
1877 GFC_TYPE_ARRAY_LBOUND (fat_type, n) = lower;
1878 else
1879 lower = NULL_TREE;
1882 if (codimen && n == dimen + codimen - 1)
1883 break;
1885 upper = ubound[n];
1886 if (upper != NULL_TREE)
1888 if (INTEGER_CST_P (upper))
1889 GFC_TYPE_ARRAY_UBOUND (fat_type, n) = upper;
1890 else
1891 upper = NULL_TREE;
1894 if (n >= dimen)
1895 continue;
1897 if (upper != NULL_TREE && lower != NULL_TREE && stride != NULL_TREE)
1899 tmp = fold_build2_loc (input_location, MINUS_EXPR,
1900 gfc_array_index_type, upper, lower);
1901 tmp = fold_build2_loc (input_location, PLUS_EXPR,
1902 gfc_array_index_type, tmp,
1903 gfc_index_one_node);
1904 stride = fold_build2_loc (input_location, MULT_EXPR,
1905 gfc_array_index_type, tmp, stride);
1906 /* Check the folding worked. */
1907 gcc_assert (INTEGER_CST_P (stride));
1909 else
1910 stride = NULL_TREE;
1912 GFC_TYPE_ARRAY_SIZE (fat_type) = stride;
1914 /* TODO: known offsets for descriptors. */
1915 GFC_TYPE_ARRAY_OFFSET (fat_type) = NULL_TREE;
1917 if (dimen == 0)
1919 arraytype = build_pointer_type (etype);
1920 if (restricted)
1921 arraytype = build_qualified_type (arraytype, TYPE_QUAL_RESTRICT);
1923 GFC_TYPE_ARRAY_DATAPTR_TYPE (fat_type) = arraytype;
1924 return fat_type;
1927 /* We define data as an array with the correct size if possible.
1928 Much better than doing pointer arithmetic. */
1929 if (stride)
1930 rtype = build_range_type (gfc_array_index_type, gfc_index_zero_node,
1931 int_const_binop (MINUS_EXPR, stride,
1932 build_int_cst (TREE_TYPE (stride), 1)));
1933 else
1934 rtype = gfc_array_range_type;
1935 arraytype = build_array_type (etype, rtype);
1936 arraytype = build_pointer_type (arraytype);
1937 if (restricted)
1938 arraytype = build_qualified_type (arraytype, TYPE_QUAL_RESTRICT);
1939 GFC_TYPE_ARRAY_DATAPTR_TYPE (fat_type) = arraytype;
1941 /* This will generate the base declarations we need to emit debug
1942 information for this type. FIXME: there must be a better way to
1943 avoid divergence between compilations with and without debug
1944 information. */
1946 struct array_descr_info info;
1947 gfc_get_array_descr_info (fat_type, &info);
1948 gfc_get_array_descr_info (build_pointer_type (fat_type), &info);
1951 return fat_type;
1954 /* Build a pointer type. This function is called from gfc_sym_type(). */
1956 static tree
1957 gfc_build_pointer_type (gfc_symbol * sym, tree type)
1959 /* Array pointer types aren't actually pointers. */
1960 if (sym->attr.dimension)
1961 return type;
1962 else
1963 return build_pointer_type (type);
1966 static tree gfc_nonrestricted_type (tree t);
1967 /* Given two record or union type nodes TO and FROM, ensure
1968 that all fields in FROM have a corresponding field in TO,
1969 their type being nonrestrict variants. This accepts a TO
1970 node that already has a prefix of the fields in FROM. */
1971 static void
1972 mirror_fields (tree to, tree from)
1974 tree fto, ffrom;
1975 tree *chain;
1977 /* Forward to the end of TOs fields. */
1978 fto = TYPE_FIELDS (to);
1979 ffrom = TYPE_FIELDS (from);
1980 chain = &TYPE_FIELDS (to);
1981 while (fto)
1983 gcc_assert (ffrom && DECL_NAME (fto) == DECL_NAME (ffrom));
1984 chain = &DECL_CHAIN (fto);
1985 fto = DECL_CHAIN (fto);
1986 ffrom = DECL_CHAIN (ffrom);
1989 /* Now add all fields remaining in FROM (starting with ffrom). */
1990 for (; ffrom; ffrom = DECL_CHAIN (ffrom))
1992 tree newfield = copy_node (ffrom);
1993 DECL_CONTEXT (newfield) = to;
1994 /* The store to DECL_CHAIN might seem redundant with the
1995 stores to *chain, but not clearing it here would mean
1996 leaving a chain into the old fields. If ever
1997 our called functions would look at them confusion
1998 will arise. */
1999 DECL_CHAIN (newfield) = NULL_TREE;
2000 *chain = newfield;
2001 chain = &DECL_CHAIN (newfield);
2003 if (TREE_CODE (ffrom) == FIELD_DECL)
2005 tree elemtype = gfc_nonrestricted_type (TREE_TYPE (ffrom));
2006 TREE_TYPE (newfield) = elemtype;
2009 *chain = NULL_TREE;
2012 /* Given a type T, returns a different type of the same structure,
2013 except that all types it refers to (recursively) are always
2014 non-restrict qualified types. */
2015 static tree
2016 gfc_nonrestricted_type (tree t)
2018 tree ret = t;
2020 /* If the type isn't laid out yet, don't copy it. If something
2021 needs it for real it should wait until the type got finished. */
2022 if (!TYPE_SIZE (t))
2023 return t;
2025 if (!TYPE_LANG_SPECIFIC (t))
2026 TYPE_LANG_SPECIFIC (t) = ggc_cleared_alloc<struct lang_type> ();
2027 /* If we're dealing with this very node already further up
2028 the call chain (recursion via pointers and struct members)
2029 we haven't yet determined if we really need a new type node.
2030 Assume we don't, return T itself. */
2031 if (TYPE_LANG_SPECIFIC (t)->nonrestricted_type == error_mark_node)
2032 return t;
2034 /* If we have calculated this all already, just return it. */
2035 if (TYPE_LANG_SPECIFIC (t)->nonrestricted_type)
2036 return TYPE_LANG_SPECIFIC (t)->nonrestricted_type;
2038 /* Mark this type. */
2039 TYPE_LANG_SPECIFIC (t)->nonrestricted_type = error_mark_node;
2041 switch (TREE_CODE (t))
2043 default:
2044 break;
2046 case POINTER_TYPE:
2047 case REFERENCE_TYPE:
2049 tree totype = gfc_nonrestricted_type (TREE_TYPE (t));
2050 if (totype == TREE_TYPE (t))
2051 ret = t;
2052 else if (TREE_CODE (t) == POINTER_TYPE)
2053 ret = build_pointer_type (totype);
2054 else
2055 ret = build_reference_type (totype);
2056 ret = build_qualified_type (ret,
2057 TYPE_QUALS (t) & ~TYPE_QUAL_RESTRICT);
2059 break;
2061 case ARRAY_TYPE:
2063 tree elemtype = gfc_nonrestricted_type (TREE_TYPE (t));
2064 if (elemtype == TREE_TYPE (t))
2065 ret = t;
2066 else
2068 ret = build_variant_type_copy (t);
2069 TREE_TYPE (ret) = elemtype;
2070 if (TYPE_LANG_SPECIFIC (t)
2071 && GFC_TYPE_ARRAY_DATAPTR_TYPE (t))
2073 tree dataptr_type = GFC_TYPE_ARRAY_DATAPTR_TYPE (t);
2074 dataptr_type = gfc_nonrestricted_type (dataptr_type);
2075 if (dataptr_type != GFC_TYPE_ARRAY_DATAPTR_TYPE (t))
2077 TYPE_LANG_SPECIFIC (ret)
2078 = ggc_cleared_alloc<struct lang_type> ();
2079 *TYPE_LANG_SPECIFIC (ret) = *TYPE_LANG_SPECIFIC (t);
2080 GFC_TYPE_ARRAY_DATAPTR_TYPE (ret) = dataptr_type;
2085 break;
2087 case RECORD_TYPE:
2088 case UNION_TYPE:
2089 case QUAL_UNION_TYPE:
2091 tree field;
2092 /* First determine if we need a new type at all.
2093 Careful, the two calls to gfc_nonrestricted_type per field
2094 might return different values. That happens exactly when
2095 one of the fields reaches back to this very record type
2096 (via pointers). The first calls will assume that we don't
2097 need to copy T (see the error_mark_node marking). If there
2098 are any reasons for copying T apart from having to copy T,
2099 we'll indeed copy it, and the second calls to
2100 gfc_nonrestricted_type will use that new node if they
2101 reach back to T. */
2102 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
2103 if (TREE_CODE (field) == FIELD_DECL)
2105 tree elemtype = gfc_nonrestricted_type (TREE_TYPE (field));
2106 if (elemtype != TREE_TYPE (field))
2107 break;
2109 if (!field)
2110 break;
2111 ret = build_variant_type_copy (t);
2112 TYPE_FIELDS (ret) = NULL_TREE;
2114 /* Here we make sure that as soon as we know we have to copy
2115 T, that also fields reaching back to us will use the new
2116 copy. It's okay if that copy still contains the old fields,
2117 we won't look at them. */
2118 TYPE_LANG_SPECIFIC (t)->nonrestricted_type = ret;
2119 mirror_fields (ret, t);
2121 break;
2124 TYPE_LANG_SPECIFIC (t)->nonrestricted_type = ret;
2125 return ret;
2129 /* Return the type for a symbol. Special handling is required for character
2130 types to get the correct level of indirection.
2131 For functions return the return type.
2132 For subroutines return void_type_node.
2133 Calling this multiple times for the same symbol should be avoided,
2134 especially for character and array types. */
2136 tree
2137 gfc_sym_type (gfc_symbol * sym)
2139 tree type;
2140 int byref;
2141 bool restricted;
2143 /* Procedure Pointers inside COMMON blocks. */
2144 if (sym->attr.proc_pointer && sym->attr.in_common)
2146 /* Unset proc_pointer as gfc_get_function_type calls gfc_sym_type. */
2147 sym->attr.proc_pointer = 0;
2148 type = build_pointer_type (gfc_get_function_type (sym));
2149 sym->attr.proc_pointer = 1;
2150 return type;
2153 if (sym->attr.flavor == FL_PROCEDURE && !sym->attr.function)
2154 return void_type_node;
2156 /* In the case of a function the fake result variable may have a
2157 type different from the function type, so don't return early in
2158 that case. */
2159 if (sym->backend_decl && !sym->attr.function)
2160 return TREE_TYPE (sym->backend_decl);
2162 if (sym->ts.type == BT_CHARACTER
2163 && ((sym->attr.function && sym->attr.is_bind_c)
2164 || (sym->attr.result
2165 && sym->ns->proc_name
2166 && sym->ns->proc_name->attr.is_bind_c)
2167 || (sym->ts.deferred && (!sym->ts.u.cl
2168 || !sym->ts.u.cl->backend_decl))))
2169 type = gfc_character1_type_node;
2170 else
2171 type = gfc_typenode_for_spec (&sym->ts);
2173 if (sym->attr.dummy && !sym->attr.function && !sym->attr.value)
2174 byref = 1;
2175 else
2176 byref = 0;
2178 restricted = !sym->attr.target && !sym->attr.pointer
2179 && !sym->attr.proc_pointer && !sym->attr.cray_pointee;
2180 if (!restricted)
2181 type = gfc_nonrestricted_type (type);
2183 if (sym->attr.dimension || sym->attr.codimension)
2185 if (gfc_is_nodesc_array (sym))
2187 /* If this is a character argument of unknown length, just use the
2188 base type. */
2189 if (sym->ts.type != BT_CHARACTER
2190 || !(sym->attr.dummy || sym->attr.function)
2191 || sym->ts.u.cl->backend_decl)
2193 type = gfc_get_nodesc_array_type (type, sym->as,
2194 byref ? PACKED_FULL
2195 : PACKED_STATIC,
2196 restricted);
2197 byref = 0;
2200 else
2202 enum gfc_array_kind akind = GFC_ARRAY_UNKNOWN;
2203 if (sym->attr.pointer)
2204 akind = sym->attr.contiguous ? GFC_ARRAY_POINTER_CONT
2205 : GFC_ARRAY_POINTER;
2206 else if (sym->attr.allocatable)
2207 akind = GFC_ARRAY_ALLOCATABLE;
2208 type = gfc_build_array_type (type, sym->as, akind, restricted,
2209 sym->attr.contiguous);
2212 else
2214 if (sym->attr.allocatable || sym->attr.pointer
2215 || gfc_is_associate_pointer (sym))
2216 type = gfc_build_pointer_type (sym, type);
2219 /* We currently pass all parameters by reference.
2220 See f95_get_function_decl. For dummy function parameters return the
2221 function type. */
2222 if (byref)
2224 /* We must use pointer types for potentially absent variables. The
2225 optimizers assume a reference type argument is never NULL. */
2226 if (sym->attr.optional
2227 || (sym->ns->proc_name && sym->ns->proc_name->attr.entry_master))
2228 type = build_pointer_type (type);
2229 else
2231 type = build_reference_type (type);
2232 if (restricted)
2233 type = build_qualified_type (type, TYPE_QUAL_RESTRICT);
2237 return (type);
2240 /* Layout and output debug info for a record type. */
2242 void
2243 gfc_finish_type (tree type)
2245 tree decl;
2247 decl = build_decl (input_location,
2248 TYPE_DECL, NULL_TREE, type);
2249 TYPE_STUB_DECL (type) = decl;
2250 layout_type (type);
2251 rest_of_type_compilation (type, 1);
2252 rest_of_decl_compilation (decl, 1, 0);
2255 /* Add a field of given NAME and TYPE to the context of a UNION_TYPE
2256 or RECORD_TYPE pointed to by CONTEXT. The new field is chained
2257 to the end of the field list pointed to by *CHAIN.
2259 Returns a pointer to the new field. */
2261 static tree
2262 gfc_add_field_to_struct_1 (tree context, tree name, tree type, tree **chain)
2264 tree decl = build_decl (input_location, FIELD_DECL, name, type);
2266 DECL_CONTEXT (decl) = context;
2267 DECL_CHAIN (decl) = NULL_TREE;
2268 if (TYPE_FIELDS (context) == NULL_TREE)
2269 TYPE_FIELDS (context) = decl;
2270 if (chain != NULL)
2272 if (*chain != NULL)
2273 **chain = decl;
2274 *chain = &DECL_CHAIN (decl);
2277 return decl;
2280 /* Like `gfc_add_field_to_struct_1', but adds alignment
2281 information. */
2283 tree
2284 gfc_add_field_to_struct (tree context, tree name, tree type, tree **chain)
2286 tree decl = gfc_add_field_to_struct_1 (context, name, type, chain);
2288 DECL_INITIAL (decl) = 0;
2289 DECL_ALIGN (decl) = 0;
2290 DECL_USER_ALIGN (decl) = 0;
2292 return decl;
2296 /* Copy the backend_decl and component backend_decls if
2297 the two derived type symbols are "equal", as described
2298 in 4.4.2 and resolved by gfc_compare_derived_types. */
2301 gfc_copy_dt_decls_ifequal (gfc_symbol *from, gfc_symbol *to,
2302 bool from_gsym)
2304 gfc_component *to_cm;
2305 gfc_component *from_cm;
2307 if (from == to)
2308 return 1;
2310 if (from->backend_decl == NULL
2311 || !gfc_compare_derived_types (from, to))
2312 return 0;
2314 to->backend_decl = from->backend_decl;
2316 to_cm = to->components;
2317 from_cm = from->components;
2319 /* Copy the component declarations. If a component is itself
2320 a derived type, we need a copy of its component declarations.
2321 This is done by recursing into gfc_get_derived_type and
2322 ensures that the component's component declarations have
2323 been built. If it is a character, we need the character
2324 length, as well. */
2325 for (; to_cm; to_cm = to_cm->next, from_cm = from_cm->next)
2327 to_cm->backend_decl = from_cm->backend_decl;
2328 if (from_cm->ts.type == BT_DERIVED
2329 && (!from_cm->attr.pointer || from_gsym))
2330 gfc_get_derived_type (to_cm->ts.u.derived);
2331 else if (from_cm->ts.type == BT_CLASS
2332 && (!CLASS_DATA (from_cm)->attr.class_pointer || from_gsym))
2333 gfc_get_derived_type (to_cm->ts.u.derived);
2334 else if (from_cm->ts.type == BT_CHARACTER)
2335 to_cm->ts.u.cl->backend_decl = from_cm->ts.u.cl->backend_decl;
2338 return 1;
2342 /* Build a tree node for a procedure pointer component. */
2344 tree
2345 gfc_get_ppc_type (gfc_component* c)
2347 tree t;
2349 /* Explicit interface. */
2350 if (c->attr.if_source != IFSRC_UNKNOWN && c->ts.interface)
2351 return build_pointer_type (gfc_get_function_type (c->ts.interface));
2353 /* Implicit interface (only return value may be known). */
2354 if (c->attr.function && !c->attr.dimension && c->ts.type != BT_CHARACTER)
2355 t = gfc_typenode_for_spec (&c->ts);
2356 else
2357 t = void_type_node;
2359 return build_pointer_type (build_function_type_list (t, NULL_TREE));
2363 /* Build a tree node for a derived type. If there are equal
2364 derived types, with different local names, these are built
2365 at the same time. If an equal derived type has been built
2366 in a parent namespace, this is used. */
2368 tree
2369 gfc_get_derived_type (gfc_symbol * derived)
2371 tree typenode = NULL, field = NULL, field_type = NULL;
2372 tree canonical = NULL_TREE;
2373 tree *chain = NULL;
2374 bool got_canonical = false;
2375 bool unlimited_entity = false;
2376 gfc_component *c;
2377 gfc_dt_list *dt;
2378 gfc_namespace *ns;
2380 if (derived->attr.unlimited_polymorphic
2381 || (flag_coarray == GFC_FCOARRAY_LIB
2382 && derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
2383 && derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE))
2384 return ptr_type_node;
2386 if (derived && derived->attr.flavor == FL_PROCEDURE
2387 && derived->attr.generic)
2388 derived = gfc_find_dt_in_generic (derived);
2390 /* See if it's one of the iso_c_binding derived types. */
2391 if (derived->attr.is_iso_c == 1 || derived->ts.f90_type == BT_VOID)
2393 if (derived->backend_decl)
2394 return derived->backend_decl;
2396 if (derived->intmod_sym_id == ISOCBINDING_PTR)
2397 derived->backend_decl = ptr_type_node;
2398 else
2399 derived->backend_decl = pfunc_type_node;
2401 derived->ts.kind = gfc_index_integer_kind;
2402 derived->ts.type = BT_INTEGER;
2403 /* Set the f90_type to BT_VOID as a way to recognize something of type
2404 BT_INTEGER that needs to fit a void * for the purpose of the
2405 iso_c_binding derived types. */
2406 derived->ts.f90_type = BT_VOID;
2408 return derived->backend_decl;
2411 /* If use associated, use the module type for this one. */
2412 if (derived->backend_decl == NULL
2413 && derived->attr.use_assoc
2414 && derived->module
2415 && gfc_get_module_backend_decl (derived))
2416 goto copy_derived_types;
2418 /* The derived types from an earlier namespace can be used as the
2419 canonical type. */
2420 if (derived->backend_decl == NULL && !derived->attr.use_assoc
2421 && gfc_global_ns_list)
2423 for (ns = gfc_global_ns_list;
2424 ns->translated && !got_canonical;
2425 ns = ns->sibling)
2427 dt = ns->derived_types;
2428 for (; dt && !canonical; dt = dt->next)
2430 gfc_copy_dt_decls_ifequal (dt->derived, derived, true);
2431 if (derived->backend_decl)
2432 got_canonical = true;
2437 /* Store up the canonical type to be added to this one. */
2438 if (got_canonical)
2440 if (TYPE_CANONICAL (derived->backend_decl))
2441 canonical = TYPE_CANONICAL (derived->backend_decl);
2442 else
2443 canonical = derived->backend_decl;
2445 derived->backend_decl = NULL_TREE;
2448 /* derived->backend_decl != 0 means we saw it before, but its
2449 components' backend_decl may have not been built. */
2450 if (derived->backend_decl)
2452 /* Its components' backend_decl have been built or we are
2453 seeing recursion through the formal arglist of a procedure
2454 pointer component. */
2455 if (TYPE_FIELDS (derived->backend_decl))
2456 return derived->backend_decl;
2457 else if (derived->attr.abstract
2458 && derived->attr.proc_pointer_comp)
2460 /* If an abstract derived type with procedure pointer
2461 components has no other type of component, return the
2462 backend_decl. Otherwise build the components if any of the
2463 non-procedure pointer components have no backend_decl. */
2464 for (c = derived->components; c; c = c->next)
2466 if (!c->attr.proc_pointer && c->backend_decl == NULL)
2467 break;
2468 else if (c->next == NULL)
2469 return derived->backend_decl;
2471 typenode = derived->backend_decl;
2473 else
2474 typenode = derived->backend_decl;
2476 else
2478 /* We see this derived type first time, so build the type node. */
2479 typenode = make_node (RECORD_TYPE);
2480 TYPE_NAME (typenode) = get_identifier (derived->name);
2481 TYPE_PACKED (typenode) = flag_pack_derived;
2482 derived->backend_decl = typenode;
2485 if (derived->components
2486 && derived->components->ts.type == BT_DERIVED
2487 && strcmp (derived->components->name, "_data") == 0
2488 && derived->components->ts.u.derived->attr.unlimited_polymorphic)
2489 unlimited_entity = true;
2491 /* Go through the derived type components, building them as
2492 necessary. The reason for doing this now is that it is
2493 possible to recurse back to this derived type through a
2494 pointer component (PR24092). If this happens, the fields
2495 will be built and so we can return the type. */
2496 for (c = derived->components; c; c = c->next)
2498 if (c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
2499 continue;
2501 if ((!c->attr.pointer && !c->attr.proc_pointer)
2502 || c->ts.u.derived->backend_decl == NULL)
2503 c->ts.u.derived->backend_decl = gfc_get_derived_type (c->ts.u.derived);
2505 if (c->ts.u.derived->attr.is_iso_c)
2507 /* Need to copy the modified ts from the derived type. The
2508 typespec was modified because C_PTR/C_FUNPTR are translated
2509 into (void *) from derived types. */
2510 c->ts.type = c->ts.u.derived->ts.type;
2511 c->ts.kind = c->ts.u.derived->ts.kind;
2512 c->ts.f90_type = c->ts.u.derived->ts.f90_type;
2513 if (c->initializer)
2515 c->initializer->ts.type = c->ts.type;
2516 c->initializer->ts.kind = c->ts.kind;
2517 c->initializer->ts.f90_type = c->ts.f90_type;
2518 c->initializer->expr_type = EXPR_NULL;
2523 if (TYPE_FIELDS (derived->backend_decl))
2524 return derived->backend_decl;
2526 /* Build the type member list. Install the newly created RECORD_TYPE
2527 node as DECL_CONTEXT of each FIELD_DECL. */
2528 for (c = derived->components; c; c = c->next)
2530 if (c->attr.proc_pointer)
2531 field_type = gfc_get_ppc_type (c);
2532 else if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
2533 field_type = c->ts.u.derived->backend_decl;
2534 else
2536 if (c->ts.type == BT_CHARACTER && !c->ts.deferred)
2538 /* Evaluate the string length. */
2539 gfc_conv_const_charlen (c->ts.u.cl);
2540 gcc_assert (c->ts.u.cl->backend_decl);
2542 else if (c->ts.type == BT_CHARACTER)
2543 c->ts.u.cl->backend_decl
2544 = build_int_cst (gfc_charlen_type_node, 0);
2546 field_type = gfc_typenode_for_spec (&c->ts);
2549 /* This returns an array descriptor type. Initialization may be
2550 required. */
2551 if ((c->attr.dimension || c->attr.codimension) && !c->attr.proc_pointer )
2553 if (c->attr.pointer || c->attr.allocatable)
2555 enum gfc_array_kind akind;
2556 if (c->attr.pointer)
2557 akind = c->attr.contiguous ? GFC_ARRAY_POINTER_CONT
2558 : GFC_ARRAY_POINTER;
2559 else
2560 akind = GFC_ARRAY_ALLOCATABLE;
2561 /* Pointers to arrays aren't actually pointer types. The
2562 descriptors are separate, but the data is common. */
2563 field_type = gfc_build_array_type (field_type, c->as, akind,
2564 !c->attr.target
2565 && !c->attr.pointer,
2566 c->attr.contiguous);
2568 else
2569 field_type = gfc_get_nodesc_array_type (field_type, c->as,
2570 PACKED_STATIC,
2571 !c->attr.target);
2573 else if ((c->attr.pointer || c->attr.allocatable)
2574 && !c->attr.proc_pointer
2575 && !(unlimited_entity && c == derived->components))
2576 field_type = build_pointer_type (field_type);
2578 if (c->attr.pointer)
2579 field_type = gfc_nonrestricted_type (field_type);
2581 /* vtype fields can point to different types to the base type. */
2582 if (c->ts.type == BT_DERIVED
2583 && c->ts.u.derived && c->ts.u.derived->attr.vtype)
2584 field_type = build_pointer_type_for_mode (TREE_TYPE (field_type),
2585 ptr_mode, true);
2587 /* Ensure that the CLASS language specific flag is set. */
2588 if (c->ts.type == BT_CLASS)
2590 if (POINTER_TYPE_P (field_type))
2591 GFC_CLASS_TYPE_P (TREE_TYPE (field_type)) = 1;
2592 else
2593 GFC_CLASS_TYPE_P (field_type) = 1;
2596 field = gfc_add_field_to_struct (typenode,
2597 get_identifier (c->name),
2598 field_type, &chain);
2599 if (c->loc.lb)
2600 gfc_set_decl_location (field, &c->loc);
2601 else if (derived->declared_at.lb)
2602 gfc_set_decl_location (field, &derived->declared_at);
2604 gfc_finish_decl_attrs (field, &c->attr);
2606 DECL_PACKED (field) |= TYPE_PACKED (typenode);
2608 gcc_assert (field);
2609 if (!c->backend_decl)
2610 c->backend_decl = field;
2613 /* Now lay out the derived type, including the fields. */
2614 if (canonical)
2615 TYPE_CANONICAL (typenode) = canonical;
2617 gfc_finish_type (typenode);
2618 gfc_set_decl_location (TYPE_STUB_DECL (typenode), &derived->declared_at);
2619 if (derived->module && derived->ns->proc_name
2620 && derived->ns->proc_name->attr.flavor == FL_MODULE)
2622 if (derived->ns->proc_name->backend_decl
2623 && TREE_CODE (derived->ns->proc_name->backend_decl)
2624 == NAMESPACE_DECL)
2626 TYPE_CONTEXT (typenode) = derived->ns->proc_name->backend_decl;
2627 DECL_CONTEXT (TYPE_STUB_DECL (typenode))
2628 = derived->ns->proc_name->backend_decl;
2632 derived->backend_decl = typenode;
2634 copy_derived_types:
2636 for (dt = gfc_derived_types; dt; dt = dt->next)
2637 gfc_copy_dt_decls_ifequal (derived, dt->derived, false);
2639 return derived->backend_decl;
2644 gfc_return_by_reference (gfc_symbol * sym)
2646 if (!sym->attr.function)
2647 return 0;
2649 if (sym->attr.dimension)
2650 return 1;
2652 if (sym->ts.type == BT_CHARACTER
2653 && !sym->attr.is_bind_c
2654 && (!sym->attr.result
2655 || !sym->ns->proc_name
2656 || !sym->ns->proc_name->attr.is_bind_c))
2657 return 1;
2659 /* Possibly return complex numbers by reference for g77 compatibility.
2660 We don't do this for calls to intrinsics (as the library uses the
2661 -fno-f2c calling convention), nor for calls to functions which always
2662 require an explicit interface, as no compatibility problems can
2663 arise there. */
2664 if (flag_f2c && sym->ts.type == BT_COMPLEX
2665 && !sym->attr.intrinsic && !sym->attr.always_explicit)
2666 return 1;
2668 return 0;
2671 static tree
2672 gfc_get_mixed_entry_union (gfc_namespace *ns)
2674 tree type;
2675 tree *chain = NULL;
2676 char name[GFC_MAX_SYMBOL_LEN + 1];
2677 gfc_entry_list *el, *el2;
2679 gcc_assert (ns->proc_name->attr.mixed_entry_master);
2680 gcc_assert (memcmp (ns->proc_name->name, "master.", 7) == 0);
2682 snprintf (name, GFC_MAX_SYMBOL_LEN, "munion.%s", ns->proc_name->name + 7);
2684 /* Build the type node. */
2685 type = make_node (UNION_TYPE);
2687 TYPE_NAME (type) = get_identifier (name);
2689 for (el = ns->entries; el; el = el->next)
2691 /* Search for duplicates. */
2692 for (el2 = ns->entries; el2 != el; el2 = el2->next)
2693 if (el2->sym->result == el->sym->result)
2694 break;
2696 if (el == el2)
2697 gfc_add_field_to_struct_1 (type,
2698 get_identifier (el->sym->result->name),
2699 gfc_sym_type (el->sym->result), &chain);
2702 /* Finish off the type. */
2703 gfc_finish_type (type);
2704 TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type)) = 1;
2705 return type;
2708 /* Create a "fn spec" based on the formal arguments;
2709 cf. create_function_arglist. */
2711 static tree
2712 create_fn_spec (gfc_symbol *sym, tree fntype)
2714 char spec[150];
2715 size_t spec_len;
2716 gfc_formal_arglist *f;
2717 tree tmp;
2719 memset (&spec, 0, sizeof (spec));
2720 spec[0] = '.';
2721 spec_len = 1;
2723 if (sym->attr.entry_master)
2724 spec[spec_len++] = 'R';
2725 if (gfc_return_by_reference (sym))
2727 gfc_symbol *result = sym->result ? sym->result : sym;
2729 if (result->attr.pointer || sym->attr.proc_pointer)
2730 spec[spec_len++] = '.';
2731 else
2732 spec[spec_len++] = 'w';
2733 if (sym->ts.type == BT_CHARACTER)
2734 spec[spec_len++] = 'R';
2737 for (f = gfc_sym_get_dummy_args (sym); f; f = f->next)
2738 if (spec_len < sizeof (spec))
2740 if (!f->sym || f->sym->attr.pointer || f->sym->attr.target
2741 || f->sym->attr.external || f->sym->attr.cray_pointer
2742 || (f->sym->ts.type == BT_DERIVED
2743 && (f->sym->ts.u.derived->attr.proc_pointer_comp
2744 || f->sym->ts.u.derived->attr.pointer_comp))
2745 || (f->sym->ts.type == BT_CLASS
2746 && (CLASS_DATA (f->sym)->ts.u.derived->attr.proc_pointer_comp
2747 || CLASS_DATA (f->sym)->ts.u.derived->attr.pointer_comp)))
2748 spec[spec_len++] = '.';
2749 else if (f->sym->attr.intent == INTENT_IN)
2750 spec[spec_len++] = 'r';
2751 else if (f->sym)
2752 spec[spec_len++] = 'w';
2755 tmp = build_tree_list (NULL_TREE, build_string (spec_len, spec));
2756 tmp = tree_cons (get_identifier ("fn spec"), tmp, TYPE_ATTRIBUTES (fntype));
2757 return build_type_attribute_variant (fntype, tmp);
2761 tree
2762 gfc_get_function_type (gfc_symbol * sym)
2764 tree type;
2765 vec<tree, va_gc> *typelist = NULL;
2766 gfc_formal_arglist *f;
2767 gfc_symbol *arg;
2768 int alternate_return = 0;
2769 bool is_varargs = true;
2771 /* Make sure this symbol is a function, a subroutine or the main
2772 program. */
2773 gcc_assert (sym->attr.flavor == FL_PROCEDURE
2774 || sym->attr.flavor == FL_PROGRAM);
2776 /* To avoid recursing infinitely on recursive types, we use error_mark_node
2777 so that they can be detected here and handled further down. */
2778 if (sym->backend_decl == NULL)
2779 sym->backend_decl = error_mark_node;
2780 else if (sym->backend_decl == error_mark_node)
2781 goto arg_type_list_done;
2782 else if (sym->attr.proc_pointer)
2783 return TREE_TYPE (TREE_TYPE (sym->backend_decl));
2784 else
2785 return TREE_TYPE (sym->backend_decl);
2787 if (sym->attr.entry_master)
2788 /* Additional parameter for selecting an entry point. */
2789 vec_safe_push (typelist, gfc_array_index_type);
2791 if (sym->result)
2792 arg = sym->result;
2793 else
2794 arg = sym;
2796 if (arg->ts.type == BT_CHARACTER)
2797 gfc_conv_const_charlen (arg->ts.u.cl);
2799 /* Some functions we use an extra parameter for the return value. */
2800 if (gfc_return_by_reference (sym))
2802 type = gfc_sym_type (arg);
2803 if (arg->ts.type == BT_COMPLEX
2804 || arg->attr.dimension
2805 || arg->ts.type == BT_CHARACTER)
2806 type = build_reference_type (type);
2808 vec_safe_push (typelist, type);
2809 if (arg->ts.type == BT_CHARACTER)
2811 if (!arg->ts.deferred)
2812 /* Transfer by value. */
2813 vec_safe_push (typelist, gfc_charlen_type_node);
2814 else
2815 /* Deferred character lengths are transferred by reference
2816 so that the value can be returned. */
2817 vec_safe_push (typelist, build_pointer_type(gfc_charlen_type_node));
2821 /* Build the argument types for the function. */
2822 for (f = gfc_sym_get_dummy_args (sym); f; f = f->next)
2824 arg = f->sym;
2825 if (arg)
2827 /* Evaluate constant character lengths here so that they can be
2828 included in the type. */
2829 if (arg->ts.type == BT_CHARACTER)
2830 gfc_conv_const_charlen (arg->ts.u.cl);
2832 if (arg->attr.flavor == FL_PROCEDURE)
2834 type = gfc_get_function_type (arg);
2835 type = build_pointer_type (type);
2837 else
2838 type = gfc_sym_type (arg);
2840 /* Parameter Passing Convention
2842 We currently pass all parameters by reference.
2843 Parameters with INTENT(IN) could be passed by value.
2844 The problem arises if a function is called via an implicit
2845 prototype. In this situation the INTENT is not known.
2846 For this reason all parameters to global functions must be
2847 passed by reference. Passing by value would potentially
2848 generate bad code. Worse there would be no way of telling that
2849 this code was bad, except that it would give incorrect results.
2851 Contained procedures could pass by value as these are never
2852 used without an explicit interface, and cannot be passed as
2853 actual parameters for a dummy procedure. */
2855 vec_safe_push (typelist, type);
2857 else
2859 if (sym->attr.subroutine)
2860 alternate_return = 1;
2864 /* Add hidden string length parameters. */
2865 for (f = gfc_sym_get_dummy_args (sym); f; f = f->next)
2867 arg = f->sym;
2868 if (arg && arg->ts.type == BT_CHARACTER && !sym->attr.is_bind_c)
2870 if (!arg->ts.deferred)
2871 /* Transfer by value. */
2872 type = gfc_charlen_type_node;
2873 else
2874 /* Deferred character lengths are transferred by reference
2875 so that the value can be returned. */
2876 type = build_pointer_type (gfc_charlen_type_node);
2878 vec_safe_push (typelist, type);
2882 if (!vec_safe_is_empty (typelist)
2883 || sym->attr.is_main_program
2884 || sym->attr.if_source != IFSRC_UNKNOWN)
2885 is_varargs = false;
2887 if (sym->backend_decl == error_mark_node)
2888 sym->backend_decl = NULL_TREE;
2890 arg_type_list_done:
2892 if (alternate_return)
2893 type = integer_type_node;
2894 else if (!sym->attr.function || gfc_return_by_reference (sym))
2895 type = void_type_node;
2896 else if (sym->attr.mixed_entry_master)
2897 type = gfc_get_mixed_entry_union (sym->ns);
2898 else if (flag_f2c && sym->ts.type == BT_REAL
2899 && sym->ts.kind == gfc_default_real_kind
2900 && !sym->attr.always_explicit)
2902 /* Special case: f2c calling conventions require that (scalar)
2903 default REAL functions return the C type double instead. f2c
2904 compatibility is only an issue with functions that don't
2905 require an explicit interface, as only these could be
2906 implemented in Fortran 77. */
2907 sym->ts.kind = gfc_default_double_kind;
2908 type = gfc_typenode_for_spec (&sym->ts);
2909 sym->ts.kind = gfc_default_real_kind;
2911 else if (sym->result && sym->result->attr.proc_pointer)
2912 /* Procedure pointer return values. */
2914 if (sym->result->attr.result && strcmp (sym->name,"ppr@") != 0)
2916 /* Unset proc_pointer as gfc_get_function_type
2917 is called recursively. */
2918 sym->result->attr.proc_pointer = 0;
2919 type = build_pointer_type (gfc_get_function_type (sym->result));
2920 sym->result->attr.proc_pointer = 1;
2922 else
2923 type = gfc_sym_type (sym->result);
2925 else
2926 type = gfc_sym_type (sym);
2928 if (is_varargs)
2929 type = build_varargs_function_type_vec (type, typelist);
2930 else
2931 type = build_function_type_vec (type, typelist);
2932 type = create_fn_spec (sym, type);
2934 return type;
2937 /* Language hooks for middle-end access to type nodes. */
2939 /* Return an integer type with BITS bits of precision,
2940 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
2942 tree
2943 gfc_type_for_size (unsigned bits, int unsignedp)
2945 if (!unsignedp)
2947 int i;
2948 for (i = 0; i <= MAX_INT_KINDS; ++i)
2950 tree type = gfc_integer_types[i];
2951 if (type && bits == TYPE_PRECISION (type))
2952 return type;
2955 /* Handle TImode as a special case because it is used by some backends
2956 (e.g. ARM) even though it is not available for normal use. */
2957 #if HOST_BITS_PER_WIDE_INT >= 64
2958 if (bits == TYPE_PRECISION (intTI_type_node))
2959 return intTI_type_node;
2960 #endif
2962 if (bits <= TYPE_PRECISION (intQI_type_node))
2963 return intQI_type_node;
2964 if (bits <= TYPE_PRECISION (intHI_type_node))
2965 return intHI_type_node;
2966 if (bits <= TYPE_PRECISION (intSI_type_node))
2967 return intSI_type_node;
2968 if (bits <= TYPE_PRECISION (intDI_type_node))
2969 return intDI_type_node;
2970 if (bits <= TYPE_PRECISION (intTI_type_node))
2971 return intTI_type_node;
2973 else
2975 if (bits <= TYPE_PRECISION (unsigned_intQI_type_node))
2976 return unsigned_intQI_type_node;
2977 if (bits <= TYPE_PRECISION (unsigned_intHI_type_node))
2978 return unsigned_intHI_type_node;
2979 if (bits <= TYPE_PRECISION (unsigned_intSI_type_node))
2980 return unsigned_intSI_type_node;
2981 if (bits <= TYPE_PRECISION (unsigned_intDI_type_node))
2982 return unsigned_intDI_type_node;
2983 if (bits <= TYPE_PRECISION (unsigned_intTI_type_node))
2984 return unsigned_intTI_type_node;
2987 return NULL_TREE;
2990 /* Return a data type that has machine mode MODE. If the mode is an
2991 integer, then UNSIGNEDP selects between signed and unsigned types. */
2993 tree
2994 gfc_type_for_mode (machine_mode mode, int unsignedp)
2996 int i;
2997 tree *base;
2999 if (GET_MODE_CLASS (mode) == MODE_FLOAT)
3000 base = gfc_real_types;
3001 else if (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT)
3002 base = gfc_complex_types;
3003 else if (SCALAR_INT_MODE_P (mode))
3005 tree type = gfc_type_for_size (GET_MODE_PRECISION (mode), unsignedp);
3006 return type != NULL_TREE && mode == TYPE_MODE (type) ? type : NULL_TREE;
3008 else if (VECTOR_MODE_P (mode))
3010 machine_mode inner_mode = GET_MODE_INNER (mode);
3011 tree inner_type = gfc_type_for_mode (inner_mode, unsignedp);
3012 if (inner_type != NULL_TREE)
3013 return build_vector_type_for_mode (inner_type, mode);
3014 return NULL_TREE;
3016 else
3017 return NULL_TREE;
3019 for (i = 0; i <= MAX_REAL_KINDS; ++i)
3021 tree type = base[i];
3022 if (type && mode == TYPE_MODE (type))
3023 return type;
3026 return NULL_TREE;
3029 /* Return TRUE if TYPE is a type with a hidden descriptor, fill in INFO
3030 in that case. */
3032 bool
3033 gfc_get_array_descr_info (const_tree type, struct array_descr_info *info)
3035 int rank, dim;
3036 bool indirect = false;
3037 tree etype, ptype, field, t, base_decl;
3038 tree data_off, dim_off, dim_size, elem_size;
3039 tree lower_suboff, upper_suboff, stride_suboff;
3041 if (! GFC_DESCRIPTOR_TYPE_P (type))
3043 if (! POINTER_TYPE_P (type))
3044 return false;
3045 type = TREE_TYPE (type);
3046 if (! GFC_DESCRIPTOR_TYPE_P (type))
3047 return false;
3048 indirect = true;
3051 rank = GFC_TYPE_ARRAY_RANK (type);
3052 if (rank >= (int) (sizeof (info->dimen) / sizeof (info->dimen[0])))
3053 return false;
3055 etype = GFC_TYPE_ARRAY_DATAPTR_TYPE (type);
3056 gcc_assert (POINTER_TYPE_P (etype));
3057 etype = TREE_TYPE (etype);
3059 /* If the type is not a scalar coarray. */
3060 if (TREE_CODE (etype) == ARRAY_TYPE)
3061 etype = TREE_TYPE (etype);
3063 /* Can't handle variable sized elements yet. */
3064 if (int_size_in_bytes (etype) <= 0)
3065 return false;
3066 /* Nor non-constant lower bounds in assumed shape arrays. */
3067 if (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ASSUMED_SHAPE
3068 || GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ASSUMED_SHAPE_CONT)
3070 for (dim = 0; dim < rank; dim++)
3071 if (GFC_TYPE_ARRAY_LBOUND (type, dim) == NULL_TREE
3072 || TREE_CODE (GFC_TYPE_ARRAY_LBOUND (type, dim)) != INTEGER_CST)
3073 return false;
3076 memset (info, '\0', sizeof (*info));
3077 info->ndimensions = rank;
3078 info->ordering = array_descr_ordering_column_major;
3079 info->element_type = etype;
3080 ptype = build_pointer_type (gfc_array_index_type);
3081 base_decl = GFC_TYPE_ARRAY_BASE_DECL (type, indirect);
3082 if (!base_decl)
3084 base_decl = make_node (DEBUG_EXPR_DECL);
3085 DECL_ARTIFICIAL (base_decl) = 1;
3086 TREE_TYPE (base_decl) = indirect ? build_pointer_type (ptype) : ptype;
3087 DECL_MODE (base_decl) = TYPE_MODE (TREE_TYPE (base_decl));
3088 GFC_TYPE_ARRAY_BASE_DECL (type, indirect) = base_decl;
3090 info->base_decl = base_decl;
3091 if (indirect)
3092 base_decl = build1 (INDIRECT_REF, ptype, base_decl);
3094 if (GFC_TYPE_ARRAY_SPAN (type))
3095 elem_size = GFC_TYPE_ARRAY_SPAN (type);
3096 else
3097 elem_size = fold_convert (gfc_array_index_type, TYPE_SIZE_UNIT (etype));
3098 field = TYPE_FIELDS (TYPE_MAIN_VARIANT (type));
3099 data_off = byte_position (field);
3100 field = DECL_CHAIN (field);
3101 field = DECL_CHAIN (field);
3102 field = DECL_CHAIN (field);
3103 dim_off = byte_position (field);
3104 dim_size = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (field)));
3105 field = TYPE_FIELDS (TREE_TYPE (TREE_TYPE (field)));
3106 stride_suboff = byte_position (field);
3107 field = DECL_CHAIN (field);
3108 lower_suboff = byte_position (field);
3109 field = DECL_CHAIN (field);
3110 upper_suboff = byte_position (field);
3112 t = base_decl;
3113 if (!integer_zerop (data_off))
3114 t = fold_build_pointer_plus (t, data_off);
3115 t = build1 (NOP_EXPR, build_pointer_type (ptr_type_node), t);
3116 info->data_location = build1 (INDIRECT_REF, ptr_type_node, t);
3117 if (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ALLOCATABLE)
3118 info->allocated = build2 (NE_EXPR, boolean_type_node,
3119 info->data_location, null_pointer_node);
3120 else if (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_POINTER
3121 || GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_POINTER_CONT)
3122 info->associated = build2 (NE_EXPR, boolean_type_node,
3123 info->data_location, null_pointer_node);
3125 for (dim = 0; dim < rank; dim++)
3127 t = fold_build_pointer_plus (base_decl,
3128 size_binop (PLUS_EXPR,
3129 dim_off, lower_suboff));
3130 t = build1 (INDIRECT_REF, gfc_array_index_type, t);
3131 info->dimen[dim].lower_bound = t;
3132 t = fold_build_pointer_plus (base_decl,
3133 size_binop (PLUS_EXPR,
3134 dim_off, upper_suboff));
3135 t = build1 (INDIRECT_REF, gfc_array_index_type, t);
3136 info->dimen[dim].upper_bound = t;
3137 if (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ASSUMED_SHAPE
3138 || GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ASSUMED_SHAPE_CONT)
3140 /* Assumed shape arrays have known lower bounds. */
3141 info->dimen[dim].upper_bound
3142 = build2 (MINUS_EXPR, gfc_array_index_type,
3143 info->dimen[dim].upper_bound,
3144 info->dimen[dim].lower_bound);
3145 info->dimen[dim].lower_bound
3146 = fold_convert (gfc_array_index_type,
3147 GFC_TYPE_ARRAY_LBOUND (type, dim));
3148 info->dimen[dim].upper_bound
3149 = build2 (PLUS_EXPR, gfc_array_index_type,
3150 info->dimen[dim].lower_bound,
3151 info->dimen[dim].upper_bound);
3153 t = fold_build_pointer_plus (base_decl,
3154 size_binop (PLUS_EXPR,
3155 dim_off, stride_suboff));
3156 t = build1 (INDIRECT_REF, gfc_array_index_type, t);
3157 t = build2 (MULT_EXPR, gfc_array_index_type, t, elem_size);
3158 info->dimen[dim].stride = t;
3159 dim_off = size_binop (PLUS_EXPR, dim_off, dim_size);
3162 return true;
3166 /* Create a type to handle vector subscripts for coarray library calls. It
3167 has the form:
3168 struct caf_vector_t {
3169 size_t nvec; // size of the vector
3170 union {
3171 struct {
3172 void *vector;
3173 int kind;
3174 } v;
3175 struct {
3176 ptrdiff_t lower_bound;
3177 ptrdiff_t upper_bound;
3178 ptrdiff_t stride;
3179 } triplet;
3180 } u;
3182 where nvec == 0 for DIMEN_ELEMENT or DIMEN_RANGE and nvec being the vector
3183 size in case of DIMEN_VECTOR, where kind is the integer type of the vector. */
3185 tree
3186 gfc_get_caf_vector_type (int dim)
3188 static tree vector_types[GFC_MAX_DIMENSIONS];
3189 static tree vec_type = NULL_TREE;
3190 tree triplet_struct_type, vect_struct_type, union_type, tmp, *chain;
3192 if (vector_types[dim-1] != NULL_TREE)
3193 return vector_types[dim-1];
3195 if (vec_type == NULL_TREE)
3197 chain = 0;
3198 vect_struct_type = make_node (RECORD_TYPE);
3199 tmp = gfc_add_field_to_struct_1 (vect_struct_type,
3200 get_identifier ("vector"),
3201 pvoid_type_node, &chain);
3202 TREE_NO_WARNING (tmp) = 1;
3203 tmp = gfc_add_field_to_struct_1 (vect_struct_type,
3204 get_identifier ("kind"),
3205 integer_type_node, &chain);
3206 TREE_NO_WARNING (tmp) = 1;
3207 gfc_finish_type (vect_struct_type);
3209 chain = 0;
3210 triplet_struct_type = make_node (RECORD_TYPE);
3211 tmp = gfc_add_field_to_struct_1 (triplet_struct_type,
3212 get_identifier ("lower_bound"),
3213 gfc_array_index_type, &chain);
3214 TREE_NO_WARNING (tmp) = 1;
3215 tmp = gfc_add_field_to_struct_1 (triplet_struct_type,
3216 get_identifier ("upper_bound"),
3217 gfc_array_index_type, &chain);
3218 TREE_NO_WARNING (tmp) = 1;
3219 tmp = gfc_add_field_to_struct_1 (triplet_struct_type, get_identifier ("stride"),
3220 gfc_array_index_type, &chain);
3221 TREE_NO_WARNING (tmp) = 1;
3222 gfc_finish_type (triplet_struct_type);
3224 chain = 0;
3225 union_type = make_node (UNION_TYPE);
3226 tmp = gfc_add_field_to_struct_1 (union_type, get_identifier ("v"),
3227 vect_struct_type, &chain);
3228 TREE_NO_WARNING (tmp) = 1;
3229 tmp = gfc_add_field_to_struct_1 (union_type, get_identifier ("triplet"),
3230 triplet_struct_type, &chain);
3231 TREE_NO_WARNING (tmp) = 1;
3232 gfc_finish_type (union_type);
3234 chain = 0;
3235 vec_type = make_node (RECORD_TYPE);
3236 tmp = gfc_add_field_to_struct_1 (vec_type, get_identifier ("nvec"),
3237 size_type_node, &chain);
3238 TREE_NO_WARNING (tmp) = 1;
3239 tmp = gfc_add_field_to_struct_1 (vec_type, get_identifier ("u"),
3240 union_type, &chain);
3241 TREE_NO_WARNING (tmp) = 1;
3242 gfc_finish_type (vec_type);
3243 TYPE_NAME (vec_type) = get_identifier ("caf_vector_t");
3246 tmp = build_range_type (gfc_array_index_type, gfc_index_zero_node,
3247 gfc_rank_cst[dim-1]);
3248 vector_types[dim-1] = build_array_type (vec_type, tmp);
3249 return vector_types[dim-1];
3252 #include "gt-fortran-trans-types.h"