OSDN Git Service

2011-10-18 Janus Weil <janus@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / fortran / symbol.c
1 /* Maintain binary trees of symbols.
2    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
3    2009, 2010, 2011
4    Free Software Foundation, Inc.
5    Contributed by Andy Vaught
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
13
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17 for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3.  If not see
21 <http://www.gnu.org/licenses/>.  */
22
23
24 #include "config.h"
25 #include "system.h"
26 #include "flags.h"
27 #include "gfortran.h"
28 #include "parse.h"
29 #include "match.h"
30 #include "constructor.h"
31
32
33 /* Strings for all symbol attributes.  We use these for dumping the
34    parse tree, in error messages, and also when reading and writing
35    modules.  */
36
37 const mstring flavors[] =
38 {
39   minit ("UNKNOWN-FL", FL_UNKNOWN), minit ("PROGRAM", FL_PROGRAM),
40   minit ("BLOCK-DATA", FL_BLOCK_DATA), minit ("MODULE", FL_MODULE),
41   minit ("VARIABLE", FL_VARIABLE), minit ("PARAMETER", FL_PARAMETER),
42   minit ("LABEL", FL_LABEL), minit ("PROCEDURE", FL_PROCEDURE),
43   minit ("DERIVED", FL_DERIVED), minit ("NAMELIST", FL_NAMELIST),
44   minit (NULL, -1)
45 };
46
47 const mstring procedures[] =
48 {
49     minit ("UNKNOWN-PROC", PROC_UNKNOWN),
50     minit ("MODULE-PROC", PROC_MODULE),
51     minit ("INTERNAL-PROC", PROC_INTERNAL),
52     minit ("DUMMY-PROC", PROC_DUMMY),
53     minit ("INTRINSIC-PROC", PROC_INTRINSIC),
54     minit ("EXTERNAL-PROC", PROC_EXTERNAL),
55     minit ("STATEMENT-PROC", PROC_ST_FUNCTION),
56     minit (NULL, -1)
57 };
58
59 const mstring intents[] =
60 {
61     minit ("UNKNOWN-INTENT", INTENT_UNKNOWN),
62     minit ("IN", INTENT_IN),
63     minit ("OUT", INTENT_OUT),
64     minit ("INOUT", INTENT_INOUT),
65     minit (NULL, -1)
66 };
67
68 const mstring access_types[] =
69 {
70     minit ("UNKNOWN-ACCESS", ACCESS_UNKNOWN),
71     minit ("PUBLIC", ACCESS_PUBLIC),
72     minit ("PRIVATE", ACCESS_PRIVATE),
73     minit (NULL, -1)
74 };
75
76 const mstring ifsrc_types[] =
77 {
78     minit ("UNKNOWN", IFSRC_UNKNOWN),
79     minit ("DECL", IFSRC_DECL),
80     minit ("BODY", IFSRC_IFBODY)
81 };
82
83 const mstring save_status[] =
84 {
85     minit ("UNKNOWN", SAVE_NONE),
86     minit ("EXPLICIT-SAVE", SAVE_EXPLICIT),
87     minit ("IMPLICIT-SAVE", SAVE_IMPLICIT),
88 };
89
90 /* This is to make sure the backend generates setup code in the correct
91    order.  */
92
93 static int next_dummy_order = 1;
94
95
96 gfc_namespace *gfc_current_ns;
97 gfc_namespace *gfc_global_ns_list;
98
99 gfc_gsymbol *gfc_gsym_root = NULL;
100
101 static gfc_symbol *changed_syms = NULL;
102
103 gfc_dt_list *gfc_derived_types;
104
105
106 /* List of tentative typebound-procedures.  */
107
108 typedef struct tentative_tbp
109 {
110   gfc_typebound_proc *proc;
111   struct tentative_tbp *next;
112 }
113 tentative_tbp;
114
115 static tentative_tbp *tentative_tbp_list = NULL;
116
117
118 /*********** IMPLICIT NONE and IMPLICIT statement handlers ***********/
119
120 /* The following static variable indicates whether a particular element has
121    been explicitly set or not.  */
122
123 static int new_flag[GFC_LETTERS];
124
125
126 /* Handle a correctly parsed IMPLICIT NONE.  */
127
128 void
129 gfc_set_implicit_none (void)
130 {
131   int i;
132
133   if (gfc_current_ns->seen_implicit_none)
134     {
135       gfc_error ("Duplicate IMPLICIT NONE statement at %C");
136       return;
137     }
138
139   gfc_current_ns->seen_implicit_none = 1;
140
141   for (i = 0; i < GFC_LETTERS; i++)
142     {
143       gfc_clear_ts (&gfc_current_ns->default_type[i]);
144       gfc_current_ns->set_flag[i] = 1;
145     }
146 }
147
148
149 /* Reset the implicit range flags.  */
150
151 void
152 gfc_clear_new_implicit (void)
153 {
154   int i;
155
156   for (i = 0; i < GFC_LETTERS; i++)
157     new_flag[i] = 0;
158 }
159
160
161 /* Prepare for a new implicit range.  Sets flags in new_flag[].  */
162
163 gfc_try
164 gfc_add_new_implicit_range (int c1, int c2)
165 {
166   int i;
167
168   c1 -= 'a';
169   c2 -= 'a';
170
171   for (i = c1; i <= c2; i++)
172     {
173       if (new_flag[i])
174         {
175           gfc_error ("Letter '%c' already set in IMPLICIT statement at %C",
176                      i + 'A');
177           return FAILURE;
178         }
179
180       new_flag[i] = 1;
181     }
182
183   return SUCCESS;
184 }
185
186
187 /* Add a matched implicit range for gfc_set_implicit().  Check if merging
188    the new implicit types back into the existing types will work.  */
189
190 gfc_try
191 gfc_merge_new_implicit (gfc_typespec *ts)
192 {
193   int i;
194
195   if (gfc_current_ns->seen_implicit_none)
196     {
197       gfc_error ("Cannot specify IMPLICIT at %C after IMPLICIT NONE");
198       return FAILURE;
199     }
200
201   for (i = 0; i < GFC_LETTERS; i++)
202     {
203       if (new_flag[i])
204         {
205           if (gfc_current_ns->set_flag[i])
206             {
207               gfc_error ("Letter %c already has an IMPLICIT type at %C",
208                          i + 'A');
209               return FAILURE;
210             }
211
212           gfc_current_ns->default_type[i] = *ts;
213           gfc_current_ns->implicit_loc[i] = gfc_current_locus;
214           gfc_current_ns->set_flag[i] = 1;
215         }
216     }
217   return SUCCESS;
218 }
219
220
221 /* Given a symbol, return a pointer to the typespec for its default type.  */
222
223 gfc_typespec *
224 gfc_get_default_type (const char *name, gfc_namespace *ns)
225 {
226   char letter;
227
228   letter = name[0];
229
230   if (gfc_option.flag_allow_leading_underscore && letter == '_')
231     gfc_internal_error ("Option -fallow-leading-underscore is for use only by "
232                         "gfortran developers, and should not be used for "
233                         "implicitly typed variables");
234
235   if (letter < 'a' || letter > 'z')
236     gfc_internal_error ("gfc_get_default_type(): Bad symbol '%s'", name);
237
238   if (ns == NULL)
239     ns = gfc_current_ns;
240
241   return &ns->default_type[letter - 'a'];
242 }
243
244
245 /* Given a pointer to a symbol, set its type according to the first
246    letter of its name.  Fails if the letter in question has no default
247    type.  */
248
249 gfc_try
250 gfc_set_default_type (gfc_symbol *sym, int error_flag, gfc_namespace *ns)
251 {
252   gfc_typespec *ts;
253
254   if (sym->ts.type != BT_UNKNOWN)
255     gfc_internal_error ("gfc_set_default_type(): symbol already has a type");
256
257   ts = gfc_get_default_type (sym->name, ns);
258
259   if (ts->type == BT_UNKNOWN)
260     {
261       if (error_flag && !sym->attr.untyped)
262         {
263           gfc_error ("Symbol '%s' at %L has no IMPLICIT type",
264                      sym->name, &sym->declared_at);
265           sym->attr.untyped = 1; /* Ensure we only give an error once.  */
266         }
267
268       return FAILURE;
269     }
270
271   sym->ts = *ts;
272   sym->attr.implicit_type = 1;
273
274   if (ts->type == BT_CHARACTER && ts->u.cl)
275     sym->ts.u.cl = gfc_new_charlen (sym->ns, ts->u.cl);
276
277   if (sym->attr.is_bind_c == 1)
278     {
279       /* BIND(C) variables should not be implicitly declared.  */
280       gfc_warning_now ("Implicitly declared BIND(C) variable '%s' at %L may "
281                        "not be C interoperable", sym->name, &sym->declared_at);
282       sym->ts.f90_type = sym->ts.type;
283     }
284
285   if (sym->attr.dummy != 0)
286     {
287       if (sym->ns->proc_name != NULL
288           && (sym->ns->proc_name->attr.subroutine != 0
289               || sym->ns->proc_name->attr.function != 0)
290           && sym->ns->proc_name->attr.is_bind_c != 0)
291         {
292           /* Dummy args to a BIND(C) routine may not be interoperable if
293              they are implicitly typed.  */
294           gfc_warning_now ("Implicitly declared variable '%s' at %L may not "
295                            "be C interoperable but it is a dummy argument to "
296                            "the BIND(C) procedure '%s' at %L", sym->name,
297                            &(sym->declared_at), sym->ns->proc_name->name,
298                            &(sym->ns->proc_name->declared_at));
299           sym->ts.f90_type = sym->ts.type;
300         }
301     }
302   
303   return SUCCESS;
304 }
305
306
307 /* This function is called from parse.c(parse_progunit) to check the
308    type of the function is not implicitly typed in the host namespace
309    and to implicitly type the function result, if necessary.  */
310
311 void
312 gfc_check_function_type (gfc_namespace *ns)
313 {
314   gfc_symbol *proc = ns->proc_name;
315
316   if (!proc->attr.contained || proc->result->attr.implicit_type)
317     return;
318
319   if (proc->result->ts.type == BT_UNKNOWN && proc->result->ts.interface == NULL)
320     {
321       if (gfc_set_default_type (proc->result, 0, gfc_current_ns)
322                 == SUCCESS)
323         {
324           if (proc->result != proc)
325             {
326               proc->ts = proc->result->ts;
327               proc->as = gfc_copy_array_spec (proc->result->as);
328               proc->attr.dimension = proc->result->attr.dimension;
329               proc->attr.pointer = proc->result->attr.pointer;
330               proc->attr.allocatable = proc->result->attr.allocatable;
331             }
332         }
333       else if (!proc->result->attr.proc_pointer)
334         {
335           gfc_error ("Function result '%s' at %L has no IMPLICIT type",
336                      proc->result->name, &proc->result->declared_at);
337           proc->result->attr.untyped = 1;
338         }
339     }
340 }
341
342
343 /******************** Symbol attribute stuff *********************/
344
345 /* This is a generic conflict-checker.  We do this to avoid having a
346    single conflict in two places.  */
347
348 #define conf(a, b) if (attr->a && attr->b) { a1 = a; a2 = b; goto conflict; }
349 #define conf2(a) if (attr->a) { a2 = a; goto conflict; }
350 #define conf_std(a, b, std) if (attr->a && attr->b)\
351                               {\
352                                 a1 = a;\
353                                 a2 = b;\
354                                 standard = std;\
355                                 goto conflict_std;\
356                               }
357
358 static gfc_try
359 check_conflict (symbol_attribute *attr, const char *name, locus *where)
360 {
361   static const char *dummy = "DUMMY", *save = "SAVE", *pointer = "POINTER",
362     *target = "TARGET", *external = "EXTERNAL", *intent = "INTENT",
363     *intent_in = "INTENT(IN)", *intrinsic = "INTRINSIC",
364     *intent_out = "INTENT(OUT)", *intent_inout = "INTENT(INOUT)",
365     *allocatable = "ALLOCATABLE", *elemental = "ELEMENTAL",
366     *privat = "PRIVATE", *recursive = "RECURSIVE",
367     *in_common = "COMMON", *result = "RESULT", *in_namelist = "NAMELIST",
368     *publik = "PUBLIC", *optional = "OPTIONAL", *entry = "ENTRY",
369     *function = "FUNCTION", *subroutine = "SUBROUTINE",
370     *dimension = "DIMENSION", *in_equivalence = "EQUIVALENCE",
371     *use_assoc = "USE ASSOCIATED", *cray_pointer = "CRAY POINTER",
372     *cray_pointee = "CRAY POINTEE", *data = "DATA", *value = "VALUE",
373     *volatile_ = "VOLATILE", *is_protected = "PROTECTED",
374     *is_bind_c = "BIND(C)", *procedure = "PROCEDURE",
375     *asynchronous = "ASYNCHRONOUS", *codimension = "CODIMENSION",
376     *contiguous = "CONTIGUOUS", *generic = "GENERIC";
377   static const char *threadprivate = "THREADPRIVATE";
378
379   const char *a1, *a2;
380   int standard;
381
382   if (where == NULL)
383     where = &gfc_current_locus;
384
385   if (attr->pointer && attr->intent != INTENT_UNKNOWN)
386     {
387       a1 = pointer;
388       a2 = intent;
389       standard = GFC_STD_F2003;
390       goto conflict_std;
391     }
392
393   if (attr->in_namelist && (attr->allocatable || attr->pointer))
394     {
395       a1 = in_namelist;
396       a2 = attr->allocatable ? allocatable : pointer;
397       standard = GFC_STD_F2003;
398       goto conflict_std;
399     }
400
401   /* Check for attributes not allowed in a BLOCK DATA.  */
402   if (gfc_current_state () == COMP_BLOCK_DATA)
403     {
404       a1 = NULL;
405
406       if (attr->in_namelist)
407         a1 = in_namelist;
408       if (attr->allocatable)
409         a1 = allocatable;
410       if (attr->external)
411         a1 = external;
412       if (attr->optional)
413         a1 = optional;
414       if (attr->access == ACCESS_PRIVATE)
415         a1 = privat;
416       if (attr->access == ACCESS_PUBLIC)
417         a1 = publik;
418       if (attr->intent != INTENT_UNKNOWN)
419         a1 = intent;
420
421       if (a1 != NULL)
422         {
423           gfc_error
424             ("%s attribute not allowed in BLOCK DATA program unit at %L",
425              a1, where);
426           return FAILURE;
427         }
428     }
429
430   if (attr->save == SAVE_EXPLICIT)
431     {
432       conf (dummy, save);
433       conf (in_common, save);
434       conf (result, save);
435
436       switch (attr->flavor)
437         {
438           case FL_PROGRAM:
439           case FL_BLOCK_DATA:
440           case FL_MODULE:
441           case FL_LABEL:
442           case FL_DERIVED:
443           case FL_PARAMETER:
444             a1 = gfc_code2string (flavors, attr->flavor);
445             a2 = save;
446             goto conflict;
447
448           case FL_PROCEDURE:
449             /* Conflicts between SAVE and PROCEDURE will be checked at
450                resolution stage, see "resolve_fl_procedure".  */
451           case FL_VARIABLE:
452           case FL_NAMELIST:
453           default:
454             break;
455         }
456     }
457
458   conf (dummy, entry);
459   conf (dummy, intrinsic);
460   conf (dummy, threadprivate);
461   conf (pointer, target);
462   conf (pointer, intrinsic);
463   conf (pointer, elemental);
464   conf (allocatable, elemental);
465
466   conf (target, external);
467   conf (target, intrinsic);
468
469   if (!attr->if_source)
470     conf (external, dimension);   /* See Fortran 95's R504.  */
471
472   conf (external, intrinsic);
473   conf (entry, intrinsic);
474
475   if ((attr->if_source == IFSRC_DECL && !attr->procedure) || attr->contained)
476     conf (external, subroutine);
477
478   if (attr->proc_pointer && gfc_notify_std (GFC_STD_F2003,
479                             "Fortran 2003: Procedure pointer at %C") == FAILURE)
480     return FAILURE;
481
482   conf (allocatable, pointer);
483   conf_std (allocatable, dummy, GFC_STD_F2003);
484   conf_std (allocatable, function, GFC_STD_F2003);
485   conf_std (allocatable, result, GFC_STD_F2003);
486   conf (elemental, recursive);
487
488   conf (in_common, dummy);
489   conf (in_common, allocatable);
490   conf (in_common, codimension);
491   conf (in_common, result);
492
493   conf (in_equivalence, use_assoc);
494   conf (in_equivalence, codimension);
495   conf (in_equivalence, dummy);
496   conf (in_equivalence, target);
497   conf (in_equivalence, pointer);
498   conf (in_equivalence, function);
499   conf (in_equivalence, result);
500   conf (in_equivalence, entry);
501   conf (in_equivalence, allocatable);
502   conf (in_equivalence, threadprivate);
503
504   conf (dummy, result);
505   conf (entry, result);
506   conf (generic, result);
507
508   conf (function, subroutine);
509
510   if (!function && !subroutine)
511     conf (is_bind_c, dummy);
512
513   conf (is_bind_c, cray_pointer);
514   conf (is_bind_c, cray_pointee);
515   conf (is_bind_c, codimension);
516   conf (is_bind_c, allocatable);
517   conf (is_bind_c, elemental);
518
519   /* Need to also get volatile attr, according to 5.1 of F2003 draft.
520      Parameter conflict caught below.  Also, value cannot be specified
521      for a dummy procedure.  */
522
523   /* Cray pointer/pointee conflicts.  */
524   conf (cray_pointer, cray_pointee);
525   conf (cray_pointer, dimension);
526   conf (cray_pointer, codimension);
527   conf (cray_pointer, contiguous);
528   conf (cray_pointer, pointer);
529   conf (cray_pointer, target);
530   conf (cray_pointer, allocatable);
531   conf (cray_pointer, external);
532   conf (cray_pointer, intrinsic);
533   conf (cray_pointer, in_namelist);
534   conf (cray_pointer, function);
535   conf (cray_pointer, subroutine);
536   conf (cray_pointer, entry);
537
538   conf (cray_pointee, allocatable);
539   conf (cray_pointer, contiguous);
540   conf (cray_pointer, codimension);
541   conf (cray_pointee, intent);
542   conf (cray_pointee, optional);
543   conf (cray_pointee, dummy);
544   conf (cray_pointee, target);
545   conf (cray_pointee, intrinsic);
546   conf (cray_pointee, pointer);
547   conf (cray_pointee, entry);
548   conf (cray_pointee, in_common);
549   conf (cray_pointee, in_equivalence);
550   conf (cray_pointee, threadprivate);
551
552   conf (data, dummy);
553   conf (data, function);
554   conf (data, result);
555   conf (data, allocatable);
556
557   conf (value, pointer)
558   conf (value, allocatable)
559   conf (value, subroutine)
560   conf (value, function)
561   conf (value, volatile_)
562   conf (value, dimension)
563   conf (value, codimension)
564   conf (value, external)
565
566   conf (codimension, result)
567
568   if (attr->value
569       && (attr->intent == INTENT_OUT || attr->intent == INTENT_INOUT))
570     {
571       a1 = value;
572       a2 = attr->intent == INTENT_OUT ? intent_out : intent_inout;
573       goto conflict;
574     }
575
576   conf (is_protected, intrinsic)
577   conf (is_protected, in_common)
578
579   conf (asynchronous, intrinsic)
580   conf (asynchronous, external)
581
582   conf (volatile_, intrinsic)
583   conf (volatile_, external)
584
585   if (attr->volatile_ && attr->intent == INTENT_IN)
586     {
587       a1 = volatile_;
588       a2 = intent_in;
589       goto conflict;
590     }
591
592   conf (procedure, allocatable)
593   conf (procedure, dimension)
594   conf (procedure, codimension)
595   conf (procedure, intrinsic)
596   conf (procedure, target)
597   conf (procedure, value)
598   conf (procedure, volatile_)
599   conf (procedure, asynchronous)
600   conf (procedure, entry)
601
602   a1 = gfc_code2string (flavors, attr->flavor);
603
604   if (attr->in_namelist
605       && attr->flavor != FL_VARIABLE
606       && attr->flavor != FL_PROCEDURE
607       && attr->flavor != FL_UNKNOWN)
608     {
609       a2 = in_namelist;
610       goto conflict;
611     }
612
613   switch (attr->flavor)
614     {
615     case FL_PROGRAM:
616     case FL_BLOCK_DATA:
617     case FL_MODULE:
618     case FL_LABEL:
619       conf2 (codimension);
620       conf2 (dimension);
621       conf2 (dummy);
622       conf2 (volatile_);
623       conf2 (asynchronous);
624       conf2 (contiguous);
625       conf2 (pointer);
626       conf2 (is_protected);
627       conf2 (target);
628       conf2 (external);
629       conf2 (intrinsic);
630       conf2 (allocatable);
631       conf2 (result);
632       conf2 (in_namelist);
633       conf2 (optional);
634       conf2 (function);
635       conf2 (subroutine);
636       conf2 (threadprivate);
637
638       if (attr->access == ACCESS_PUBLIC || attr->access == ACCESS_PRIVATE)
639         {
640           a2 = attr->access == ACCESS_PUBLIC ? publik : privat;
641           gfc_error ("%s attribute applied to %s %s at %L", a2, a1,
642             name, where);
643           return FAILURE;
644         }
645
646       if (attr->is_bind_c)
647         {
648           gfc_error_now ("BIND(C) applied to %s %s at %L", a1, name, where);
649           return FAILURE;
650         }
651
652       break;
653
654     case FL_VARIABLE:
655       break;
656
657     case FL_NAMELIST:
658       conf2 (result);
659       break;
660
661     case FL_PROCEDURE:
662       /* Conflicts with INTENT, SAVE and RESULT will be checked
663          at resolution stage, see "resolve_fl_procedure".  */
664
665       if (attr->subroutine)
666         {
667           a1 = subroutine;
668           conf2 (target);
669           conf2 (allocatable);
670           conf2 (volatile_);
671           conf2 (asynchronous);
672           conf2 (in_namelist);
673           conf2 (codimension);
674           conf2 (dimension);
675           conf2 (function);
676           if (!attr->proc_pointer)
677             conf2 (threadprivate);
678         }
679
680       if (!attr->proc_pointer)
681         conf2 (in_common);
682
683       switch (attr->proc)
684         {
685         case PROC_ST_FUNCTION:
686           conf2 (dummy);
687           conf2 (target);
688           break;
689
690         case PROC_MODULE:
691           conf2 (dummy);
692           break;
693
694         case PROC_DUMMY:
695           conf2 (result);
696           conf2 (threadprivate);
697           break;
698
699         default:
700           break;
701         }
702
703       break;
704
705     case FL_DERIVED:
706       conf2 (dummy);
707       conf2 (pointer);
708       conf2 (target);
709       conf2 (external);
710       conf2 (intrinsic);
711       conf2 (allocatable);
712       conf2 (optional);
713       conf2 (entry);
714       conf2 (function);
715       conf2 (subroutine);
716       conf2 (threadprivate);
717       conf2 (result);
718
719       if (attr->intent != INTENT_UNKNOWN)
720         {
721           a2 = intent;
722           goto conflict;
723         }
724       break;
725
726     case FL_PARAMETER:
727       conf2 (external);
728       conf2 (intrinsic);
729       conf2 (optional);
730       conf2 (allocatable);
731       conf2 (function);
732       conf2 (subroutine);
733       conf2 (entry);
734       conf2 (contiguous);
735       conf2 (pointer);
736       conf2 (is_protected);
737       conf2 (target);
738       conf2 (dummy);
739       conf2 (in_common);
740       conf2 (value);
741       conf2 (volatile_);
742       conf2 (asynchronous);
743       conf2 (threadprivate);
744       conf2 (value);
745       conf2 (is_bind_c);
746       conf2 (codimension);
747       conf2 (result);
748       break;
749
750     default:
751       break;
752     }
753
754   return SUCCESS;
755
756 conflict:
757   if (name == NULL)
758     gfc_error ("%s attribute conflicts with %s attribute at %L",
759                a1, a2, where);
760   else
761     gfc_error ("%s attribute conflicts with %s attribute in '%s' at %L",
762                a1, a2, name, where);
763
764   return FAILURE;
765
766 conflict_std:
767   if (name == NULL)
768     {
769       return gfc_notify_std (standard, "Fortran 2003: %s attribute "
770                              "with %s attribute at %L", a1, a2,
771                              where);
772     }
773   else
774     {
775       return gfc_notify_std (standard, "Fortran 2003: %s attribute "
776                              "with %s attribute in '%s' at %L",
777                              a1, a2, name, where);
778     }
779 }
780
781 #undef conf
782 #undef conf2
783 #undef conf_std
784
785
786 /* Mark a symbol as referenced.  */
787
788 void
789 gfc_set_sym_referenced (gfc_symbol *sym)
790 {
791
792   if (sym->attr.referenced)
793     return;
794
795   sym->attr.referenced = 1;
796
797   /* Remember which order dummy variables are accessed in.  */
798   if (sym->attr.dummy)
799     sym->dummy_order = next_dummy_order++;
800 }
801
802
803 /* Common subroutine called by attribute changing subroutines in order
804    to prevent them from changing a symbol that has been
805    use-associated.  Returns zero if it is OK to change the symbol,
806    nonzero if not.  */
807
808 static int
809 check_used (symbol_attribute *attr, const char *name, locus *where)
810 {
811
812   if (attr->use_assoc == 0)
813     return 0;
814
815   if (where == NULL)
816     where = &gfc_current_locus;
817
818   if (name == NULL)
819     gfc_error ("Cannot change attributes of USE-associated symbol at %L",
820                where);
821   else
822     gfc_error ("Cannot change attributes of USE-associated symbol %s at %L",
823                name, where);
824
825   return 1;
826 }
827
828
829 /* Generate an error because of a duplicate attribute.  */
830
831 static void
832 duplicate_attr (const char *attr, locus *where)
833 {
834
835   if (where == NULL)
836     where = &gfc_current_locus;
837
838   gfc_error ("Duplicate %s attribute specified at %L", attr, where);
839 }
840
841
842 gfc_try
843 gfc_add_ext_attribute (symbol_attribute *attr, ext_attr_id_t ext_attr,
844                        locus *where ATTRIBUTE_UNUSED)
845 {
846   attr->ext_attr |= 1 << ext_attr;
847   return SUCCESS;
848 }
849
850
851 /* Called from decl.c (attr_decl1) to check attributes, when declared
852    separately.  */
853
854 gfc_try
855 gfc_add_attribute (symbol_attribute *attr, locus *where)
856 {
857   if (check_used (attr, NULL, where))
858     return FAILURE;
859
860   return check_conflict (attr, NULL, where);
861 }
862
863
864 gfc_try
865 gfc_add_allocatable (symbol_attribute *attr, locus *where)
866 {
867
868   if (check_used (attr, NULL, where))
869     return FAILURE;
870
871   if (attr->allocatable)
872     {
873       duplicate_attr ("ALLOCATABLE", where);
874       return FAILURE;
875     }
876
877   if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
878       && gfc_find_state (COMP_INTERFACE) == FAILURE)
879     {
880       gfc_error ("ALLOCATABLE specified outside of INTERFACE body at %L",
881                  where);
882       return FAILURE;
883     }
884
885   attr->allocatable = 1;
886   return check_conflict (attr, NULL, where);
887 }
888
889
890 gfc_try
891 gfc_add_codimension (symbol_attribute *attr, const char *name, locus *where)
892 {
893
894   if (check_used (attr, name, where))
895     return FAILURE;
896
897   if (attr->codimension)
898     {
899       duplicate_attr ("CODIMENSION", where);
900       return FAILURE;
901     }
902
903   if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
904       && gfc_find_state (COMP_INTERFACE) == FAILURE)
905     {
906       gfc_error ("CODIMENSION specified for '%s' outside its INTERFACE body "
907                  "at %L", name, where);
908       return FAILURE;
909     }
910
911   attr->codimension = 1;
912   return check_conflict (attr, name, where);
913 }
914
915
916 gfc_try
917 gfc_add_dimension (symbol_attribute *attr, const char *name, locus *where)
918 {
919
920   if (check_used (attr, name, where))
921     return FAILURE;
922
923   if (attr->dimension)
924     {
925       duplicate_attr ("DIMENSION", where);
926       return FAILURE;
927     }
928
929   if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
930       && gfc_find_state (COMP_INTERFACE) == FAILURE)
931     {
932       gfc_error ("DIMENSION specified for '%s' outside its INTERFACE body "
933                  "at %L", name, where);
934       return FAILURE;
935     }
936
937   attr->dimension = 1;
938   return check_conflict (attr, name, where);
939 }
940
941
942 gfc_try
943 gfc_add_contiguous (symbol_attribute *attr, const char *name, locus *where)
944 {
945
946   if (check_used (attr, name, where))
947     return FAILURE;
948
949   attr->contiguous = 1;
950   return check_conflict (attr, name, where);
951 }
952
953
954 gfc_try
955 gfc_add_external (symbol_attribute *attr, locus *where)
956 {
957
958   if (check_used (attr, NULL, where))
959     return FAILURE;
960
961   if (attr->external)
962     {
963       duplicate_attr ("EXTERNAL", where);
964       return FAILURE;
965     }
966
967   if (attr->pointer && attr->if_source != IFSRC_IFBODY)
968     {
969       attr->pointer = 0;
970       attr->proc_pointer = 1;
971     }
972
973   attr->external = 1;
974
975   return check_conflict (attr, NULL, where);
976 }
977
978
979 gfc_try
980 gfc_add_intrinsic (symbol_attribute *attr, locus *where)
981 {
982
983   if (check_used (attr, NULL, where))
984     return FAILURE;
985
986   if (attr->intrinsic)
987     {
988       duplicate_attr ("INTRINSIC", where);
989       return FAILURE;
990     }
991
992   attr->intrinsic = 1;
993
994   return check_conflict (attr, NULL, where);
995 }
996
997
998 gfc_try
999 gfc_add_optional (symbol_attribute *attr, locus *where)
1000 {
1001
1002   if (check_used (attr, NULL, where))
1003     return FAILURE;
1004
1005   if (attr->optional)
1006     {
1007       duplicate_attr ("OPTIONAL", where);
1008       return FAILURE;
1009     }
1010
1011   attr->optional = 1;
1012   return check_conflict (attr, NULL, where);
1013 }
1014
1015
1016 gfc_try
1017 gfc_add_pointer (symbol_attribute *attr, locus *where)
1018 {
1019
1020   if (check_used (attr, NULL, where))
1021     return FAILURE;
1022
1023   if (attr->pointer && !(attr->if_source == IFSRC_IFBODY
1024       && gfc_find_state (COMP_INTERFACE) == FAILURE))
1025     {
1026       duplicate_attr ("POINTER", where);
1027       return FAILURE;
1028     }
1029
1030   if (attr->procedure || (attr->external && attr->if_source != IFSRC_IFBODY)
1031       || (attr->if_source == IFSRC_IFBODY
1032       && gfc_find_state (COMP_INTERFACE) == FAILURE))
1033     attr->proc_pointer = 1;
1034   else
1035     attr->pointer = 1;
1036
1037   return check_conflict (attr, NULL, where);
1038 }
1039
1040
1041 gfc_try
1042 gfc_add_cray_pointer (symbol_attribute *attr, locus *where)
1043 {
1044
1045   if (check_used (attr, NULL, where))
1046     return FAILURE;
1047
1048   attr->cray_pointer = 1;
1049   return check_conflict (attr, NULL, where);
1050 }
1051
1052
1053 gfc_try
1054 gfc_add_cray_pointee (symbol_attribute *attr, locus *where)
1055 {
1056
1057   if (check_used (attr, NULL, where))
1058     return FAILURE;
1059
1060   if (attr->cray_pointee)
1061     {
1062       gfc_error ("Cray Pointee at %L appears in multiple pointer()"
1063                  " statements", where);
1064       return FAILURE;
1065     }
1066
1067   attr->cray_pointee = 1;
1068   return check_conflict (attr, NULL, where);
1069 }
1070
1071
1072 gfc_try
1073 gfc_add_protected (symbol_attribute *attr, const char *name, locus *where)
1074 {
1075   if (check_used (attr, name, where))
1076     return FAILURE;
1077
1078   if (attr->is_protected)
1079     {
1080         if (gfc_notify_std (GFC_STD_LEGACY, 
1081                             "Duplicate PROTECTED attribute specified at %L",
1082                             where) 
1083             == FAILURE)
1084           return FAILURE;
1085     }
1086
1087   attr->is_protected = 1;
1088   return check_conflict (attr, name, where);
1089 }
1090
1091
1092 gfc_try
1093 gfc_add_result (symbol_attribute *attr, const char *name, locus *where)
1094 {
1095
1096   if (check_used (attr, name, where))
1097     return FAILURE;
1098
1099   attr->result = 1;
1100   return check_conflict (attr, name, where);
1101 }
1102
1103
1104 gfc_try
1105 gfc_add_save (symbol_attribute *attr, save_state s, const char *name,
1106               locus *where)
1107 {
1108
1109   if (check_used (attr, name, where))
1110     return FAILURE;
1111
1112   if (s == SAVE_EXPLICIT && gfc_pure (NULL))
1113     {
1114       gfc_error
1115         ("SAVE attribute at %L cannot be specified in a PURE procedure",
1116          where);
1117       return FAILURE;
1118     }
1119
1120   if (s == SAVE_EXPLICIT && gfc_implicit_pure (NULL))
1121     gfc_current_ns->proc_name->attr.implicit_pure = 0;
1122
1123   if (s == SAVE_EXPLICIT && attr->save == SAVE_EXPLICIT)
1124     {
1125         if (gfc_notify_std (GFC_STD_LEGACY, 
1126                             "Duplicate SAVE attribute specified at %L",
1127                             where) 
1128             == FAILURE)
1129           return FAILURE;
1130     }
1131
1132   attr->save = s;
1133   return check_conflict (attr, name, where);
1134 }
1135
1136
1137 gfc_try
1138 gfc_add_value (symbol_attribute *attr, const char *name, locus *where)
1139 {
1140
1141   if (check_used (attr, name, where))
1142     return FAILURE;
1143
1144   if (attr->value)
1145     {
1146         if (gfc_notify_std (GFC_STD_LEGACY, 
1147                             "Duplicate VALUE attribute specified at %L",
1148                             where) 
1149             == FAILURE)
1150           return FAILURE;
1151     }
1152
1153   attr->value = 1;
1154   return check_conflict (attr, name, where);
1155 }
1156
1157
1158 gfc_try
1159 gfc_add_volatile (symbol_attribute *attr, const char *name, locus *where)
1160 {
1161   /* No check_used needed as 11.2.1 of the F2003 standard allows
1162      that the local identifier made accessible by a use statement can be
1163      given a VOLATILE attribute - unless it is a coarray (F2008, C560).  */
1164
1165   if (attr->volatile_ && attr->volatile_ns == gfc_current_ns)
1166     if (gfc_notify_std (GFC_STD_LEGACY, 
1167                         "Duplicate VOLATILE attribute specified at %L", where)
1168         == FAILURE)
1169       return FAILURE;
1170
1171   attr->volatile_ = 1;
1172   attr->volatile_ns = gfc_current_ns;
1173   return check_conflict (attr, name, where);
1174 }
1175
1176
1177 gfc_try
1178 gfc_add_asynchronous (symbol_attribute *attr, const char *name, locus *where)
1179 {
1180   /* No check_used needed as 11.2.1 of the F2003 standard allows
1181      that the local identifier made accessible by a use statement can be
1182      given a ASYNCHRONOUS attribute.  */
1183
1184   if (attr->asynchronous && attr->asynchronous_ns == gfc_current_ns)
1185     if (gfc_notify_std (GFC_STD_LEGACY, 
1186                         "Duplicate ASYNCHRONOUS attribute specified at %L",
1187                         where) == FAILURE)
1188       return FAILURE;
1189
1190   attr->asynchronous = 1;
1191   attr->asynchronous_ns = gfc_current_ns;
1192   return check_conflict (attr, name, where);
1193 }
1194
1195
1196 gfc_try
1197 gfc_add_threadprivate (symbol_attribute *attr, const char *name, locus *where)
1198 {
1199
1200   if (check_used (attr, name, where))
1201     return FAILURE;
1202
1203   if (attr->threadprivate)
1204     {
1205       duplicate_attr ("THREADPRIVATE", where);
1206       return FAILURE;
1207     }
1208
1209   attr->threadprivate = 1;
1210   return check_conflict (attr, name, where);
1211 }
1212
1213
1214 gfc_try
1215 gfc_add_target (symbol_attribute *attr, locus *where)
1216 {
1217
1218   if (check_used (attr, NULL, where))
1219     return FAILURE;
1220
1221   if (attr->target)
1222     {
1223       duplicate_attr ("TARGET", where);
1224       return FAILURE;
1225     }
1226
1227   attr->target = 1;
1228   return check_conflict (attr, NULL, where);
1229 }
1230
1231
1232 gfc_try
1233 gfc_add_dummy (symbol_attribute *attr, const char *name, locus *where)
1234 {
1235
1236   if (check_used (attr, name, where))
1237     return FAILURE;
1238
1239   /* Duplicate dummy arguments are allowed due to ENTRY statements.  */
1240   attr->dummy = 1;
1241   return check_conflict (attr, name, where);
1242 }
1243
1244
1245 gfc_try
1246 gfc_add_in_common (symbol_attribute *attr, const char *name, locus *where)
1247 {
1248
1249   if (check_used (attr, name, where))
1250     return FAILURE;
1251
1252   /* Duplicate attribute already checked for.  */
1253   attr->in_common = 1;
1254   return check_conflict (attr, name, where);
1255 }
1256
1257
1258 gfc_try
1259 gfc_add_in_equivalence (symbol_attribute *attr, const char *name, locus *where)
1260 {
1261
1262   /* Duplicate attribute already checked for.  */
1263   attr->in_equivalence = 1;
1264   if (check_conflict (attr, name, where) == FAILURE)
1265     return FAILURE;
1266
1267   if (attr->flavor == FL_VARIABLE)
1268     return SUCCESS;
1269
1270   return gfc_add_flavor (attr, FL_VARIABLE, name, where);
1271 }
1272
1273
1274 gfc_try
1275 gfc_add_data (symbol_attribute *attr, const char *name, locus *where)
1276 {
1277
1278   if (check_used (attr, name, where))
1279     return FAILURE;
1280
1281   attr->data = 1;
1282   return check_conflict (attr, name, where);
1283 }
1284
1285
1286 gfc_try
1287 gfc_add_in_namelist (symbol_attribute *attr, const char *name, locus *where)
1288 {
1289
1290   attr->in_namelist = 1;
1291   return check_conflict (attr, name, where);
1292 }
1293
1294
1295 gfc_try
1296 gfc_add_sequence (symbol_attribute *attr, const char *name, locus *where)
1297 {
1298
1299   if (check_used (attr, name, where))
1300     return FAILURE;
1301
1302   attr->sequence = 1;
1303   return check_conflict (attr, name, where);
1304 }
1305
1306
1307 gfc_try
1308 gfc_add_elemental (symbol_attribute *attr, locus *where)
1309 {
1310
1311   if (check_used (attr, NULL, where))
1312     return FAILURE;
1313
1314   if (attr->elemental)
1315     {
1316       duplicate_attr ("ELEMENTAL", where);
1317       return FAILURE;
1318     }
1319
1320   attr->elemental = 1;
1321   return check_conflict (attr, NULL, where);
1322 }
1323
1324
1325 gfc_try
1326 gfc_add_pure (symbol_attribute *attr, locus *where)
1327 {
1328
1329   if (check_used (attr, NULL, where))
1330     return FAILURE;
1331
1332   if (attr->pure)
1333     {
1334       duplicate_attr ("PURE", where);
1335       return FAILURE;
1336     }
1337
1338   attr->pure = 1;
1339   return check_conflict (attr, NULL, where);
1340 }
1341
1342
1343 gfc_try
1344 gfc_add_recursive (symbol_attribute *attr, locus *where)
1345 {
1346
1347   if (check_used (attr, NULL, where))
1348     return FAILURE;
1349
1350   if (attr->recursive)
1351     {
1352       duplicate_attr ("RECURSIVE", where);
1353       return FAILURE;
1354     }
1355
1356   attr->recursive = 1;
1357   return check_conflict (attr, NULL, where);
1358 }
1359
1360
1361 gfc_try
1362 gfc_add_entry (symbol_attribute *attr, const char *name, locus *where)
1363 {
1364
1365   if (check_used (attr, name, where))
1366     return FAILURE;
1367
1368   if (attr->entry)
1369     {
1370       duplicate_attr ("ENTRY", where);
1371       return FAILURE;
1372     }
1373
1374   attr->entry = 1;
1375   return check_conflict (attr, name, where);
1376 }
1377
1378
1379 gfc_try
1380 gfc_add_function (symbol_attribute *attr, const char *name, locus *where)
1381 {
1382
1383   if (attr->flavor != FL_PROCEDURE
1384       && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1385     return FAILURE;
1386
1387   attr->function = 1;
1388   return check_conflict (attr, name, where);
1389 }
1390
1391
1392 gfc_try
1393 gfc_add_subroutine (symbol_attribute *attr, const char *name, locus *where)
1394 {
1395
1396   if (attr->flavor != FL_PROCEDURE
1397       && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1398     return FAILURE;
1399
1400   attr->subroutine = 1;
1401   return check_conflict (attr, name, where);
1402 }
1403
1404
1405 gfc_try
1406 gfc_add_generic (symbol_attribute *attr, const char *name, locus *where)
1407 {
1408
1409   if (attr->flavor != FL_PROCEDURE
1410       && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1411     return FAILURE;
1412
1413   attr->generic = 1;
1414   return check_conflict (attr, name, where);
1415 }
1416
1417
1418 gfc_try
1419 gfc_add_proc (symbol_attribute *attr, const char *name, locus *where)
1420 {
1421
1422   if (check_used (attr, NULL, where))
1423     return FAILURE;
1424
1425   if (attr->flavor != FL_PROCEDURE
1426       && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1427     return FAILURE;
1428
1429   if (attr->procedure)
1430     {
1431       duplicate_attr ("PROCEDURE", where);
1432       return FAILURE;
1433     }
1434
1435   attr->procedure = 1;
1436
1437   return check_conflict (attr, NULL, where);
1438 }
1439
1440
1441 gfc_try
1442 gfc_add_abstract (symbol_attribute* attr, locus* where)
1443 {
1444   if (attr->abstract)
1445     {
1446       duplicate_attr ("ABSTRACT", where);
1447       return FAILURE;
1448     }
1449
1450   attr->abstract = 1;
1451   return SUCCESS;
1452 }
1453
1454
1455 /* Flavors are special because some flavors are not what Fortran
1456    considers attributes and can be reaffirmed multiple times.  */
1457
1458 gfc_try
1459 gfc_add_flavor (symbol_attribute *attr, sym_flavor f, const char *name,
1460                 locus *where)
1461 {
1462
1463   if ((f == FL_PROGRAM || f == FL_BLOCK_DATA || f == FL_MODULE
1464        || f == FL_PARAMETER || f == FL_LABEL || f == FL_DERIVED
1465        || f == FL_NAMELIST) && check_used (attr, name, where))
1466     return FAILURE;
1467
1468   if (attr->flavor == f && f == FL_VARIABLE)
1469     return SUCCESS;
1470
1471   if (attr->flavor != FL_UNKNOWN)
1472     {
1473       if (where == NULL)
1474         where = &gfc_current_locus;
1475
1476       if (name)
1477         gfc_error ("%s attribute of '%s' conflicts with %s attribute at %L",
1478                    gfc_code2string (flavors, attr->flavor), name,
1479                    gfc_code2string (flavors, f), where);
1480       else
1481         gfc_error ("%s attribute conflicts with %s attribute at %L",
1482                    gfc_code2string (flavors, attr->flavor),
1483                    gfc_code2string (flavors, f), where);
1484
1485       return FAILURE;
1486     }
1487
1488   attr->flavor = f;
1489
1490   return check_conflict (attr, name, where);
1491 }
1492
1493
1494 gfc_try
1495 gfc_add_procedure (symbol_attribute *attr, procedure_type t,
1496                    const char *name, locus *where)
1497 {
1498
1499   if (check_used (attr, name, where))
1500     return FAILURE;
1501
1502   if (attr->flavor != FL_PROCEDURE
1503       && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1504     return FAILURE;
1505
1506   if (where == NULL)
1507     where = &gfc_current_locus;
1508
1509   if (attr->proc != PROC_UNKNOWN)
1510     {
1511       gfc_error ("%s procedure at %L is already declared as %s procedure",
1512                  gfc_code2string (procedures, t), where,
1513                  gfc_code2string (procedures, attr->proc));
1514
1515       return FAILURE;
1516     }
1517
1518   attr->proc = t;
1519
1520   /* Statement functions are always scalar and functions.  */
1521   if (t == PROC_ST_FUNCTION
1522       && ((!attr->function && gfc_add_function (attr, name, where) == FAILURE)
1523           || attr->dimension))
1524     return FAILURE;
1525
1526   return check_conflict (attr, name, where);
1527 }
1528
1529
1530 gfc_try
1531 gfc_add_intent (symbol_attribute *attr, sym_intent intent, locus *where)
1532 {
1533
1534   if (check_used (attr, NULL, where))
1535     return FAILURE;
1536
1537   if (attr->intent == INTENT_UNKNOWN)
1538     {
1539       attr->intent = intent;
1540       return check_conflict (attr, NULL, where);
1541     }
1542
1543   if (where == NULL)
1544     where = &gfc_current_locus;
1545
1546   gfc_error ("INTENT (%s) conflicts with INTENT(%s) at %L",
1547              gfc_intent_string (attr->intent),
1548              gfc_intent_string (intent), where);
1549
1550   return FAILURE;
1551 }
1552
1553
1554 /* No checks for use-association in public and private statements.  */
1555
1556 gfc_try
1557 gfc_add_access (symbol_attribute *attr, gfc_access access,
1558                 const char *name, locus *where)
1559 {
1560
1561   if (attr->access == ACCESS_UNKNOWN
1562         || (attr->use_assoc && attr->access != ACCESS_PRIVATE))
1563     {
1564       attr->access = access;
1565       return check_conflict (attr, name, where);
1566     }
1567
1568   if (where == NULL)
1569     where = &gfc_current_locus;
1570   gfc_error ("ACCESS specification at %L was already specified", where);
1571
1572   return FAILURE;
1573 }
1574
1575
1576 /* Set the is_bind_c field for the given symbol_attribute.  */
1577
1578 gfc_try
1579 gfc_add_is_bind_c (symbol_attribute *attr, const char *name, locus *where,
1580                    int is_proc_lang_bind_spec)
1581 {
1582
1583   if (is_proc_lang_bind_spec == 0 && attr->flavor == FL_PROCEDURE)
1584     gfc_error_now ("BIND(C) attribute at %L can only be used for "
1585                    "variables or common blocks", where);
1586   else if (attr->is_bind_c)
1587     gfc_error_now ("Duplicate BIND attribute specified at %L", where);
1588   else
1589     attr->is_bind_c = 1;
1590   
1591   if (where == NULL)
1592     where = &gfc_current_locus;
1593    
1594   if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: BIND(C) at %L", where)
1595       == FAILURE)
1596     return FAILURE;
1597
1598   return check_conflict (attr, name, where);
1599 }
1600
1601
1602 /* Set the extension field for the given symbol_attribute.  */
1603
1604 gfc_try
1605 gfc_add_extension (symbol_attribute *attr, locus *where)
1606 {
1607   if (where == NULL)
1608     where = &gfc_current_locus;
1609
1610   if (attr->extension)
1611     gfc_error_now ("Duplicate EXTENDS attribute specified at %L", where);
1612   else
1613     attr->extension = 1;
1614
1615   if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: EXTENDS at %L", where)
1616         == FAILURE)
1617     return FAILURE;
1618
1619   return SUCCESS;
1620 }
1621
1622
1623 gfc_try
1624 gfc_add_explicit_interface (gfc_symbol *sym, ifsrc source,
1625                             gfc_formal_arglist * formal, locus *where)
1626 {
1627
1628   if (check_used (&sym->attr, sym->name, where))
1629     return FAILURE;
1630
1631   if (where == NULL)
1632     where = &gfc_current_locus;
1633
1634   if (sym->attr.if_source != IFSRC_UNKNOWN
1635       && sym->attr.if_source != IFSRC_DECL)
1636     {
1637       gfc_error ("Symbol '%s' at %L already has an explicit interface",
1638                  sym->name, where);
1639       return FAILURE;
1640     }
1641
1642   if (source == IFSRC_IFBODY && (sym->attr.dimension || sym->attr.allocatable))
1643     {
1644       gfc_error ("'%s' at %L has attributes specified outside its INTERFACE "
1645                  "body", sym->name, where);
1646       return FAILURE;
1647     }
1648
1649   sym->formal = formal;
1650   sym->attr.if_source = source;
1651
1652   return SUCCESS;
1653 }
1654
1655
1656 /* Add a type to a symbol.  */
1657
1658 gfc_try
1659 gfc_add_type (gfc_symbol *sym, gfc_typespec *ts, locus *where)
1660 {
1661   sym_flavor flavor;
1662   bt type;
1663
1664   if (where == NULL)
1665     where = &gfc_current_locus;
1666
1667   if (sym->result)
1668     type = sym->result->ts.type;
1669   else
1670     type = sym->ts.type;
1671
1672   if (sym->attr.result && type == BT_UNKNOWN && sym->ns->proc_name)
1673     type = sym->ns->proc_name->ts.type;
1674
1675   if (type != BT_UNKNOWN && !(sym->attr.function && sym->attr.implicit_type))
1676     {
1677       if (sym->attr.use_assoc)
1678         gfc_error ("Symbol '%s' at %L conflicts with symbol from module '%s', "
1679                    "use-associated at %L", sym->name, where, sym->module,
1680                    &sym->declared_at);
1681       else
1682         gfc_error ("Symbol '%s' at %L already has basic type of %s", sym->name,
1683                  where, gfc_basic_typename (type));
1684       return FAILURE;
1685     }
1686
1687   if (sym->attr.procedure && sym->ts.interface)
1688     {
1689       gfc_error ("Procedure '%s' at %L may not have basic type of %s",
1690                  sym->name, where, gfc_basic_typename (ts->type));
1691       return FAILURE;
1692     }
1693
1694   flavor = sym->attr.flavor;
1695
1696   if (flavor == FL_PROGRAM || flavor == FL_BLOCK_DATA || flavor == FL_MODULE
1697       || flavor == FL_LABEL
1698       || (flavor == FL_PROCEDURE && sym->attr.subroutine)
1699       || flavor == FL_DERIVED || flavor == FL_NAMELIST)
1700     {
1701       gfc_error ("Symbol '%s' at %L cannot have a type", sym->name, where);
1702       return FAILURE;
1703     }
1704
1705   sym->ts = *ts;
1706   return SUCCESS;
1707 }
1708
1709
1710 /* Clears all attributes.  */
1711
1712 void
1713 gfc_clear_attr (symbol_attribute *attr)
1714 {
1715   memset (attr, 0, sizeof (symbol_attribute));
1716 }
1717
1718
1719 /* Check for missing attributes in the new symbol.  Currently does
1720    nothing, but it's not clear that it is unnecessary yet.  */
1721
1722 gfc_try
1723 gfc_missing_attr (symbol_attribute *attr ATTRIBUTE_UNUSED,
1724                   locus *where ATTRIBUTE_UNUSED)
1725 {
1726
1727   return SUCCESS;
1728 }
1729
1730
1731 /* Copy an attribute to a symbol attribute, bit by bit.  Some
1732    attributes have a lot of side-effects but cannot be present given
1733    where we are called from, so we ignore some bits.  */
1734
1735 gfc_try
1736 gfc_copy_attr (symbol_attribute *dest, symbol_attribute *src, locus *where)
1737 {
1738   int is_proc_lang_bind_spec;
1739   
1740   /* In line with the other attributes, we only add bits but do not remove
1741      them; cf. also PR 41034.  */
1742   dest->ext_attr |= src->ext_attr;
1743
1744   if (src->allocatable && gfc_add_allocatable (dest, where) == FAILURE)
1745     goto fail;
1746
1747   if (src->dimension && gfc_add_dimension (dest, NULL, where) == FAILURE)
1748     goto fail;
1749   if (src->codimension && gfc_add_codimension (dest, NULL, where) == FAILURE)
1750     goto fail;
1751   if (src->contiguous && gfc_add_contiguous (dest, NULL, where) == FAILURE)
1752     goto fail;
1753   if (src->optional && gfc_add_optional (dest, where) == FAILURE)
1754     goto fail;
1755   if (src->pointer && gfc_add_pointer (dest, where) == FAILURE)
1756     goto fail;
1757   if (src->is_protected && gfc_add_protected (dest, NULL, where) == FAILURE)
1758     goto fail;
1759   if (src->save && gfc_add_save (dest, src->save, NULL, where) == FAILURE)
1760     goto fail;
1761   if (src->value && gfc_add_value (dest, NULL, where) == FAILURE)
1762     goto fail;
1763   if (src->volatile_ && gfc_add_volatile (dest, NULL, where) == FAILURE)
1764     goto fail;
1765   if (src->asynchronous && gfc_add_asynchronous (dest, NULL, where) == FAILURE)
1766     goto fail;
1767   if (src->threadprivate
1768       && gfc_add_threadprivate (dest, NULL, where) == FAILURE)
1769     goto fail;
1770   if (src->target && gfc_add_target (dest, where) == FAILURE)
1771     goto fail;
1772   if (src->dummy && gfc_add_dummy (dest, NULL, where) == FAILURE)
1773     goto fail;
1774   if (src->result && gfc_add_result (dest, NULL, where) == FAILURE)
1775     goto fail;
1776   if (src->entry)
1777     dest->entry = 1;
1778
1779   if (src->in_namelist && gfc_add_in_namelist (dest, NULL, where) == FAILURE)
1780     goto fail;
1781
1782   if (src->in_common && gfc_add_in_common (dest, NULL, where) == FAILURE)
1783     goto fail;
1784
1785   if (src->generic && gfc_add_generic (dest, NULL, where) == FAILURE)
1786     goto fail;
1787   if (src->function && gfc_add_function (dest, NULL, where) == FAILURE)
1788     goto fail;
1789   if (src->subroutine && gfc_add_subroutine (dest, NULL, where) == FAILURE)
1790     goto fail;
1791
1792   if (src->sequence && gfc_add_sequence (dest, NULL, where) == FAILURE)
1793     goto fail;
1794   if (src->elemental && gfc_add_elemental (dest, where) == FAILURE)
1795     goto fail;
1796   if (src->pure && gfc_add_pure (dest, where) == FAILURE)
1797     goto fail;
1798   if (src->recursive && gfc_add_recursive (dest, where) == FAILURE)
1799     goto fail;
1800
1801   if (src->flavor != FL_UNKNOWN
1802       && gfc_add_flavor (dest, src->flavor, NULL, where) == FAILURE)
1803     goto fail;
1804
1805   if (src->intent != INTENT_UNKNOWN
1806       && gfc_add_intent (dest, src->intent, where) == FAILURE)
1807     goto fail;
1808
1809   if (src->access != ACCESS_UNKNOWN
1810       && gfc_add_access (dest, src->access, NULL, where) == FAILURE)
1811     goto fail;
1812
1813   if (gfc_missing_attr (dest, where) == FAILURE)
1814     goto fail;
1815
1816   if (src->cray_pointer && gfc_add_cray_pointer (dest, where) == FAILURE)
1817     goto fail;
1818   if (src->cray_pointee && gfc_add_cray_pointee (dest, where) == FAILURE)
1819     goto fail;
1820
1821   is_proc_lang_bind_spec = (src->flavor == FL_PROCEDURE ? 1 : 0);
1822   if (src->is_bind_c
1823       && gfc_add_is_bind_c (dest, NULL, where, is_proc_lang_bind_spec)
1824          != SUCCESS)
1825     return FAILURE;
1826
1827   if (src->is_c_interop)
1828     dest->is_c_interop = 1;
1829   if (src->is_iso_c)
1830     dest->is_iso_c = 1;
1831   
1832   if (src->external && gfc_add_external (dest, where) == FAILURE)
1833     goto fail;
1834   if (src->intrinsic && gfc_add_intrinsic (dest, where) == FAILURE)
1835     goto fail;
1836   if (src->proc_pointer)
1837     dest->proc_pointer = 1;
1838
1839   return SUCCESS;
1840
1841 fail:
1842   return FAILURE;
1843 }
1844
1845
1846 /************** Component name management ************/
1847
1848 /* Component names of a derived type form their own little namespaces
1849    that are separate from all other spaces.  The space is composed of
1850    a singly linked list of gfc_component structures whose head is
1851    located in the parent symbol.  */
1852
1853
1854 /* Add a component name to a symbol.  The call fails if the name is
1855    already present.  On success, the component pointer is modified to
1856    point to the additional component structure.  */
1857
1858 gfc_try
1859 gfc_add_component (gfc_symbol *sym, const char *name,
1860                    gfc_component **component)
1861 {
1862   gfc_component *p, *tail;
1863
1864   tail = NULL;
1865
1866   for (p = sym->components; p; p = p->next)
1867     {
1868       if (strcmp (p->name, name) == 0)
1869         {
1870           gfc_error ("Component '%s' at %C already declared at %L",
1871                      name, &p->loc);
1872           return FAILURE;
1873         }
1874
1875       tail = p;
1876     }
1877
1878   if (sym->attr.extension
1879         && gfc_find_component (sym->components->ts.u.derived, name, true, true))
1880     {
1881       gfc_error ("Component '%s' at %C already in the parent type "
1882                  "at %L", name, &sym->components->ts.u.derived->declared_at);
1883       return FAILURE;
1884     }
1885
1886   /* Allocate a new component.  */
1887   p = gfc_get_component ();
1888
1889   if (tail == NULL)
1890     sym->components = p;
1891   else
1892     tail->next = p;
1893
1894   p->name = gfc_get_string (name);
1895   p->loc = gfc_current_locus;
1896   p->ts.type = BT_UNKNOWN;
1897
1898   *component = p;
1899   return SUCCESS;
1900 }
1901
1902
1903 /* Recursive function to switch derived types of all symbol in a
1904    namespace.  */
1905
1906 static void
1907 switch_types (gfc_symtree *st, gfc_symbol *from, gfc_symbol *to)
1908 {
1909   gfc_symbol *sym;
1910
1911   if (st == NULL)
1912     return;
1913
1914   sym = st->n.sym;
1915   if (sym->ts.type == BT_DERIVED && sym->ts.u.derived == from)
1916     sym->ts.u.derived = to;
1917
1918   switch_types (st->left, from, to);
1919   switch_types (st->right, from, to);
1920 }
1921
1922
1923 /* This subroutine is called when a derived type is used in order to
1924    make the final determination about which version to use.  The
1925    standard requires that a type be defined before it is 'used', but
1926    such types can appear in IMPLICIT statements before the actual
1927    definition.  'Using' in this context means declaring a variable to
1928    be that type or using the type constructor.
1929
1930    If a type is used and the components haven't been defined, then we
1931    have to have a derived type in a parent unit.  We find the node in
1932    the other namespace and point the symtree node in this namespace to
1933    that node.  Further reference to this name point to the correct
1934    node.  If we can't find the node in a parent namespace, then we have
1935    an error.
1936
1937    This subroutine takes a pointer to a symbol node and returns a
1938    pointer to the translated node or NULL for an error.  Usually there
1939    is no translation and we return the node we were passed.  */
1940
1941 gfc_symbol *
1942 gfc_use_derived (gfc_symbol *sym)
1943 {
1944   gfc_symbol *s;
1945   gfc_typespec *t;
1946   gfc_symtree *st;
1947   int i;
1948
1949   if (!sym)
1950     return NULL;
1951
1952   if (sym->components != NULL || sym->attr.zero_comp)
1953     return sym;               /* Already defined.  */
1954
1955   if (sym->ns->parent == NULL)
1956     goto bad;
1957
1958   if (gfc_find_symbol (sym->name, sym->ns->parent, 1, &s))
1959     {
1960       gfc_error ("Symbol '%s' at %C is ambiguous", sym->name);
1961       return NULL;
1962     }
1963
1964   if (s == NULL || s->attr.flavor != FL_DERIVED)
1965     goto bad;
1966
1967   /* Get rid of symbol sym, translating all references to s.  */
1968   for (i = 0; i < GFC_LETTERS; i++)
1969     {
1970       t = &sym->ns->default_type[i];
1971       if (t->u.derived == sym)
1972         t->u.derived = s;
1973     }
1974
1975   st = gfc_find_symtree (sym->ns->sym_root, sym->name);
1976   st->n.sym = s;
1977
1978   s->refs++;
1979
1980   /* Unlink from list of modified symbols.  */
1981   gfc_commit_symbol (sym);
1982
1983   switch_types (sym->ns->sym_root, sym, s);
1984
1985   /* TODO: Also have to replace sym -> s in other lists like
1986      namelists, common lists and interface lists.  */
1987   gfc_free_symbol (sym);
1988
1989   return s;
1990
1991 bad:
1992   gfc_error ("Derived type '%s' at %C is being used before it is defined",
1993              sym->name);
1994   return NULL;
1995 }
1996
1997
1998 /* Given a derived type node and a component name, try to locate the
1999    component structure.  Returns the NULL pointer if the component is
2000    not found or the components are private.  If noaccess is set, no access
2001    checks are done.  */
2002
2003 gfc_component *
2004 gfc_find_component (gfc_symbol *sym, const char *name,
2005                     bool noaccess, bool silent)
2006 {
2007   gfc_component *p;
2008
2009   if (name == NULL || sym == NULL)
2010     return NULL;
2011
2012   sym = gfc_use_derived (sym);
2013
2014   if (sym == NULL)
2015     return NULL;
2016
2017   for (p = sym->components; p; p = p->next)
2018     if (strcmp (p->name, name) == 0)
2019       break;
2020
2021   if (p == NULL
2022         && sym->attr.extension
2023         && sym->components->ts.type == BT_DERIVED)
2024     {
2025       p = gfc_find_component (sym->components->ts.u.derived, name,
2026                               noaccess, silent);
2027       /* Do not overwrite the error.  */
2028       if (p == NULL)
2029         return p;
2030     }
2031
2032   if (p == NULL && !silent)
2033     gfc_error ("'%s' at %C is not a member of the '%s' structure",
2034                name, sym->name);
2035
2036   else if (sym->attr.use_assoc && !noaccess)
2037     {
2038       bool is_parent_comp = sym->attr.extension && (p == sym->components);
2039       if (p->attr.access == ACCESS_PRIVATE ||
2040           (p->attr.access != ACCESS_PUBLIC
2041            && sym->component_access == ACCESS_PRIVATE
2042            && !is_parent_comp))
2043         {
2044           if (!silent)
2045             gfc_error ("Component '%s' at %C is a PRIVATE component of '%s'",
2046                        name, sym->name);
2047           return NULL;
2048         }
2049     }
2050
2051   return p;
2052 }
2053
2054
2055 /* Given a symbol, free all of the component structures and everything
2056    they point to.  */
2057
2058 static void
2059 free_components (gfc_component *p)
2060 {
2061   gfc_component *q;
2062
2063   for (; p; p = q)
2064     {
2065       q = p->next;
2066
2067       gfc_free_array_spec (p->as);
2068       gfc_free_expr (p->initializer);
2069
2070       gfc_free_formal_arglist (p->formal);
2071       gfc_free_namespace (p->formal_ns);
2072
2073       free (p);
2074     }
2075 }
2076
2077
2078 /******************** Statement label management ********************/
2079
2080 /* Comparison function for statement labels, used for managing the
2081    binary tree.  */
2082
2083 static int
2084 compare_st_labels (void *a1, void *b1)
2085 {
2086   int a = ((gfc_st_label *) a1)->value;
2087   int b = ((gfc_st_label *) b1)->value;
2088
2089   return (b - a);
2090 }
2091
2092
2093 /* Free a single gfc_st_label structure, making sure the tree is not
2094    messed up.  This function is called only when some parse error
2095    occurs.  */
2096
2097 void
2098 gfc_free_st_label (gfc_st_label *label)
2099 {
2100
2101   if (label == NULL)
2102     return;
2103
2104   gfc_delete_bbt (&gfc_current_ns->st_labels, label, compare_st_labels);
2105
2106   if (label->format != NULL)
2107     gfc_free_expr (label->format);
2108
2109   free (label);
2110 }
2111
2112
2113 /* Free a whole tree of gfc_st_label structures.  */
2114
2115 static void
2116 free_st_labels (gfc_st_label *label)
2117 {
2118
2119   if (label == NULL)
2120     return;
2121
2122   free_st_labels (label->left);
2123   free_st_labels (label->right);
2124   
2125   if (label->format != NULL)
2126     gfc_free_expr (label->format);
2127   free (label);
2128 }
2129
2130
2131 /* Given a label number, search for and return a pointer to the label
2132    structure, creating it if it does not exist.  */
2133
2134 gfc_st_label *
2135 gfc_get_st_label (int labelno)
2136 {
2137   gfc_st_label *lp;
2138   gfc_namespace *ns;
2139
2140   if (gfc_current_state () == COMP_DERIVED)
2141     ns = gfc_current_block ()->f2k_derived;
2142   else
2143     {
2144       /* Find the namespace of the scoping unit:
2145          If we're in a BLOCK construct, jump to the parent namespace.  */
2146       ns = gfc_current_ns;
2147       while (ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL)
2148         ns = ns->parent;
2149     }
2150
2151   /* First see if the label is already in this namespace.  */
2152   lp = ns->st_labels;
2153   while (lp)
2154     {
2155       if (lp->value == labelno)
2156         return lp;
2157
2158       if (lp->value < labelno)
2159         lp = lp->left;
2160       else
2161         lp = lp->right;
2162     }
2163
2164   lp = XCNEW (gfc_st_label);
2165
2166   lp->value = labelno;
2167   lp->defined = ST_LABEL_UNKNOWN;
2168   lp->referenced = ST_LABEL_UNKNOWN;
2169
2170   gfc_insert_bbt (&ns->st_labels, lp, compare_st_labels);
2171
2172   return lp;
2173 }
2174
2175
2176 /* Called when a statement with a statement label is about to be
2177    accepted.  We add the label to the list of the current namespace,
2178    making sure it hasn't been defined previously and referenced
2179    correctly.  */
2180
2181 void
2182 gfc_define_st_label (gfc_st_label *lp, gfc_sl_type type, locus *label_locus)
2183 {
2184   int labelno;
2185
2186   labelno = lp->value;
2187
2188   if (lp->defined != ST_LABEL_UNKNOWN)
2189     gfc_error ("Duplicate statement label %d at %L and %L", labelno,
2190                &lp->where, label_locus);
2191   else
2192     {
2193       lp->where = *label_locus;
2194
2195       switch (type)
2196         {
2197         case ST_LABEL_FORMAT:
2198           if (lp->referenced == ST_LABEL_TARGET)
2199             gfc_error ("Label %d at %C already referenced as branch target",
2200                        labelno);
2201           else
2202             lp->defined = ST_LABEL_FORMAT;
2203
2204           break;
2205
2206         case ST_LABEL_TARGET:
2207           if (lp->referenced == ST_LABEL_FORMAT)
2208             gfc_error ("Label %d at %C already referenced as a format label",
2209                        labelno);
2210           else
2211             lp->defined = ST_LABEL_TARGET;
2212
2213           break;
2214
2215         default:
2216           lp->defined = ST_LABEL_BAD_TARGET;
2217           lp->referenced = ST_LABEL_BAD_TARGET;
2218         }
2219     }
2220 }
2221
2222
2223 /* Reference a label.  Given a label and its type, see if that
2224    reference is consistent with what is known about that label,
2225    updating the unknown state.  Returns FAILURE if something goes
2226    wrong.  */
2227
2228 gfc_try
2229 gfc_reference_st_label (gfc_st_label *lp, gfc_sl_type type)
2230 {
2231   gfc_sl_type label_type;
2232   int labelno;
2233   gfc_try rc;
2234
2235   if (lp == NULL)
2236     return SUCCESS;
2237
2238   labelno = lp->value;
2239
2240   if (lp->defined != ST_LABEL_UNKNOWN)
2241     label_type = lp->defined;
2242   else
2243     {
2244       label_type = lp->referenced;
2245       lp->where = gfc_current_locus;
2246     }
2247
2248   if (label_type == ST_LABEL_FORMAT && type == ST_LABEL_TARGET)
2249     {
2250       gfc_error ("Label %d at %C previously used as a FORMAT label", labelno);
2251       rc = FAILURE;
2252       goto done;
2253     }
2254
2255   if ((label_type == ST_LABEL_TARGET || label_type == ST_LABEL_BAD_TARGET)
2256       && type == ST_LABEL_FORMAT)
2257     {
2258       gfc_error ("Label %d at %C previously used as branch target", labelno);
2259       rc = FAILURE;
2260       goto done;
2261     }
2262
2263   lp->referenced = type;
2264   rc = SUCCESS;
2265
2266 done:
2267   return rc;
2268 }
2269
2270
2271 /************** Symbol table management subroutines ****************/
2272
2273 /* Basic details: Fortran 95 requires a potentially unlimited number
2274    of distinct namespaces when compiling a program unit.  This case
2275    occurs during a compilation of internal subprograms because all of
2276    the internal subprograms must be read before we can start
2277    generating code for the host.
2278
2279    Given the tricky nature of the Fortran grammar, we must be able to
2280    undo changes made to a symbol table if the current interpretation
2281    of a statement is found to be incorrect.  Whenever a symbol is
2282    looked up, we make a copy of it and link to it.  All of these
2283    symbols are kept in a singly linked list so that we can commit or
2284    undo the changes at a later time.
2285
2286    A symtree may point to a symbol node outside of its namespace.  In
2287    this case, that symbol has been used as a host associated variable
2288    at some previous time.  */
2289
2290 /* Allocate a new namespace structure.  Copies the implicit types from
2291    PARENT if PARENT_TYPES is set.  */
2292
2293 gfc_namespace *
2294 gfc_get_namespace (gfc_namespace *parent, int parent_types)
2295 {
2296   gfc_namespace *ns;
2297   gfc_typespec *ts;
2298   int in;
2299   int i;
2300
2301   ns = XCNEW (gfc_namespace);
2302   ns->sym_root = NULL;
2303   ns->uop_root = NULL;
2304   ns->tb_sym_root = NULL;
2305   ns->finalizers = NULL;
2306   ns->default_access = ACCESS_UNKNOWN;
2307   ns->parent = parent;
2308
2309   for (in = GFC_INTRINSIC_BEGIN; in != GFC_INTRINSIC_END; in++)
2310     {
2311       ns->operator_access[in] = ACCESS_UNKNOWN;
2312       ns->tb_op[in] = NULL;
2313     }
2314
2315   /* Initialize default implicit types.  */
2316   for (i = 'a'; i <= 'z'; i++)
2317     {
2318       ns->set_flag[i - 'a'] = 0;
2319       ts = &ns->default_type[i - 'a'];
2320
2321       if (parent_types && ns->parent != NULL)
2322         {
2323           /* Copy parent settings.  */
2324           *ts = ns->parent->default_type[i - 'a'];
2325           continue;
2326         }
2327
2328       if (gfc_option.flag_implicit_none != 0)
2329         {
2330           gfc_clear_ts (ts);
2331           continue;
2332         }
2333
2334       if ('i' <= i && i <= 'n')
2335         {
2336           ts->type = BT_INTEGER;
2337           ts->kind = gfc_default_integer_kind;
2338         }
2339       else
2340         {
2341           ts->type = BT_REAL;
2342           ts->kind = gfc_default_real_kind;
2343         }
2344     }
2345
2346   ns->refs = 1;
2347
2348   return ns;
2349 }
2350
2351
2352 /* Comparison function for symtree nodes.  */
2353
2354 static int
2355 compare_symtree (void *_st1, void *_st2)
2356 {
2357   gfc_symtree *st1, *st2;
2358
2359   st1 = (gfc_symtree *) _st1;
2360   st2 = (gfc_symtree *) _st2;
2361
2362   return strcmp (st1->name, st2->name);
2363 }
2364
2365
2366 /* Allocate a new symtree node and associate it with the new symbol.  */
2367
2368 gfc_symtree *
2369 gfc_new_symtree (gfc_symtree **root, const char *name)
2370 {
2371   gfc_symtree *st;
2372
2373   st = XCNEW (gfc_symtree);
2374   st->name = gfc_get_string (name);
2375
2376   gfc_insert_bbt (root, st, compare_symtree);
2377   return st;
2378 }
2379
2380
2381 /* Delete a symbol from the tree.  Does not free the symbol itself!  */
2382
2383 void
2384 gfc_delete_symtree (gfc_symtree **root, const char *name)
2385 {
2386   gfc_symtree st, *st0;
2387
2388   st0 = gfc_find_symtree (*root, name);
2389
2390   st.name = gfc_get_string (name);
2391   gfc_delete_bbt (root, &st, compare_symtree);
2392
2393   free (st0);
2394 }
2395
2396
2397 /* Given a root symtree node and a name, try to find the symbol within
2398    the namespace.  Returns NULL if the symbol is not found.  */
2399
2400 gfc_symtree *
2401 gfc_find_symtree (gfc_symtree *st, const char *name)
2402 {
2403   int c;
2404
2405   while (st != NULL)
2406     {
2407       c = strcmp (name, st->name);
2408       if (c == 0)
2409         return st;
2410
2411       st = (c < 0) ? st->left : st->right;
2412     }
2413
2414   return NULL;
2415 }
2416
2417
2418 /* Return a symtree node with a name that is guaranteed to be unique
2419    within the namespace and corresponds to an illegal fortran name.  */
2420
2421 gfc_symtree *
2422 gfc_get_unique_symtree (gfc_namespace *ns)
2423 {
2424   char name[GFC_MAX_SYMBOL_LEN + 1];
2425   static int serial = 0;
2426
2427   sprintf (name, "@%d", serial++);
2428   return gfc_new_symtree (&ns->sym_root, name);
2429 }
2430
2431
2432 /* Given a name find a user operator node, creating it if it doesn't
2433    exist.  These are much simpler than symbols because they can't be
2434    ambiguous with one another.  */
2435
2436 gfc_user_op *
2437 gfc_get_uop (const char *name)
2438 {
2439   gfc_user_op *uop;
2440   gfc_symtree *st;
2441
2442   st = gfc_find_symtree (gfc_current_ns->uop_root, name);
2443   if (st != NULL)
2444     return st->n.uop;
2445
2446   st = gfc_new_symtree (&gfc_current_ns->uop_root, name);
2447
2448   uop = st->n.uop = XCNEW (gfc_user_op);
2449   uop->name = gfc_get_string (name);
2450   uop->access = ACCESS_UNKNOWN;
2451   uop->ns = gfc_current_ns;
2452
2453   return uop;
2454 }
2455
2456
2457 /* Given a name find the user operator node.  Returns NULL if it does
2458    not exist.  */
2459
2460 gfc_user_op *
2461 gfc_find_uop (const char *name, gfc_namespace *ns)
2462 {
2463   gfc_symtree *st;
2464
2465   if (ns == NULL)
2466     ns = gfc_current_ns;
2467
2468   st = gfc_find_symtree (ns->uop_root, name);
2469   return (st == NULL) ? NULL : st->n.uop;
2470 }
2471
2472
2473 /* Remove a gfc_symbol structure and everything it points to.  */
2474
2475 void
2476 gfc_free_symbol (gfc_symbol *sym)
2477 {
2478
2479   if (sym == NULL)
2480     return;
2481
2482   gfc_free_array_spec (sym->as);
2483
2484   free_components (sym->components);
2485
2486   gfc_free_expr (sym->value);
2487
2488   gfc_free_namelist (sym->namelist);
2489
2490   gfc_free_namespace (sym->formal_ns);
2491
2492   if (!sym->attr.generic_copy)
2493     gfc_free_interface (sym->generic);
2494
2495   gfc_free_formal_arglist (sym->formal);
2496
2497   gfc_free_namespace (sym->f2k_derived);
2498
2499   free (sym);
2500 }
2501
2502
2503 /* Decrease the reference counter and free memory when we reach zero.  */
2504
2505 void
2506 gfc_release_symbol (gfc_symbol *sym)
2507 {
2508   if (sym == NULL)
2509     return;
2510
2511   if (sym->formal_ns != NULL && sym->refs == 2)
2512     {
2513       /* As formal_ns contains a reference to sym, delete formal_ns just
2514          before the deletion of sym.  */
2515       gfc_namespace *ns = sym->formal_ns;
2516       sym->formal_ns = NULL;
2517       gfc_free_namespace (ns);
2518     }
2519
2520   sym->refs--;
2521   if (sym->refs > 0)
2522     return;
2523
2524   gcc_assert (sym->refs == 0);
2525   gfc_free_symbol (sym);
2526 }
2527
2528
2529 /* Allocate and initialize a new symbol node.  */
2530
2531 gfc_symbol *
2532 gfc_new_symbol (const char *name, gfc_namespace *ns)
2533 {
2534   gfc_symbol *p;
2535
2536   p = XCNEW (gfc_symbol);
2537
2538   gfc_clear_ts (&p->ts);
2539   gfc_clear_attr (&p->attr);
2540   p->ns = ns;
2541
2542   p->declared_at = gfc_current_locus;
2543
2544   if (strlen (name) > GFC_MAX_SYMBOL_LEN)
2545     gfc_internal_error ("new_symbol(): Symbol name too long");
2546
2547   p->name = gfc_get_string (name);
2548
2549   /* Make sure flags for symbol being C bound are clear initially.  */
2550   p->attr.is_bind_c = 0;
2551   p->attr.is_iso_c = 0;
2552   /* Make sure the binding label field has a Nul char to start.  */
2553   p->binding_label[0] = '\0';
2554
2555   /* Clear the ptrs we may need.  */
2556   p->common_block = NULL;
2557   p->f2k_derived = NULL;
2558   p->assoc = NULL;
2559   
2560   return p;
2561 }
2562
2563
2564 /* Generate an error if a symbol is ambiguous.  */
2565
2566 static void
2567 ambiguous_symbol (const char *name, gfc_symtree *st)
2568 {
2569
2570   if (st->n.sym->module)
2571     gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
2572                "from module '%s'", name, st->n.sym->name, st->n.sym->module);
2573   else
2574     gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
2575                "from current program unit", name, st->n.sym->name);
2576 }
2577
2578
2579 /* If we're in a SELECT TYPE block, check if the variable 'st' matches any
2580    selector on the stack. If yes, replace it by the corresponding temporary.  */
2581
2582 static void
2583 select_type_insert_tmp (gfc_symtree **st)
2584 {
2585   gfc_select_type_stack *stack = select_type_stack;
2586   for (; stack; stack = stack->prev)
2587     if ((*st)->n.sym == stack->selector && stack->tmp)
2588       *st = stack->tmp;
2589 }
2590
2591
2592 /* Look for a symtree in the current procedure -- that is, go up to
2593    parent namespaces but only if inside a BLOCK.  Returns NULL if not found.  */
2594
2595 gfc_symtree*
2596 gfc_find_symtree_in_proc (const char* name, gfc_namespace* ns)
2597 {
2598   while (ns)
2599     {
2600       gfc_symtree* st = gfc_find_symtree (ns->sym_root, name);
2601       if (st)
2602         return st;
2603
2604       if (!ns->construct_entities)
2605         break;
2606       ns = ns->parent;
2607     }
2608
2609   return NULL;
2610 }
2611
2612
2613 /* Search for a symtree starting in the current namespace, resorting to
2614    any parent namespaces if requested by a nonzero parent_flag.
2615    Returns nonzero if the name is ambiguous.  */
2616
2617 int
2618 gfc_find_sym_tree (const char *name, gfc_namespace *ns, int parent_flag,
2619                    gfc_symtree **result)
2620 {
2621   gfc_symtree *st;
2622
2623   if (ns == NULL)
2624     ns = gfc_current_ns;
2625
2626   do
2627     {
2628       st = gfc_find_symtree (ns->sym_root, name);
2629       if (st != NULL)
2630         {
2631           select_type_insert_tmp (&st);
2632
2633           *result = st;
2634           /* Ambiguous generic interfaces are permitted, as long
2635              as the specific interfaces are different.  */
2636           if (st->ambiguous && !st->n.sym->attr.generic)
2637             {
2638               ambiguous_symbol (name, st);
2639               return 1;
2640             }
2641
2642           return 0;
2643         }
2644
2645       if (!parent_flag)
2646         break;
2647
2648       ns = ns->parent;
2649     }
2650   while (ns != NULL);
2651
2652   *result = NULL;
2653   return 0;
2654 }
2655
2656
2657 /* Same, but returns the symbol instead.  */
2658
2659 int
2660 gfc_find_symbol (const char *name, gfc_namespace *ns, int parent_flag,
2661                  gfc_symbol **result)
2662 {
2663   gfc_symtree *st;
2664   int i;
2665
2666   i = gfc_find_sym_tree (name, ns, parent_flag, &st);
2667
2668   if (st == NULL)
2669     *result = NULL;
2670   else
2671     *result = st->n.sym;
2672
2673   return i;
2674 }
2675
2676
2677 /* Save symbol with the information necessary to back it out.  */
2678
2679 static void
2680 save_symbol_data (gfc_symbol *sym)
2681 {
2682
2683   if (sym->gfc_new || sym->old_symbol != NULL)
2684     return;
2685
2686   sym->old_symbol = XCNEW (gfc_symbol);
2687   *(sym->old_symbol) = *sym;
2688
2689   sym->tlink = changed_syms;
2690   changed_syms = sym;
2691 }
2692
2693
2694 /* Given a name, find a symbol, or create it if it does not exist yet
2695    in the current namespace.  If the symbol is found we make sure that
2696    it's OK.
2697
2698    The integer return code indicates
2699      0   All OK
2700      1   The symbol name was ambiguous
2701      2   The name meant to be established was already host associated.
2702
2703    So if the return value is nonzero, then an error was issued.  */
2704
2705 int
2706 gfc_get_sym_tree (const char *name, gfc_namespace *ns, gfc_symtree **result,
2707                   bool allow_subroutine)
2708 {
2709   gfc_symtree *st;
2710   gfc_symbol *p;
2711
2712   /* This doesn't usually happen during resolution.  */
2713   if (ns == NULL)
2714     ns = gfc_current_ns;
2715
2716   /* Try to find the symbol in ns.  */
2717   st = gfc_find_symtree (ns->sym_root, name);
2718
2719   if (st == NULL)
2720     {
2721       /* If not there, create a new symbol.  */
2722       p = gfc_new_symbol (name, ns);
2723
2724       /* Add to the list of tentative symbols.  */
2725       p->old_symbol = NULL;
2726       p->tlink = changed_syms;
2727       p->mark = 1;
2728       p->gfc_new = 1;
2729       changed_syms = p;
2730
2731       st = gfc_new_symtree (&ns->sym_root, name);
2732       st->n.sym = p;
2733       p->refs++;
2734
2735     }
2736   else
2737     {
2738       /* Make sure the existing symbol is OK.  Ambiguous
2739          generic interfaces are permitted, as long as the
2740          specific interfaces are different.  */
2741       if (st->ambiguous && !st->n.sym->attr.generic)
2742         {
2743           ambiguous_symbol (name, st);
2744           return 1;
2745         }
2746
2747       p = st->n.sym;
2748       if (p->ns != ns && (!p->attr.function || ns->proc_name != p)
2749           && !(allow_subroutine && p->attr.subroutine)
2750           && !(ns->proc_name && ns->proc_name->attr.if_source == IFSRC_IFBODY
2751           && (ns->has_import_set || p->attr.imported)))
2752         {
2753           /* Symbol is from another namespace.  */
2754           gfc_error ("Symbol '%s' at %C has already been host associated",
2755                      name);
2756           return 2;
2757         }
2758
2759       p->mark = 1;
2760
2761       /* Copy in case this symbol is changed.  */
2762       save_symbol_data (p);
2763     }
2764
2765   *result = st;
2766   return 0;
2767 }
2768
2769
2770 int
2771 gfc_get_symbol (const char *name, gfc_namespace *ns, gfc_symbol **result)
2772 {
2773   gfc_symtree *st;
2774   int i;
2775
2776   i = gfc_get_sym_tree (name, ns, &st, false);
2777   if (i != 0)
2778     return i;
2779
2780   if (st)
2781     *result = st->n.sym;
2782   else
2783     *result = NULL;
2784   return i;
2785 }
2786
2787
2788 /* Subroutine that searches for a symbol, creating it if it doesn't
2789    exist, but tries to host-associate the symbol if possible.  */
2790
2791 int
2792 gfc_get_ha_sym_tree (const char *name, gfc_symtree **result)
2793 {
2794   gfc_symtree *st;
2795   int i;
2796
2797   i = gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
2798
2799   if (st != NULL)
2800     {
2801       save_symbol_data (st->n.sym);
2802       *result = st;
2803       return i;
2804     }
2805
2806   if (gfc_current_ns->parent != NULL)
2807     {
2808       i = gfc_find_sym_tree (name, gfc_current_ns->parent, 1, &st);
2809       if (i)
2810         return i;
2811
2812       if (st != NULL)
2813         {
2814           *result = st;
2815           return 0;
2816         }
2817     }
2818
2819   return gfc_get_sym_tree (name, gfc_current_ns, result, false);
2820 }
2821
2822
2823 int
2824 gfc_get_ha_symbol (const char *name, gfc_symbol **result)
2825 {
2826   int i;
2827   gfc_symtree *st;
2828
2829   i = gfc_get_ha_sym_tree (name, &st);
2830
2831   if (st)
2832     *result = st->n.sym;
2833   else
2834     *result = NULL;
2835
2836   return i;
2837 }
2838
2839 /* Undoes all the changes made to symbols in the current statement.
2840    This subroutine is made simpler due to the fact that attributes are
2841    never removed once added.  */
2842
2843 void
2844 gfc_undo_symbols (void)
2845 {
2846   gfc_symbol *p, *q, *old;
2847   tentative_tbp *tbp, *tbq;
2848
2849   for (p = changed_syms; p; p = q)
2850     {
2851       q = p->tlink;
2852
2853       if (p->gfc_new)
2854         {
2855           /* Symbol was new.  */
2856           if (p->attr.in_common && p->common_block && p->common_block->head)
2857             {
2858               /* If the symbol was added to any common block, it
2859                  needs to be removed to stop the resolver looking
2860                  for a (possibly) dead symbol.  */
2861
2862               if (p->common_block->head == p)
2863                 p->common_block->head = p->common_next;
2864               else
2865                 {
2866                   gfc_symbol *cparent, *csym;
2867
2868                   cparent = p->common_block->head;
2869                   csym = cparent->common_next;
2870
2871                   while (csym != p)
2872                     {
2873                       cparent = csym;
2874                       csym = csym->common_next;
2875                     }
2876
2877                   gcc_assert(cparent->common_next == p);
2878
2879                   cparent->common_next = csym->common_next;
2880                 }
2881             }
2882
2883           gfc_delete_symtree (&p->ns->sym_root, p->name);
2884
2885           gfc_release_symbol (p);
2886           continue;
2887         }
2888
2889       /* Restore previous state of symbol.  Just copy simple stuff.  */
2890       p->mark = 0;
2891       old = p->old_symbol;
2892
2893       p->ts.type = old->ts.type;
2894       p->ts.kind = old->ts.kind;
2895
2896       p->attr = old->attr;
2897
2898       if (p->value != old->value)
2899         {
2900           gfc_free_expr (old->value);
2901           p->value = NULL;
2902         }
2903
2904       if (p->as != old->as)
2905         {
2906           if (p->as)
2907             gfc_free_array_spec (p->as);
2908           p->as = old->as;
2909         }
2910
2911       p->generic = old->generic;
2912       p->component_access = old->component_access;
2913
2914       if (p->namelist != NULL && old->namelist == NULL)
2915         {
2916           gfc_free_namelist (p->namelist);
2917           p->namelist = NULL;
2918         }
2919       else
2920         {
2921           if (p->namelist_tail != old->namelist_tail)
2922             {
2923               gfc_free_namelist (old->namelist_tail);
2924               old->namelist_tail->next = NULL;
2925             }
2926         }
2927
2928       p->namelist_tail = old->namelist_tail;
2929
2930       if (p->formal != old->formal)
2931         {
2932           gfc_free_formal_arglist (p->formal);
2933           p->formal = old->formal;
2934         }
2935
2936       free (p->old_symbol);
2937       p->old_symbol = NULL;
2938       p->tlink = NULL;
2939     }
2940
2941   changed_syms = NULL;
2942
2943   for (tbp = tentative_tbp_list; tbp; tbp = tbq)
2944     {
2945       tbq = tbp->next;
2946       /* Procedure is already marked `error' by default.  */
2947       free (tbp);
2948     }
2949   tentative_tbp_list = NULL;
2950 }
2951
2952
2953 /* Free sym->old_symbol. sym->old_symbol is mostly a shallow copy of sym; the
2954    components of old_symbol that might need deallocation are the "allocatables"
2955    that are restored in gfc_undo_symbols(), with two exceptions: namelist and
2956    namelist_tail.  In case these differ between old_symbol and sym, it's just
2957    because sym->namelist has gotten a few more items.  */
2958
2959 static void
2960 free_old_symbol (gfc_symbol *sym)
2961 {
2962
2963   if (sym->old_symbol == NULL)
2964     return;
2965
2966   if (sym->old_symbol->as != sym->as) 
2967     gfc_free_array_spec (sym->old_symbol->as);
2968
2969   if (sym->old_symbol->value != sym->value) 
2970     gfc_free_expr (sym->old_symbol->value);
2971
2972   if (sym->old_symbol->formal != sym->formal)
2973     gfc_free_formal_arglist (sym->old_symbol->formal);
2974
2975   free (sym->old_symbol);
2976   sym->old_symbol = NULL;
2977 }
2978
2979
2980 /* Makes the changes made in the current statement permanent-- gets
2981    rid of undo information.  */
2982
2983 void
2984 gfc_commit_symbols (void)
2985 {
2986   gfc_symbol *p, *q;
2987   tentative_tbp *tbp, *tbq;
2988
2989   for (p = changed_syms; p; p = q)
2990     {
2991       q = p->tlink;
2992       p->tlink = NULL;
2993       p->mark = 0;
2994       p->gfc_new = 0;
2995       free_old_symbol (p);
2996     }
2997   changed_syms = NULL;
2998
2999   for (tbp = tentative_tbp_list; tbp; tbp = tbq)
3000     {
3001       tbq = tbp->next;
3002       tbp->proc->error = 0;
3003       free (tbp);
3004     }
3005   tentative_tbp_list = NULL;
3006 }
3007
3008
3009 /* Makes the changes made in one symbol permanent -- gets rid of undo
3010    information.  */
3011
3012 void
3013 gfc_commit_symbol (gfc_symbol *sym)
3014 {
3015   gfc_symbol *p;
3016
3017   if (changed_syms == sym)
3018     changed_syms = sym->tlink;
3019   else
3020     {
3021       for (p = changed_syms; p; p = p->tlink)
3022         if (p->tlink == sym)
3023           {
3024             p->tlink = sym->tlink;
3025             break;
3026           }
3027     }
3028
3029   sym->tlink = NULL;
3030   sym->mark = 0;
3031   sym->gfc_new = 0;
3032
3033   free_old_symbol (sym);
3034 }
3035
3036
3037 /* Recursively free trees containing type-bound procedures.  */
3038
3039 static void
3040 free_tb_tree (gfc_symtree *t)
3041 {
3042   if (t == NULL)
3043     return;
3044
3045   free_tb_tree (t->left);
3046   free_tb_tree (t->right);
3047
3048   /* TODO: Free type-bound procedure structs themselves; probably needs some
3049      sort of ref-counting mechanism.  */
3050
3051   free (t);
3052 }
3053
3054
3055 /* Recursive function that deletes an entire tree and all the common
3056    head structures it points to.  */
3057
3058 static void
3059 free_common_tree (gfc_symtree * common_tree)
3060 {
3061   if (common_tree == NULL)
3062     return;
3063
3064   free_common_tree (common_tree->left);
3065   free_common_tree (common_tree->right);
3066
3067   free (common_tree);
3068 }  
3069
3070
3071 /* Recursive function that deletes an entire tree and all the user
3072    operator nodes that it contains.  */
3073
3074 static void
3075 free_uop_tree (gfc_symtree *uop_tree)
3076 {
3077   if (uop_tree == NULL)
3078     return;
3079
3080   free_uop_tree (uop_tree->left);
3081   free_uop_tree (uop_tree->right);
3082
3083   gfc_free_interface (uop_tree->n.uop->op);
3084   free (uop_tree->n.uop);
3085   free (uop_tree);
3086 }
3087
3088
3089 /* Recursive function that deletes an entire tree and all the symbols
3090    that it contains.  */
3091
3092 static void
3093 free_sym_tree (gfc_symtree *sym_tree)
3094 {
3095   if (sym_tree == NULL)
3096     return;
3097
3098   free_sym_tree (sym_tree->left);
3099   free_sym_tree (sym_tree->right);
3100
3101   gfc_release_symbol (sym_tree->n.sym);
3102   free (sym_tree);
3103 }
3104
3105
3106 /* Free the derived type list.  */
3107
3108 void
3109 gfc_free_dt_list (void)
3110 {
3111   gfc_dt_list *dt, *n;
3112
3113   for (dt = gfc_derived_types; dt; dt = n)
3114     {
3115       n = dt->next;
3116       free (dt);
3117     }
3118
3119   gfc_derived_types = NULL;
3120 }
3121
3122
3123 /* Free the gfc_equiv_info's.  */
3124
3125 static void
3126 gfc_free_equiv_infos (gfc_equiv_info *s)
3127 {
3128   if (s == NULL)
3129     return;
3130   gfc_free_equiv_infos (s->next);
3131   free (s);
3132 }
3133
3134
3135 /* Free the gfc_equiv_lists.  */
3136
3137 static void
3138 gfc_free_equiv_lists (gfc_equiv_list *l)
3139 {
3140   if (l == NULL)
3141     return;
3142   gfc_free_equiv_lists (l->next);
3143   gfc_free_equiv_infos (l->equiv);
3144   free (l);
3145 }
3146
3147
3148 /* Free a finalizer procedure list.  */
3149
3150 void
3151 gfc_free_finalizer (gfc_finalizer* el)
3152 {
3153   if (el)
3154     {
3155       gfc_release_symbol (el->proc_sym);
3156       free (el);
3157     }
3158 }
3159
3160 static void
3161 gfc_free_finalizer_list (gfc_finalizer* list)
3162 {
3163   while (list)
3164     {
3165       gfc_finalizer* current = list;
3166       list = list->next;
3167       gfc_free_finalizer (current);
3168     }
3169 }
3170
3171
3172 /* Create a new gfc_charlen structure and add it to a namespace.
3173    If 'old_cl' is given, the newly created charlen will be a copy of it.  */
3174
3175 gfc_charlen*
3176 gfc_new_charlen (gfc_namespace *ns, gfc_charlen *old_cl)
3177 {
3178   gfc_charlen *cl;
3179   cl = gfc_get_charlen ();
3180
3181   /* Copy old_cl.  */
3182   if (old_cl)
3183     {
3184       /* Put into namespace, but don't allow reject_statement
3185          to free it if old_cl is given.  */
3186       gfc_charlen **prev = &ns->cl_list;
3187       cl->next = ns->old_cl_list;
3188       while (*prev != ns->old_cl_list)
3189         prev = &(*prev)->next;
3190       *prev = cl;
3191       ns->old_cl_list = cl;
3192       cl->length = gfc_copy_expr (old_cl->length);
3193       cl->length_from_typespec = old_cl->length_from_typespec;
3194       cl->backend_decl = old_cl->backend_decl;
3195       cl->passed_length = old_cl->passed_length;
3196       cl->resolved = old_cl->resolved;
3197     }
3198   else
3199     {
3200       /* Put into namespace.  */
3201       cl->next = ns->cl_list;
3202       ns->cl_list = cl;
3203     }
3204
3205   return cl;
3206 }
3207
3208
3209 /* Free the charlen list from cl to end (end is not freed). 
3210    Free the whole list if end is NULL.  */
3211
3212 void gfc_free_charlen (gfc_charlen *cl, gfc_charlen *end)
3213 {
3214   gfc_charlen *cl2;
3215
3216   for (; cl != end; cl = cl2)
3217     {
3218       gcc_assert (cl);
3219
3220       cl2 = cl->next;
3221       gfc_free_expr (cl->length);
3222       free (cl);
3223     }
3224 }
3225
3226
3227 /* Free entry list structs.  */
3228
3229 static void
3230 free_entry_list (gfc_entry_list *el)
3231 {
3232   gfc_entry_list *next;
3233
3234   if (el == NULL)
3235     return;
3236
3237   next = el->next;
3238   free (el);
3239   free_entry_list (next);
3240 }
3241
3242
3243 /* Free a namespace structure and everything below it.  Interface
3244    lists associated with intrinsic operators are not freed.  These are
3245    taken care of when a specific name is freed.  */
3246
3247 void
3248 gfc_free_namespace (gfc_namespace *ns)
3249 {
3250   gfc_namespace *p, *q;
3251   int i;
3252
3253   if (ns == NULL)
3254     return;
3255
3256   ns->refs--;
3257   if (ns->refs > 0)
3258     return;
3259   gcc_assert (ns->refs == 0);
3260
3261   gfc_free_statements (ns->code);
3262
3263   free_sym_tree (ns->sym_root);
3264   free_uop_tree (ns->uop_root);
3265   free_common_tree (ns->common_root);
3266   free_tb_tree (ns->tb_sym_root);
3267   free_tb_tree (ns->tb_uop_root);
3268   gfc_free_finalizer_list (ns->finalizers);
3269   gfc_free_charlen (ns->cl_list, NULL);
3270   free_st_labels (ns->st_labels);
3271
3272   free_entry_list (ns->entries);
3273   gfc_free_equiv (ns->equiv);
3274   gfc_free_equiv_lists (ns->equiv_lists);
3275   gfc_free_use_stmts (ns->use_stmts);
3276
3277   for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
3278     gfc_free_interface (ns->op[i]);
3279
3280   gfc_free_data (ns->data);
3281   p = ns->contained;
3282   free (ns);
3283
3284   /* Recursively free any contained namespaces.  */
3285   while (p != NULL)
3286     {
3287       q = p;
3288       p = p->sibling;
3289       gfc_free_namespace (q);
3290     }
3291 }
3292
3293
3294 void
3295 gfc_symbol_init_2 (void)
3296 {
3297
3298   gfc_current_ns = gfc_get_namespace (NULL, 0);
3299 }
3300
3301
3302 void
3303 gfc_symbol_done_2 (void)
3304 {
3305
3306   gfc_free_namespace (gfc_current_ns);
3307   gfc_current_ns = NULL;
3308   gfc_free_dt_list ();
3309 }
3310
3311
3312 /* Clear mark bits from symbol nodes associated with a symtree node.  */
3313
3314 static void
3315 clear_sym_mark (gfc_symtree *st)
3316 {
3317
3318   st->n.sym->mark = 0;
3319 }
3320
3321
3322 /* Recursively traverse the symtree nodes.  */
3323
3324 void
3325 gfc_traverse_symtree (gfc_symtree *st, void (*func) (gfc_symtree *))
3326 {
3327   if (!st)
3328     return;
3329
3330   gfc_traverse_symtree (st->left, func);
3331   (*func) (st);
3332   gfc_traverse_symtree (st->right, func);
3333 }
3334
3335
3336 /* Recursive namespace traversal function.  */
3337
3338 static void
3339 traverse_ns (gfc_symtree *st, void (*func) (gfc_symbol *))
3340 {
3341
3342   if (st == NULL)
3343     return;
3344
3345   traverse_ns (st->left, func);
3346
3347   if (st->n.sym->mark == 0)
3348     (*func) (st->n.sym);
3349   st->n.sym->mark = 1;
3350
3351   traverse_ns (st->right, func);
3352 }
3353
3354
3355 /* Call a given function for all symbols in the namespace.  We take
3356    care that each gfc_symbol node is called exactly once.  */
3357
3358 void
3359 gfc_traverse_ns (gfc_namespace *ns, void (*func) (gfc_symbol *))
3360 {
3361
3362   gfc_traverse_symtree (ns->sym_root, clear_sym_mark);
3363
3364   traverse_ns (ns->sym_root, func);
3365 }
3366
3367
3368 /* Return TRUE when name is the name of an intrinsic type.  */
3369
3370 bool
3371 gfc_is_intrinsic_typename (const char *name)
3372 {
3373   if (strcmp (name, "integer") == 0
3374       || strcmp (name, "real") == 0
3375       || strcmp (name, "character") == 0
3376       || strcmp (name, "logical") == 0
3377       || strcmp (name, "complex") == 0
3378       || strcmp (name, "doubleprecision") == 0
3379       || strcmp (name, "doublecomplex") == 0)
3380     return true;
3381   else
3382     return false;
3383 }
3384
3385
3386 /* Return TRUE if the symbol is an automatic variable.  */
3387
3388 static bool
3389 gfc_is_var_automatic (gfc_symbol *sym)
3390 {
3391   /* Pointer and allocatable variables are never automatic.  */
3392   if (sym->attr.pointer || sym->attr.allocatable)
3393     return false;
3394   /* Check for arrays with non-constant size.  */
3395   if (sym->attr.dimension && sym->as
3396       && !gfc_is_compile_time_shape (sym->as))
3397     return true;
3398   /* Check for non-constant length character variables.  */
3399   if (sym->ts.type == BT_CHARACTER
3400       && sym->ts.u.cl
3401       && !gfc_is_constant_expr (sym->ts.u.cl->length))
3402     return true;
3403   return false;
3404 }
3405
3406 /* Given a symbol, mark it as SAVEd if it is allowed.  */
3407
3408 static void
3409 save_symbol (gfc_symbol *sym)
3410 {
3411
3412   if (sym->attr.use_assoc)
3413     return;
3414
3415   if (sym->attr.in_common
3416       || sym->attr.dummy
3417       || sym->attr.result
3418       || sym->attr.flavor != FL_VARIABLE)
3419     return;
3420   /* Automatic objects are not saved.  */
3421   if (gfc_is_var_automatic (sym))
3422     return;
3423   gfc_add_save (&sym->attr, SAVE_EXPLICIT, sym->name, &sym->declared_at);
3424 }
3425
3426
3427 /* Mark those symbols which can be SAVEd as such.  */
3428
3429 void
3430 gfc_save_all (gfc_namespace *ns)
3431 {
3432   gfc_traverse_ns (ns, save_symbol);
3433 }
3434
3435
3436 /* Make sure that no changes to symbols are pending.  */
3437
3438 void
3439 gfc_enforce_clean_symbol_state(void)
3440 {
3441   gcc_assert (changed_syms == NULL);
3442 }
3443
3444
3445 /************** Global symbol handling ************/
3446
3447
3448 /* Search a tree for the global symbol.  */
3449
3450 gfc_gsymbol *
3451 gfc_find_gsymbol (gfc_gsymbol *symbol, const char *name)
3452 {
3453   int c;
3454
3455   if (symbol == NULL)
3456     return NULL;
3457
3458   while (symbol)
3459     {
3460       c = strcmp (name, symbol->name);
3461       if (!c)
3462         return symbol;
3463
3464       symbol = (c < 0) ? symbol->left : symbol->right;
3465     }
3466
3467   return NULL;
3468 }
3469
3470
3471 /* Compare two global symbols. Used for managing the BB tree.  */
3472
3473 static int
3474 gsym_compare (void *_s1, void *_s2)
3475 {
3476   gfc_gsymbol *s1, *s2;
3477
3478   s1 = (gfc_gsymbol *) _s1;
3479   s2 = (gfc_gsymbol *) _s2;
3480   return strcmp (s1->name, s2->name);
3481 }
3482
3483
3484 /* Get a global symbol, creating it if it doesn't exist.  */
3485
3486 gfc_gsymbol *
3487 gfc_get_gsymbol (const char *name)
3488 {
3489   gfc_gsymbol *s;
3490
3491   s = gfc_find_gsymbol (gfc_gsym_root, name);
3492   if (s != NULL)
3493     return s;
3494
3495   s = XCNEW (gfc_gsymbol);
3496   s->type = GSYM_UNKNOWN;
3497   s->name = gfc_get_string (name);
3498
3499   gfc_insert_bbt (&gfc_gsym_root, s, gsym_compare);
3500
3501   return s;
3502 }
3503
3504
3505 static gfc_symbol *
3506 get_iso_c_binding_dt (int sym_id)
3507 {
3508   gfc_dt_list *dt_list;
3509
3510   dt_list = gfc_derived_types;
3511
3512   /* Loop through the derived types in the name list, searching for
3513      the desired symbol from iso_c_binding.  Search the parent namespaces
3514      if necessary and requested to (parent_flag).  */
3515   while (dt_list != NULL)
3516     {
3517       if (dt_list->derived->from_intmod != INTMOD_NONE
3518           && dt_list->derived->intmod_sym_id == sym_id)
3519         return dt_list->derived;
3520
3521       dt_list = dt_list->next;
3522     }
3523
3524   return NULL;
3525 }
3526
3527
3528 /* Verifies that the given derived type symbol, derived_sym, is interoperable
3529    with C.  This is necessary for any derived type that is BIND(C) and for
3530    derived types that are parameters to functions that are BIND(C).  All
3531    fields of the derived type are required to be interoperable, and are tested
3532    for such.  If an error occurs, the errors are reported here, allowing for
3533    multiple errors to be handled for a single derived type.  */
3534
3535 gfc_try
3536 verify_bind_c_derived_type (gfc_symbol *derived_sym)
3537 {
3538   gfc_component *curr_comp = NULL;
3539   gfc_try is_c_interop = FAILURE;
3540   gfc_try retval = SUCCESS;
3541    
3542   if (derived_sym == NULL)
3543     gfc_internal_error ("verify_bind_c_derived_type(): Given symbol is "
3544                         "unexpectedly NULL");
3545
3546   /* If we've already looked at this derived symbol, do not look at it again
3547      so we don't repeat warnings/errors.  */
3548   if (derived_sym->ts.is_c_interop)
3549     return SUCCESS;
3550   
3551   /* The derived type must have the BIND attribute to be interoperable
3552      J3/04-007, Section 15.2.3.  */
3553   if (derived_sym->attr.is_bind_c != 1)
3554     {
3555       derived_sym->ts.is_c_interop = 0;
3556       gfc_error_now ("Derived type '%s' declared at %L must have the BIND "
3557                      "attribute to be C interoperable", derived_sym->name,
3558                      &(derived_sym->declared_at));
3559       retval = FAILURE;
3560     }
3561   
3562   curr_comp = derived_sym->components;
3563
3564   /* Fortran 2003 allows an empty derived type.  C99 appears to disallow an
3565      empty struct.  Section 15.2 in Fortran 2003 states:  "The following
3566      subclauses define the conditions under which a Fortran entity is
3567      interoperable.  If a Fortran entity is interoperable, an equivalent
3568      entity may be defined by means of C and the Fortran entity is said
3569      to be interoperable with the C entity.  There does not have to be such
3570      an interoperating C entity."
3571   */
3572   if (curr_comp == NULL)
3573     {
3574       gfc_warning ("Derived type '%s' with BIND(C) attribute at %L is empty, "
3575                    "and may be inaccessible by the C companion processor",
3576                    derived_sym->name, &(derived_sym->declared_at));
3577       derived_sym->ts.is_c_interop = 1;
3578       derived_sym->attr.is_bind_c = 1;
3579       return SUCCESS;
3580     }
3581
3582
3583   /* Initialize the derived type as being C interoperable.
3584      If we find an error in the components, this will be set false.  */
3585   derived_sym->ts.is_c_interop = 1;
3586   
3587   /* Loop through the list of components to verify that the kind of
3588      each is a C interoperable type.  */
3589   do
3590     {
3591       /* The components cannot be pointers (fortran sense).  
3592          J3/04-007, Section 15.2.3, C1505.      */
3593       if (curr_comp->attr.pointer != 0)
3594         {
3595           gfc_error ("Component '%s' at %L cannot have the "
3596                      "POINTER attribute because it is a member "
3597                      "of the BIND(C) derived type '%s' at %L",
3598                      curr_comp->name, &(curr_comp->loc),
3599                      derived_sym->name, &(derived_sym->declared_at));
3600           retval = FAILURE;
3601         }
3602
3603       if (curr_comp->attr.proc_pointer != 0)
3604         {
3605           gfc_error ("Procedure pointer component '%s' at %L cannot be a member"
3606                      " of the BIND(C) derived type '%s' at %L", curr_comp->name,
3607                      &curr_comp->loc, derived_sym->name,
3608                      &derived_sym->declared_at);
3609           retval = FAILURE;
3610         }
3611
3612       /* The components cannot be allocatable.
3613          J3/04-007, Section 15.2.3, C1505.      */
3614       if (curr_comp->attr.allocatable != 0)
3615         {
3616           gfc_error ("Component '%s' at %L cannot have the "
3617                      "ALLOCATABLE attribute because it is a member "
3618                      "of the BIND(C) derived type '%s' at %L",
3619                      curr_comp->name, &(curr_comp->loc),
3620                      derived_sym->name, &(derived_sym->declared_at));
3621           retval = FAILURE;
3622         }
3623       
3624       /* BIND(C) derived types must have interoperable components.  */
3625       if (curr_comp->ts.type == BT_DERIVED
3626           && curr_comp->ts.u.derived->ts.is_iso_c != 1 
3627           && curr_comp->ts.u.derived != derived_sym)
3628         {
3629           /* This should be allowed; the draft says a derived-type can not
3630              have type parameters if it is has the BIND attribute.  Type
3631              parameters seem to be for making parameterized derived types.
3632              There's no need to verify the type if it is c_ptr/c_funptr.  */
3633           retval = verify_bind_c_derived_type (curr_comp->ts.u.derived);
3634         }
3635       else
3636         {
3637           /* Grab the typespec for the given component and test the kind.  */ 
3638           is_c_interop = gfc_verify_c_interop (&(curr_comp->ts));
3639           
3640           if (is_c_interop != SUCCESS)
3641             {
3642               /* Report warning and continue since not fatal.  The
3643                  draft does specify a constraint that requires all fields
3644                  to interoperate, but if the user says real(4), etc., it
3645                  may interoperate with *something* in C, but the compiler
3646                  most likely won't know exactly what.  Further, it may not
3647                  interoperate with the same data type(s) in C if the user
3648                  recompiles with different flags (e.g., -m32 and -m64 on
3649                  x86_64 and using integer(4) to claim interop with a
3650                  C_LONG).  */
3651               if (derived_sym->attr.is_bind_c == 1)
3652                 /* If the derived type is bind(c), all fields must be
3653                    interop.  */
3654                 gfc_warning ("Component '%s' in derived type '%s' at %L "
3655                              "may not be C interoperable, even though "
3656                              "derived type '%s' is BIND(C)",
3657                              curr_comp->name, derived_sym->name,
3658                              &(curr_comp->loc), derived_sym->name);
3659               else
3660                 /* If derived type is param to bind(c) routine, or to one
3661                    of the iso_c_binding procs, it must be interoperable, so
3662                    all fields must interop too.  */
3663                 gfc_warning ("Component '%s' in derived type '%s' at %L "
3664                              "may not be C interoperable",
3665                              curr_comp->name, derived_sym->name,
3666                              &(curr_comp->loc));
3667             }
3668         }
3669       
3670       curr_comp = curr_comp->next;
3671     } while (curr_comp != NULL); 
3672
3673
3674   /* Make sure we don't have conflicts with the attributes.  */
3675   if (derived_sym->attr.access == ACCESS_PRIVATE)
3676     {
3677       gfc_error ("Derived type '%s' at %L cannot be declared with both "
3678                  "PRIVATE and BIND(C) attributes", derived_sym->name,
3679                  &(derived_sym->declared_at));
3680       retval = FAILURE;
3681     }
3682
3683   if (derived_sym->attr.sequence != 0)
3684     {
3685       gfc_error ("Derived type '%s' at %L cannot have the SEQUENCE "
3686                  "attribute because it is BIND(C)", derived_sym->name,
3687                  &(derived_sym->declared_at));
3688       retval = FAILURE;
3689     }
3690
3691   /* Mark the derived type as not being C interoperable if we found an
3692      error.  If there were only warnings, proceed with the assumption
3693      it's interoperable.  */
3694   if (retval == FAILURE)
3695     derived_sym->ts.is_c_interop = 0;
3696   
3697   return retval;
3698 }
3699
3700
3701 /* Generate symbols for the named constants c_null_ptr and c_null_funptr.  */
3702
3703 static gfc_try
3704 gen_special_c_interop_ptr (int ptr_id, const char *ptr_name,
3705                            const char *module_name)
3706 {
3707   gfc_symtree *tmp_symtree;
3708   gfc_symbol *tmp_sym;
3709   gfc_constructor *c;
3710
3711   tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, ptr_name);
3712          
3713   if (tmp_symtree != NULL)
3714     tmp_sym = tmp_symtree->n.sym;
3715   else
3716     {
3717       tmp_sym = NULL;
3718       gfc_internal_error ("gen_special_c_interop_ptr(): Unable to "
3719                           "create symbol for %s", ptr_name);
3720     }
3721
3722   /* Set up the symbol's important fields.  Save attr required so we can
3723      initialize the ptr to NULL.  */
3724   tmp_sym->attr.save = SAVE_EXPLICIT;
3725   tmp_sym->ts.is_c_interop = 1;
3726   tmp_sym->attr.is_c_interop = 1;
3727   tmp_sym->ts.is_iso_c = 1;
3728   tmp_sym->ts.type = BT_DERIVED;
3729
3730   /* The c_ptr and c_funptr derived types will provide the
3731      definition for c_null_ptr and c_null_funptr, respectively.  */
3732   if (ptr_id == ISOCBINDING_NULL_PTR)
3733     tmp_sym->ts.u.derived = get_iso_c_binding_dt (ISOCBINDING_PTR);
3734   else
3735     tmp_sym->ts.u.derived = get_iso_c_binding_dt (ISOCBINDING_FUNPTR);
3736   if (tmp_sym->ts.u.derived == NULL)
3737     {
3738       /* This can occur if the user forgot to declare c_ptr or
3739          c_funptr and they're trying to use one of the procedures
3740          that has arg(s) of the missing type.  In this case, a
3741          regular version of the thing should have been put in the
3742          current ns.  */
3743       generate_isocbinding_symbol (module_name, ptr_id == ISOCBINDING_NULL_PTR 
3744                                    ? ISOCBINDING_PTR : ISOCBINDING_FUNPTR,
3745                                    (const char *) (ptr_id == ISOCBINDING_NULL_PTR 
3746                                    ? "_gfortran_iso_c_binding_c_ptr"
3747                                    : "_gfortran_iso_c_binding_c_funptr"));
3748
3749       tmp_sym->ts.u.derived =
3750         get_iso_c_binding_dt (ptr_id == ISOCBINDING_NULL_PTR
3751                               ? ISOCBINDING_PTR : ISOCBINDING_FUNPTR);
3752     }
3753
3754   /* Module name is some mangled version of iso_c_binding.  */
3755   tmp_sym->module = gfc_get_string (module_name);
3756   
3757   /* Say it's from the iso_c_binding module.  */
3758   tmp_sym->attr.is_iso_c = 1;
3759   
3760   tmp_sym->attr.use_assoc = 1;
3761   tmp_sym->attr.is_bind_c = 1;
3762   /* Set the binding_label.  */
3763   sprintf (tmp_sym->binding_label, "%s_%s", module_name, tmp_sym->name);
3764   
3765   /* Set the c_address field of c_null_ptr and c_null_funptr to
3766      the value of NULL.  */
3767   tmp_sym->value = gfc_get_expr ();
3768   tmp_sym->value->expr_type = EXPR_STRUCTURE;
3769   tmp_sym->value->ts.type = BT_DERIVED;
3770   tmp_sym->value->ts.u.derived = tmp_sym->ts.u.derived;
3771   gfc_constructor_append_expr (&tmp_sym->value->value.constructor, NULL, NULL);
3772   c = gfc_constructor_first (tmp_sym->value->value.constructor);
3773   c->expr = gfc_get_expr ();
3774   c->expr->expr_type = EXPR_NULL;
3775   c->expr->ts.is_iso_c = 1;
3776   /* Must declare c_null_ptr and c_null_funptr as having the
3777      PARAMETER attribute so they can be used in init expressions.  */
3778   tmp_sym->attr.flavor = FL_PARAMETER;
3779
3780   return SUCCESS;
3781 }
3782
3783
3784 /* Add a formal argument, gfc_formal_arglist, to the
3785    end of the given list of arguments.  Set the reference to the
3786    provided symbol, param_sym, in the argument.  */
3787
3788 static void
3789 add_formal_arg (gfc_formal_arglist **head,
3790                 gfc_formal_arglist **tail,
3791                 gfc_formal_arglist *formal_arg,
3792                 gfc_symbol *param_sym)
3793 {
3794   /* Put in list, either as first arg or at the tail (curr arg).  */
3795   if (*head == NULL)
3796     *head = *tail = formal_arg;
3797   else
3798     {
3799       (*tail)->next = formal_arg;
3800       (*tail) = formal_arg;
3801     }
3802    
3803   (*tail)->sym = param_sym;
3804   (*tail)->next = NULL;
3805    
3806   return;
3807 }
3808
3809
3810 /* Generates a symbol representing the CPTR argument to an
3811    iso_c_binding procedure.  Also, create a gfc_formal_arglist for the
3812    CPTR and add it to the provided argument list.  */
3813
3814 static void
3815 gen_cptr_param (gfc_formal_arglist **head,
3816                 gfc_formal_arglist **tail,
3817                 const char *module_name,
3818                 gfc_namespace *ns, const char *c_ptr_name,
3819                 int iso_c_sym_id)
3820 {
3821   gfc_symbol *param_sym = NULL;
3822   gfc_symbol *c_ptr_sym = NULL;
3823   gfc_symtree *param_symtree = NULL;
3824   gfc_formal_arglist *formal_arg = NULL;
3825   const char *c_ptr_in;
3826   const char *c_ptr_type = NULL;
3827
3828   if (iso_c_sym_id == ISOCBINDING_F_PROCPOINTER)
3829     c_ptr_type = "_gfortran_iso_c_binding_c_funptr";
3830   else
3831     c_ptr_type = "_gfortran_iso_c_binding_c_ptr";
3832
3833   if(c_ptr_name == NULL)
3834     c_ptr_in = "gfc_cptr__";
3835   else
3836     c_ptr_in = c_ptr_name;
3837   gfc_get_sym_tree (c_ptr_in, ns, &param_symtree, false);
3838   if (param_symtree != NULL)
3839     param_sym = param_symtree->n.sym;
3840   else
3841     gfc_internal_error ("gen_cptr_param(): Unable to "
3842                         "create symbol for %s", c_ptr_in);
3843
3844   /* Set up the appropriate fields for the new c_ptr param sym.  */
3845   param_sym->refs++;
3846   param_sym->attr.flavor = FL_DERIVED;
3847   param_sym->ts.type = BT_DERIVED;
3848   param_sym->attr.intent = INTENT_IN;
3849   param_sym->attr.dummy = 1;
3850
3851   /* This will pass the ptr to the iso_c routines as a (void *).  */
3852   param_sym->attr.value = 1;
3853   param_sym->attr.use_assoc = 1;
3854
3855   /* Get the symbol for c_ptr or c_funptr, no matter what it's name is 
3856      (user renamed).  */
3857   if (iso_c_sym_id == ISOCBINDING_F_PROCPOINTER)
3858     c_ptr_sym = get_iso_c_binding_dt (ISOCBINDING_FUNPTR);
3859   else
3860     c_ptr_sym = get_iso_c_binding_dt (ISOCBINDING_PTR);
3861   if (c_ptr_sym == NULL)
3862     {
3863       /* This can happen if the user did not define c_ptr but they are
3864          trying to use one of the iso_c_binding functions that need it.  */
3865       if (iso_c_sym_id == ISOCBINDING_F_PROCPOINTER)
3866         generate_isocbinding_symbol (module_name, ISOCBINDING_FUNPTR,
3867                                      (const char *)c_ptr_type);
3868       else
3869         generate_isocbinding_symbol (module_name, ISOCBINDING_PTR,
3870                                      (const char *)c_ptr_type);
3871
3872       gfc_get_ha_symbol (c_ptr_type, &(c_ptr_sym));
3873     }
3874
3875   param_sym->ts.u.derived = c_ptr_sym;
3876   param_sym->module = gfc_get_string (module_name);
3877
3878   /* Make new formal arg.  */
3879   formal_arg = gfc_get_formal_arglist ();
3880   /* Add arg to list of formal args (the CPTR arg).  */
3881   add_formal_arg (head, tail, formal_arg, param_sym);
3882
3883   /* Validate changes.  */
3884   gfc_commit_symbol (param_sym);
3885 }
3886
3887
3888 /* Generates a symbol representing the FPTR argument to an
3889    iso_c_binding procedure.  Also, create a gfc_formal_arglist for the
3890    FPTR and add it to the provided argument list.  */
3891
3892 static void
3893 gen_fptr_param (gfc_formal_arglist **head,
3894                 gfc_formal_arglist **tail,
3895                 const char *module_name,
3896                 gfc_namespace *ns, const char *f_ptr_name, int proc)
3897 {
3898   gfc_symbol *param_sym = NULL;
3899   gfc_symtree *param_symtree = NULL;
3900   gfc_formal_arglist *formal_arg = NULL;
3901   const char *f_ptr_out = "gfc_fptr__";
3902
3903   if (f_ptr_name != NULL)
3904     f_ptr_out = f_ptr_name;
3905
3906   gfc_get_sym_tree (f_ptr_out, ns, &param_symtree, false);
3907   if (param_symtree != NULL)
3908     param_sym = param_symtree->n.sym;
3909   else
3910     gfc_internal_error ("generateFPtrParam(): Unable to "
3911                         "create symbol for %s", f_ptr_out);
3912
3913   /* Set up the necessary fields for the fptr output param sym.  */
3914   param_sym->refs++;
3915   if (proc)
3916     param_sym->attr.proc_pointer = 1;
3917   else
3918     param_sym->attr.pointer = 1;
3919   param_sym->attr.dummy = 1;
3920   param_sym->attr.use_assoc = 1;
3921
3922   /* ISO C Binding type to allow any pointer type as actual param.  */
3923   param_sym->ts.type = BT_VOID;
3924   param_sym->module = gfc_get_string (module_name);
3925    
3926   /* Make the arg.  */
3927   formal_arg = gfc_get_formal_arglist ();
3928   /* Add arg to list of formal args.  */
3929   add_formal_arg (head, tail, formal_arg, param_sym);
3930
3931   /* Validate changes.  */
3932   gfc_commit_symbol (param_sym);
3933 }
3934
3935
3936 /* Generates a symbol representing the optional SHAPE argument for the
3937    iso_c_binding c_f_pointer() procedure.  Also, create a
3938    gfc_formal_arglist for the SHAPE and add it to the provided
3939    argument list.  */
3940
3941 static void
3942 gen_shape_param (gfc_formal_arglist **head,
3943                  gfc_formal_arglist **tail,
3944                  const char *module_name,
3945                  gfc_namespace *ns, const char *shape_param_name)
3946 {
3947   gfc_symbol *param_sym = NULL;
3948   gfc_symtree *param_symtree = NULL;
3949   gfc_formal_arglist *formal_arg = NULL;
3950   const char *shape_param = "gfc_shape_array__";
3951
3952   if (shape_param_name != NULL)
3953     shape_param = shape_param_name;
3954
3955   gfc_get_sym_tree (shape_param, ns, &param_symtree, false);
3956   if (param_symtree != NULL)
3957     param_sym = param_symtree->n.sym;
3958   else
3959     gfc_internal_error ("generateShapeParam(): Unable to "
3960                         "create symbol for %s", shape_param);
3961    
3962   /* Set up the necessary fields for the shape input param sym.  */
3963   param_sym->refs++;
3964   param_sym->attr.dummy = 1;
3965   param_sym->attr.use_assoc = 1;
3966
3967   /* Integer array, rank 1, describing the shape of the object.  Make it's
3968      type BT_VOID initially so we can accept any type/kind combination of
3969      integer.  During gfc_iso_c_sub_interface (resolve.c), we'll make it
3970      of BT_INTEGER type.  */
3971   param_sym->ts.type = BT_VOID;
3972
3973   /* Initialize the kind to default integer.  However, it will be overridden
3974      during resolution to match the kind of the SHAPE parameter given as
3975      the actual argument (to allow for any valid integer kind).  */
3976   param_sym->ts.kind = gfc_default_integer_kind;
3977   param_sym->as = gfc_get_array_spec ();
3978
3979   param_sym->as->rank = 1;
3980   param_sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
3981                                               NULL, 1);
3982
3983   /* The extent is unknown until we get it.  The length give us
3984      the rank the incoming pointer.  */
3985   param_sym->as->type = AS_ASSUMED_SHAPE;
3986
3987   /* The arg is also optional; it is required iff the second arg
3988      (fptr) is to an array, otherwise, it's ignored.  */
3989   param_sym->attr.optional = 1;
3990   param_sym->attr.intent = INTENT_IN;
3991   param_sym->attr.dimension = 1;
3992   param_sym->module = gfc_get_string (module_name);
3993    
3994   /* Make the arg.  */
3995   formal_arg = gfc_get_formal_arglist ();
3996   /* Add arg to list of formal args.  */
3997   add_formal_arg (head, tail, formal_arg, param_sym);
3998
3999   /* Validate changes.  */
4000   gfc_commit_symbol (param_sym);
4001 }
4002
4003
4004 /* Add a procedure interface to the given symbol (i.e., store a
4005    reference to the list of formal arguments).  */
4006
4007 static void
4008 add_proc_interface (gfc_symbol *sym, ifsrc source,
4009                     gfc_formal_arglist *formal)
4010 {
4011
4012   sym->formal = formal;
4013   sym->attr.if_source = source;
4014 }
4015
4016
4017 /* Copy the formal args from an existing symbol, src, into a new
4018    symbol, dest.  New formal args are created, and the description of
4019    each arg is set according to the existing ones.  This function is
4020    used when creating procedure declaration variables from a procedure
4021    declaration statement (see match_proc_decl()) to create the formal
4022    args based on the args of a given named interface.  */
4023
4024 void
4025 gfc_copy_formal_args (gfc_symbol *dest, gfc_symbol *src)
4026 {
4027   gfc_formal_arglist *head = NULL;
4028   gfc_formal_arglist *tail = NULL;
4029   gfc_formal_arglist *formal_arg = NULL;
4030   gfc_formal_arglist *curr_arg = NULL;
4031   gfc_formal_arglist *formal_prev = NULL;
4032   /* Save current namespace so we can change it for formal args.  */
4033   gfc_namespace *parent_ns = gfc_current_ns;
4034
4035   /* Create a new namespace, which will be the formal ns (namespace
4036      of the formal args).  */
4037   gfc_current_ns = gfc_get_namespace (parent_ns, 0);
4038   gfc_current_ns->proc_name = dest;
4039
4040   for (curr_arg = src->formal; curr_arg; curr_arg = curr_arg->next)
4041     {
4042       formal_arg = gfc_get_formal_arglist ();
4043       gfc_get_symbol (curr_arg->sym->name, gfc_current_ns, &(formal_arg->sym));
4044
4045       /* May need to copy more info for the symbol.  */
4046       formal_arg->sym->attr = curr_arg->sym->attr;
4047       formal_arg->sym->ts = curr_arg->sym->ts;
4048       formal_arg->sym->as = gfc_copy_array_spec (curr_arg->sym->as);
4049       gfc_copy_formal_args (formal_arg->sym, curr_arg->sym);
4050
4051       /* If this isn't the first arg, set up the next ptr.  For the
4052         last arg built, the formal_arg->next will never get set to
4053         anything other than NULL.  */
4054       if (formal_prev != NULL)
4055         formal_prev->next = formal_arg;
4056       else
4057         formal_arg->next = NULL;
4058
4059       formal_prev = formal_arg;
4060
4061       /* Add arg to list of formal args.  */
4062       add_formal_arg (&head, &tail, formal_arg, formal_arg->sym);
4063
4064       /* Validate changes.  */
4065       gfc_commit_symbol (formal_arg->sym);
4066     }
4067
4068   /* Add the interface to the symbol.  */
4069   add_proc_interface (dest, IFSRC_DECL, head);
4070
4071   /* Store the formal namespace information.  */
4072   if (dest->formal != NULL)
4073     /* The current ns should be that for the dest proc.  */
4074     dest->formal_ns = gfc_current_ns;
4075   /* Restore the current namespace to what it was on entry.  */
4076   gfc_current_ns = parent_ns;
4077 }
4078
4079
4080 void
4081 gfc_copy_formal_args_intr (gfc_symbol *dest, gfc_intrinsic_sym *src)
4082 {
4083   gfc_formal_arglist *head = NULL;
4084   gfc_formal_arglist *tail = NULL;
4085   gfc_formal_arglist *formal_arg = NULL;
4086   gfc_intrinsic_arg *curr_arg = NULL;
4087   gfc_formal_arglist *formal_prev = NULL;
4088   /* Save current namespace so we can change it for formal args.  */
4089   gfc_namespace *parent_ns = gfc_current_ns;
4090
4091   /* Create a new namespace, which will be the formal ns (namespace
4092      of the formal args).  */
4093   gfc_current_ns = gfc_get_namespace (parent_ns, 0);
4094   gfc_current_ns->proc_name = dest;
4095
4096   for (curr_arg = src->formal; curr_arg; curr_arg = curr_arg->next)
4097     {
4098       formal_arg = gfc_get_formal_arglist ();
4099       gfc_get_symbol (curr_arg->name, gfc_current_ns, &(formal_arg->sym));
4100
4101       /* May need to copy more info for the symbol.  */
4102       formal_arg->sym->ts = curr_arg->ts;
4103       formal_arg->sym->attr.optional = curr_arg->optional;
4104       formal_arg->sym->attr.value = curr_arg->value;
4105       formal_arg->sym->attr.intent = curr_arg->intent;
4106       formal_arg->sym->attr.flavor = FL_VARIABLE;
4107       formal_arg->sym->attr.dummy = 1;
4108
4109       if (formal_arg->sym->ts.type == BT_CHARACTER)
4110         formal_arg->sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4111
4112       /* If this isn't the first arg, set up the next ptr.  For the
4113         last arg built, the formal_arg->next will never get set to
4114         anything other than NULL.  */
4115       if (formal_prev != NULL)
4116         formal_prev->next = formal_arg;
4117       else
4118         formal_arg->next = NULL;
4119
4120       formal_prev = formal_arg;
4121
4122       /* Add arg to list of formal args.  */
4123       add_formal_arg (&head, &tail, formal_arg, formal_arg->sym);
4124
4125       /* Validate changes.  */
4126       gfc_commit_symbol (formal_arg->sym);
4127     }
4128
4129   /* Add the interface to the symbol.  */
4130   add_proc_interface (dest, IFSRC_DECL, head);
4131
4132   /* Store the formal namespace information.  */
4133   if (dest->formal != NULL)
4134     /* The current ns should be that for the dest proc.  */
4135     dest->formal_ns = gfc_current_ns;
4136   /* Restore the current namespace to what it was on entry.  */
4137   gfc_current_ns = parent_ns;
4138 }
4139
4140
4141 void
4142 gfc_copy_formal_args_ppc (gfc_component *dest, gfc_symbol *src)
4143 {
4144   gfc_formal_arglist *head = NULL;
4145   gfc_formal_arglist *tail = NULL;
4146   gfc_formal_arglist *formal_arg = NULL;
4147   gfc_formal_arglist *curr_arg = NULL;
4148   gfc_formal_arglist *formal_prev = NULL;
4149   /* Save current namespace so we can change it for formal args.  */
4150   gfc_namespace *parent_ns = gfc_current_ns;
4151
4152   /* Create a new namespace, which will be the formal ns (namespace
4153      of the formal args).  */
4154   gfc_current_ns = gfc_get_namespace (parent_ns, 0);
4155   /* TODO: gfc_current_ns->proc_name = dest;*/
4156
4157   for (curr_arg = src->formal; curr_arg; curr_arg = curr_arg->next)
4158     {
4159       formal_arg = gfc_get_formal_arglist ();
4160       gfc_get_symbol (curr_arg->sym->name, gfc_current_ns, &(formal_arg->sym));
4161
4162       /* May need to copy more info for the symbol.  */
4163       formal_arg->sym->attr = curr_arg->sym->attr;
4164       formal_arg->sym->ts = curr_arg->sym->ts;
4165       formal_arg->sym->as = gfc_copy_array_spec (curr_arg->sym->as);
4166       gfc_copy_formal_args (formal_arg->sym, curr_arg->sym);
4167
4168       /* If this isn't the first arg, set up the next ptr.  For the
4169         last arg built, the formal_arg->next will never get set to
4170         anything other than NULL.  */
4171       if (formal_prev != NULL)
4172         formal_prev->next = formal_arg;
4173       else
4174         formal_arg->next = NULL;
4175
4176       formal_prev = formal_arg;
4177
4178       /* Add arg to list of formal args.  */
4179       add_formal_arg (&head, &tail, formal_arg, formal_arg->sym);
4180
4181       /* Validate changes.  */
4182       gfc_commit_symbol (formal_arg->sym);
4183     }
4184
4185   /* Add the interface to the symbol.  */
4186   gfc_free_formal_arglist (dest->formal);
4187   dest->formal = head;
4188   dest->attr.if_source = IFSRC_DECL;
4189
4190   /* Store the formal namespace information.  */
4191   if (dest->formal != NULL)
4192     /* The current ns should be that for the dest proc.  */
4193     dest->formal_ns = gfc_current_ns;
4194   /* Restore the current namespace to what it was on entry.  */
4195   gfc_current_ns = parent_ns;
4196 }
4197
4198
4199 /* Builds the parameter list for the iso_c_binding procedure
4200    c_f_pointer or c_f_procpointer.  The old_sym typically refers to a
4201    generic version of either the c_f_pointer or c_f_procpointer
4202    functions.  The new_proc_sym represents a "resolved" version of the
4203    symbol.  The functions are resolved to match the types of their
4204    parameters; for example, c_f_pointer(cptr, fptr) would resolve to
4205    something similar to c_f_pointer_i4 if the type of data object fptr
4206    pointed to was a default integer.  The actual name of the resolved
4207    procedure symbol is further mangled with the module name, etc., but
4208    the idea holds true.  */
4209
4210 static void
4211 build_formal_args (gfc_symbol *new_proc_sym,
4212                    gfc_symbol *old_sym, int add_optional_arg)
4213 {
4214   gfc_formal_arglist *head = NULL, *tail = NULL;
4215   gfc_namespace *parent_ns = NULL;
4216
4217   parent_ns = gfc_current_ns;
4218   /* Create a new namespace, which will be the formal ns (namespace
4219      of the formal args).  */
4220   gfc_current_ns = gfc_get_namespace(parent_ns, 0);
4221   gfc_current_ns->proc_name = new_proc_sym;
4222
4223   /* Generate the params.  */
4224   if (old_sym->intmod_sym_id == ISOCBINDING_F_PROCPOINTER)
4225     {
4226       gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
4227                       gfc_current_ns, "cptr", old_sym->intmod_sym_id);
4228       gen_fptr_param (&head, &tail, (const char *) new_proc_sym->module,
4229                       gfc_current_ns, "fptr", 1);
4230     }
4231   else if (old_sym->intmod_sym_id == ISOCBINDING_F_POINTER)
4232     {
4233       gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
4234                       gfc_current_ns, "cptr", old_sym->intmod_sym_id);
4235       gen_fptr_param (&head, &tail, (const char *) new_proc_sym->module,
4236                       gfc_current_ns, "fptr", 0);
4237       /* If we're dealing with c_f_pointer, it has an optional third arg.  */
4238       gen_shape_param (&head, &tail,(const char *) new_proc_sym->module,
4239                        gfc_current_ns, "shape");
4240
4241     }
4242   else if (old_sym->intmod_sym_id == ISOCBINDING_ASSOCIATED)
4243     {
4244       /* c_associated has one required arg and one optional; both
4245          are c_ptrs.  */
4246       gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
4247                       gfc_current_ns, "c_ptr_1", ISOCBINDING_ASSOCIATED);
4248       if (add_optional_arg)
4249         {
4250           gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
4251                           gfc_current_ns, "c_ptr_2", ISOCBINDING_ASSOCIATED);
4252           /* The last param is optional so mark it as such.  */
4253           tail->sym->attr.optional = 1;
4254         }
4255     }
4256
4257   /* Add the interface (store formal args to new_proc_sym).  */
4258   add_proc_interface (new_proc_sym, IFSRC_DECL, head);
4259
4260   /* Set up the formal_ns pointer to the one created for the
4261      new procedure so it'll get cleaned up during gfc_free_symbol().  */
4262   new_proc_sym->formal_ns = gfc_current_ns;
4263
4264   gfc_current_ns = parent_ns;
4265 }
4266
4267 static int
4268 std_for_isocbinding_symbol (int id)
4269 {
4270   switch (id)
4271     {
4272 #define NAMED_INTCST(a,b,c,d) \
4273       case a:\
4274         return d;
4275 #include "iso-c-binding.def"
4276 #undef NAMED_INTCST
4277
4278 #define NAMED_FUNCTION(a,b,c,d) \
4279       case a:\
4280         return d;
4281 #include "iso-c-binding.def"
4282 #undef NAMED_FUNCTION
4283
4284        default:
4285          return GFC_STD_F2003;
4286     }
4287 }
4288
4289 /* Generate the given set of C interoperable kind objects, or all
4290    interoperable kinds.  This function will only be given kind objects
4291    for valid iso_c_binding defined types because this is verified when
4292    the 'use' statement is parsed.  If the user gives an 'only' clause,
4293    the specific kinds are looked up; if they don't exist, an error is
4294    reported.  If the user does not give an 'only' clause, all
4295    iso_c_binding symbols are generated.  If a list of specific kinds
4296    is given, it must have a NULL in the first empty spot to mark the
4297    end of the list.  */
4298
4299
4300 void
4301 generate_isocbinding_symbol (const char *mod_name, iso_c_binding_symbol s,
4302                              const char *local_name)
4303 {
4304   const char *const name = (local_name && local_name[0]) ? local_name
4305                                              : c_interop_kinds_table[s].name;
4306   gfc_symtree *tmp_symtree = NULL;
4307   gfc_symbol *tmp_sym = NULL;
4308   gfc_dt_list **dt_list_ptr = NULL;
4309   gfc_component *tmp_comp = NULL;
4310   char comp_name[(GFC_MAX_SYMBOL_LEN * 2) + 1];
4311   int index;
4312
4313   if (gfc_notification_std (std_for_isocbinding_symbol (s)) == ERROR)
4314     return;
4315   tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, name);
4316
4317   /* Already exists in this scope so don't re-add it.
4318      TODO: we should probably check that it's really the same symbol.  */
4319   if (tmp_symtree != NULL)
4320     return;
4321
4322   /* Create the sym tree in the current ns.  */
4323   gfc_get_sym_tree (name, gfc_current_ns, &tmp_symtree, false);
4324   if (tmp_symtree)
4325     tmp_sym = tmp_symtree->n.sym;
4326   else
4327     gfc_internal_error ("generate_isocbinding_symbol(): Unable to "
4328                         "create symbol");
4329
4330   /* Say what module this symbol belongs to.  */
4331   tmp_sym->module = gfc_get_string (mod_name);
4332   tmp_sym->from_intmod = INTMOD_ISO_C_BINDING;
4333   tmp_sym->intmod_sym_id = s;
4334
4335   switch (s)
4336     {
4337
4338 #define NAMED_INTCST(a,b,c,d) case a : 
4339 #define NAMED_REALCST(a,b,c,d) case a :
4340 #define NAMED_CMPXCST(a,b,c,d) case a :
4341 #define NAMED_LOGCST(a,b,c) case a :
4342 #define NAMED_CHARKNDCST(a,b,c) case a :
4343 #include "iso-c-binding.def"
4344
4345         tmp_sym->value = gfc_get_int_expr (gfc_default_integer_kind, NULL,
4346                                            c_interop_kinds_table[s].value);
4347
4348         /* Initialize an integer constant expression node.  */
4349         tmp_sym->attr.flavor = FL_PARAMETER;
4350         tmp_sym->ts.type = BT_INTEGER;
4351         tmp_sym->ts.kind = gfc_default_integer_kind;
4352
4353         /* Mark this type as a C interoperable one.  */
4354         tmp_sym->ts.is_c_interop = 1;
4355         tmp_sym->ts.is_iso_c = 1;
4356         tmp_sym->value->ts.is_c_interop = 1;
4357         tmp_sym->value->ts.is_iso_c = 1;
4358         tmp_sym->attr.is_c_interop = 1;
4359
4360         /* Tell what f90 type this c interop kind is valid.  */
4361         tmp_sym->ts.f90_type = c_interop_kinds_table[s].f90_type;
4362
4363         /* Say it's from the iso_c_binding module.  */
4364         tmp_sym->attr.is_iso_c = 1;
4365
4366         /* Make it use associated.  */
4367         tmp_sym->attr.use_assoc = 1;
4368         break;
4369
4370
4371 #define NAMED_CHARCST(a,b,c) case a :
4372 #include "iso-c-binding.def"
4373
4374         /* Initialize an integer constant expression node for the
4375            length of the character.  */
4376         tmp_sym->value = gfc_get_character_expr (gfc_default_character_kind,
4377                                                  &gfc_current_locus, NULL, 1);
4378         tmp_sym->value->ts.is_c_interop = 1;
4379         tmp_sym->value->ts.is_iso_c = 1;
4380         tmp_sym->value->value.character.length = 1;
4381         tmp_sym->value->value.character.string[0]
4382           = (gfc_char_t) c_interop_kinds_table[s].value;
4383         tmp_sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4384         tmp_sym->ts.u.cl->length = gfc_get_int_expr (gfc_default_integer_kind,
4385                                                      NULL, 1);
4386
4387         /* May not need this in both attr and ts, but do need in
4388            attr for writing module file.  */
4389         tmp_sym->attr.is_c_interop = 1;
4390
4391         tmp_sym->attr.flavor = FL_PARAMETER;
4392         tmp_sym->ts.type = BT_CHARACTER;
4393
4394         /* Need to set it to the C_CHAR kind.  */
4395         tmp_sym->ts.kind = gfc_default_character_kind;
4396
4397         /* Mark this type as a C interoperable one.  */
4398         tmp_sym->ts.is_c_interop = 1;
4399         tmp_sym->ts.is_iso_c = 1;
4400
4401         /* Tell what f90 type this c interop kind is valid.  */
4402         tmp_sym->ts.f90_type = BT_CHARACTER;
4403
4404         /* Say it's from the iso_c_binding module.  */
4405         tmp_sym->attr.is_iso_c = 1;
4406
4407         /* Make it use associated.  */
4408         tmp_sym->attr.use_assoc = 1;
4409         break;
4410
4411       case ISOCBINDING_PTR:
4412       case ISOCBINDING_FUNPTR:
4413
4414         /* Initialize an integer constant expression node.  */
4415         tmp_sym->attr.flavor = FL_DERIVED;
4416         tmp_sym->ts.is_c_interop = 1;
4417         tmp_sym->attr.is_c_interop = 1;
4418         tmp_sym->attr.is_iso_c = 1;
4419         tmp_sym->ts.is_iso_c = 1;
4420         tmp_sym->ts.type = BT_DERIVED;
4421
4422         /* A derived type must have the bind attribute to be
4423            interoperable (J3/04-007, Section 15.2.3), even though
4424            the binding label is not used.  */
4425         tmp_sym->attr.is_bind_c = 1;
4426
4427         tmp_sym->attr.referenced = 1;
4428
4429         tmp_sym->ts.u.derived = tmp_sym;
4430
4431         /* Add the symbol created for the derived type to the current ns.  */
4432         dt_list_ptr = &(gfc_derived_types);
4433         while (*dt_list_ptr != NULL && (*dt_list_ptr)->next != NULL)
4434           dt_list_ptr = &((*dt_list_ptr)->next);
4435
4436         /* There is already at least one derived type in the list, so append
4437            the one we're currently building for c_ptr or c_funptr.  */
4438         if (*dt_list_ptr != NULL)
4439           dt_list_ptr = &((*dt_list_ptr)->next);
4440         (*dt_list_ptr) = gfc_get_dt_list ();
4441         (*dt_list_ptr)->derived = tmp_sym;
4442         (*dt_list_ptr)->next = NULL;
4443
4444         /* Set up the component of the derived type, which will be
4445            an integer with kind equal to c_ptr_size.  Mangle the name of
4446            the field for the c_address to prevent the curious user from
4447            trying to access it from Fortran.  */
4448         sprintf (comp_name, "__%s_%s", tmp_sym->name, "c_address");
4449         gfc_add_component (tmp_sym, comp_name, &tmp_comp);
4450         if (tmp_comp == NULL)
4451           gfc_internal_error ("generate_isocbinding_symbol(): Unable to "
4452                               "create component for c_address");
4453
4454         tmp_comp->ts.type = BT_INTEGER;
4455
4456         /* Set this because the module will need to read/write this field.  */
4457         tmp_comp->ts.f90_type = BT_INTEGER;
4458
4459         /* The kinds for c_ptr and c_funptr are the same.  */
4460         index = get_c_kind ("c_ptr", c_interop_kinds_table);
4461         tmp_comp->ts.kind = c_interop_kinds_table[index].value;
4462
4463         tmp_comp->attr.pointer = 0;
4464         tmp_comp->attr.dimension = 0;
4465
4466         /* Mark the component as C interoperable.  */
4467         tmp_comp->ts.is_c_interop = 1;
4468
4469         /* Make it use associated (iso_c_binding module).  */
4470         tmp_sym->attr.use_assoc = 1;
4471         break;
4472
4473       case ISOCBINDING_NULL_PTR:
4474       case ISOCBINDING_NULL_FUNPTR:
4475         gen_special_c_interop_ptr (s, name, mod_name);
4476         break;
4477
4478       case ISOCBINDING_F_POINTER:
4479       case ISOCBINDING_ASSOCIATED:
4480       case ISOCBINDING_LOC:
4481       case ISOCBINDING_FUNLOC:
4482       case ISOCBINDING_F_PROCPOINTER:
4483
4484         tmp_sym->attr.proc = PROC_MODULE;
4485
4486         /* Use the procedure's name as it is in the iso_c_binding module for
4487            setting the binding label in case the user renamed the symbol.  */
4488         sprintf (tmp_sym->binding_label, "%s_%s", mod_name,
4489                  c_interop_kinds_table[s].name);
4490         tmp_sym->attr.is_iso_c = 1;
4491         if (s == ISOCBINDING_F_POINTER || s == ISOCBINDING_F_PROCPOINTER)
4492           tmp_sym->attr.subroutine = 1;
4493         else
4494           {
4495             /* TODO!  This needs to be finished more for the expr of the
4496                function or something!
4497                This may not need to be here, because trying to do c_loc
4498                as an external.  */
4499             if (s == ISOCBINDING_ASSOCIATED)
4500               {
4501                 tmp_sym->attr.function = 1;
4502                 tmp_sym->ts.type = BT_LOGICAL;
4503                 tmp_sym->ts.kind = gfc_default_logical_kind;
4504                 tmp_sym->result = tmp_sym;
4505               }
4506             else
4507               {
4508                /* Here, we're taking the simple approach.  We're defining
4509                   c_loc as an external identifier so the compiler will put
4510                   what we expect on the stack for the address we want the
4511                   C address of.  */
4512                 tmp_sym->ts.type = BT_DERIVED;
4513                 if (s == ISOCBINDING_LOC)
4514                   tmp_sym->ts.u.derived =
4515                     get_iso_c_binding_dt (ISOCBINDING_PTR);
4516                 else
4517                   tmp_sym->ts.u.derived =
4518                     get_iso_c_binding_dt (ISOCBINDING_FUNPTR);
4519
4520                 if (tmp_sym->ts.u.derived == NULL)
4521                   {
4522                     /* Create the necessary derived type so we can continue
4523                        processing the file.  */
4524                     generate_isocbinding_symbol
4525                       (mod_name, s == ISOCBINDING_FUNLOC
4526                                  ? ISOCBINDING_FUNPTR : ISOCBINDING_PTR,
4527                        (const char *)(s == ISOCBINDING_FUNLOC
4528                                 ? "_gfortran_iso_c_binding_c_funptr"
4529                                 : "_gfortran_iso_c_binding_c_ptr"));
4530                     tmp_sym->ts.u.derived =
4531                       get_iso_c_binding_dt (s == ISOCBINDING_FUNLOC
4532                                             ? ISOCBINDING_FUNPTR
4533                                             : ISOCBINDING_PTR);
4534                   }
4535
4536                 /* The function result is itself (no result clause).  */
4537                 tmp_sym->result = tmp_sym;
4538                 tmp_sym->attr.external = 1;
4539                 tmp_sym->attr.use_assoc = 0;
4540                 tmp_sym->attr.pure = 1;
4541                 tmp_sym->attr.if_source = IFSRC_UNKNOWN;
4542                 tmp_sym->attr.proc = PROC_UNKNOWN;
4543               }
4544           }
4545
4546         tmp_sym->attr.flavor = FL_PROCEDURE;
4547         tmp_sym->attr.contained = 0;
4548         
4549        /* Try using this builder routine, with the new and old symbols
4550           both being the generic iso_c proc sym being created.  This
4551           will create the formal args (and the new namespace for them).
4552           Don't build an arg list for c_loc because we're going to treat
4553           c_loc as an external procedure.  */
4554         if (s != ISOCBINDING_LOC && s != ISOCBINDING_FUNLOC)
4555           /* The 1 says to add any optional args, if applicable.  */
4556           build_formal_args (tmp_sym, tmp_sym, 1);
4557
4558         /* Set this after setting up the symbol, to prevent error messages.  */
4559         tmp_sym->attr.use_assoc = 1;
4560
4561         /* This symbol will not be referenced directly.  It will be
4562            resolved to the implementation for the given f90 kind.  */
4563         tmp_sym->attr.referenced = 0;
4564
4565         break;
4566
4567       default:
4568         gcc_unreachable ();
4569     }
4570   gfc_commit_symbol (tmp_sym);
4571 }
4572
4573
4574 /* Creates a new symbol based off of an old iso_c symbol, with a new
4575    binding label.  This function can be used to create a new,
4576    resolved, version of a procedure symbol for c_f_pointer or
4577    c_f_procpointer that is based on the generic symbols.  A new
4578    parameter list is created for the new symbol using
4579    build_formal_args().  The add_optional_flag specifies whether the
4580    to add the optional SHAPE argument.  The new symbol is
4581    returned.  */
4582
4583 gfc_symbol *
4584 get_iso_c_sym (gfc_symbol *old_sym, char *new_name,
4585                char *new_binding_label, int add_optional_arg)
4586 {
4587   gfc_symtree *new_symtree = NULL;
4588
4589   /* See if we have a symbol by that name already available, looking
4590      through any parent namespaces.  */
4591   gfc_find_sym_tree (new_name, gfc_current_ns, 1, &new_symtree);
4592   if (new_symtree != NULL)
4593     /* Return the existing symbol.  */
4594     return new_symtree->n.sym;
4595
4596   /* Create the symtree/symbol, with attempted host association.  */
4597   gfc_get_ha_sym_tree (new_name, &new_symtree);
4598   if (new_symtree == NULL)
4599     gfc_internal_error ("get_iso_c_sym(): Unable to create "
4600                         "symtree for '%s'", new_name);
4601
4602   /* Now fill in the fields of the resolved symbol with the old sym.  */
4603   strcpy (new_symtree->n.sym->binding_label, new_binding_label);
4604   new_symtree->n.sym->attr = old_sym->attr;
4605   new_symtree->n.sym->ts = old_sym->ts;
4606   new_symtree->n.sym->module = gfc_get_string (old_sym->module);
4607   new_symtree->n.sym->from_intmod = old_sym->from_intmod;
4608   new_symtree->n.sym->intmod_sym_id = old_sym->intmod_sym_id;
4609   if (old_sym->attr.function)
4610     new_symtree->n.sym->result = new_symtree->n.sym;
4611   /* Build the formal arg list.  */
4612   build_formal_args (new_symtree->n.sym, old_sym, add_optional_arg);
4613
4614   gfc_commit_symbol (new_symtree->n.sym);
4615
4616   return new_symtree->n.sym;
4617 }
4618
4619
4620 /* Check that a symbol is already typed.  If strict is not set, an untyped
4621    symbol is acceptable for non-standard-conforming mode.  */
4622
4623 gfc_try
4624 gfc_check_symbol_typed (gfc_symbol* sym, gfc_namespace* ns,
4625                         bool strict, locus where)
4626 {
4627   gcc_assert (sym);
4628
4629   if (gfc_matching_prefix)
4630     return SUCCESS;
4631
4632   /* Check for the type and try to give it an implicit one.  */
4633   if (sym->ts.type == BT_UNKNOWN
4634       && gfc_set_default_type (sym, 0, ns) == FAILURE)
4635     {
4636       if (strict)
4637         {
4638           gfc_error ("Symbol '%s' is used before it is typed at %L",
4639                      sym->name, &where);
4640           return FAILURE;
4641         }
4642
4643       if (gfc_notify_std (GFC_STD_GNU,
4644                           "Extension: Symbol '%s' is used before"
4645                           " it is typed at %L", sym->name, &where) == FAILURE)
4646         return FAILURE;
4647     }
4648
4649   /* Everything is ok.  */
4650   return SUCCESS;
4651 }
4652
4653
4654 /* Construct a typebound-procedure structure.  Those are stored in a tentative
4655    list and marked `error' until symbols are committed.  */
4656
4657 gfc_typebound_proc*
4658 gfc_get_typebound_proc (gfc_typebound_proc *tb0)
4659 {
4660   gfc_typebound_proc *result;
4661   tentative_tbp *list_node;
4662
4663   result = XCNEW (gfc_typebound_proc);
4664   if (tb0)
4665     *result = *tb0;
4666   result->error = 1;
4667
4668   list_node = XCNEW (tentative_tbp);
4669   list_node->next = tentative_tbp_list;
4670   list_node->proc = result;
4671   tentative_tbp_list = list_node;
4672
4673   return result;
4674 }
4675
4676
4677 /* Get the super-type of a given derived type.  */
4678
4679 gfc_symbol*
4680 gfc_get_derived_super_type (gfc_symbol* derived)
4681 {
4682   if (!derived->attr.extension)
4683     return NULL;
4684
4685   gcc_assert (derived->components);
4686   gcc_assert (derived->components->ts.type == BT_DERIVED);
4687   gcc_assert (derived->components->ts.u.derived);
4688
4689   return derived->components->ts.u.derived;
4690 }
4691
4692
4693 /* Get the ultimate super-type of a given derived type.  */
4694
4695 gfc_symbol*
4696 gfc_get_ultimate_derived_super_type (gfc_symbol* derived)
4697 {
4698   if (!derived->attr.extension)
4699     return NULL;
4700
4701   derived = gfc_get_derived_super_type (derived);
4702
4703   if (derived->attr.extension)
4704     return gfc_get_ultimate_derived_super_type (derived);
4705   else
4706     return derived;
4707 }
4708
4709
4710 /* Check if a derived type t2 is an extension of (or equal to) a type t1.  */
4711
4712 bool
4713 gfc_type_is_extension_of (gfc_symbol *t1, gfc_symbol *t2)
4714 {
4715   while (!gfc_compare_derived_types (t1, t2) && t2->attr.extension)
4716     t2 = gfc_get_derived_super_type (t2);
4717   return gfc_compare_derived_types (t1, t2);
4718 }
4719
4720
4721 /* Check if two typespecs are type compatible (F03:5.1.1.2):
4722    If ts1 is nonpolymorphic, ts2 must be the same type.
4723    If ts1 is polymorphic (CLASS), ts2 must be an extension of ts1.  */
4724
4725 bool
4726 gfc_type_compatible (gfc_typespec *ts1, gfc_typespec *ts2)
4727 {
4728   bool is_class1 = (ts1->type == BT_CLASS);
4729   bool is_class2 = (ts2->type == BT_CLASS);
4730   bool is_derived1 = (ts1->type == BT_DERIVED);
4731   bool is_derived2 = (ts2->type == BT_DERIVED);
4732
4733   if (!is_derived1 && !is_derived2 && !is_class1 && !is_class2)
4734     return (ts1->type == ts2->type);
4735
4736   if (is_derived1 && is_derived2)
4737     return gfc_compare_derived_types (ts1->u.derived, ts2->u.derived);
4738
4739   if (is_class1 && is_derived2)
4740     return gfc_type_is_extension_of (ts1->u.derived->components->ts.u.derived,
4741                                      ts2->u.derived);
4742   else if (is_class1 && is_class2)
4743     return gfc_type_is_extension_of (ts1->u.derived->components->ts.u.derived,
4744                                      ts2->u.derived->components->ts.u.derived);
4745   else
4746     return 0;
4747 }
4748
4749
4750 /* Find the parent-namespace of the current function.  If we're inside
4751    BLOCK constructs, it may not be the current one.  */
4752
4753 gfc_namespace*
4754 gfc_find_proc_namespace (gfc_namespace* ns)
4755 {
4756   while (ns->construct_entities)
4757     {
4758       ns = ns->parent;
4759       gcc_assert (ns);
4760     }
4761
4762   return ns;
4763 }
4764
4765
4766 /* Check if an associate-variable should be translated as an `implicit' pointer
4767    internally (if it is associated to a variable and not an array with
4768    descriptor).  */
4769
4770 bool
4771 gfc_is_associate_pointer (gfc_symbol* sym)
4772 {
4773   if (!sym->assoc)
4774     return false;
4775
4776   if (!sym->assoc->variable)
4777     return false;
4778
4779   if (sym->attr.dimension && sym->as->type != AS_EXPLICIT)
4780     return false;
4781
4782   return true;
4783 }