OSDN Git Service

* trans-types.c: Fix spelling & layout in comments.
[pf3gnuchains/gcc-fork.git] / gcc / fortran / trans-types.c
1 /* Backend support for Fortran 95 basic types and derived types.
2    Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
3    Contributed by Paul Brook <paul@nowt.org>
4    and Steven Bosscher <s.bosscher@student.tudelft.nl>
5
6 This file is part of GCC.
7
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 2, or (at your option) any later
11 version.
12
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.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING.  If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA.  */
22
23 /* trans-types.c -- gfortran backend types */
24
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "tree.h"
29 #include <stdio.h>
30 #include "ggc.h"
31 #include "toplev.h"
32 #include <assert.h>
33 #include "gfortran.h"
34 #include "trans.h"
35 #include "trans-types.h"
36 #include "trans-const.h"
37 \f
38
39 #if (GFC_MAX_DIMENSIONS < 10)
40 #define GFC_RANK_DIGITS 1
41 #define GFC_RANK_PRINTF_FORMAT "%01d"
42 #elif (GFC_MAX_DIMENSIONS < 100)
43 #define GFC_RANK_DIGITS 2
44 #define GFC_RANK_PRINTF_FORMAT "%02d"
45 #else
46 #error If you really need >99 dimensions, continue the sequence above...
47 #endif
48
49 static tree gfc_get_derived_type (gfc_symbol * derived);
50
51 tree gfc_type_nodes[NUM_F95_TYPES];
52
53 tree gfc_array_index_type;
54 tree pvoid_type_node;
55 tree ppvoid_type_node;
56 tree pchar_type_node;
57
58 static GTY(()) tree gfc_desc_dim_type = NULL;
59
60 static GTY(()) tree gfc_max_array_element_size;
61
62 /* Create the backend type nodes. We map them to their
63    equivalent C type, at least for now.  We also give
64    names to the types here, and we push them in the
65    global binding level context.*/
66
67 void
68 gfc_init_types (void)
69 {
70   unsigned n;
71   unsigned HOST_WIDE_INT hi;
72   unsigned HOST_WIDE_INT lo;
73
74   /* Name the types.  */
75 #define PUSH_TYPE(name, node) \
76   pushdecl (build_decl (TYPE_DECL, get_identifier (name), node))
77
78   gfc_int1_type_node = signed_char_type_node;
79   PUSH_TYPE ("int1", gfc_int1_type_node);
80   gfc_int2_type_node = short_integer_type_node;
81   PUSH_TYPE ("int2", gfc_int2_type_node);
82   gfc_int4_type_node = gfc_type_for_size (32, 0 /*unsigned */ );
83   PUSH_TYPE ("int4", gfc_int4_type_node);
84   gfc_int8_type_node = gfc_type_for_size (64, 0 /*unsigned */ );
85   PUSH_TYPE ("int8", gfc_int8_type_node);
86 #if (GFC_USE_TYPES16 && (HOST_BITS_PER_WIDE_INT >= 64))
87   gfc_int16_type_node = gfc_type_for_size (128, 0 /*unsigned */ );
88   PUSH_TYPE ("int16", gfc_int16_type_node);
89 #endif
90
91   gfc_real4_type_node = float_type_node;
92   PUSH_TYPE ("real4", gfc_real4_type_node);
93   gfc_real8_type_node = double_type_node;
94   PUSH_TYPE ("real8", gfc_real8_type_node);
95 #if (GFC_USE_TYPES16 && (HOST_BITS_PER_WIDE_INT >= 64))
96   /* Hmm, this will not work. Ref. g77 */
97   gfc_real16_type_node = long_double_type_node;
98   PUSH_TYPE ("real16", gfc_real16_type_node);
99 #endif
100
101   gfc_complex4_type_node = complex_float_type_node;
102   PUSH_TYPE ("complex4", gfc_complex4_type_node);
103   gfc_complex8_type_node = complex_double_type_node;
104   PUSH_TYPE ("complex8", gfc_complex8_type_node);
105 #if (GFC_USE_TYPES16 && (HOST_BITS_PER_WIDE_INT >= 64))
106   /* Hmm, this will not work. Ref. g77 */
107   gfc_complex16_type_node = complex_long_double_type_node;
108   PUSH_TYPE ("complex16", gfc_complex16_type_node);
109 #endif
110
111   gfc_logical1_type_node = make_node (BOOLEAN_TYPE);
112   TYPE_PRECISION (gfc_logical1_type_node) = 8;
113   fixup_unsigned_type (gfc_logical1_type_node);
114   PUSH_TYPE ("logical1", gfc_logical1_type_node);
115   gfc_logical2_type_node = make_node (BOOLEAN_TYPE);
116   TYPE_PRECISION (gfc_logical2_type_node) = 16;
117   fixup_unsigned_type (gfc_logical2_type_node);
118   PUSH_TYPE ("logical2", gfc_logical2_type_node);
119   gfc_logical4_type_node = make_node (BOOLEAN_TYPE);
120   TYPE_PRECISION (gfc_logical4_type_node) = 32;
121   fixup_unsigned_type (gfc_logical4_type_node);
122   PUSH_TYPE ("logical4", gfc_logical4_type_node);
123   gfc_logical8_type_node = make_node (BOOLEAN_TYPE);
124   TYPE_PRECISION (gfc_logical8_type_node) = 64;
125   fixup_unsigned_type (gfc_logical8_type_node);
126   PUSH_TYPE ("logical8", gfc_logical8_type_node);
127 #if (GFC_USE_TYPES16 && (HOST_BITS_PER_WIDE_INT >= 64))
128   gfc_logical16_type_node = make_node (BOOLEAN_TYPE);
129   TYPE_PRECISION (gfc_logical16_type_node) = 128;
130   fixup_unsigned_type (gfc_logical16_type_node);
131   PUSH_TYPE ("logical16", gfc_logical16_type_node);
132 #endif
133
134   gfc_character1_type_node = build_type_variant (signed_char_type_node, 0, 0);
135   PUSH_TYPE ("char", gfc_character1_type_node);
136
137   PUSH_TYPE ("byte", unsigned_char_type_node);
138   PUSH_TYPE ("void", void_type_node);
139
140   /* DBX debugging output gets upset if these aren't set.  */
141   if (!TYPE_NAME (integer_type_node))
142     PUSH_TYPE ("c_integer", integer_type_node);
143   if (!TYPE_NAME (char_type_node))
144     PUSH_TYPE ("c_char", char_type_node);
145 #undef PUSH_TYPE
146
147   pvoid_type_node = build_pointer_type (void_type_node);
148   ppvoid_type_node = build_pointer_type (pvoid_type_node);
149   pchar_type_node = build_pointer_type (gfc_character1_type_node);
150
151   gfc_index_integer_kind = TYPE_PRECISION (long_unsigned_type_node) / 8;
152   gfc_array_index_type = gfc_get_int_type (gfc_index_integer_kind);
153
154   /* The maximum array element size that can be handled is determined
155      by the number of bits available to store this field in the array
156      descriptor.  */
157
158   n = TREE_INT_CST_LOW (TYPE_SIZE (gfc_array_index_type))
159       - GFC_DTYPE_SIZE_SHIFT;
160
161   if (n > sizeof (HOST_WIDE_INT) * 8)
162     {
163       lo = ~(unsigned HOST_WIDE_INT) 0;
164       hi = lo >> (sizeof (HOST_WIDE_INT) * 16 - n);
165     }
166   else
167     {
168       hi = 0;
169       lo = (~(unsigned HOST_WIDE_INT) 0) >> (sizeof (HOST_WIDE_INT) * 8 - n);
170     }
171   gfc_max_array_element_size = build_int_2 (lo, hi);
172   TREE_TYPE (gfc_max_array_element_size) = long_unsigned_type_node;
173
174   size_type_node = gfc_array_index_type;
175   boolean_type_node = gfc_get_logical_type (gfc_default_logical_kind ());
176
177   boolean_true_node = build_int_2 (1, 0);
178   TREE_TYPE (boolean_true_node) = boolean_type_node;
179   boolean_false_node = build_int_2 (0, 0);
180   TREE_TYPE (boolean_false_node) = boolean_type_node;
181 }
182
183 /* Get a type node for an integer kind */
184
185 tree
186 gfc_get_int_type (int kind)
187 {
188   switch (kind)
189     {
190     case 1:
191       return (gfc_int1_type_node);
192     case 2:
193       return (gfc_int2_type_node);
194     case 4:
195       return (gfc_int4_type_node);
196     case 8:
197       return (gfc_int8_type_node);
198 #if (GFC_USE_TYPES16 && (HOST_BITS_PER_WIDE_INT >= 64))
199     case 16:
200       return (95 _int16_type_node);
201 #endif
202     default:
203       fatal_error ("integer kind=%d not available", kind);
204     }
205 }
206
207 /* Get a type node for a real kind */
208
209 tree
210 gfc_get_real_type (int kind)
211 {
212   switch (kind)
213     {
214     case 4:
215       return (gfc_real4_type_node);
216     case 8:
217       return (gfc_real8_type_node);
218 #if (GFC_USE_TYPES16 && (HOST_BITS_PER_WIDE_INT >= 64))
219     case 16:
220       return (gfc_real16_type_node);
221 #endif
222     default:
223       fatal_error ("real kind=%d not available", kind);
224     }
225 }
226
227 /* Get a type node for a complex kind */
228
229 tree
230 gfc_get_complex_type (int kind)
231 {
232   switch (kind)
233     {
234     case 4:
235       return (gfc_complex4_type_node);
236     case 8:
237       return (gfc_complex8_type_node);
238 #if (GFC_USE_TYPES16 && (HOST_BITS_PER_WIDE_INT >= 64))
239     case 16:
240       return (gfc_complex16_type_node);
241 #endif
242     default:
243       fatal_error ("complex kind=%d not available", kind);
244     }
245 }
246
247 /* Get a type node for a logical kind */
248
249 tree
250 gfc_get_logical_type (int kind)
251 {
252   switch (kind)
253     {
254     case 1:
255       return (gfc_logical1_type_node);
256     case 2:
257       return (gfc_logical2_type_node);
258     case 4:
259       return (gfc_logical4_type_node);
260     case 8:
261       return (gfc_logical8_type_node);
262 #if (GFC_USE_TYPES16 && (HOST_BITS_PER_WIDE_INT >= 64))
263     case 16:
264       return (gfc_logical16_type_node);
265 #endif
266     default:
267       fatal_error ("logical kind=%d not available", kind);
268     }
269 }
270 \f
271 /* Get a type node for a character kind.  */
272
273 tree
274 gfc_get_character_type (int kind, gfc_charlen * cl)
275 {
276   tree base;
277   tree type;
278   tree len;
279   tree bounds;
280
281   switch (kind)
282     {
283     case 1:
284       base = gfc_character1_type_node;
285       break;
286
287     default:
288       fatal_error ("character kind=%d not available", kind);
289     }
290
291   len = (cl == 0) ? NULL_TREE : cl->backend_decl;
292
293   bounds = build_range_type (gfc_array_index_type, integer_one_node, len);
294   type = build_array_type (base, bounds);
295   TYPE_STRING_FLAG (type) = 1;
296
297   return type;
298 }
299 \f
300 /* Covert a basic type.  This will be an array for character types.  */
301
302 tree
303 gfc_typenode_for_spec (gfc_typespec * spec)
304 {
305   tree basetype;
306
307   switch (spec->type)
308     {
309     case BT_UNKNOWN:
310       abort ();
311       break;
312
313     case BT_INTEGER:
314       basetype = gfc_get_int_type (spec->kind);
315       break;
316
317     case BT_REAL:
318       basetype = gfc_get_real_type (spec->kind);
319       break;
320
321     case BT_COMPLEX:
322       basetype = gfc_get_complex_type (spec->kind);
323       break;
324
325     case BT_LOGICAL:
326       basetype = gfc_get_logical_type (spec->kind);
327       break;
328
329     case BT_CHARACTER:
330       basetype = gfc_get_character_type (spec->kind, spec->cl);
331       break;
332
333     case BT_DERIVED:
334       basetype = gfc_get_derived_type (spec->derived);
335       break;
336
337     default:
338       abort ();
339       break;
340     }
341   return basetype;
342 }
343 \f
344 /* Build an INT_CST for constant expressions, otherwise return NULL_TREE.  */
345
346 static tree
347 gfc_conv_array_bound (gfc_expr * expr)
348 {
349   /* If expr is an integer constant, return that.  */
350   if (expr != NULL && expr->expr_type == EXPR_CONSTANT)
351     return gfc_conv_mpz_to_tree (expr->value.integer, gfc_index_integer_kind);
352
353   /* Otherwise return NULL.  */
354   return NULL_TREE;
355 }
356 \f
357 tree
358 gfc_get_element_type (tree type)
359 {
360   tree element;
361
362   if (GFC_ARRAY_TYPE_P (type))
363     {
364       if (TREE_CODE (type) == POINTER_TYPE)
365         type = TREE_TYPE (type);
366       assert (TREE_CODE (type) == ARRAY_TYPE);
367       element = TREE_TYPE (type);
368     }
369   else
370     {
371       assert (GFC_DESCRIPTOR_TYPE_P (type));
372       element = TREE_TYPE (TYPE_FIELDS (type));
373
374       assert (TREE_CODE (element) == POINTER_TYPE);
375       element = TREE_TYPE (element);
376
377       assert (TREE_CODE (element) == ARRAY_TYPE);
378       element = TREE_TYPE (element);
379     }
380
381   return element;
382 }
383 \f
384 /* Build an array. This function is called from gfc_sym_type().
385    Actually returns array descriptor type.
386
387    Format of array descriptors is as follows:
388
389     struct gfc_array_descriptor
390     {
391       array *data
392       index offset;
393       index dtype;
394       struct descriptor_dimension dimension[N_DIM];
395     }
396
397     struct descriptor_dimension
398     {
399       index stride;
400       index lbound;
401       index ubound;
402     }
403
404    Translation code should use gfc_conv_descriptor_* rather than accessing
405    the descriptor directly. Any changes to the array descriptor type will
406    require changes in gfc_conv_descriptor_* and gfc_build_array_initializer.
407
408    This is represented internally as a RECORD_TYPE. The index nodes are
409    gfc_array_index_type and the data node is a pointer to the data. See below
410    for the handling of character types.
411
412    The dtype member is formatted as follows:
413     rank = dtype & GFC_DTYPE_RANK_MASK // 3 bits
414     type = (dtype & GFC_DTYPE_TYPE_MASK) >> GFC_DTYPE_TYPE_SHIFT // 3 bits
415     size = dtype >> GFC_DTYPE_SIZE_SHIFT
416
417    I originally used nested ARRAY_TYPE nodes to represent arrays, but this
418    generated poor code for assumed/deferred size arrays.  These require
419    use of PLACEHOLDER_EXPR/WITH_RECORD_EXPR, which isn't part of the GENERIC
420    grammar.  Also, there is no way to explicitly set the array stride, so
421    all data must be packed(1).  I've tried to mark all the functions which
422    would require modification with a GCC ARRAYS comment.
423
424    The data component points to the first element in the array.
425    The offset field is the position of the origin of the array
426    (ie element (0, 0 ...)).  This may be outsite the bounds of the array.
427
428    An element is accessed by
429    data[offset + index0*stride0 + index1*stride1 + index2*stride2]
430    This gives good performance as the computation does not involve the
431    bounds of the array.  For packed arrays, this is optimized further by
432    substituting the known strides.
433
434    This system has one problem: all array bounds must be withing 2^31 elements
435    of the origin (2^63 on 64-bit machines).  For example
436    integer, dimension (80000:90000, 80000:90000, 2) :: array
437    may not work properly on 32-bit machines because 80000*80000 > 2^31, so
438    the calculation for stride02 would overflow.  This may still work, but
439    I haven't checked, and it relies on the overflow doing the right thing.
440
441    The way to fix this problem is to access alements as follows:
442    data[(index0-lbound0)*stride0 + (index1-lbound1)*stride1]
443    Obviously this is much slower.  I will make this a compile time option,
444    something like -fsmall-array-offsets.  Mixing code compiled with and without
445    this switch will work.
446
447    (1) This can be worked around by modifying the upper bound of the previous
448    dimension.  This requires extra fields in the descriptor (both real_ubound
449    and fake_ubound).  In tree.def there is mention of TYPE_SEP, which
450    may allow us to do this.  However I can't find mention of this anywhere
451    else.
452  */
453
454
455 /* Returns true if the array sym does not require a descriptor.  */
456
457 int
458 gfc_is_nodesc_array (gfc_symbol * sym)
459 {
460   assert (sym->attr.dimension);
461
462   /* We only want local arrays.  */
463   if (sym->attr.pointer || sym->attr.allocatable)
464     return 0;
465
466   if (sym->attr.dummy)
467     {
468       if (sym->as->type != AS_ASSUMED_SHAPE)
469         return 1;
470       else
471         return 0;
472     }
473
474   if (sym->attr.result || sym->attr.function)
475     return 0;
476
477   if (sym->attr.pointer || sym->attr.allocatable)
478     return 0;
479
480   assert (sym->as->type == AS_EXPLICIT);
481
482   return 1;
483 }
484
485 static tree
486 gfc_build_array_type (tree type, gfc_array_spec * as)
487 {
488   tree lbound[GFC_MAX_DIMENSIONS];
489   tree ubound[GFC_MAX_DIMENSIONS];
490   int n;
491
492   for (n = 0; n < as->rank; n++)
493     {
494       /* Create expressions for the known bounds of the array.  */
495       if (as->type == AS_ASSUMED_SHAPE && as->lower[n] == NULL)
496         lbound[n] = integer_one_node;
497       else
498         lbound[n] = gfc_conv_array_bound (as->lower[n]);
499       ubound[n] = gfc_conv_array_bound (as->upper[n]);
500     }
501
502   return gfc_get_array_type_bounds (type, as->rank, lbound, ubound, 0);
503 }
504 \f
505 /* Returns the struct descriptor_dimension type.  */
506
507 static tree
508 gfc_get_desc_dim_type (void)
509 {
510   tree type;
511   tree decl;
512   tree fieldlist;
513
514   if (gfc_desc_dim_type)
515     return gfc_desc_dim_type;
516
517   /* Build the type node.  */
518   type = make_node (RECORD_TYPE);
519
520   TYPE_NAME (type) = get_identifier ("descriptor_dimension");
521   TYPE_PACKED (type) = 1;
522
523   /* Consists of the stride, lbound and ubound members.  */
524   decl = build_decl (FIELD_DECL,
525                      get_identifier ("stride"), gfc_array_index_type);
526   DECL_CONTEXT (decl) = type;
527   fieldlist = decl;
528
529   decl = build_decl (FIELD_DECL,
530                      get_identifier ("lbound"), gfc_array_index_type);
531   DECL_CONTEXT (decl) = type;
532   fieldlist = chainon (fieldlist, decl);
533
534   decl = build_decl (FIELD_DECL,
535                      get_identifier ("ubound"), gfc_array_index_type);
536   DECL_CONTEXT (decl) = type;
537   fieldlist = chainon (fieldlist, decl);
538
539   /* Finish off the type.  */
540   TYPE_FIELDS (type) = fieldlist;
541
542   gfc_finish_type (type);
543
544   gfc_desc_dim_type = type;
545   return type;
546 }
547
548 static tree
549 gfc_get_dtype (tree type, int rank)
550 {
551   tree size;
552   int n;
553   HOST_WIDE_INT i;
554   tree tmp;
555   tree dtype;
556
557   if (GFC_DESCRIPTOR_TYPE_P (type) || GFC_ARRAY_TYPE_P (type))
558     return (GFC_TYPE_ARRAY_DTYPE (type));
559
560   /* TODO: Correctly identify LOGICAL types.  */
561   switch (TREE_CODE (type))
562     {
563     case INTEGER_TYPE:
564       n = GFC_DTYPE_INTEGER;
565       break;
566
567     case BOOLEAN_TYPE:
568       n = GFC_DTYPE_LOGICAL;
569       break;
570
571     case REAL_TYPE:
572       n = GFC_DTYPE_REAL;
573       break;
574
575     case COMPLEX_TYPE:
576       n = GFC_DTYPE_COMPLEX;
577       break;
578
579     /* Arrays have already been dealt with.  */
580     case RECORD_TYPE:
581       n = GFC_DTYPE_DERIVED;
582       break;
583
584     case ARRAY_TYPE:
585       n = GFC_DTYPE_CHARACTER;
586       break;
587
588     default:
589       abort ();
590     }
591
592   assert (rank <= GFC_DTYPE_RANK_MASK);
593   size = TYPE_SIZE_UNIT (type);
594     
595   i = rank | (n << GFC_DTYPE_TYPE_SHIFT);
596   if (size && INTEGER_CST_P (size))
597     {
598       if (tree_int_cst_lt (gfc_max_array_element_size, size))
599         internal_error ("Array element size too big");
600
601       i += TREE_INT_CST_LOW (size) << GFC_DTYPE_SIZE_SHIFT;
602     }
603   dtype = build_int_2 (i, 0);
604   TREE_TYPE (dtype) = gfc_array_index_type;
605
606   if (size && !INTEGER_CST_P (size))
607     {
608       tmp = build_int_2 (GFC_DTYPE_SIZE_SHIFT, 0);
609       TREE_TYPE (tmp) = gfc_array_index_type;
610       tmp  = fold (build (LSHIFT_EXPR, gfc_array_index_type, size, tmp));
611       dtype = fold (build (PLUS_EXPR, gfc_array_index_type, tmp, dtype));
612     }
613   /* If we don't know the size we leave it as zero.  This should never happen
614      for anything that is actually used.  */
615   /* TODO: Check this is actually true, particularly when repacking
616      assumed size parameters.  */
617
618   return dtype;
619 }
620
621
622 /* Build an array type for use without a descriptor.  Valid values of packed
623    are 0=no, 1=partial, 2=full, 3=static.  */
624
625 tree
626 gfc_get_nodesc_array_type (tree etype, gfc_array_spec * as, int packed)
627 {
628   tree range;
629   tree type;
630   tree tmp;
631   int n;
632   int known_stride;
633   int known_offset;
634   mpz_t offset;
635   mpz_t stride;
636   mpz_t delta;
637   gfc_expr *expr;
638
639   mpz_init_set_ui (offset, 0);
640   mpz_init_set_ui (stride, 1);
641   mpz_init (delta);
642
643   /* We don't use build_array_type because this does not include include
644      lang-specific information (ie. the bounds of the array) when checking
645      for duplicates.  */
646   type = make_node (ARRAY_TYPE);
647
648   GFC_ARRAY_TYPE_P (type) = 1;
649   TYPE_LANG_SPECIFIC (type) = (struct lang_type *)
650     ggc_alloc_cleared (sizeof (struct lang_type));
651
652   known_stride = (packed != 0);
653   known_offset = 1;
654   for (n = 0; n < as->rank; n++)
655     {
656       /* Fill in the stride and bound components of the type.  */
657       if (known_stride)
658         tmp =  gfc_conv_mpz_to_tree (stride, gfc_index_integer_kind);
659       else
660         tmp = NULL_TREE;
661       GFC_TYPE_ARRAY_STRIDE (type, n) = tmp;
662
663       expr = as->lower[n];
664       if (expr->expr_type == EXPR_CONSTANT)
665         {
666           tmp = gfc_conv_mpz_to_tree (expr->value.integer,
667                                   gfc_index_integer_kind);
668         }
669       else
670         {
671           known_stride = 0;
672           tmp = NULL_TREE;
673         }
674       GFC_TYPE_ARRAY_LBOUND (type, n) = tmp;
675
676       if (known_stride)
677         {
678           /* Calculate the offset.  */
679           mpz_mul (delta, stride, as->lower[n]->value.integer);
680           mpz_sub (offset, offset, delta);
681         }
682       else
683         known_offset = 0;
684
685       expr = as->upper[n];
686       if (expr && expr->expr_type == EXPR_CONSTANT)
687         {
688           tmp = gfc_conv_mpz_to_tree (expr->value.integer,
689                                   gfc_index_integer_kind);
690         }
691       else
692         {
693           tmp = NULL_TREE;
694           known_stride = 0;
695         }
696       GFC_TYPE_ARRAY_UBOUND (type, n) = tmp;
697
698       if (known_stride)
699         {
700           /* Calculate the stride.  */
701           mpz_sub (delta, as->upper[n]->value.integer,
702                    as->lower[n]->value.integer);
703           mpz_add_ui (delta, delta, 1);
704           mpz_mul (stride, stride, delta);
705         }
706
707       /* Only the first stride is known for partial packed arrays.  */
708       if (packed < 2)
709         known_stride = 0;
710     }
711
712   if (known_offset)
713     {
714       GFC_TYPE_ARRAY_OFFSET (type) =
715         gfc_conv_mpz_to_tree (offset, gfc_index_integer_kind);
716     }
717   else
718     GFC_TYPE_ARRAY_OFFSET (type) = NULL_TREE;
719
720   if (known_stride)
721     {
722       GFC_TYPE_ARRAY_SIZE (type) =
723         gfc_conv_mpz_to_tree (stride, gfc_index_integer_kind);
724     }
725   else
726     GFC_TYPE_ARRAY_SIZE (type) = NULL_TREE;
727
728   GFC_TYPE_ARRAY_DTYPE (type) = gfc_get_dtype (etype, as->rank);
729   GFC_TYPE_ARRAY_RANK (type) = as->rank;
730   range = build_range_type (gfc_array_index_type, integer_zero_node,
731                             NULL_TREE);
732   /* TODO: use main type if it is unbounded.  */
733   GFC_TYPE_ARRAY_DATAPTR_TYPE (type) =
734     build_pointer_type (build_array_type (etype, range));
735
736   if (known_stride)
737     {
738       mpz_sub_ui (stride, stride, 1);
739       range = gfc_conv_mpz_to_tree (stride, gfc_index_integer_kind);
740     }
741   else
742     range = NULL_TREE;
743
744   range = build_range_type (gfc_array_index_type, integer_zero_node, range);
745   TYPE_DOMAIN (type) = range;
746
747   build_pointer_type (etype);
748   TREE_TYPE (type) = etype;
749
750   layout_type (type);
751
752   mpz_clear (offset);
753   mpz_clear (stride);
754   mpz_clear (delta);
755
756   if (packed < 3 || !known_stride)
757     {
758       type = build_pointer_type (type);
759       GFC_ARRAY_TYPE_P (type) = 1;
760       TYPE_LANG_SPECIFIC (type) = TYPE_LANG_SPECIFIC (TREE_TYPE (type));
761     }
762   return type;
763 }
764
765
766 /* Build an array (descriptor) type with given bounds.  */
767
768 tree
769 gfc_get_array_type_bounds (tree etype, int dimen, tree * lbound,
770                            tree * ubound, int packed)
771 {
772   tree fat_type, fat_pointer_type;
773   tree fieldlist;
774   tree arraytype;
775   tree decl;
776   int n;
777   char name[8 + GFC_RANK_DIGITS + GFC_MAX_SYMBOL_LEN];
778   const char *typename;
779   tree lower;
780   tree upper;
781   tree stride;
782   tree tmp;
783
784   /* Build the type node.  */
785   fat_type = make_node (RECORD_TYPE);
786   GFC_DESCRIPTOR_TYPE_P (fat_type) = 1;
787   TYPE_LANG_SPECIFIC (fat_type) = (struct lang_type *)
788     ggc_alloc_cleared (sizeof (struct lang_type));
789   GFC_TYPE_ARRAY_RANK (fat_type) = dimen;
790   GFC_TYPE_ARRAY_DTYPE (fat_type) = gfc_get_dtype (etype, dimen);
791
792   tmp = TYPE_NAME (etype);
793   if (tmp && TREE_CODE (tmp) == TYPE_DECL)
794     tmp = DECL_NAME (tmp);
795   if (tmp)
796     typename = IDENTIFIER_POINTER (tmp);
797   else
798     typename = "unknown";
799
800   sprintf (name, "array" GFC_RANK_PRINTF_FORMAT "_%.*s", dimen,
801            GFC_MAX_SYMBOL_LEN, typename);
802   TYPE_NAME (fat_type) = get_identifier (name);
803   TYPE_PACKED (fat_type) = 0;
804
805   fat_pointer_type = build_pointer_type (fat_type);
806
807   /* Build an array descriptor record type.  */
808   if (packed != 0)
809     stride = integer_one_node;
810   else
811     stride = NULL_TREE;
812
813   for (n = 0; n < dimen; n++)
814     {
815       GFC_TYPE_ARRAY_STRIDE (fat_type, n) = stride;
816
817       if (lbound)
818         lower = lbound[n];
819       else
820         lower = NULL_TREE;
821
822       if (lower != NULL_TREE)
823         {
824           if (INTEGER_CST_P (lower))
825             GFC_TYPE_ARRAY_LBOUND (fat_type, n) = lower;
826           else
827             lower = NULL_TREE;
828         }
829
830       upper = ubound[n];
831       if (upper != NULL_TREE)
832         {
833           if (INTEGER_CST_P (upper))
834             GFC_TYPE_ARRAY_UBOUND (fat_type, n) = upper;
835           else
836             upper = NULL_TREE;
837         }
838
839       if (upper != NULL_TREE && lower != NULL_TREE && stride != NULL_TREE)
840         {
841           tmp = fold (build (MINUS_EXPR, gfc_array_index_type, upper, lower));
842           tmp = fold (build (PLUS_EXPR, gfc_array_index_type, tmp,
843                              integer_one_node));
844           stride =
845             fold (build (MULT_EXPR, gfc_array_index_type, tmp, stride));
846           /* Check the folding worked.  */
847           assert (INTEGER_CST_P (stride));
848         }
849       else
850         stride = NULL_TREE;
851     }
852   GFC_TYPE_ARRAY_SIZE (fat_type) = stride;
853   /* TODO: known offsets for descriptors.  */
854   GFC_TYPE_ARRAY_OFFSET (fat_type) = NULL_TREE;
855
856   /* We define data as an unknown size array. Much better than doing
857      pointer arithmetic.  */
858   arraytype =
859     build_array_type (etype,
860                       build_range_type (gfc_array_index_type,
861                                         integer_zero_node, NULL_TREE));
862   arraytype = build_pointer_type (arraytype);
863   GFC_TYPE_ARRAY_DATAPTR_TYPE (fat_type) = arraytype;
864
865   /* The pointer to the array data.  */
866   decl = build_decl (FIELD_DECL, get_identifier ("data"), arraytype);
867
868   DECL_CONTEXT (decl) = fat_type;
869   /* Add the data member as the first element of the descriptor.  */
870   fieldlist = decl;
871
872   /* Add the base component.  */
873   decl = build_decl (FIELD_DECL, get_identifier ("offset"),
874                      gfc_array_index_type);
875   DECL_CONTEXT (decl) = fat_type;
876   fieldlist = chainon (fieldlist, decl);
877
878   /* Add the dtype component.  */
879   decl = build_decl (FIELD_DECL, get_identifier ("dtype"),
880                      gfc_array_index_type);
881   DECL_CONTEXT (decl) = fat_type;
882   fieldlist = chainon (fieldlist, decl);
883
884   /* Build the array type for the stride and bound components.  */
885   arraytype =
886     build_array_type (gfc_get_desc_dim_type (),
887                       build_range_type (gfc_array_index_type,
888                                         integer_zero_node,
889                                         gfc_rank_cst[dimen - 1]));
890
891   decl = build_decl (FIELD_DECL, get_identifier ("dim"), arraytype);
892   DECL_CONTEXT (decl) = fat_type;
893   DECL_INITIAL (decl) = NULL_TREE;
894   fieldlist = chainon (fieldlist, decl);
895
896   /* Finish off the type.  */
897   TYPE_FIELDS (fat_type) = fieldlist;
898
899   gfc_finish_type (fat_type);
900
901   return fat_type;
902 }
903 \f
904 /* Build a pointer type. This function is called from gfc_sym_type().  */
905
906 static tree
907 gfc_build_pointer_type (gfc_symbol * sym, tree type)
908 {
909   /* Array pointer types aren't actualy pointers.  */
910   if (sym->attr.dimension)
911     return type;
912   else
913     return build_pointer_type (type);
914 }
915 \f
916 /* Return the type for a symbol.  Special handling is required for character
917    types to get the correct level of indirection.
918    For functions return the return type.
919    For subroutines return void_type_node.  */
920
921 tree
922 gfc_sym_type (gfc_symbol * sym)
923 {
924   tree type;
925   int byref;
926
927   if (sym->attr.flavor == FL_PROCEDURE && !sym->attr.function)
928     return void_type_node;
929
930   if (sym->backend_decl)
931     {
932       if (sym->attr.function)
933         return TREE_TYPE (TREE_TYPE (sym->backend_decl));
934       else
935         return TREE_TYPE (sym->backend_decl);
936     }
937
938   /* The frontend doesn't set all the attributes for a function with an
939      explicit result value, so we use that instead when present.  */
940   if (sym->attr.function && sym->result)
941     sym = sym->result;
942
943   type = gfc_typenode_for_spec (&sym->ts);
944
945   if (sym->attr.dummy && !sym->attr.function)
946     byref = 1;
947   else
948     byref = 0;
949
950   if (sym->attr.dimension)
951     {
952       if (gfc_is_nodesc_array (sym))
953         {
954           /* If this is a character argument of unknown length, just use the
955              base type.  */
956           if (sym->ts.type != BT_CHARACTER
957               || !(sym->attr.dummy || sym->attr.function || sym->attr.result)
958               || sym->ts.cl->backend_decl)
959             {
960               type = gfc_get_nodesc_array_type (type, sym->as,
961                                                 byref ? 2 : 3);
962               byref = 0;
963             }
964         }
965       else
966         type = gfc_build_array_type (type, sym->as);
967     }
968   else
969     {
970       if (sym->attr.allocatable || sym->attr.pointer)
971         type = gfc_build_pointer_type (sym, type);
972     }
973
974   /* We currently pass all parameters by reference.
975      See f95_get_function_decl.  For dummy function parameters return the
976      function type.  */
977   if (byref)
978     type = build_reference_type (type);
979
980   return (type);
981 }
982 \f
983 /* Layout and output debug info for a record type.  */
984
985 void
986 gfc_finish_type (tree type)
987 {
988   tree decl;
989
990   decl = build_decl (TYPE_DECL, NULL_TREE, type);
991   TYPE_STUB_DECL (type) = decl;
992   layout_type (type);
993   rest_of_type_compilation (type, 1);
994   rest_of_decl_compilation (decl, NULL, 1, 0);
995 }
996 \f
997 /* Add a field of given NAME and TYPE to the context of a UNION_TYPE
998    or RECORD_TYPE pointed to by STYPE.  The new field is chained
999    to the fieldlist pointed to by FIELDLIST.
1000
1001    Returns a pointer to the new field.  */
1002
1003 tree
1004 gfc_add_field_to_struct (tree *fieldlist, tree context,
1005                          tree name, tree type)
1006 {
1007   tree decl;
1008
1009   decl = build_decl (FIELD_DECL, name, type);
1010
1011   DECL_CONTEXT (decl) = context;
1012   DECL_INITIAL (decl) = 0;
1013   DECL_ALIGN (decl) = 0;
1014   DECL_USER_ALIGN (decl) = 0;
1015   TREE_CHAIN (decl) = NULL_TREE;
1016   *fieldlist = chainon (*fieldlist, decl);
1017
1018   return decl;
1019 }
1020
1021
1022 /* Build a tree node for a derived type.  */
1023
1024 static tree
1025 gfc_get_derived_type (gfc_symbol * derived)
1026 {
1027   tree typenode, field, field_type, fieldlist;
1028   gfc_component *c;
1029
1030   assert (derived && derived->attr.flavor == FL_DERIVED);
1031
1032   /* derived->backend_decl != 0 means we saw it before, but its
1033   component's backend_decl may have not been built.  */
1034   if (derived->backend_decl)
1035     {
1036       /* Its component's backend_decl has been built.  */
1037       if (TYPE_FIELDS (derived->backend_decl))
1038         return derived->backend_decl;
1039       else
1040         typenode = derived->backend_decl;
1041     }
1042   else
1043     {
1044       /* We see this derived type first time, so build the type node.  */
1045       typenode = make_node (RECORD_TYPE);
1046       TYPE_NAME (typenode) = get_identifier (derived->name);
1047       TYPE_PACKED (typenode) = gfc_option.flag_pack_derived;
1048       derived->backend_decl = typenode;
1049     }
1050
1051   /* Build the type member list. Install the newly created RECORD_TYPE
1052      node as DECL_CONTEXT of each FIELD_DECL.  */
1053   fieldlist = NULL_TREE;
1054   for (c = derived->components; c; c = c->next)
1055     {
1056       if (c->ts.type == BT_DERIVED && c->pointer)
1057         {
1058           if (c->ts.derived->backend_decl)
1059             field_type = c->ts.derived->backend_decl;
1060           else
1061             {
1062               /* Build the type node.  */
1063               field_type = make_node (RECORD_TYPE);
1064               TYPE_NAME (field_type) = get_identifier (c->ts.derived->name);
1065               TYPE_PACKED (field_type) = gfc_option.flag_pack_derived;
1066               c->ts.derived->backend_decl = field_type;
1067             }
1068         }
1069       else
1070         {
1071           if (c->ts.type == BT_CHARACTER)
1072             {
1073               /* Evaluate the string length.  */
1074               gfc_conv_const_charlen (c->ts.cl);
1075               assert (c->ts.cl->backend_decl);
1076             }
1077
1078           field_type = gfc_typenode_for_spec (&c->ts);
1079         }
1080
1081       /* This returns an array descriptor type.  Initialisation may be
1082          required.  */
1083       if (c->dimension)
1084         {
1085           if (c->pointer)
1086             {
1087               /* Pointers to arrays aren't actualy pointer types.  The
1088                  descriptors are seperate, but the data is common.  */
1089               field_type = gfc_build_array_type (field_type, c->as);
1090             }
1091           else
1092             field_type = gfc_get_nodesc_array_type (field_type, c->as, 3);
1093         }
1094       else if (c->pointer)
1095         field_type = build_pointer_type (field_type);
1096
1097       field = gfc_add_field_to_struct (&fieldlist, typenode,
1098                                        get_identifier (c->name),
1099                                        field_type);
1100
1101       DECL_PACKED (field) |= TYPE_PACKED (typenode);
1102
1103       assert (!c->backend_decl);
1104       c->backend_decl = field;
1105     }
1106
1107   /* Now we have the final fieldlist.  Record it, then lay out the
1108      derived type, including the fields.  */
1109   TYPE_FIELDS (typenode) = fieldlist;
1110
1111   gfc_finish_type (typenode);
1112
1113   derived->backend_decl = typenode;
1114
1115   return typenode;
1116 }
1117 \f
1118 int
1119 gfc_return_by_reference (gfc_symbol * sym)
1120 {
1121   if (!sym->attr.function)
1122     return 0;
1123
1124   assert (sym->attr.function);
1125
1126   if (sym->result)
1127     sym = sym->result;
1128
1129   if (sym->attr.dimension)
1130     return 1;
1131
1132   if (sym->ts.type == BT_CHARACTER)
1133     return 1;
1134
1135   if (sym->ts.type == BT_DERIVED)
1136     gfc_todo_error ("Returning derived types");
1137   /* Possibly return derived types by reference.  */
1138   return 0;
1139 }
1140 \f
1141
1142 tree
1143 gfc_get_function_type (gfc_symbol * sym)
1144 {
1145   tree type;
1146   tree typelist;
1147   gfc_formal_arglist *f;
1148   gfc_symbol *arg;
1149   int nstr;
1150   int alternate_return;
1151
1152   /* Make sure this symbol is a function or a subroutine.  */
1153   assert (sym->attr.flavor == FL_PROCEDURE);
1154
1155   if (sym->backend_decl)
1156     return TREE_TYPE (sym->backend_decl);
1157
1158   nstr = 0;
1159   alternate_return = 0;
1160   typelist = NULL_TREE;
1161   /* Some functions we use an extra parameter for the return value.  */
1162   if (gfc_return_by_reference (sym))
1163     {
1164       if (sym->result)
1165         arg = sym->result;
1166       else
1167         arg = sym;
1168
1169       if (arg->ts.type == BT_CHARACTER)
1170         gfc_conv_const_charlen (arg->ts.cl);
1171
1172       type = gfc_sym_type (arg);
1173       if (arg->ts.type == BT_DERIVED
1174           || arg->attr.dimension
1175           || arg->ts.type == BT_CHARACTER)
1176         type = build_reference_type (type);
1177
1178       typelist = gfc_chainon_list (typelist, type);
1179       if (arg->ts.type == BT_CHARACTER)
1180         typelist = gfc_chainon_list (typelist, gfc_strlen_type_node);
1181     }
1182
1183   /* Build the argument types for the function */
1184   for (f = sym->formal; f; f = f->next)
1185     {
1186       arg = f->sym;
1187       if (arg)
1188         {
1189           /* Evaluate constant character lengths here so that they can be
1190              included in the type.  */
1191           if (arg->ts.type == BT_CHARACTER)
1192             gfc_conv_const_charlen (arg->ts.cl);
1193
1194           if (arg->attr.flavor == FL_PROCEDURE)
1195             {
1196               type = gfc_get_function_type (arg);
1197               type = build_pointer_type (type);
1198             }
1199           else
1200             type = gfc_sym_type (arg);
1201
1202           /* Parameter Passing Convention
1203
1204              We currently pass all parameters by reference.
1205              Parameters with INTENT(IN) could be passed by value.
1206              The problem arises if a function is called via an implicit
1207              prototype. In this situation the INTENT is not known.
1208              For this reason all parameters to global functions must be
1209              passed by reference.  Passing by value would potentialy
1210              generate bad code.  Worse there would be no way of telling that
1211              this code was bad, except that it would give incorrect results.
1212
1213              Contained procedures could pass by value as these are never
1214              used without an explicit interface, and connot be passed as
1215              actual parameters for a dummy procedure.  */
1216           if (arg->ts.type == BT_CHARACTER)
1217             nstr++;
1218           typelist = gfc_chainon_list (typelist, type);
1219         }
1220       else
1221         {
1222           if (sym->attr.subroutine)
1223             alternate_return = 1;
1224         }
1225     }
1226
1227   /* Add hidden string length parameters.  */
1228   while (nstr--)
1229     typelist = gfc_chainon_list (typelist, gfc_strlen_type_node);
1230
1231   typelist = gfc_chainon_list (typelist, void_type_node);
1232
1233   if (alternate_return)
1234     type = integer_type_node;
1235   else if (!sym->attr.function || gfc_return_by_reference (sym))
1236     type = void_type_node;
1237   else
1238     type = gfc_sym_type (sym);
1239
1240   type = build_function_type (type, typelist);
1241
1242   return type;
1243 }
1244 \f
1245 /* Routines for getting integer type nodes */
1246
1247
1248 /* Return an integer type with BITS bits of precision,
1249    that is unsigned if UNSIGNEDP is nonzero, otherwise signed.  */
1250
1251 tree
1252 gfc_type_for_size (unsigned bits, int unsignedp)
1253 {
1254   if (bits == TYPE_PRECISION (integer_type_node))
1255     return unsignedp ? unsigned_type_node : integer_type_node;
1256
1257   if (bits == TYPE_PRECISION (signed_char_type_node))
1258     return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1259
1260   if (bits == TYPE_PRECISION (short_integer_type_node))
1261     return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1262
1263   if (bits == TYPE_PRECISION (long_integer_type_node))
1264     return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1265
1266   if (bits == TYPE_PRECISION (long_long_integer_type_node))
1267     return (unsignedp ? long_long_unsigned_type_node
1268             : long_long_integer_type_node);
1269 /*TODO: We currently don't initialise this...
1270   if (bits == TYPE_PRECISION (widest_integer_literal_type_node))
1271     return (unsignedp ? widest_unsigned_literal_type_node
1272             : widest_integer_literal_type_node);*/
1273
1274   if (bits <= TYPE_PRECISION (intQI_type_node))
1275     return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1276
1277   if (bits <= TYPE_PRECISION (intHI_type_node))
1278     return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1279
1280   if (bits <= TYPE_PRECISION (intSI_type_node))
1281     return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1282
1283   if (bits <= TYPE_PRECISION (intDI_type_node))
1284     return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1285
1286   return 0;
1287 }
1288
1289 /* Return a data type that has machine mode MODE.
1290    If the mode is an integer,
1291    then UNSIGNEDP selects between signed and unsigned types.  */
1292
1293 tree
1294 gfc_type_for_mode (enum machine_mode mode, int unsignedp)
1295 {
1296   if (mode == TYPE_MODE (integer_type_node))
1297     return unsignedp ? unsigned_type_node : integer_type_node;
1298
1299   if (mode == TYPE_MODE (signed_char_type_node))
1300     return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1301
1302   if (mode == TYPE_MODE (short_integer_type_node))
1303     return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1304
1305   if (mode == TYPE_MODE (long_integer_type_node))
1306     return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1307
1308   if (mode == TYPE_MODE (long_long_integer_type_node))
1309     return unsignedp ? long_long_unsigned_type_node :
1310       long_long_integer_type_node;
1311
1312 /*TODO: see above
1313   if (mode == TYPE_MODE (widest_integer_literal_type_node))
1314     return unsignedp ? widest_unsigned_literal_type_node
1315                      : widest_integer_literal_type_node;
1316 */
1317
1318   if (mode == QImode)
1319     return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1320
1321   if (mode == HImode)
1322     return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1323
1324   if (mode == SImode)
1325     return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1326
1327   if (mode == DImode)
1328     return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1329
1330 #if HOST_BITS_PER_WIDE_INT >= 64
1331   if (mode == TYPE_MODE (intTI_type_node))
1332     return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
1333 #endif
1334
1335   if (mode == TYPE_MODE (float_type_node))
1336     return float_type_node;
1337
1338   if (mode == TYPE_MODE (double_type_node))
1339     return double_type_node;
1340
1341   if (mode == TYPE_MODE (long_double_type_node))
1342     return long_double_type_node;
1343
1344   if (mode == TYPE_MODE (build_pointer_type (char_type_node)))
1345     return build_pointer_type (char_type_node);
1346
1347   if (mode == TYPE_MODE (build_pointer_type (integer_type_node)))
1348     return build_pointer_type (integer_type_node);
1349
1350 #ifdef VECTOR_MODE_SUPPORTED_P
1351   if (VECTOR_MODE_SUPPORTED_P (mode))
1352     {
1353       switch (mode)
1354         {
1355         case V16QImode:
1356           return unsignedp ? unsigned_V16QI_type_node : V16QI_type_node;
1357         case V8HImode:
1358           return unsignedp ? unsigned_V8HI_type_node : V8HI_type_node;
1359         case V4SImode:
1360           return unsignedp ? unsigned_V4SI_type_node : V4SI_type_node;
1361         case V2DImode:
1362           return unsignedp ? unsigned_V2DI_type_node : V2DI_type_node;
1363         case V2SImode:
1364           return unsignedp ? unsigned_V2SI_type_node : V2SI_type_node;
1365         case V4HImode:
1366           return unsignedp ? unsigned_V4HI_type_node : V4HI_type_node;
1367         case V8QImode:
1368           return unsignedp ? unsigned_V8QI_type_node : V8QI_type_node;
1369         case V16SFmode:
1370           return V16SF_type_node;
1371         case V4SFmode:
1372           return V4SF_type_node;
1373         case V2SFmode:
1374           return V2SF_type_node;
1375         case V2DFmode:
1376           return V2DF_type_node;
1377         default:
1378           break;
1379         }
1380     }
1381 #endif
1382
1383   return 0;
1384 }
1385
1386 /* Return an unsigned type the same as TYPE in other respects.  */
1387
1388 tree
1389 gfc_unsigned_type (tree type)
1390 {
1391   tree type1 = TYPE_MAIN_VARIANT (type);
1392   if (type1 == signed_char_type_node || type1 == char_type_node)
1393     return unsigned_char_type_node;
1394   if (type1 == integer_type_node)
1395     return unsigned_type_node;
1396   if (type1 == short_integer_type_node)
1397     return short_unsigned_type_node;
1398   if (type1 == long_integer_type_node)
1399     return long_unsigned_type_node;
1400   if (type1 == long_long_integer_type_node)
1401     return long_long_unsigned_type_node;
1402 /*TODO :see others
1403   if (type1 == widest_integer_literal_type_node)
1404     return widest_unsigned_literal_type_node;
1405 */
1406 #if HOST_BITS_PER_WIDE_INT >= 64
1407   if (type1 == intTI_type_node)
1408     return unsigned_intTI_type_node;
1409 #endif
1410   if (type1 == intDI_type_node)
1411     return unsigned_intDI_type_node;
1412   if (type1 == intSI_type_node)
1413     return unsigned_intSI_type_node;
1414   if (type1 == intHI_type_node)
1415     return unsigned_intHI_type_node;
1416   if (type1 == intQI_type_node)
1417     return unsigned_intQI_type_node;
1418
1419   return gfc_signed_or_unsigned_type (1, type);
1420 }
1421
1422 /* Return a signed type the same as TYPE in other respects.  */
1423
1424 tree
1425 gfc_signed_type (tree type)
1426 {
1427   tree type1 = TYPE_MAIN_VARIANT (type);
1428   if (type1 == unsigned_char_type_node || type1 == char_type_node)
1429     return signed_char_type_node;
1430   if (type1 == unsigned_type_node)
1431     return integer_type_node;
1432   if (type1 == short_unsigned_type_node)
1433     return short_integer_type_node;
1434   if (type1 == long_unsigned_type_node)
1435     return long_integer_type_node;
1436   if (type1 == long_long_unsigned_type_node)
1437     return long_long_integer_type_node;
1438 /*TODO: see others
1439   if (type1 == widest_unsigned_literal_type_node)
1440     return widest_integer_literal_type_node;
1441 */
1442 #if HOST_BITS_PER_WIDE_INT >= 64
1443   if (type1 == unsigned_intTI_type_node)
1444     return intTI_type_node;
1445 #endif
1446   if (type1 == unsigned_intDI_type_node)
1447     return intDI_type_node;
1448   if (type1 == unsigned_intSI_type_node)
1449     return intSI_type_node;
1450   if (type1 == unsigned_intHI_type_node)
1451     return intHI_type_node;
1452   if (type1 == unsigned_intQI_type_node)
1453     return intQI_type_node;
1454
1455   return gfc_signed_or_unsigned_type (0, type);
1456 }
1457
1458 /* Return a type the same as TYPE except unsigned or
1459    signed according to UNSIGNEDP.  */
1460
1461 tree
1462 gfc_signed_or_unsigned_type (int unsignedp, tree type)
1463 {
1464   if (!INTEGRAL_TYPE_P (type) || TYPE_UNSIGNED (type) == unsignedp)
1465     return type;
1466
1467   if (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node))
1468     return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1469   if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1470     return unsignedp ? unsigned_type_node : integer_type_node;
1471   if (TYPE_PRECISION (type) == TYPE_PRECISION (short_integer_type_node))
1472     return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1473   if (TYPE_PRECISION (type) == TYPE_PRECISION (long_integer_type_node))
1474     return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1475   if (TYPE_PRECISION (type) == TYPE_PRECISION (long_long_integer_type_node))
1476     return (unsignedp ? long_long_unsigned_type_node
1477             : long_long_integer_type_node);
1478 /*TODO: see others
1479   if (TYPE_PRECISION (type) == TYPE_PRECISION (widest_integer_literal_type_node))
1480     return (unsignedp ? widest_unsigned_literal_type_node
1481             : widest_integer_literal_type_node);
1482 */
1483 #if HOST_BITS_PER_WIDE_INT >= 64
1484   if (TYPE_PRECISION (type) == TYPE_PRECISION (intTI_type_node))
1485     return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
1486 #endif
1487   if (TYPE_PRECISION (type) == TYPE_PRECISION (intDI_type_node))
1488     return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1489   if (TYPE_PRECISION (type) == TYPE_PRECISION (intSI_type_node))
1490     return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1491   if (TYPE_PRECISION (type) == TYPE_PRECISION (intHI_type_node))
1492     return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1493   if (TYPE_PRECISION (type) == TYPE_PRECISION (intQI_type_node))
1494     return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1495
1496   return type;
1497 }
1498
1499 #include "gt-fortran-trans-types.h"