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