* gcc.c (option_map): Remove --version.
[official-gcc.git] / gcc / f / intdoc.c
blob84720a321c1798339bd9cf746cc9e91373a2a167
1 /* intdoc.c
2 Copyright (C) 1997, 2000, 2001 Free Software Foundation, Inc.
3 Contributed by James Craig Burley.
5 This file is part of GNU Fortran.
7 GNU Fortran is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Fortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Fortran; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 /* From f/proj.h, which uses #error -- not all C compilers
23 support that, and we want *this* program to be compilable
24 by pretty much any C compiler. */
25 #include "hconfig.h"
26 #include "system.h"
27 #include "assert.h"
29 /* Pull in the intrinsics info, but only the doc parts. */
30 #define FFEINTRIN_DOC 1
31 #include "intrin.h"
33 const char *family_name (ffeintrinFamily family);
34 static void dumpif (ffeintrinFamily fam);
35 static void dumpendif (void);
36 static void dumpclearif (void);
37 static void dumpem (void);
38 static void dumpgen (int menu, const char *name, const char *name_uc,
39 ffeintrinGen gen);
40 static void dumpspec (int menu, const char *name, const char *name_uc,
41 ffeintrinSpec spec);
42 static void dumpimp (int menu, const char *name, const char *name_uc, size_t genno, ffeintrinFamily family,
43 ffeintrinImp imp, ffeintrinSpec spec);
44 static const char *argument_info_ptr (ffeintrinImp imp, int argno);
45 static const char *argument_info_string (ffeintrinImp imp, int argno);
46 static const char *argument_name_ptr (ffeintrinImp imp, int argno);
47 static const char *argument_name_string (ffeintrinImp imp, int argno);
48 #if 0
49 static const char *elaborate_if_complex (ffeintrinImp imp, int argno);
50 static const char *elaborate_if_maybe_complex (ffeintrinImp imp, int argno);
51 static const char *elaborate_if_real (ffeintrinImp imp, int argno);
52 #endif
53 static void print_type_string (const char *c);
55 int
56 main (int argc, char **argv ATTRIBUTE_UNUSED)
58 if (argc != 1)
60 fprintf (stderr, "\
61 Usage: intdoc > intdoc.texi\n\
62 Collects and dumps documentation on g77 intrinsics\n\
63 to the file named intdoc.texi.\n");
64 exit (1);
67 dumpem ();
68 return 0;
71 struct _ffeintrin_name_
73 const char *const name_uc;
74 const char *const name_lc;
75 const char *const name_ic;
76 const ffeintrinGen generic;
77 const ffeintrinSpec specific;
80 struct _ffeintrin_gen_
82 const char *const name; /* Name as seen in program. */
83 const ffeintrinSpec specs[2];
86 struct _ffeintrin_spec_
88 const char *const name; /* Uppercase name as seen in source code,
89 lowercase if no source name, "none" if no
90 name at all (NONE case). */
91 const bool is_actualarg; /* Ok to pass as actual arg if -pedantic. */
92 const ffeintrinFamily family;
93 const ffeintrinImp implementation;
96 struct _ffeintrin_imp_
98 const char *const name; /* Name of implementation. */
99 const char *const control;
102 static const struct _ffeintrin_name_ names[] = {
103 #define DEFNAME(UPPER,LOWER,MIXED,GEN,SPEC) \
104 { UPPER, LOWER, MIXED, FFEINTRIN_ ## GEN, FFEINTRIN_ ## SPEC },
105 #define DEFGEN(CODE,NAME,SPEC1,SPEC2)
106 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP)
107 #define DEFIMP(CODE,NAME,GFRTDIRECT,GFRTF2C,GFRTGNU,CONTROL)
108 #define DEFIMPY(CODE,NAME,GFRTDIRECT,GFRTF2C,GFRTGNU,CONTROL,Y2KBAD)
109 #include "intrin.def"
110 #undef DEFNAME
111 #undef DEFGEN
112 #undef DEFSPEC
113 #undef DEFIMP
114 #undef DEFIMPY
117 static const struct _ffeintrin_gen_ gens[] = {
118 #define DEFNAME(UPPER,LOWER,MIXED,GEN,SPEC)
119 #define DEFGEN(CODE,NAME,SPEC1,SPEC2) \
120 { NAME, { SPEC1, SPEC2, }, },
121 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP)
122 #define DEFIMP(CODE,NAME,GFRTDIRECT,GFRTF2C,GFRTGNU,CONTROL)
123 #define DEFIMPY(CODE,NAME,GFRTDIRECT,GFRTF2C,GFRTGNU,CONTROL,Y2KBAD)
124 #include "intrin.def"
125 #undef DEFNAME
126 #undef DEFGEN
127 #undef DEFSPEC
128 #undef DEFIMP
129 #undef DEFIMPY
132 static const struct _ffeintrin_imp_ imps[] = {
133 #define DEFNAME(UPPER,LOWER,MIXED,GEN,SPEC)
134 #define DEFGEN(CODE,NAME,SPEC1,SPEC2)
135 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP)
136 #define DEFIMP(CODE,NAME,GFRTDIRECT,GFRTF2C,GFRTGNU,CONTROL) \
137 { NAME, CONTROL },
138 #define DEFIMPY(CODE,NAME,GFRTDIRECT,GFRTF2C,GFRTGNU,CONTROL,Y2KBAD) \
139 { NAME, CONTROL },
140 #include "intrin.def"
141 #undef DEFNAME
142 #undef DEFGEN
143 #undef DEFSPEC
144 #undef DEFIMP
145 #undef DEFIMPY
148 static const struct _ffeintrin_spec_ specs[] = {
149 #define DEFNAME(UPPER,LOWER,MIXED,GEN,SPEC)
150 #define DEFGEN(CODE,NAME,SPEC1,SPEC2)
151 #define DEFSPEC(CODE,NAME,CALLABLE,FAMILY,IMP) \
152 { NAME, CALLABLE, FAMILY, IMP, },
153 #define DEFIMP(CODE,NAME,GFRTDIRECT,GFRTF2C,GFRTGNU,CONTROL)
154 #define DEFIMPY(CODE,NAME,GFRTDIRECT,GFRTF2C,GFRTGNU,CONTROL,Y2KBAD)
155 #include "intrin.def"
156 #undef DEFGEN
157 #undef DEFSPEC
158 #undef DEFIMP
159 #undef DEFIMPY
162 struct cc_pair { const ffeintrinImp imp; const char *const text; };
164 static const char *descriptions[FFEINTRIN_imp] = { 0 };
165 static const struct cc_pair cc_descriptions[] = {
166 #define DEFDOC(IMP,SUMMARY,DESCRIPTION) { FFEINTRIN_imp ## IMP, DESCRIPTION },
167 #include "intdoc.h0"
168 #undef DEFDOC
171 static const char *summaries[FFEINTRIN_imp] = { 0 };
172 static const struct cc_pair cc_summaries[] = {
173 #define DEFDOC(IMP,SUMMARY,DESCRIPTION) { FFEINTRIN_imp ## IMP, SUMMARY },
174 #include "intdoc.h0"
175 #undef DEFDOC
178 const char *
179 family_name (ffeintrinFamily family)
181 switch (family)
183 case FFEINTRIN_familyF77:
184 return "familyF77";
186 case FFEINTRIN_familyASC:
187 return "familyASC";
189 case FFEINTRIN_familyMIL:
190 return "familyMIL";
192 case FFEINTRIN_familyGNU:
193 return "familyGNU";
195 case FFEINTRIN_familyF90:
196 return "familyF90";
198 case FFEINTRIN_familyVXT:
199 return "familyVXT";
201 case FFEINTRIN_familyFVZ:
202 return "familyFVZ";
204 case FFEINTRIN_familyF2C:
205 return "familyF2C";
207 case FFEINTRIN_familyF2U:
208 return "familyF2U";
210 case FFEINTRIN_familyBADU77:
211 return "familyBADU77";
213 default:
214 assert ("bad family" == NULL);
215 return "??";
219 static int in_ifset = 0;
220 static ffeintrinFamily latest_family = FFEINTRIN_familyNONE;
222 static void
223 dumpif (ffeintrinFamily fam)
225 assert (fam != FFEINTRIN_familyNONE);
226 if ((in_ifset != 2)
227 || (fam != latest_family))
229 if (in_ifset == 2)
230 printf ("@end ifset\n");
231 latest_family = fam;
232 printf ("@ifset %s\n", family_name (fam));
234 in_ifset = 1;
237 static void
238 dumpendif ()
240 in_ifset = 2;
243 static void
244 dumpclearif ()
246 if ((in_ifset == 2)
247 || (latest_family != FFEINTRIN_familyNONE))
248 printf ("@end ifset\n");
249 latest_family = FFEINTRIN_familyNONE;
250 in_ifset = 0;
253 static void
254 dumpem ()
256 int i;
258 for (i = 0; ((size_t) i) < ARRAY_SIZE (cc_descriptions); ++i)
260 assert (descriptions[cc_descriptions[i].imp] == NULL);
261 descriptions[cc_descriptions[i].imp] = cc_descriptions[i].text;
264 for (i = 0; ((size_t) i) < ARRAY_SIZE (cc_summaries); ++i)
266 assert (summaries[cc_summaries[i].imp] == NULL);
267 summaries[cc_summaries[i].imp] = cc_summaries[i].text;
270 printf ("@c This file is automatically derived from intdoc.c, intdoc.in,\n");
271 printf ("@c ansify.c, intrin.def, and intrin.h. Edit those files instead.\n");
272 printf ("@menu\n");
273 for (i = 0; ((size_t) i) < ARRAY_SIZE (names); ++i)
275 if (names[i].generic != FFEINTRIN_genNONE)
276 dumpgen (1, names[i].name_ic, names[i].name_uc,
277 names[i].generic);
278 if (names[i].specific != FFEINTRIN_specNONE)
279 dumpspec (1, names[i].name_ic, names[i].name_uc,
280 names[i].specific);
282 dumpclearif ();
284 printf ("@end menu\n\n");
286 for (i = 0; ((size_t) i) < ARRAY_SIZE (names); ++i)
288 if (names[i].generic != FFEINTRIN_genNONE)
289 dumpgen (0, names[i].name_ic, names[i].name_uc,
290 names[i].generic);
291 if (names[i].specific != FFEINTRIN_specNONE)
292 dumpspec (0, names[i].name_ic, names[i].name_uc,
293 names[i].specific);
295 dumpclearif ();
298 static void
299 dumpgen (int menu, const char *name, const char *name_uc, ffeintrinGen gen)
301 size_t i;
302 int total = 0;
304 if (!menu)
306 for (i = 0; i < ARRAY_SIZE (gens[gen].specs); ++i)
308 if (gens[gen].specs[i] != FFEINTRIN_specNONE)
309 ++total;
313 for (i = 0; i < ARRAY_SIZE (gens[gen].specs); ++i)
315 ffeintrinSpec spec;
316 size_t j;
318 if ((spec = gens[gen].specs[i]) == FFEINTRIN_specNONE)
319 continue;
321 dumpif (specs[spec].family);
322 dumpimp (menu, name, name_uc, i, specs[spec].family, specs[spec].implementation,
323 spec);
324 if (!menu && (total > 0))
326 if (total == 1)
328 printf ("\
329 For information on another intrinsic with the same name:\n");
331 else
333 printf ("\
334 For information on other intrinsics with the same name:\n");
336 for (j = 0; j < ARRAY_SIZE (gens[gen].specs); ++j)
338 if (j == i)
339 continue;
340 if ((spec = gens[gen].specs[j]) == FFEINTRIN_specNONE)
341 continue;
342 printf ("@xref{%s Intrinsic (%s)}.\n",
343 name, specs[spec].name);
345 printf ("\n");
347 dumpendif ();
351 static void
352 dumpspec (int menu, const char *name, const char *name_uc, ffeintrinSpec spec)
354 dumpif (specs[spec].family);
355 dumpimp (menu, name, name_uc, 0, specs[spec].family, specs[spec].implementation,
356 FFEINTRIN_specNONE);
357 dumpendif ();
360 static void
361 dumpimp (int menu, const char *name, const char *name_uc, size_t genno,
362 ffeintrinFamily family, ffeintrinImp imp, ffeintrinSpec spec)
364 const char *c;
365 bool subr;
366 const char *argc;
367 const char *argi;
368 int colon;
369 int argno;
371 assert ((imp != FFEINTRIN_impNONE) || !genno);
373 if (menu)
375 printf ("* %s Intrinsic",
376 name);
377 if (spec != FFEINTRIN_specNONE)
378 printf (" (%s)", specs[spec].name); /* See XYZZY1 below */
379 printf ("::");
380 #define INDENT_SUMMARY 24
381 if ((imp == FFEINTRIN_impNONE)
382 || (summaries[imp] != NULL))
384 int spaces = INDENT_SUMMARY - 14 - strlen (name);
385 const char *c;
387 if (spec != FFEINTRIN_specNONE)
388 spaces -= (3 + strlen (specs[spec].name)); /* See XYZZY1 above */
389 if (spaces < 1)
390 spaces = 1;
391 while (spaces--)
392 fputc (' ', stdout);
394 if (imp == FFEINTRIN_impNONE)
396 printf ("(Reserved for future use.)\n");
397 return;
400 for (c = summaries[imp]; c[0] != '\0'; ++c)
402 if (c[0] == '@' && ISDIGIT (c[1]))
404 int argno = c[1] - '0';
406 c += 2;
407 while (ISDIGIT (c[0]))
409 argno = 10 * argno + (c[0] - '0');
410 ++c;
412 assert (c[0] == '@');
413 if (argno == 0)
414 printf ("%s", name);
415 else if (argno == 99)
416 { /* Yeah, this is a major kludge. */
417 printf ("\n");
418 spaces = INDENT_SUMMARY + 1;
419 while (spaces--)
420 fputc (' ', stdout);
422 else
423 printf ("%s", argument_name_string (imp, argno - 1));
425 else
426 fputc (c[0], stdout);
429 printf ("\n");
430 return;
433 printf ("@node %s Intrinsic", name);
434 if (spec != FFEINTRIN_specNONE)
435 printf (" (%s)", specs[spec].name);
436 printf ("\n@subsubsection %s Intrinsic", name);
437 if (spec != FFEINTRIN_specNONE)
438 printf (" (%s)", specs[spec].name);
439 printf ("\n@cindex %s intrinsic\n@cindex intrinsics, %s\n",
440 name, name);
442 if (imp == FFEINTRIN_impNONE)
444 printf ("\n\
445 This intrinsic is not yet implemented.\n\
446 The name is, however, reserved as an intrinsic.\n\
447 Use @samp{EXTERNAL %s} to use this name for an\n\
448 external procedure.\n\
451 name);
452 return;
455 c = imps[imp].control;
456 subr = (c[0] == '-');
457 colon = (c[2] == ':') ? 2 : 3;
459 printf ("\n\
460 @noindent\n\
461 @example\n\
462 %s%s(",
463 (subr ? "CALL " : ""), name);
465 fflush (stdout);
467 for (argno = 0; ; ++argno)
469 argc = argument_name_ptr (imp, argno);
470 if (argc == NULL)
471 break;
472 if (argno > 0)
473 printf (", ");
474 printf ("@var{%s}", argc);
475 argi = argument_info_string (imp, argno);
476 if ((argi[0] == '*')
477 || (argi[0] == 'n')
478 || (argi[0] == '+')
479 || (argi[0] == 'p'))
480 printf ("-1, @var{%s}-2, @dots{}, @var{%s}-n",
481 argc, argc);
484 printf (")\n\
485 @end example\n\
489 if (!subr)
491 int other_arg;
492 const char *arg_string;
493 const char *arg_info;
495 if (ISDIGIT (c[colon + 1]))
497 other_arg = c[colon + 1] - '0';
498 arg_string = argument_name_string (imp, other_arg);
499 arg_info = argument_info_string (imp, other_arg);
501 else
503 other_arg = -1;
504 arg_string = NULL;
505 arg_info = NULL;
508 printf ("\
509 @noindent\n\
510 %s: ", name);
511 print_type_string (c);
512 printf (" function");
514 if ((c[0] == 'R')
515 && (c[1] == 'C'))
517 assert (other_arg >= 0);
519 if ((arg_info[0] == '?') || (arg_info[0] == '!') || (arg_info[0] == '+')
520 || (arg_info[0] == '*') || (arg_info[0] == 'n') || (arg_info[0] == 'p'))
521 ++arg_info;
522 if ((arg_info[0] == 'F') || (arg_info[0] == 'N'))
523 printf (".\n\
524 The exact type is @samp{REAL(KIND=1)} when argument @var{%s} is\n\
525 any type other than @code{COMPLEX}, or when it is @code{COMPLEX(KIND=1)}.\n\
526 When @var{%s} is any @code{COMPLEX} type other than @code{COMPLEX(KIND=1)},\n\
527 this intrinsic is valid only when used as the argument to\n\
528 @code{REAL()}, as explained below.\n\n",
529 arg_string,
530 arg_string);
531 else
532 printf (".\n\
533 This intrinsic is valid when argument @var{%s} is\n\
534 @code{COMPLEX(KIND=1)}.\n\
535 When @var{%s} is any other @code{COMPLEX} type,\n\
536 this intrinsic is valid only when used as the argument to\n\
537 @code{REAL()}, as explained below.\n\n",
538 arg_string,
539 arg_string);
541 #if 0
542 else if ((c[0] == 'I')
543 && (c[1] == '7'))
544 printf (", the exact type being wide enough to hold a pointer\n\
545 on the target system (typically @code{INTEGER(KIND=1)} or @code{INTEGER(KIND=4)}).\n\n");
546 #endif
547 else if (c[1] == '=' && ISDIGIT (c[colon + 1]))
549 assert (other_arg >= 0);
551 if ((arg_info[0] == '?') || (arg_info[0] == '!') || (arg_info[0] == '+')
552 || (arg_info[0] == '*') || (arg_info[0] == 'n') || (arg_info[0] == 'p'))
553 ++arg_info;
555 if (((c[0] == arg_info[0])
556 && ((c[0] == 'A') || (c[0] == 'C') || (c[0] == 'I')
557 || (c[0] == 'L') || (c[0] == 'R')))
558 || ((c[0] == 'R')
559 && (arg_info[0] == 'C'))
560 || ((c[0] == 'C')
561 && (arg_info[0] == 'R')))
562 printf (", the @samp{KIND=} value of the type being that of argument @var{%s}.\n\n",
563 arg_string);
564 else if ((c[0] == 'S')
565 && ((arg_info[0] == 'C')
566 || (arg_info[0] == 'F')
567 || (arg_info[0] == 'N')))
568 printf (".\n\
569 The exact type depends on that of argument @var{%s}---if @var{%s} is\n\
570 @code{COMPLEX}, this function's type is @code{REAL}\n\
571 with the same @samp{KIND=} value as the type of @var{%s}.\n\
572 Otherwise, this function's type is the same as that of @var{%s}.\n\n",
573 arg_string, arg_string, arg_string, arg_string);
574 else
575 printf (", the exact type being that of argument @var{%s}.\n\n",
576 arg_string);
578 else if ((c[1] == '=')
579 && (c[colon + 1] == '*'))
580 printf (", the exact type being the result of cross-promoting the\n\
581 types of all the arguments.\n\n");
582 else if (c[1] == '=')
583 assert ("?0:?:" == NULL);
584 else
585 printf (".\n\n");
588 for (argno = 0, argc = &c[colon + 3]; *argc != '\0'; ++argno)
590 char optionality = '\0';
591 char extra = '\0';
592 char basic;
593 char kind;
594 int length;
595 int elements;
597 printf ("\
598 @noindent\n\
599 @var{");
600 for (; ; ++argc)
602 if (argc[0] == '=')
603 break;
604 printf ("%c", *argc);
606 printf ("}: ");
608 ++argc;
609 if ((*argc == '?')
610 || (*argc == '!')
611 || (*argc == '*')
612 || (*argc == '+')
613 || (*argc == 'n')
614 || (*argc == 'p'))
615 optionality = *(argc++);
616 basic = *(argc++);
617 kind = *(argc++);
618 if (*argc == '[')
620 length = *++argc - '0';
621 if (*++argc != ']')
622 length = 10 * length + (*(argc++) - '0');
623 ++argc;
625 else
626 length = -1;
627 if (*argc == '(')
629 elements = *++argc - '0';
630 if (*++argc != ')')
631 elements = 10 * elements + (*(argc++) - '0');
632 ++argc;
634 else if (*argc == '&')
636 elements = -1;
637 ++argc;
639 else
640 elements = 0;
641 if ((*argc == '&')
642 || (*argc == 'i')
643 || (*argc == 'w')
644 || (*argc == 'x'))
645 extra = *(argc++);
646 if (*argc == ',')
647 ++argc;
649 switch (basic)
651 case '-':
652 switch (kind)
654 case '*':
655 printf ("Any type");
656 break;
658 default:
659 assert ("kind arg" == NULL);
660 break;
662 break;
664 case 'A':
665 assert ((kind == '1') || (kind == '*'));
666 printf ("@code{CHARACTER");
667 if (length != -1)
668 printf ("*%d", length);
669 printf ("}");
670 break;
672 case 'C':
673 switch (kind)
675 case '*':
676 printf ("@code{COMPLEX}");
677 break;
679 case '1': case '2': case '3': case '4': case '5':
680 case '6': case '7': case '8': case '9':
681 printf ("@code{COMPLEX(KIND=%d)}", (kind - '0'));
682 break;
684 case 'A':
685 printf ("Same @samp{KIND=} value as for @var{%s}",
686 argument_name_string (imp, 0));
687 break;
689 default:
690 assert ("Ca" == NULL);
691 break;
693 break;
695 case 'I':
696 switch (kind)
698 case '*':
699 printf ("@code{INTEGER}");
700 break;
702 case '1': case '2': case '3': case '4': case '5':
703 case '6': case '7': case '8': case '9':
704 printf ("@code{INTEGER(KIND=%d)}", (kind - '0'));
705 break;
707 case 'A':
708 printf ("@code{INTEGER} with same @samp{KIND=} value as for @var{%s}",
709 argument_name_string (imp, 0));
710 break;
712 default:
713 assert ("Ia" == NULL);
714 break;
716 break;
718 case 'L':
719 switch (kind)
721 case '*':
722 printf ("@code{LOGICAL}");
723 break;
725 case '1': case '2': case '3': case '4': case '5':
726 case '6': case '7': case '8': case '9':
727 printf ("@code{LOGICAL(KIND=%d)}", (kind - '0'));
728 break;
730 case 'A':
731 printf ("@code{LOGICAL} with same @samp{KIND=} value as for @var{%s}",
732 argument_name_string (imp, 0));
733 break;
735 default:
736 assert ("La" == NULL);
737 break;
739 break;
741 case 'R':
742 switch (kind)
744 case '*':
745 printf ("@code{REAL}");
746 break;
748 case '1': case '2': case '3': case '4': case '5':
749 case '6': case '7': case '8': case '9':
750 printf ("@code{REAL(KIND=%d)}", (kind - '0'));
751 break;
753 case 'A':
754 printf ("@code{REAL} with same @samp{KIND=} value as for @var{%s}",
755 argument_name_string (imp, 0));
756 break;
758 default:
759 assert ("Ra" == NULL);
760 break;
762 break;
764 case 'B':
765 switch (kind)
767 case '*':
768 printf ("@code{INTEGER} or @code{LOGICAL}");
769 break;
771 case '1': case '2': case '3': case '4': case '5':
772 case '6': case '7': case '8': case '9':
773 printf ("@code{INTEGER(KIND=%d)} or @code{LOGICAL(KIND=%d)}",
774 (kind - '0'), (kind - '0'));
775 break;
777 case 'A':
778 printf ("Same type and @samp{KIND=} value as for @var{%s}",
779 argument_name_string (imp, 0));
780 break;
782 default:
783 assert ("Ba" == NULL);
784 break;
786 break;
788 case 'F':
789 switch (kind)
791 case '*':
792 printf ("@code{REAL} or @code{COMPLEX}");
793 break;
795 case '1': case '2': case '3': case '4': case '5':
796 case '6': case '7': case '8': case '9':
797 printf ("@code{REAL(KIND=%d)} or @code{COMPLEX(KIND=%d)}",
798 (kind - '0'), (kind - '0'));
799 break;
801 case 'A':
802 printf ("Same type as @var{%s}",
803 argument_name_string (imp, 0));
804 break;
806 default:
807 assert ("Fa" == NULL);
808 break;
810 break;
812 case 'N':
813 switch (kind)
815 case '*':
816 printf ("@code{INTEGER}, @code{REAL}, or @code{COMPLEX}");
817 break;
819 case '1': case '2': case '3': case '4': case '5':
820 case '6': case '7': case '8': case '9':
821 printf ("@code{INTEGER(KIND=%d)}, @code{REAL(KIND=%d)}, or @code{COMPLEX(KIND=%d)}",
822 (kind - '0'), (kind - '0'), (kind - '0'));
823 break;
825 default:
826 assert ("N1" == NULL);
827 break;
829 break;
831 case 'S':
832 switch (kind)
834 case '*':
835 printf ("@code{INTEGER} or @code{REAL}");
836 break;
838 case '1': case '2': case '3': case '4': case '5':
839 case '6': case '7': case '8': case '9':
840 printf ("@code{INTEGER(KIND=%d)} or @code{REAL(KIND=%d)}",
841 (kind - '0'), (kind - '0'));
842 break;
844 case 'A':
845 printf ("@code{INTEGER} or @code{REAL} with same @samp{KIND=} value as for @var{%s}",
846 argument_name_string (imp, 0));
847 break;
849 default:
850 assert ("Sa" == NULL);
851 break;
853 break;
855 case 'g':
856 printf ("@samp{*@var{label}}, where @var{label} is the label\n\
857 of an executable statement");
858 break;
860 case 's':
861 printf ("Signal handler (@code{INTEGER FUNCTION} or @code{SUBROUTINE})\n\
862 or dummy/global @code{INTEGER(KIND=1)} scalar");
863 break;
865 default:
866 assert ("arg type?" == NULL);
867 break;
870 switch (optionality)
872 case '\0':
873 break;
875 case '!':
876 printf ("; OPTIONAL (must be omitted if @var{%s} is @code{COMPLEX})",
877 argument_name_string (imp, argno-1));
878 break;
880 case '?':
881 printf ("; OPTIONAL");
882 break;
884 case '*':
885 printf ("; OPTIONAL");
886 break;
888 case 'n':
889 case '+':
890 break;
892 case 'p':
893 printf ("; at least two such arguments must be provided");
894 break;
896 default:
897 assert ("optionality!" == NULL);
898 break;
901 switch (elements)
903 case -1:
904 break;
906 case 0:
907 if ((basic != 'g')
908 && (basic != 's'))
909 printf ("; scalar");
910 break;
912 default:
913 assert (extra != '\0');
914 printf ("; DIMENSION(%d)", elements);
915 break;
918 switch (extra)
920 case '\0':
921 if ((basic != 'g')
922 && (basic != 's'))
923 printf ("; INTENT(IN)");
924 break;
926 case 'i':
927 break;
929 case '&':
930 printf ("; cannot be a constant or expression");
931 break;
933 case 'w':
934 printf ("; INTENT(OUT)");
935 break;
937 case 'x':
938 printf ("; INTENT(INOUT)");
939 break;
942 printf (".\n\n");
945 printf ("\
946 @noindent\n\
947 Intrinsic groups: ");
948 switch (family)
950 case FFEINTRIN_familyF77:
951 printf ("(standard FORTRAN 77).");
952 break;
954 case FFEINTRIN_familyGNU:
955 printf ("@code{gnu}.");
956 break;
958 case FFEINTRIN_familyASC:
959 printf ("@code{f2c}, @code{f90}.");
960 break;
962 case FFEINTRIN_familyMIL:
963 printf ("@code{mil}, @code{f90}, @code{vxt}.");
964 break;
966 case FFEINTRIN_familyF90:
967 printf ("@code{f90}.");
968 break;
970 case FFEINTRIN_familyVXT:
971 printf ("@code{vxt}.");
972 break;
974 case FFEINTRIN_familyFVZ:
975 printf ("@code{f2c}, @code{vxt}.");
976 break;
978 case FFEINTRIN_familyF2C:
979 printf ("@code{f2c}.");
980 break;
982 case FFEINTRIN_familyF2U:
983 printf ("@code{unix}.");
984 break;
986 case FFEINTRIN_familyBADU77:
987 printf ("@code{badu77}.");
988 break;
990 default:
991 assert ("bad family" == NULL);
992 printf ("@code{???}.");
993 break;
995 printf ("\n\n");
997 if (descriptions[imp] != NULL)
999 const char *c = descriptions[imp];
1001 printf ("\
1002 @noindent\n\
1003 Description:\n\
1004 \n");
1006 while (c[0] != '\0')
1008 if (c[0] == '@' && ISDIGIT (c[1]))
1010 int argno = c[1] - '0';
1012 c += 2;
1013 while (ISDIGIT (c[0]))
1015 argno = 10 * argno + (c[0] - '0');
1016 ++c;
1018 assert (c[0] == '@');
1019 if (argno == 0)
1020 printf ("%s", name_uc);
1021 else
1022 printf ("%s", argument_name_string (imp, argno - 1));
1024 else
1025 fputc (c[0], stdout);
1026 ++c;
1029 printf ("\n");
1033 static const char *
1034 argument_info_ptr (ffeintrinImp imp, int argno)
1036 const char *c = imps[imp].control;
1037 static char arginfos[8][32];
1038 static int argx = 0;
1039 int i;
1041 if (c[2] == ':')
1042 c += 5;
1043 else
1044 c += 6;
1046 while (argno--)
1048 while ((c[0] != ',') && (c[0] != '\0'))
1049 ++c;
1050 if (c[0] != ',')
1051 break;
1052 ++c;
1055 if (c[0] == '\0')
1056 return NULL;
1058 for (; (c[0] != '=') && (c[0] != '\0'); ++c)
1061 assert (c[0] == '=');
1063 for (i = 0, ++c; (c[0] != ',') && (c[0] != '\0'); ++c, ++i)
1064 arginfos[argx][i] = c[0];
1066 arginfos[argx][i] = '\0';
1068 c = &arginfos[argx][0];
1069 ++argx;
1070 if (((size_t) argx) >= ARRAY_SIZE (arginfos))
1071 argx = 0;
1073 return c;
1076 static const char *
1077 argument_info_string (ffeintrinImp imp, int argno)
1079 const char *p;
1081 p = argument_info_ptr (imp, argno);
1082 assert (p != NULL);
1083 return p;
1086 static const char *
1087 argument_name_ptr (ffeintrinImp imp, int argno)
1089 const char *c = imps[imp].control;
1090 static char argnames[8][32];
1091 static int argx = 0;
1092 int i;
1094 if (c[2] == ':')
1095 c += 5;
1096 else
1097 c += 6;
1099 while (argno--)
1101 while ((c[0] != ',') && (c[0] != '\0'))
1102 ++c;
1103 if (c[0] != ',')
1104 break;
1105 ++c;
1108 if (c[0] == '\0')
1109 return NULL;
1111 for (i = 0; (c[0] != '=') && (c[0] != '\0'); ++c, ++i)
1112 argnames[argx][i] = c[0];
1114 assert (c[0] == '=');
1115 argnames[argx][i] = '\0';
1117 c = &argnames[argx][0];
1118 ++argx;
1119 if (((size_t) argx) >= ARRAY_SIZE (argnames))
1120 argx = 0;
1122 return c;
1125 static const char *
1126 argument_name_string (ffeintrinImp imp, int argno)
1128 const char *p;
1130 p = argument_name_ptr (imp, argno);
1131 assert (p != NULL);
1132 return p;
1135 static void
1136 print_type_string (const char *c)
1138 char basic = c[0];
1139 char kind = c[1];
1141 switch (basic)
1143 case 'A':
1144 assert ((kind == '1') || (kind == '='));
1145 if (c[2] == ':')
1146 printf ("@code{CHARACTER*1}");
1147 else
1149 assert (c[2] == '*');
1150 printf ("@code{CHARACTER*(*)}");
1152 break;
1154 case 'C':
1155 switch (kind)
1157 case '=':
1158 printf ("@code{COMPLEX}");
1159 break;
1161 case '1': case '2': case '3': case '4': case '5':
1162 case '6': case '7': case '8': case '9':
1163 printf ("@code{COMPLEX(KIND=%d)}", (kind - '0'));
1164 break;
1166 default:
1167 assert ("Ca" == NULL);
1168 break;
1170 break;
1172 case 'I':
1173 switch (kind)
1175 case '=':
1176 printf ("@code{INTEGER}");
1177 break;
1179 case '1': case '2': case '3': case '4': case '5':
1180 case '6': case '7': case '8': case '9':
1181 printf ("@code{INTEGER(KIND=%d)}", (kind - '0'));
1182 break;
1184 default:
1185 assert ("Ia" == NULL);
1186 break;
1188 break;
1190 case 'L':
1191 switch (kind)
1193 case '=':
1194 printf ("@code{LOGICAL}");
1195 break;
1197 case '1': case '2': case '3': case '4': case '5':
1198 case '6': case '7': case '8': case '9':
1199 printf ("@code{LOGICAL(KIND=%d)}", (kind - '0'));
1200 break;
1202 default:
1203 assert ("La" == NULL);
1204 break;
1206 break;
1208 case 'R':
1209 switch (kind)
1211 case '=':
1212 printf ("@code{REAL}");
1213 break;
1215 case '1': case '2': case '3': case '4': case '5':
1216 case '6': case '7': case '8': case '9':
1217 printf ("@code{REAL(KIND=%d)}", (kind - '0'));
1218 break;
1220 case 'C':
1221 printf ("@code{REAL}");
1222 break;
1224 default:
1225 assert ("Ra" == NULL);
1226 break;
1228 break;
1230 case 'B':
1231 switch (kind)
1233 case '=':
1234 printf ("@code{INTEGER} or @code{LOGICAL}");
1235 break;
1237 case '1': case '2': case '3': case '4': case '5':
1238 case '6': case '7': case '8': case '9':
1239 printf ("@code{INTEGER(KIND=%d)} or @code{LOGICAL(KIND=%d)}",
1240 (kind - '0'), (kind - '0'));
1241 break;
1243 default:
1244 assert ("Ba" == NULL);
1245 break;
1247 break;
1249 case 'F':
1250 switch (kind)
1252 case '=':
1253 printf ("@code{REAL} or @code{COMPLEX}");
1254 break;
1256 case '1': case '2': case '3': case '4': case '5':
1257 case '6': case '7': case '8': case '9':
1258 printf ("@code{REAL(KIND=%d)} or @code{COMPLEX(KIND=%d)}",
1259 (kind - '0'), (kind - '0'));
1260 break;
1262 default:
1263 assert ("Fa" == NULL);
1264 break;
1266 break;
1268 case 'N':
1269 switch (kind)
1271 case '=':
1272 printf ("@code{INTEGER}, @code{REAL}, or @code{COMPLEX}");
1273 break;
1275 case '1': case '2': case '3': case '4': case '5':
1276 case '6': case '7': case '8': case '9':
1277 printf ("@code{INTEGER(KIND=%d)}, @code{REAL(KIND=%d)}, or @code{COMPLEX(KIND=%d)}",
1278 (kind - '0'), (kind - '0'), (kind - '0'));
1279 break;
1281 default:
1282 assert ("N1" == NULL);
1283 break;
1285 break;
1287 case 'S':
1288 switch (kind)
1290 case '=':
1291 printf ("@code{INTEGER} or @code{REAL}");
1292 break;
1294 case '1': case '2': case '3': case '4': case '5':
1295 case '6': case '7': case '8': case '9':
1296 printf ("@code{INTEGER(KIND=%d)} or @code{REAL(KIND=%d)}",
1297 (kind - '0'), (kind - '0'));
1298 break;
1300 default:
1301 assert ("Sa" == NULL);
1302 break;
1304 break;
1306 default:
1307 assert ("type?" == NULL);
1308 break;