2004-08-07 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gdb / f-lang.c
CommitLineData
c906108c 1/* Fortran language support routines for GDB, the GNU debugger.
b368761e 2 Copyright 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004
b6ba6518 3 Free Software Foundation, Inc.
c906108c
SS
4 Contributed by Motorola. Adapted from the C parser by Farooq Butt
5 (fmbutt@engage.sps.mot.com).
6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b
JM
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
c906108c
SS
23
24#include "defs.h"
25#include "gdb_string.h"
26#include "symtab.h"
27#include "gdbtypes.h"
28#include "expression.h"
29#include "parser-defs.h"
30#include "language.h"
31#include "f-lang.h"
745b8ca0 32#include "valprint.h"
5f9a71c3 33#include "value.h"
c906108c
SS
34
35/* The built-in types of F77. FIXME: integer*4 is missing, plain
36 logical is missing (builtin_type_logical is logical*4). */
37
38struct type *builtin_type_f_character;
39struct type *builtin_type_f_logical;
40struct type *builtin_type_f_logical_s1;
41struct type *builtin_type_f_logical_s2;
c5aa993b 42struct type *builtin_type_f_integer;
c906108c
SS
43struct type *builtin_type_f_integer_s2;
44struct type *builtin_type_f_real;
45struct type *builtin_type_f_real_s8;
46struct type *builtin_type_f_real_s16;
47struct type *builtin_type_f_complex_s8;
48struct type *builtin_type_f_complex_s16;
49struct type *builtin_type_f_complex_s32;
50struct type *builtin_type_f_void;
51
52/* Following is dubious stuff that had been in the xcoff reader. */
53
54struct saved_fcn
c5aa993b
JM
55 {
56 long line_offset; /* Line offset for function */
57 struct saved_fcn *next;
58 };
c906108c
SS
59
60
c5aa993b
JM
61struct saved_bf_symnum
62 {
63 long symnum_fcn; /* Symnum of function (i.e. .function directive) */
64 long symnum_bf; /* Symnum of .bf for this function */
65 struct saved_bf_symnum *next;
66 };
c906108c 67
c5aa993b
JM
68typedef struct saved_fcn SAVED_FUNCTION, *SAVED_FUNCTION_PTR;
69typedef struct saved_bf_symnum SAVED_BF, *SAVED_BF_PTR;
c906108c
SS
70
71/* Local functions */
72
a14ed312 73extern void _initialize_f_language (void);
c906108c 74#if 0
a14ed312
KB
75static void clear_function_list (void);
76static long get_bf_for_fcn (long);
77static void clear_bf_list (void);
78static void patch_all_commons_by_name (char *, CORE_ADDR, int);
79static SAVED_F77_COMMON_PTR find_first_common_named (char *);
80static void add_common_entry (struct symbol *);
81static void add_common_block (char *, CORE_ADDR, int, char *);
82static SAVED_FUNCTION *allocate_saved_function_node (void);
83static SAVED_BF_PTR allocate_saved_bf_node (void);
84static COMMON_ENTRY_PTR allocate_common_entry_node (void);
85static SAVED_F77_COMMON_PTR allocate_saved_f77_common_node (void);
86static void patch_common_entries (SAVED_F77_COMMON_PTR, CORE_ADDR, int);
c906108c
SS
87#endif
88
a14ed312 89static struct type *f_create_fundamental_type (struct objfile *, int);
d9fcf2fb
JM
90static void f_printstr (struct ui_file * stream, char *string,
91 unsigned int length, int width,
92 int force_ellipses);
93static void f_printchar (int c, struct ui_file * stream);
94static void f_emit_char (int c, struct ui_file * stream, int quoter);
c906108c
SS
95
96/* Print the character C on STREAM as part of the contents of a literal
97 string whose delimiter is QUOTER. Note that that format for printing
98 characters and strings is language specific.
99 FIXME: This is a copy of the same function from c-exp.y. It should
100 be replaced with a true F77 version. */
101
102static void
f86f5ca3 103f_emit_char (int c, struct ui_file *stream, int quoter)
c906108c
SS
104{
105 c &= 0xFF; /* Avoid sign bit follies */
c5aa993b 106
c906108c
SS
107 if (PRINT_LITERAL_FORM (c))
108 {
109 if (c == '\\' || c == quoter)
110 fputs_filtered ("\\", stream);
111 fprintf_filtered (stream, "%c", c);
112 }
113 else
114 {
115 switch (c)
116 {
117 case '\n':
118 fputs_filtered ("\\n", stream);
119 break;
120 case '\b':
121 fputs_filtered ("\\b", stream);
122 break;
123 case '\t':
124 fputs_filtered ("\\t", stream);
125 break;
126 case '\f':
127 fputs_filtered ("\\f", stream);
128 break;
129 case '\r':
130 fputs_filtered ("\\r", stream);
131 break;
132 case '\033':
133 fputs_filtered ("\\e", stream);
134 break;
135 case '\007':
136 fputs_filtered ("\\a", stream);
137 break;
138 default:
139 fprintf_filtered (stream, "\\%.3o", (unsigned int) c);
140 break;
141 }
142 }
143}
144
145/* FIXME: This is a copy of the same function from c-exp.y. It should
146 be replaced with a true F77version. */
147
148static void
fba45db2 149f_printchar (int c, struct ui_file *stream)
c906108c
SS
150{
151 fputs_filtered ("'", stream);
152 LA_EMIT_CHAR (c, stream, '\'');
153 fputs_filtered ("'", stream);
154}
155
156/* Print the character string STRING, printing at most LENGTH characters.
157 Printing stops early if the number hits print_max; repeat counts
158 are printed as appropriate. Print ellipses at the end if we
159 had to stop before printing LENGTH characters, or if FORCE_ELLIPSES.
160 FIXME: This is a copy of the same function from c-exp.y. It should
161 be replaced with a true F77 version. */
162
163static void
fba45db2
KB
164f_printstr (struct ui_file *stream, char *string, unsigned int length,
165 int width, int force_ellipses)
c906108c 166{
f86f5ca3 167 unsigned int i;
c906108c
SS
168 unsigned int things_printed = 0;
169 int in_quotes = 0;
170 int need_comma = 0;
c5aa993b 171
c906108c
SS
172 if (length == 0)
173 {
174 fputs_filtered ("''", gdb_stdout);
175 return;
176 }
c5aa993b 177
c906108c
SS
178 for (i = 0; i < length && things_printed < print_max; ++i)
179 {
180 /* Position of the character we are examining
c5aa993b 181 to see whether it is repeated. */
c906108c
SS
182 unsigned int rep1;
183 /* Number of repetitions we have detected so far. */
184 unsigned int reps;
c5aa993b 185
c906108c 186 QUIT;
c5aa993b 187
c906108c
SS
188 if (need_comma)
189 {
190 fputs_filtered (", ", stream);
191 need_comma = 0;
192 }
c5aa993b 193
c906108c
SS
194 rep1 = i + 1;
195 reps = 1;
196 while (rep1 < length && string[rep1] == string[i])
197 {
198 ++rep1;
199 ++reps;
200 }
c5aa993b 201
c906108c
SS
202 if (reps > repeat_count_threshold)
203 {
204 if (in_quotes)
205 {
206 if (inspect_it)
207 fputs_filtered ("\\', ", stream);
208 else
209 fputs_filtered ("', ", stream);
210 in_quotes = 0;
211 }
212 f_printchar (string[i], stream);
213 fprintf_filtered (stream, " <repeats %u times>", reps);
214 i = rep1 - 1;
215 things_printed += repeat_count_threshold;
216 need_comma = 1;
217 }
218 else
219 {
220 if (!in_quotes)
221 {
222 if (inspect_it)
223 fputs_filtered ("\\'", stream);
224 else
225 fputs_filtered ("'", stream);
226 in_quotes = 1;
227 }
228 LA_EMIT_CHAR (string[i], stream, '"');
229 ++things_printed;
230 }
231 }
c5aa993b 232
c906108c
SS
233 /* Terminate the quotes if necessary. */
234 if (in_quotes)
235 {
236 if (inspect_it)
237 fputs_filtered ("\\'", stream);
238 else
239 fputs_filtered ("'", stream);
240 }
c5aa993b 241
c906108c
SS
242 if (force_ellipses || i < length)
243 fputs_filtered ("...", stream);
244}
245
246/* FIXME: This is a copy of c_create_fundamental_type(), before
247 all the non-C types were stripped from it. Needs to be fixed
248 by an experienced F77 programmer. */
249
250static struct type *
fba45db2 251f_create_fundamental_type (struct objfile *objfile, int typeid)
c906108c 252{
f86f5ca3 253 struct type *type = NULL;
c5aa993b 254
c906108c
SS
255 switch (typeid)
256 {
257 case FT_VOID:
258 type = init_type (TYPE_CODE_VOID,
259 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
260 0, "VOID", objfile);
261 break;
262 case FT_BOOLEAN:
263 type = init_type (TYPE_CODE_BOOL,
264 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
265 TYPE_FLAG_UNSIGNED, "boolean", objfile);
266 break;
267 case FT_STRING:
268 type = init_type (TYPE_CODE_STRING,
269 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
270 0, "string", objfile);
271 break;
272 case FT_CHAR:
273 type = init_type (TYPE_CODE_INT,
274 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
275 0, "character", objfile);
276 break;
277 case FT_SIGNED_CHAR:
278 type = init_type (TYPE_CODE_INT,
279 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
280 0, "integer*1", objfile);
281 break;
282 case FT_UNSIGNED_CHAR:
283 type = init_type (TYPE_CODE_BOOL,
284 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
285 TYPE_FLAG_UNSIGNED, "logical*1", objfile);
286 break;
287 case FT_SHORT:
288 type = init_type (TYPE_CODE_INT,
289 TARGET_SHORT_BIT / TARGET_CHAR_BIT,
290 0, "integer*2", objfile);
291 break;
292 case FT_SIGNED_SHORT:
293 type = init_type (TYPE_CODE_INT,
294 TARGET_SHORT_BIT / TARGET_CHAR_BIT,
295 0, "short", objfile); /* FIXME-fnf */
296 break;
297 case FT_UNSIGNED_SHORT:
298 type = init_type (TYPE_CODE_BOOL,
299 TARGET_SHORT_BIT / TARGET_CHAR_BIT,
300 TYPE_FLAG_UNSIGNED, "logical*2", objfile);
301 break;
302 case FT_INTEGER:
303 type = init_type (TYPE_CODE_INT,
304 TARGET_INT_BIT / TARGET_CHAR_BIT,
305 0, "integer*4", objfile);
306 break;
307 case FT_SIGNED_INTEGER:
308 type = init_type (TYPE_CODE_INT,
309 TARGET_INT_BIT / TARGET_CHAR_BIT,
c5aa993b 310 0, "integer", objfile); /* FIXME -fnf */
c906108c
SS
311 break;
312 case FT_UNSIGNED_INTEGER:
c5aa993b 313 type = init_type (TYPE_CODE_BOOL,
c906108c
SS
314 TARGET_INT_BIT / TARGET_CHAR_BIT,
315 TYPE_FLAG_UNSIGNED, "logical*4", objfile);
316 break;
317 case FT_FIXED_DECIMAL:
318 type = init_type (TYPE_CODE_INT,
319 TARGET_INT_BIT / TARGET_CHAR_BIT,
320 0, "fixed decimal", objfile);
321 break;
322 case FT_LONG:
323 type = init_type (TYPE_CODE_INT,
324 TARGET_LONG_BIT / TARGET_CHAR_BIT,
325 0, "long", objfile);
326 break;
327 case FT_SIGNED_LONG:
328 type = init_type (TYPE_CODE_INT,
329 TARGET_LONG_BIT / TARGET_CHAR_BIT,
c5aa993b 330 0, "long", objfile); /* FIXME -fnf */
c906108c
SS
331 break;
332 case FT_UNSIGNED_LONG:
333 type = init_type (TYPE_CODE_INT,
334 TARGET_LONG_BIT / TARGET_CHAR_BIT,
335 TYPE_FLAG_UNSIGNED, "unsigned long", objfile);
336 break;
337 case FT_LONG_LONG:
338 type = init_type (TYPE_CODE_INT,
339 TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
340 0, "long long", objfile);
341 break;
342 case FT_SIGNED_LONG_LONG:
343 type = init_type (TYPE_CODE_INT,
344 TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
345 0, "signed long long", objfile);
346 break;
347 case FT_UNSIGNED_LONG_LONG:
348 type = init_type (TYPE_CODE_INT,
349 TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
350 TYPE_FLAG_UNSIGNED, "unsigned long long", objfile);
351 break;
352 case FT_FLOAT:
353 type = init_type (TYPE_CODE_FLT,
354 TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
355 0, "real", objfile);
356 break;
357 case FT_DBL_PREC_FLOAT:
358 type = init_type (TYPE_CODE_FLT,
359 TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
360 0, "real*8", objfile);
361 break;
362 case FT_FLOAT_DECIMAL:
363 type = init_type (TYPE_CODE_FLT,
364 TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
365 0, "floating decimal", objfile);
366 break;
367 case FT_EXT_PREC_FLOAT:
368 type = init_type (TYPE_CODE_FLT,
369 TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
370 0, "real*16", objfile);
371 break;
372 case FT_COMPLEX:
373 type = init_type (TYPE_CODE_COMPLEX,
374 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
375 0, "complex*8", objfile);
376 TYPE_TARGET_TYPE (type) = builtin_type_f_real;
377 break;
378 case FT_DBL_PREC_COMPLEX:
379 type = init_type (TYPE_CODE_COMPLEX,
380 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
381 0, "complex*16", objfile);
382 TYPE_TARGET_TYPE (type) = builtin_type_f_real_s8;
383 break;
384 case FT_EXT_PREC_COMPLEX:
385 type = init_type (TYPE_CODE_COMPLEX,
386 2 * TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
387 0, "complex*32", objfile);
388 TYPE_TARGET_TYPE (type) = builtin_type_f_real_s16;
389 break;
390 default:
391 /* FIXME: For now, if we are asked to produce a type not in this
c5aa993b
JM
392 language, create the equivalent of a C integer type with the
393 name "<?type?>". When all the dust settles from the type
394 reconstruction work, this should probably become an error. */
c906108c
SS
395 type = init_type (TYPE_CODE_INT,
396 TARGET_INT_BIT / TARGET_CHAR_BIT,
397 0, "<?type?>", objfile);
398 warning ("internal error: no F77 fundamental type %d", typeid);
399 break;
400 }
401 return (type);
402}
c906108c 403\f
c5aa993b 404
c906108c
SS
405/* Table of operators and their precedences for printing expressions. */
406
c5aa993b
JM
407static const struct op_print f_op_print_tab[] =
408{
409 {"+", BINOP_ADD, PREC_ADD, 0},
410 {"+", UNOP_PLUS, PREC_PREFIX, 0},
411 {"-", BINOP_SUB, PREC_ADD, 0},
412 {"-", UNOP_NEG, PREC_PREFIX, 0},
413 {"*", BINOP_MUL, PREC_MUL, 0},
414 {"/", BINOP_DIV, PREC_MUL, 0},
415 {"DIV", BINOP_INTDIV, PREC_MUL, 0},
416 {"MOD", BINOP_REM, PREC_MUL, 0},
417 {"=", BINOP_ASSIGN, PREC_ASSIGN, 1},
418 {".OR.", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
419 {".AND.", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
420 {".NOT.", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
421 {".EQ.", BINOP_EQUAL, PREC_EQUAL, 0},
422 {".NE.", BINOP_NOTEQUAL, PREC_EQUAL, 0},
423 {".LE.", BINOP_LEQ, PREC_ORDER, 0},
424 {".GE.", BINOP_GEQ, PREC_ORDER, 0},
425 {".GT.", BINOP_GTR, PREC_ORDER, 0},
426 {".LT.", BINOP_LESS, PREC_ORDER, 0},
427 {"**", UNOP_IND, PREC_PREFIX, 0},
428 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
429 {NULL, 0, 0, 0}
c906108c
SS
430};
431\f
6c6ea35e 432struct type **const (f_builtin_types[]) =
c906108c
SS
433{
434 &builtin_type_f_character,
c5aa993b
JM
435 &builtin_type_f_logical,
436 &builtin_type_f_logical_s1,
437 &builtin_type_f_logical_s2,
438 &builtin_type_f_integer,
439 &builtin_type_f_integer_s2,
440 &builtin_type_f_real,
441 &builtin_type_f_real_s8,
442 &builtin_type_f_real_s16,
443 &builtin_type_f_complex_s8,
444 &builtin_type_f_complex_s16,
c906108c 445#if 0
c5aa993b 446 &builtin_type_f_complex_s32,
c906108c 447#endif
c5aa993b
JM
448 &builtin_type_f_void,
449 0
c906108c
SS
450};
451
452/* This is declared in c-lang.h but it is silly to import that file for what
453 is already just a hack. */
d9fcf2fb
JM
454extern int c_value_print (struct value *, struct ui_file *, int,
455 enum val_prettyprint);
c906108c 456
c5aa993b
JM
457const struct language_defn f_language_defn =
458{
c906108c
SS
459 "fortran",
460 language_fortran,
461 f_builtin_types,
462 range_check_on,
463 type_check_on,
63872f9d 464 case_sensitive_off,
5f9769d1 465 &exp_descriptor_standard,
c906108c
SS
466 f_parse, /* parser */
467 f_error, /* parser error function */
e85c3284 468 null_post_parser,
c906108c
SS
469 f_printchar, /* Print character constant */
470 f_printstr, /* function to print string constant */
471 f_emit_char, /* Function to print a single character */
472 f_create_fundamental_type, /* Create fundamental type in this language */
c5aa993b 473 f_print_type, /* Print a type using appropriate syntax */
c906108c 474 f_val_print, /* Print a value using appropriate syntax */
c5aa993b 475 c_value_print, /* FIXME */
f636b87d 476 NULL, /* Language specific skip_trampoline */
5f9a71c3
DC
477 value_of_this, /* value_of_this */
478 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 479 basic_lookup_transparent_type,/* lookup_transparent_type */
9a3d7dfd 480 NULL, /* Language specific symbol demangler */
31c27f77 481 NULL, /* Language specific class_name_from_physname */
c5aa993b
JM
482 {"", "", "", ""}, /* Binary format info */
483 {"0%o", "0", "o", ""}, /* Octal format info */
484 {"%d", "", "d", ""}, /* Decimal format info */
485 {"0x%x", "0x", "x", ""}, /* Hex format info */
c906108c
SS
486 f_op_print_tab, /* expression operators for printing */
487 0, /* arrays are first-class (not c-style) */
488 1, /* String lower bound */
c5aa993b 489 &builtin_type_f_character, /* Type of string elements */
6084f43a 490 default_word_break_characters,
f290d38e 491 NULL, /* FIXME: la_language_arch_info. */
c906108c 492 LANG_MAGIC
c5aa993b 493};
c906108c 494
4e845cd3
MS
495static void
496build_fortran_types (void)
c906108c
SS
497{
498 builtin_type_f_void =
499 init_type (TYPE_CODE_VOID, 1,
500 0,
501 "VOID", (struct objfile *) NULL);
c5aa993b 502
c906108c
SS
503 builtin_type_f_character =
504 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
505 0,
506 "character", (struct objfile *) NULL);
c5aa993b 507
c906108c
SS
508 builtin_type_f_logical_s1 =
509 init_type (TYPE_CODE_BOOL, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
510 TYPE_FLAG_UNSIGNED,
511 "logical*1", (struct objfile *) NULL);
c5aa993b 512
c906108c
SS
513 builtin_type_f_integer_s2 =
514 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
515 0,
516 "integer*2", (struct objfile *) NULL);
c5aa993b 517
c906108c
SS
518 builtin_type_f_logical_s2 =
519 init_type (TYPE_CODE_BOOL, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
520 TYPE_FLAG_UNSIGNED,
521 "logical*2", (struct objfile *) NULL);
c5aa993b 522
c906108c
SS
523 builtin_type_f_integer =
524 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
525 0,
526 "integer", (struct objfile *) NULL);
c5aa993b 527
c906108c
SS
528 builtin_type_f_logical =
529 init_type (TYPE_CODE_BOOL, TARGET_INT_BIT / TARGET_CHAR_BIT,
530 TYPE_FLAG_UNSIGNED,
531 "logical*4", (struct objfile *) NULL);
c5aa993b 532
c906108c
SS
533 builtin_type_f_real =
534 init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
535 0,
536 "real", (struct objfile *) NULL);
c5aa993b 537
c906108c
SS
538 builtin_type_f_real_s8 =
539 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
540 0,
541 "real*8", (struct objfile *) NULL);
c5aa993b 542
c906108c
SS
543 builtin_type_f_real_s16 =
544 init_type (TYPE_CODE_FLT, TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
545 0,
546 "real*16", (struct objfile *) NULL);
c5aa993b 547
c906108c
SS
548 builtin_type_f_complex_s8 =
549 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
550 0,
551 "complex*8", (struct objfile *) NULL);
552 TYPE_TARGET_TYPE (builtin_type_f_complex_s8) = builtin_type_f_real;
c5aa993b 553
c906108c
SS
554 builtin_type_f_complex_s16 =
555 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
556 0,
557 "complex*16", (struct objfile *) NULL);
558 TYPE_TARGET_TYPE (builtin_type_f_complex_s16) = builtin_type_f_real_s8;
c5aa993b 559
c906108c
SS
560 /* We have a new size == 4 double floats for the
561 complex*32 data type */
c5aa993b
JM
562
563 builtin_type_f_complex_s32 =
c906108c
SS
564 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
565 0,
566 "complex*32", (struct objfile *) NULL);
567 TYPE_TARGET_TYPE (builtin_type_f_complex_s32) = builtin_type_f_real_s16;
4e845cd3
MS
568}
569
570void
571_initialize_f_language (void)
572{
573 build_fortran_types ();
046a4708
AC
574
575 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_character);
576 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_logical);
577 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_logical_s1);
578 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_logical_s2);
579 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_integer);
580 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_integer_s2);
581 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_real);
582 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_real_s8);
583 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_real_s16);
584 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_complex_s8);
585 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_complex_s16);
586 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_complex_s32);
587 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_f_void);
588 DEPRECATED_REGISTER_GDBARCH_SWAP (builtin_type_string);
589 deprecated_register_gdbarch_swap (NULL, 0, build_fortran_types);
c906108c
SS
590
591 builtin_type_string =
592 init_type (TYPE_CODE_STRING, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
593 0,
c5aa993b
JM
594 "character string", (struct objfile *) NULL);
595
c906108c
SS
596 add_language (&f_language_defn);
597}
598
599#if 0
600static SAVED_BF_PTR
fba45db2 601allocate_saved_bf_node (void)
c906108c
SS
602{
603 SAVED_BF_PTR new;
c5aa993b 604
c906108c 605 new = (SAVED_BF_PTR) xmalloc (sizeof (SAVED_BF));
c5aa993b 606 return (new);
c906108c
SS
607}
608
609static SAVED_FUNCTION *
fba45db2 610allocate_saved_function_node (void)
c906108c
SS
611{
612 SAVED_FUNCTION *new;
c5aa993b 613
c906108c 614 new = (SAVED_FUNCTION *) xmalloc (sizeof (SAVED_FUNCTION));
c5aa993b 615 return (new);
c906108c
SS
616}
617
c5aa993b 618static SAVED_F77_COMMON_PTR
fba45db2 619allocate_saved_f77_common_node (void)
c906108c
SS
620{
621 SAVED_F77_COMMON_PTR new;
c5aa993b 622
c906108c 623 new = (SAVED_F77_COMMON_PTR) xmalloc (sizeof (SAVED_F77_COMMON));
c5aa993b 624 return (new);
c906108c
SS
625}
626
c5aa993b 627static COMMON_ENTRY_PTR
fba45db2 628allocate_common_entry_node (void)
c906108c
SS
629{
630 COMMON_ENTRY_PTR new;
c5aa993b 631
c906108c 632 new = (COMMON_ENTRY_PTR) xmalloc (sizeof (COMMON_ENTRY));
c5aa993b 633 return (new);
c906108c
SS
634}
635#endif
636
c5aa993b
JM
637SAVED_F77_COMMON_PTR head_common_list = NULL; /* Ptr to 1st saved COMMON */
638SAVED_F77_COMMON_PTR tail_common_list = NULL; /* Ptr to last saved COMMON */
639SAVED_F77_COMMON_PTR current_common = NULL; /* Ptr to current COMMON */
c906108c
SS
640
641#if 0
c5aa993b
JM
642static SAVED_BF_PTR saved_bf_list = NULL; /* Ptr to (.bf,function)
643 list */
644static SAVED_BF_PTR saved_bf_list_end = NULL; /* Ptr to above list's end */
645static SAVED_BF_PTR current_head_bf_list = NULL; /* Current head of above list
646 */
c906108c 647
c5aa993b
JM
648static SAVED_BF_PTR tmp_bf_ptr; /* Generic temporary for use
649 in macros */
c906108c
SS
650
651/* The following function simply enters a given common block onto
652 the global common block chain */
653
654static void
fba45db2 655add_common_block (char *name, CORE_ADDR offset, int secnum, char *func_stab)
c906108c
SS
656{
657 SAVED_F77_COMMON_PTR tmp;
c5aa993b
JM
658 char *c, *local_copy_func_stab;
659
c906108c
SS
660 /* If the COMMON block we are trying to add has a blank
661 name (i.e. "#BLNK_COM") then we set it to __BLANK
662 because the darn "#" character makes GDB's input
c5aa993b
JM
663 parser have fits. */
664
665
6314a349
AC
666 if (strcmp (name, BLANK_COMMON_NAME_ORIGINAL) == 0
667 || strcmp (name, BLANK_COMMON_NAME_MF77) == 0)
c906108c 668 {
c5aa993b 669
b8c9b27d 670 xfree (name);
c5aa993b
JM
671 name = alloca (strlen (BLANK_COMMON_NAME_LOCAL) + 1);
672 strcpy (name, BLANK_COMMON_NAME_LOCAL);
c906108c 673 }
c5aa993b
JM
674
675 tmp = allocate_saved_f77_common_node ();
676
677 local_copy_func_stab = xmalloc (strlen (func_stab) + 1);
678 strcpy (local_copy_func_stab, func_stab);
679
680 tmp->name = xmalloc (strlen (name) + 1);
681
c906108c 682 /* local_copy_func_stab is a stabstring, let us first extract the
c5aa993b
JM
683 function name from the stab by NULLing out the ':' character. */
684
685
686 c = NULL;
687 c = strchr (local_copy_func_stab, ':');
688
c906108c
SS
689 if (c)
690 *c = '\0';
691 else
c5aa993b
JM
692 error ("Malformed function STAB found in add_common_block()");
693
694
695 tmp->owning_function = xmalloc (strlen (local_copy_func_stab) + 1);
696
697 strcpy (tmp->owning_function, local_copy_func_stab);
698
699 strcpy (tmp->name, name);
700 tmp->offset = offset;
c906108c
SS
701 tmp->next = NULL;
702 tmp->entries = NULL;
c5aa993b
JM
703 tmp->secnum = secnum;
704
c906108c 705 current_common = tmp;
c5aa993b 706
c906108c
SS
707 if (head_common_list == NULL)
708 {
709 head_common_list = tail_common_list = tmp;
710 }
711 else
712 {
c5aa993b 713 tail_common_list->next = tmp;
c906108c
SS
714 tail_common_list = tmp;
715 }
716}
717#endif
718
719/* The following function simply enters a given common entry onto
c5aa993b 720 the "current_common" block that has been saved away. */
c906108c
SS
721
722#if 0
723static void
fba45db2 724add_common_entry (struct symbol *entry_sym_ptr)
c906108c
SS
725{
726 COMMON_ENTRY_PTR tmp;
c5aa993b
JM
727
728
729
c906108c
SS
730 /* The order of this list is important, since
731 we expect the entries to appear in decl.
c5aa993b
JM
732 order when we later issue "info common" calls */
733
734 tmp = allocate_common_entry_node ();
735
c906108c
SS
736 tmp->next = NULL;
737 tmp->symbol = entry_sym_ptr;
c5aa993b 738
c906108c 739 if (current_common == NULL)
c5aa993b
JM
740 error ("Attempt to add COMMON entry with no block open!");
741 else
c906108c
SS
742 {
743 if (current_common->entries == NULL)
744 {
745 current_common->entries = tmp;
c5aa993b 746 current_common->end_of_entries = tmp;
c906108c
SS
747 }
748 else
749 {
c5aa993b
JM
750 current_common->end_of_entries->next = tmp;
751 current_common->end_of_entries = tmp;
c906108c
SS
752 }
753 }
754}
755#endif
756
c5aa993b 757/* This routine finds the first encountred COMMON block named "name" */
c906108c
SS
758
759#if 0
760static SAVED_F77_COMMON_PTR
fba45db2 761find_first_common_named (char *name)
c906108c 762{
c5aa993b 763
c906108c 764 SAVED_F77_COMMON_PTR tmp;
c5aa993b 765
c906108c 766 tmp = head_common_list;
c5aa993b 767
c906108c
SS
768 while (tmp != NULL)
769 {
6314a349 770 if (strcmp (tmp->name, name) == 0)
c5aa993b 771 return (tmp);
c906108c
SS
772 else
773 tmp = tmp->next;
774 }
c5aa993b 775 return (NULL);
c906108c
SS
776}
777#endif
778
779/* This routine finds the first encountred COMMON block named "name"
c5aa993b 780 that belongs to function funcname */
c906108c 781
c5aa993b 782SAVED_F77_COMMON_PTR
fba45db2 783find_common_for_function (char *name, char *funcname)
c906108c 784{
c5aa993b 785
c906108c 786 SAVED_F77_COMMON_PTR tmp;
c5aa993b 787
c906108c 788 tmp = head_common_list;
c5aa993b 789
c906108c
SS
790 while (tmp != NULL)
791 {
cb137aa5
AC
792 if (DEPRECATED_STREQ (tmp->name, name)
793 && DEPRECATED_STREQ (tmp->owning_function, funcname))
c5aa993b 794 return (tmp);
c906108c
SS
795 else
796 tmp = tmp->next;
797 }
c5aa993b 798 return (NULL);
c906108c
SS
799}
800
801
802#if 0
803
804/* The following function is called to patch up the offsets
805 for the statics contained in the COMMON block named
c5aa993b 806 "name." */
c906108c
SS
807
808static void
fba45db2 809patch_common_entries (SAVED_F77_COMMON_PTR blk, CORE_ADDR offset, int secnum)
c906108c
SS
810{
811 COMMON_ENTRY_PTR entry;
c5aa993b
JM
812
813 blk->offset = offset; /* Keep this around for future use. */
814
c906108c 815 entry = blk->entries;
c5aa993b 816
c906108c
SS
817 while (entry != NULL)
818 {
c5aa993b 819 SYMBOL_VALUE (entry->symbol) += offset;
c906108c 820 SYMBOL_SECTION (entry->symbol) = secnum;
c5aa993b 821
c906108c
SS
822 entry = entry->next;
823 }
c5aa993b 824 blk->secnum = secnum;
c906108c
SS
825}
826
827/* Patch all commons named "name" that need patching.Since COMMON
828 blocks occur with relative infrequency, we simply do a linear scan on
829 the name. Eventually, the best way to do this will be a
830 hashed-lookup. Secnum is the section number for the .bss section
831 (which is where common data lives). */
832
833static void
fba45db2 834patch_all_commons_by_name (char *name, CORE_ADDR offset, int secnum)
c906108c 835{
c5aa993b 836
c906108c 837 SAVED_F77_COMMON_PTR tmp;
c5aa993b 838
c906108c
SS
839 /* For blank common blocks, change the canonical reprsentation
840 of a blank name */
c5aa993b 841
6314a349
AC
842 if (strcmp (name, BLANK_COMMON_NAME_ORIGINAL) == 0
843 || strcmp (name, BLANK_COMMON_NAME_MF77) == 0)
c906108c 844 {
b8c9b27d 845 xfree (name);
c5aa993b
JM
846 name = alloca (strlen (BLANK_COMMON_NAME_LOCAL) + 1);
847 strcpy (name, BLANK_COMMON_NAME_LOCAL);
c906108c 848 }
c5aa993b 849
c906108c 850 tmp = head_common_list;
c5aa993b 851
c906108c
SS
852 while (tmp != NULL)
853 {
c5aa993b 854 if (COMMON_NEEDS_PATCHING (tmp))
6314a349 855 if (strcmp (tmp->name, name) == 0)
c5aa993b
JM
856 patch_common_entries (tmp, offset, secnum);
857
c906108c 858 tmp = tmp->next;
c5aa993b 859 }
c906108c
SS
860}
861#endif
862
863/* This macro adds the symbol-number for the start of the function
864 (the symbol number of the .bf) referenced by symnum_fcn to a
865 list. This list, in reality should be a FIFO queue but since
866 #line pragmas sometimes cause line ranges to get messed up
867 we simply create a linear list. This list can then be searched
868 first by a queueing algorithm and upon failure fall back to
c5aa993b 869 a linear scan. */
c906108c
SS
870
871#if 0
872#define ADD_BF_SYMNUM(bf_sym,fcn_sym) \
873 \
874 if (saved_bf_list == NULL) \
875{ \
876 tmp_bf_ptr = allocate_saved_bf_node(); \
877 \
878 tmp_bf_ptr->symnum_bf = (bf_sym); \
879 tmp_bf_ptr->symnum_fcn = (fcn_sym); \
880 tmp_bf_ptr->next = NULL; \
881 \
882 current_head_bf_list = saved_bf_list = tmp_bf_ptr; \
883 saved_bf_list_end = tmp_bf_ptr; \
884 } \
885else \
886{ \
887 tmp_bf_ptr = allocate_saved_bf_node(); \
888 \
889 tmp_bf_ptr->symnum_bf = (bf_sym); \
890 tmp_bf_ptr->symnum_fcn = (fcn_sym); \
891 tmp_bf_ptr->next = NULL; \
892 \
893 saved_bf_list_end->next = tmp_bf_ptr; \
894 saved_bf_list_end = tmp_bf_ptr; \
c5aa993b 895 }
c906108c
SS
896#endif
897
c5aa993b 898/* This function frees the entire (.bf,function) list */
c906108c
SS
899
900#if 0
c5aa993b 901static void
fba45db2 902clear_bf_list (void)
c906108c 903{
c5aa993b 904
c906108c 905 SAVED_BF_PTR tmp = saved_bf_list;
c5aa993b
JM
906 SAVED_BF_PTR next = NULL;
907
c906108c
SS
908 while (tmp != NULL)
909 {
910 next = tmp->next;
b8c9b27d 911 xfree (tmp);
c5aa993b 912 tmp = next;
c906108c
SS
913 }
914 saved_bf_list = NULL;
915}
916#endif
917
918int global_remote_debug;
919
920#if 0
921
922static long
fba45db2 923get_bf_for_fcn (long the_function)
c906108c
SS
924{
925 SAVED_BF_PTR tmp;
926 int nprobes = 0;
c5aa993b 927
c906108c
SS
928 /* First use a simple queuing algorithm (i.e. look and see if the
929 item at the head of the queue is the one you want) */
c5aa993b 930
c906108c 931 if (saved_bf_list == NULL)
8e65ff28
AC
932 internal_error (__FILE__, __LINE__,
933 "cannot get .bf node off empty list");
c5aa993b
JM
934
935 if (current_head_bf_list != NULL)
c906108c
SS
936 if (current_head_bf_list->symnum_fcn == the_function)
937 {
c5aa993b 938 if (global_remote_debug)
dac8068e 939 fprintf_unfiltered (gdb_stderr, "*");
c906108c 940
c5aa993b 941 tmp = current_head_bf_list;
c906108c 942 current_head_bf_list = current_head_bf_list->next;
c5aa993b 943 return (tmp->symnum_bf);
c906108c 944 }
c5aa993b 945
c906108c
SS
946 /* If the above did not work (probably because #line directives were
947 used in the sourcefile and they messed up our internal tables) we now do
948 the ugly linear scan */
c5aa993b
JM
949
950 if (global_remote_debug)
dac8068e 951 fprintf_unfiltered (gdb_stderr, "\ndefaulting to linear scan\n");
c5aa993b
JM
952
953 nprobes = 0;
c906108c
SS
954 tmp = saved_bf_list;
955 while (tmp != NULL)
956 {
c5aa993b 957 nprobes++;
c906108c 958 if (tmp->symnum_fcn == the_function)
c5aa993b 959 {
c906108c 960 if (global_remote_debug)
dac8068e 961 fprintf_unfiltered (gdb_stderr, "Found in %d probes\n", nprobes);
c906108c 962 current_head_bf_list = tmp->next;
c5aa993b
JM
963 return (tmp->symnum_bf);
964 }
965 tmp = tmp->next;
c906108c 966 }
c5aa993b
JM
967
968 return (-1);
c906108c
SS
969}
970
c5aa993b
JM
971static SAVED_FUNCTION_PTR saved_function_list = NULL;
972static SAVED_FUNCTION_PTR saved_function_list_end = NULL;
c906108c
SS
973
974static void
fba45db2 975clear_function_list (void)
c906108c
SS
976{
977 SAVED_FUNCTION_PTR tmp = saved_function_list;
c5aa993b
JM
978 SAVED_FUNCTION_PTR next = NULL;
979
c906108c
SS
980 while (tmp != NULL)
981 {
982 next = tmp->next;
b8c9b27d 983 xfree (tmp);
c906108c
SS
984 tmp = next;
985 }
c5aa993b 986
c906108c
SS
987 saved_function_list = NULL;
988}
989#endif
This page took 0.371854 seconds and 4 git commands to generate.