c6c482abe8f4138616071abf24eb726336f6b978
[deliverable/binutils-gdb.git] / gdb / f-lang.c
1 /* Fortran language support routines for GDB, the GNU debugger.
2 Copyright 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
3 Free Software Foundation, Inc.
4 Contributed by Motorola. Adapted from the C parser by Farooq Butt
5 (fmbutt@engage.sps.mot.com).
6
7 This file is part of GDB.
8
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.
13
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.
18
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. */
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"
32 #include "valprint.h"
33 #include "value.h"
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
38 struct type *builtin_type_f_character;
39 struct type *builtin_type_f_logical;
40 struct type *builtin_type_f_logical_s1;
41 struct type *builtin_type_f_logical_s2;
42 struct type *builtin_type_f_integer;
43 struct type *builtin_type_f_integer_s2;
44 struct type *builtin_type_f_real;
45 struct type *builtin_type_f_real_s8;
46 struct type *builtin_type_f_real_s16;
47 struct type *builtin_type_f_complex_s8;
48 struct type *builtin_type_f_complex_s16;
49 struct type *builtin_type_f_complex_s32;
50 struct type *builtin_type_f_void;
51
52 /* Following is dubious stuff that had been in the xcoff reader. */
53
54 struct saved_fcn
55 {
56 long line_offset; /* Line offset for function */
57 struct saved_fcn *next;
58 };
59
60
61 struct 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 };
67
68 typedef struct saved_fcn SAVED_FUNCTION, *SAVED_FUNCTION_PTR;
69 typedef struct saved_bf_symnum SAVED_BF, *SAVED_BF_PTR;
70
71 /* Local functions */
72
73 extern void _initialize_f_language (void);
74 #if 0
75 static void clear_function_list (void);
76 static long get_bf_for_fcn (long);
77 static void clear_bf_list (void);
78 static void patch_all_commons_by_name (char *, CORE_ADDR, int);
79 static SAVED_F77_COMMON_PTR find_first_common_named (char *);
80 static void add_common_entry (struct symbol *);
81 static void add_common_block (char *, CORE_ADDR, int, char *);
82 static SAVED_FUNCTION *allocate_saved_function_node (void);
83 static SAVED_BF_PTR allocate_saved_bf_node (void);
84 static COMMON_ENTRY_PTR allocate_common_entry_node (void);
85 static SAVED_F77_COMMON_PTR allocate_saved_f77_common_node (void);
86 static void patch_common_entries (SAVED_F77_COMMON_PTR, CORE_ADDR, int);
87 #endif
88
89 static struct type *f_create_fundamental_type (struct objfile *, int);
90 static void f_printstr (struct ui_file * stream, char *string,
91 unsigned int length, int width,
92 int force_ellipses);
93 static void f_printchar (int c, struct ui_file * stream);
94 static void f_emit_char (int c, struct ui_file * stream, int quoter);
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
102 static void
103 f_emit_char (int c, struct ui_file *stream, int quoter)
104 {
105 c &= 0xFF; /* Avoid sign bit follies */
106
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
148 static void
149 f_printchar (int c, struct ui_file *stream)
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
163 static void
164 f_printstr (struct ui_file *stream, char *string, unsigned int length,
165 int width, int force_ellipses)
166 {
167 unsigned int i;
168 unsigned int things_printed = 0;
169 int in_quotes = 0;
170 int need_comma = 0;
171
172 if (length == 0)
173 {
174 fputs_filtered ("''", gdb_stdout);
175 return;
176 }
177
178 for (i = 0; i < length && things_printed < print_max; ++i)
179 {
180 /* Position of the character we are examining
181 to see whether it is repeated. */
182 unsigned int rep1;
183 /* Number of repetitions we have detected so far. */
184 unsigned int reps;
185
186 QUIT;
187
188 if (need_comma)
189 {
190 fputs_filtered (", ", stream);
191 need_comma = 0;
192 }
193
194 rep1 = i + 1;
195 reps = 1;
196 while (rep1 < length && string[rep1] == string[i])
197 {
198 ++rep1;
199 ++reps;
200 }
201
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 }
232
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 }
241
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
250 static struct type *
251 f_create_fundamental_type (struct objfile *objfile, int typeid)
252 {
253 struct type *type = NULL;
254
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,
310 0, "integer", objfile); /* FIXME -fnf */
311 break;
312 case FT_UNSIGNED_INTEGER:
313 type = init_type (TYPE_CODE_BOOL,
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,
330 0, "long", objfile); /* FIXME -fnf */
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
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. */
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 }
403 \f
404
405 /* Table of operators and their precedences for printing expressions. */
406
407 static 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}
430 };
431 \f
432 struct type **const (f_builtin_types[]) =
433 {
434 &builtin_type_f_character,
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,
445 #if 0
446 &builtin_type_f_complex_s32,
447 #endif
448 &builtin_type_f_void,
449 0
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. */
454 extern int c_value_print (struct value *, struct ui_file *, int,
455 enum val_prettyprint);
456
457 const struct language_defn f_language_defn =
458 {
459 "fortran",
460 language_fortran,
461 f_builtin_types,
462 range_check_on,
463 type_check_on,
464 case_sensitive_off,
465 &exp_descriptor_standard,
466 f_parse, /* parser */
467 f_error, /* parser error function */
468 f_printchar, /* Print character constant */
469 f_printstr, /* function to print string constant */
470 f_emit_char, /* Function to print a single character */
471 f_create_fundamental_type, /* Create fundamental type in this language */
472 f_print_type, /* Print a type using appropriate syntax */
473 f_val_print, /* Print a value using appropriate syntax */
474 c_value_print, /* FIXME */
475 NULL, /* Language specific skip_trampoline */
476 value_of_this, /* value_of_this */
477 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
478 NULL, /* Language specific symbol demangler */
479 {"", "", "", ""}, /* Binary format info */
480 {"0%o", "0", "o", ""}, /* Octal format info */
481 {"%d", "", "d", ""}, /* Decimal format info */
482 {"0x%x", "0x", "x", ""}, /* Hex format info */
483 f_op_print_tab, /* expression operators for printing */
484 0, /* arrays are first-class (not c-style) */
485 1, /* String lower bound */
486 &builtin_type_f_character, /* Type of string elements */
487 default_word_break_characters,
488 LANG_MAGIC
489 };
490
491 static void
492 build_fortran_types (void)
493 {
494 builtin_type_f_void =
495 init_type (TYPE_CODE_VOID, 1,
496 0,
497 "VOID", (struct objfile *) NULL);
498
499 builtin_type_f_character =
500 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
501 0,
502 "character", (struct objfile *) NULL);
503
504 builtin_type_f_logical_s1 =
505 init_type (TYPE_CODE_BOOL, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
506 TYPE_FLAG_UNSIGNED,
507 "logical*1", (struct objfile *) NULL);
508
509 builtin_type_f_integer_s2 =
510 init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
511 0,
512 "integer*2", (struct objfile *) NULL);
513
514 builtin_type_f_logical_s2 =
515 init_type (TYPE_CODE_BOOL, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
516 TYPE_FLAG_UNSIGNED,
517 "logical*2", (struct objfile *) NULL);
518
519 builtin_type_f_integer =
520 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
521 0,
522 "integer", (struct objfile *) NULL);
523
524 builtin_type_f_logical =
525 init_type (TYPE_CODE_BOOL, TARGET_INT_BIT / TARGET_CHAR_BIT,
526 TYPE_FLAG_UNSIGNED,
527 "logical*4", (struct objfile *) NULL);
528
529 builtin_type_f_real =
530 init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
531 0,
532 "real", (struct objfile *) NULL);
533
534 builtin_type_f_real_s8 =
535 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
536 0,
537 "real*8", (struct objfile *) NULL);
538
539 builtin_type_f_real_s16 =
540 init_type (TYPE_CODE_FLT, TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
541 0,
542 "real*16", (struct objfile *) NULL);
543
544 builtin_type_f_complex_s8 =
545 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
546 0,
547 "complex*8", (struct objfile *) NULL);
548 TYPE_TARGET_TYPE (builtin_type_f_complex_s8) = builtin_type_f_real;
549
550 builtin_type_f_complex_s16 =
551 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
552 0,
553 "complex*16", (struct objfile *) NULL);
554 TYPE_TARGET_TYPE (builtin_type_f_complex_s16) = builtin_type_f_real_s8;
555
556 /* We have a new size == 4 double floats for the
557 complex*32 data type */
558
559 builtin_type_f_complex_s32 =
560 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
561 0,
562 "complex*32", (struct objfile *) NULL);
563 TYPE_TARGET_TYPE (builtin_type_f_complex_s32) = builtin_type_f_real_s16;
564 }
565
566 void
567 _initialize_f_language (void)
568 {
569 build_fortran_types ();
570 register_gdbarch_swap (&builtin_type_f_character,
571 sizeof (struct type *), NULL);
572 register_gdbarch_swap (&builtin_type_f_logical,
573 sizeof (struct type *), NULL);
574 register_gdbarch_swap (&builtin_type_f_logical_s1,
575 sizeof (struct type *), NULL);
576 register_gdbarch_swap (&builtin_type_f_logical_s2,
577 sizeof (struct type *), NULL);
578 register_gdbarch_swap (&builtin_type_f_integer,
579 sizeof (struct type *), NULL);
580 register_gdbarch_swap (&builtin_type_f_integer_s2,
581 sizeof (struct type *), NULL);
582 register_gdbarch_swap (&builtin_type_f_real,
583 sizeof (struct type *), NULL);
584 register_gdbarch_swap (&builtin_type_f_real_s8,
585 sizeof (struct type *), NULL);
586 register_gdbarch_swap (&builtin_type_f_real_s16,
587 sizeof (struct type *), NULL);
588 register_gdbarch_swap (&builtin_type_f_complex_s8,
589 sizeof (struct type *), NULL);
590 register_gdbarch_swap (&builtin_type_f_complex_s16,
591 sizeof (struct type *), NULL);
592 register_gdbarch_swap (&builtin_type_f_complex_s32,
593 sizeof (struct type *), NULL);
594 register_gdbarch_swap (&builtin_type_f_void,
595 sizeof (struct type *), NULL);
596 register_gdbarch_swap (&builtin_type_string,
597 sizeof (struct type *), NULL);
598
599 register_gdbarch_swap (NULL, 0, build_fortran_types);
600
601 builtin_type_string =
602 init_type (TYPE_CODE_STRING, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
603 0,
604 "character string", (struct objfile *) NULL);
605
606 add_language (&f_language_defn);
607 }
608
609 #if 0
610 static SAVED_BF_PTR
611 allocate_saved_bf_node (void)
612 {
613 SAVED_BF_PTR new;
614
615 new = (SAVED_BF_PTR) xmalloc (sizeof (SAVED_BF));
616 return (new);
617 }
618
619 static SAVED_FUNCTION *
620 allocate_saved_function_node (void)
621 {
622 SAVED_FUNCTION *new;
623
624 new = (SAVED_FUNCTION *) xmalloc (sizeof (SAVED_FUNCTION));
625 return (new);
626 }
627
628 static SAVED_F77_COMMON_PTR
629 allocate_saved_f77_common_node (void)
630 {
631 SAVED_F77_COMMON_PTR new;
632
633 new = (SAVED_F77_COMMON_PTR) xmalloc (sizeof (SAVED_F77_COMMON));
634 return (new);
635 }
636
637 static COMMON_ENTRY_PTR
638 allocate_common_entry_node (void)
639 {
640 COMMON_ENTRY_PTR new;
641
642 new = (COMMON_ENTRY_PTR) xmalloc (sizeof (COMMON_ENTRY));
643 return (new);
644 }
645 #endif
646
647 SAVED_F77_COMMON_PTR head_common_list = NULL; /* Ptr to 1st saved COMMON */
648 SAVED_F77_COMMON_PTR tail_common_list = NULL; /* Ptr to last saved COMMON */
649 SAVED_F77_COMMON_PTR current_common = NULL; /* Ptr to current COMMON */
650
651 #if 0
652 static SAVED_BF_PTR saved_bf_list = NULL; /* Ptr to (.bf,function)
653 list */
654 static SAVED_BF_PTR saved_bf_list_end = NULL; /* Ptr to above list's end */
655 static SAVED_BF_PTR current_head_bf_list = NULL; /* Current head of above list
656 */
657
658 static SAVED_BF_PTR tmp_bf_ptr; /* Generic temporary for use
659 in macros */
660
661 /* The following function simply enters a given common block onto
662 the global common block chain */
663
664 static void
665 add_common_block (char *name, CORE_ADDR offset, int secnum, char *func_stab)
666 {
667 SAVED_F77_COMMON_PTR tmp;
668 char *c, *local_copy_func_stab;
669
670 /* If the COMMON block we are trying to add has a blank
671 name (i.e. "#BLNK_COM") then we set it to __BLANK
672 because the darn "#" character makes GDB's input
673 parser have fits. */
674
675
676 if (STREQ (name, BLANK_COMMON_NAME_ORIGINAL) ||
677 STREQ (name, BLANK_COMMON_NAME_MF77))
678 {
679
680 xfree (name);
681 name = alloca (strlen (BLANK_COMMON_NAME_LOCAL) + 1);
682 strcpy (name, BLANK_COMMON_NAME_LOCAL);
683 }
684
685 tmp = allocate_saved_f77_common_node ();
686
687 local_copy_func_stab = xmalloc (strlen (func_stab) + 1);
688 strcpy (local_copy_func_stab, func_stab);
689
690 tmp->name = xmalloc (strlen (name) + 1);
691
692 /* local_copy_func_stab is a stabstring, let us first extract the
693 function name from the stab by NULLing out the ':' character. */
694
695
696 c = NULL;
697 c = strchr (local_copy_func_stab, ':');
698
699 if (c)
700 *c = '\0';
701 else
702 error ("Malformed function STAB found in add_common_block()");
703
704
705 tmp->owning_function = xmalloc (strlen (local_copy_func_stab) + 1);
706
707 strcpy (tmp->owning_function, local_copy_func_stab);
708
709 strcpy (tmp->name, name);
710 tmp->offset = offset;
711 tmp->next = NULL;
712 tmp->entries = NULL;
713 tmp->secnum = secnum;
714
715 current_common = tmp;
716
717 if (head_common_list == NULL)
718 {
719 head_common_list = tail_common_list = tmp;
720 }
721 else
722 {
723 tail_common_list->next = tmp;
724 tail_common_list = tmp;
725 }
726 }
727 #endif
728
729 /* The following function simply enters a given common entry onto
730 the "current_common" block that has been saved away. */
731
732 #if 0
733 static void
734 add_common_entry (struct symbol *entry_sym_ptr)
735 {
736 COMMON_ENTRY_PTR tmp;
737
738
739
740 /* The order of this list is important, since
741 we expect the entries to appear in decl.
742 order when we later issue "info common" calls */
743
744 tmp = allocate_common_entry_node ();
745
746 tmp->next = NULL;
747 tmp->symbol = entry_sym_ptr;
748
749 if (current_common == NULL)
750 error ("Attempt to add COMMON entry with no block open!");
751 else
752 {
753 if (current_common->entries == NULL)
754 {
755 current_common->entries = tmp;
756 current_common->end_of_entries = tmp;
757 }
758 else
759 {
760 current_common->end_of_entries->next = tmp;
761 current_common->end_of_entries = tmp;
762 }
763 }
764 }
765 #endif
766
767 /* This routine finds the first encountred COMMON block named "name" */
768
769 #if 0
770 static SAVED_F77_COMMON_PTR
771 find_first_common_named (char *name)
772 {
773
774 SAVED_F77_COMMON_PTR tmp;
775
776 tmp = head_common_list;
777
778 while (tmp != NULL)
779 {
780 if (STREQ (tmp->name, name))
781 return (tmp);
782 else
783 tmp = tmp->next;
784 }
785 return (NULL);
786 }
787 #endif
788
789 /* This routine finds the first encountred COMMON block named "name"
790 that belongs to function funcname */
791
792 SAVED_F77_COMMON_PTR
793 find_common_for_function (char *name, char *funcname)
794 {
795
796 SAVED_F77_COMMON_PTR tmp;
797
798 tmp = head_common_list;
799
800 while (tmp != NULL)
801 {
802 if (STREQ (tmp->name, name) && STREQ (tmp->owning_function, funcname))
803 return (tmp);
804 else
805 tmp = tmp->next;
806 }
807 return (NULL);
808 }
809
810
811 #if 0
812
813 /* The following function is called to patch up the offsets
814 for the statics contained in the COMMON block named
815 "name." */
816
817 static void
818 patch_common_entries (SAVED_F77_COMMON_PTR blk, CORE_ADDR offset, int secnum)
819 {
820 COMMON_ENTRY_PTR entry;
821
822 blk->offset = offset; /* Keep this around for future use. */
823
824 entry = blk->entries;
825
826 while (entry != NULL)
827 {
828 SYMBOL_VALUE (entry->symbol) += offset;
829 SYMBOL_SECTION (entry->symbol) = secnum;
830
831 entry = entry->next;
832 }
833 blk->secnum = secnum;
834 }
835
836 /* Patch all commons named "name" that need patching.Since COMMON
837 blocks occur with relative infrequency, we simply do a linear scan on
838 the name. Eventually, the best way to do this will be a
839 hashed-lookup. Secnum is the section number for the .bss section
840 (which is where common data lives). */
841
842 static void
843 patch_all_commons_by_name (char *name, CORE_ADDR offset, int secnum)
844 {
845
846 SAVED_F77_COMMON_PTR tmp;
847
848 /* For blank common blocks, change the canonical reprsentation
849 of a blank name */
850
851 if ((STREQ (name, BLANK_COMMON_NAME_ORIGINAL)) ||
852 (STREQ (name, BLANK_COMMON_NAME_MF77)))
853 {
854 xfree (name);
855 name = alloca (strlen (BLANK_COMMON_NAME_LOCAL) + 1);
856 strcpy (name, BLANK_COMMON_NAME_LOCAL);
857 }
858
859 tmp = head_common_list;
860
861 while (tmp != NULL)
862 {
863 if (COMMON_NEEDS_PATCHING (tmp))
864 if (STREQ (tmp->name, name))
865 patch_common_entries (tmp, offset, secnum);
866
867 tmp = tmp->next;
868 }
869 }
870 #endif
871
872 /* This macro adds the symbol-number for the start of the function
873 (the symbol number of the .bf) referenced by symnum_fcn to a
874 list. This list, in reality should be a FIFO queue but since
875 #line pragmas sometimes cause line ranges to get messed up
876 we simply create a linear list. This list can then be searched
877 first by a queueing algorithm and upon failure fall back to
878 a linear scan. */
879
880 #if 0
881 #define ADD_BF_SYMNUM(bf_sym,fcn_sym) \
882 \
883 if (saved_bf_list == NULL) \
884 { \
885 tmp_bf_ptr = allocate_saved_bf_node(); \
886 \
887 tmp_bf_ptr->symnum_bf = (bf_sym); \
888 tmp_bf_ptr->symnum_fcn = (fcn_sym); \
889 tmp_bf_ptr->next = NULL; \
890 \
891 current_head_bf_list = saved_bf_list = tmp_bf_ptr; \
892 saved_bf_list_end = tmp_bf_ptr; \
893 } \
894 else \
895 { \
896 tmp_bf_ptr = allocate_saved_bf_node(); \
897 \
898 tmp_bf_ptr->symnum_bf = (bf_sym); \
899 tmp_bf_ptr->symnum_fcn = (fcn_sym); \
900 tmp_bf_ptr->next = NULL; \
901 \
902 saved_bf_list_end->next = tmp_bf_ptr; \
903 saved_bf_list_end = tmp_bf_ptr; \
904 }
905 #endif
906
907 /* This function frees the entire (.bf,function) list */
908
909 #if 0
910 static void
911 clear_bf_list (void)
912 {
913
914 SAVED_BF_PTR tmp = saved_bf_list;
915 SAVED_BF_PTR next = NULL;
916
917 while (tmp != NULL)
918 {
919 next = tmp->next;
920 xfree (tmp);
921 tmp = next;
922 }
923 saved_bf_list = NULL;
924 }
925 #endif
926
927 int global_remote_debug;
928
929 #if 0
930
931 static long
932 get_bf_for_fcn (long the_function)
933 {
934 SAVED_BF_PTR tmp;
935 int nprobes = 0;
936
937 /* First use a simple queuing algorithm (i.e. look and see if the
938 item at the head of the queue is the one you want) */
939
940 if (saved_bf_list == NULL)
941 internal_error (__FILE__, __LINE__,
942 "cannot get .bf node off empty list");
943
944 if (current_head_bf_list != NULL)
945 if (current_head_bf_list->symnum_fcn == the_function)
946 {
947 if (global_remote_debug)
948 fprintf_unfiltered (gdb_stderr, "*");
949
950 tmp = current_head_bf_list;
951 current_head_bf_list = current_head_bf_list->next;
952 return (tmp->symnum_bf);
953 }
954
955 /* If the above did not work (probably because #line directives were
956 used in the sourcefile and they messed up our internal tables) we now do
957 the ugly linear scan */
958
959 if (global_remote_debug)
960 fprintf_unfiltered (gdb_stderr, "\ndefaulting to linear scan\n");
961
962 nprobes = 0;
963 tmp = saved_bf_list;
964 while (tmp != NULL)
965 {
966 nprobes++;
967 if (tmp->symnum_fcn == the_function)
968 {
969 if (global_remote_debug)
970 fprintf_unfiltered (gdb_stderr, "Found in %d probes\n", nprobes);
971 current_head_bf_list = tmp->next;
972 return (tmp->symnum_bf);
973 }
974 tmp = tmp->next;
975 }
976
977 return (-1);
978 }
979
980 static SAVED_FUNCTION_PTR saved_function_list = NULL;
981 static SAVED_FUNCTION_PTR saved_function_list_end = NULL;
982
983 static void
984 clear_function_list (void)
985 {
986 SAVED_FUNCTION_PTR tmp = saved_function_list;
987 SAVED_FUNCTION_PTR next = NULL;
988
989 while (tmp != NULL)
990 {
991 next = tmp->next;
992 xfree (tmp);
993 tmp = next;
994 }
995
996 saved_function_list = NULL;
997 }
998 #endif
This page took 0.060599 seconds and 4 git commands to generate.