]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/compile/compile-c-symbols.c
Normalize TRY_CATCH exception handling block
[thirdparty/binutils-gdb.git] / gdb / compile / compile-c-symbols.c
CommitLineData
bb2ec1b3
TT
1/* Convert symbols from GDB to GCC
2
32d0add0 3 Copyright (C) 2014-2015 Free Software Foundation, Inc.
bb2ec1b3
TT
4
5 This file is part of GDB.
6
7 This program 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 3 of the License, or
10 (at your option) any later version.
11
12 This program 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.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20
21#include "defs.h"
22#include "compile-internal.h"
23#include "gdb_assert.h"
24#include "symtab.h"
25#include "parser-defs.h"
26#include "block.h"
27#include "objfiles.h"
28#include "compile.h"
29#include "value.h"
30#include "exceptions.h"
31#include "gdbtypes.h"
32#include "dwarf2loc.h"
33
34\f
35
36/* Object of this type are stored in the compiler's symbol_err_map. */
37
38struct symbol_error
39{
40 /* The symbol. */
41
42 const struct symbol *sym;
43
44 /* The error message to emit. This is malloc'd and owned by the
45 hash table. */
46
47 char *message;
48};
49
50/* Hash function for struct symbol_error. */
51
52static hashval_t
53hash_symbol_error (const void *a)
54{
55 const struct symbol_error *se = a;
56
57 return htab_hash_pointer (se->sym);
58}
59
60/* Equality function for struct symbol_error. */
61
62static int
63eq_symbol_error (const void *a, const void *b)
64{
65 const struct symbol_error *sea = a;
66 const struct symbol_error *seb = b;
67
68 return sea->sym == seb->sym;
69}
70
71/* Deletion function for struct symbol_error. */
72
73static void
74del_symbol_error (void *a)
75{
76 struct symbol_error *se = a;
77
78 xfree (se->message);
79 xfree (se);
80}
81
82/* Associate SYMBOL with some error text. */
83
84static void
85insert_symbol_error (htab_t hash, const struct symbol *sym, const char *text)
86{
87 struct symbol_error e;
88 void **slot;
89
90 e.sym = sym;
91 slot = htab_find_slot (hash, &e, INSERT);
92 if (*slot == NULL)
93 {
94 struct symbol_error *e = XNEW (struct symbol_error);
95
96 e->sym = sym;
97 e->message = xstrdup (text);
98 *slot = e;
99 }
100}
101
102/* Emit the error message corresponding to SYM, if one exists, and
103 arrange for it not to be emitted again. */
104
105static void
106error_symbol_once (struct compile_c_instance *context,
107 const struct symbol *sym)
108{
109 struct symbol_error search;
110 struct symbol_error *err;
111 char *message;
112
113 if (context->symbol_err_map == NULL)
114 return;
115
116 search.sym = sym;
117 err = htab_find (context->symbol_err_map, &search);
118 if (err == NULL || err->message == NULL)
119 return;
120
121 message = err->message;
122 err->message = NULL;
123 make_cleanup (xfree, message);
124 error (_("%s"), message);
125}
126
127\f
128
129/* Compute the name of the pointer representing a local symbol's
130 address. */
131
132static char *
133symbol_substitution_name (struct symbol *sym)
134{
135 return concat ("__", SYMBOL_NATURAL_NAME (sym), "_ptr", (char *) NULL);
136}
137
138/* Convert a given symbol, SYM, to the compiler's representation.
139 CONTEXT is the compiler instance. IS_GLOBAL is true if the
140 symbol came from the global scope. IS_LOCAL is true if the symbol
141 came from a local scope. (Note that the two are not strictly
142 inverses because the symbol might have come from the static
143 scope.) */
144
145static void
146convert_one_symbol (struct compile_c_instance *context,
147 struct symbol *sym,
148 int is_global,
149 int is_local)
150{
151 gcc_type sym_type;
08be3fe3 152 const char *filename = symbol_symtab (sym)->filename;
bb2ec1b3
TT
153 unsigned short line = SYMBOL_LINE (sym);
154
155 error_symbol_once (context, sym);
156
157 if (SYMBOL_CLASS (sym) == LOC_LABEL)
158 sym_type = 0;
159 else
160 sym_type = convert_type (context, SYMBOL_TYPE (sym));
161
162 if (SYMBOL_DOMAIN (sym) == STRUCT_DOMAIN)
163 {
164 /* Binding a tag, so we don't need to build a decl. */
165 C_CTX (context)->c_ops->tagbind (C_CTX (context),
166 SYMBOL_NATURAL_NAME (sym),
167 sym_type, filename, line);
168 }
169 else
170 {
171 gcc_decl decl;
172 enum gcc_c_symbol_kind kind;
173 CORE_ADDR addr = 0;
174 char *symbol_name = NULL;
175
176 switch (SYMBOL_CLASS (sym))
177 {
178 case LOC_TYPEDEF:
179 kind = GCC_C_SYMBOL_TYPEDEF;
180 break;
181
182 case LOC_LABEL:
183 kind = GCC_C_SYMBOL_LABEL;
184 addr = SYMBOL_VALUE_ADDRESS (sym);
185 break;
186
187 case LOC_BLOCK:
188 kind = GCC_C_SYMBOL_FUNCTION;
189 addr = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
081a1c2c
JK
190 if (is_global && TYPE_GNU_IFUNC (SYMBOL_TYPE (sym)))
191 addr = gnu_ifunc_resolve_addr (target_gdbarch (), addr);
bb2ec1b3
TT
192 break;
193
194 case LOC_CONST:
195 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_ENUM)
196 {
197 /* Already handled by convert_enum. */
198 return;
199 }
200 C_CTX (context)->c_ops->build_constant (C_CTX (context), sym_type,
201 SYMBOL_NATURAL_NAME (sym),
202 SYMBOL_VALUE (sym),
203 filename, line);
204 return;
205
206 case LOC_CONST_BYTES:
207 error (_("Unsupported LOC_CONST_BYTES for symbol \"%s\"."),
208 SYMBOL_PRINT_NAME (sym));
209
210 case LOC_UNDEF:
211 internal_error (__FILE__, __LINE__, _("LOC_UNDEF found for \"%s\"."),
212 SYMBOL_PRINT_NAME (sym));
213
214 case LOC_COMMON_BLOCK:
215 error (_("Fortran common block is unsupported for compilation "
216 "evaluaton of symbol \"%s\"."),
217 SYMBOL_PRINT_NAME (sym));
218
219 case LOC_OPTIMIZED_OUT:
220 error (_("Symbol \"%s\" cannot be used for compilation evaluation "
221 "as it is optimized out."),
222 SYMBOL_PRINT_NAME (sym));
223
224 case LOC_COMPUTED:
225 if (is_local)
226 goto substitution;
227 /* Probably TLS here. */
228 warning (_("Symbol \"%s\" is thread-local and currently can only "
229 "be referenced from the current thread in "
230 "compiled code."),
231 SYMBOL_PRINT_NAME (sym));
232 /* FALLTHROUGH */
233 case LOC_UNRESOLVED:
234 /* 'symbol_name' cannot be used here as that one is used only for
235 local variables from compile_dwarf_expr_to_c.
236 Global variables can be accessed by GCC only by their address, not
237 by their name. */
238 {
239 struct value *val;
240 struct frame_info *frame = NULL;
241
242 if (symbol_read_needs_frame (sym))
243 {
244 frame = get_selected_frame (NULL);
245 if (frame == NULL)
246 error (_("Symbol \"%s\" cannot be used because "
247 "there is no selected frame"),
248 SYMBOL_PRINT_NAME (sym));
249 }
250
251 val = read_var_value (sym, frame);
252 if (VALUE_LVAL (val) != lval_memory)
253 error (_("Symbol \"%s\" cannot be used for compilation "
254 "evaluation as its address has not been found."),
255 SYMBOL_PRINT_NAME (sym));
256
257 kind = GCC_C_SYMBOL_VARIABLE;
258 addr = value_address (val);
259 }
260 break;
261
262
263 case LOC_REGISTER:
264 case LOC_ARG:
265 case LOC_REF_ARG:
266 case LOC_REGPARM_ADDR:
267 case LOC_LOCAL:
268 substitution:
269 kind = GCC_C_SYMBOL_VARIABLE;
270 symbol_name = symbol_substitution_name (sym);
271 break;
272
273 case LOC_STATIC:
274 kind = GCC_C_SYMBOL_VARIABLE;
275 addr = SYMBOL_VALUE_ADDRESS (sym);
276 break;
277
278 case LOC_FINAL_VALUE:
279 default:
280 gdb_assert_not_reached ("Unreachable case in convert_one_symbol.");
281
282 }
283
284 /* Don't emit local variable decls for a raw expression. */
285 if (context->base.scope != COMPILE_I_RAW_SCOPE
286 || symbol_name == NULL)
287 {
288 decl = C_CTX (context)->c_ops->build_decl (C_CTX (context),
289 SYMBOL_NATURAL_NAME (sym),
290 kind,
291 sym_type,
292 symbol_name, addr,
293 filename, line);
294
295 C_CTX (context)->c_ops->bind (C_CTX (context), decl, is_global);
296 }
297
298 xfree (symbol_name);
299 }
300}
301
302/* Convert a full symbol to its gcc form. CONTEXT is the compiler to
303 use, IDENTIFIER is the name of the symbol, SYM is the symbol
304 itself, and DOMAIN is the domain which was searched. */
305
306static void
307convert_symbol_sym (struct compile_c_instance *context, const char *identifier,
308 struct symbol *sym, domain_enum domain)
309{
310 const struct block *static_block, *found_block;
311 int is_local_symbol;
312
313 found_block = block_found;
314
315 /* If we found a symbol and it is not in the static or global
316 scope, then we should first convert any static or global scope
317 symbol of the same name. This lets this unusual case work:
318
319 int x; // Global.
320 int func(void)
321 {
322 int x;
323 // At this spot, evaluate "extern int x; x"
324 }
325 */
326
327 static_block = block_static_block (found_block);
328 /* STATIC_BLOCK is NULL if FOUND_BLOCK is the global block. */
329 is_local_symbol = (found_block != static_block && static_block != NULL);
330 if (is_local_symbol)
331 {
332 struct symbol *global_sym;
333
334 global_sym = lookup_symbol (identifier, NULL, domain, NULL);
335 /* If the outer symbol is in the static block, we ignore it, as
336 it cannot be referenced. */
337 if (global_sym != NULL
338 && block_found != block_static_block (block_found))
339 {
340 if (compile_debug)
341 fprintf_unfiltered (gdb_stdout,
342 "gcc_convert_symbol \"%s\": global symbol\n",
343 identifier);
344 convert_one_symbol (context, global_sym, 1, 0);
345 }
346 }
347
348 if (compile_debug)
349 fprintf_unfiltered (gdb_stdout,
350 "gcc_convert_symbol \"%s\": local symbol\n",
351 identifier);
352 convert_one_symbol (context, sym, 0, is_local_symbol);
353}
354
355/* Convert a minimal symbol to its gcc form. CONTEXT is the compiler
356 to use and BMSYM is the minimal symbol to convert. */
357
358static void
359convert_symbol_bmsym (struct compile_c_instance *context,
360 struct bound_minimal_symbol bmsym)
361{
362 struct minimal_symbol *msym = bmsym.minsym;
363 struct objfile *objfile = bmsym.objfile;
364 struct type *type;
365 enum gcc_c_symbol_kind kind;
366 gcc_type sym_type;
367 gcc_decl decl;
368 CORE_ADDR addr;
369
081a1c2c
JK
370 addr = MSYMBOL_VALUE_ADDRESS (objfile, msym);
371
bb2ec1b3
TT
372 /* Conversion copied from write_exp_msymbol. */
373 switch (MSYMBOL_TYPE (msym))
374 {
375 case mst_text:
376 case mst_file_text:
377 case mst_solib_trampoline:
378 type = objfile_type (objfile)->nodebug_text_symbol;
379 kind = GCC_C_SYMBOL_FUNCTION;
380 break;
381
382 case mst_text_gnu_ifunc:
081a1c2c
JK
383 /* nodebug_text_gnu_ifunc_symbol would cause:
384 function return type cannot be function */
385 type = objfile_type (objfile)->nodebug_text_symbol;
bb2ec1b3 386 kind = GCC_C_SYMBOL_FUNCTION;
081a1c2c 387 addr = gnu_ifunc_resolve_addr (target_gdbarch (), addr);
bb2ec1b3
TT
388 break;
389
390 case mst_data:
391 case mst_file_data:
392 case mst_bss:
393 case mst_file_bss:
394 type = objfile_type (objfile)->nodebug_data_symbol;
395 kind = GCC_C_SYMBOL_VARIABLE;
396 break;
397
398 case mst_slot_got_plt:
399 type = objfile_type (objfile)->nodebug_got_plt_symbol;
400 kind = GCC_C_SYMBOL_FUNCTION;
401 break;
402
403 default:
404 type = objfile_type (objfile)->nodebug_unknown_symbol;
405 kind = GCC_C_SYMBOL_VARIABLE;
406 break;
407 }
408
409 sym_type = convert_type (context, type);
bb2ec1b3
TT
410 decl = C_CTX (context)->c_ops->build_decl (C_CTX (context),
411 MSYMBOL_NATURAL_NAME (msym),
412 kind, sym_type, NULL, addr,
413 NULL, 0);
414 C_CTX (context)->c_ops->bind (C_CTX (context), decl, 1 /* is_global */);
415}
416
417/* See compile-internal.h. */
418
419void
420gcc_convert_symbol (void *datum,
421 struct gcc_c_context *gcc_context,
422 enum gcc_c_oracle_request request,
423 const char *identifier)
424{
425 struct compile_c_instance *context = datum;
426 domain_enum domain;
427 volatile struct gdb_exception e;
428 int found = 0;
429
430 switch (request)
431 {
432 case GCC_C_ORACLE_SYMBOL:
433 domain = VAR_DOMAIN;
434 break;
435 case GCC_C_ORACLE_TAG:
436 domain = STRUCT_DOMAIN;
437 break;
438 case GCC_C_ORACLE_LABEL:
439 domain = LABEL_DOMAIN;
440 break;
441 default:
442 gdb_assert_not_reached ("Unrecognized oracle request.");
443 }
444
445 /* We can't allow exceptions to escape out of this callback. Safest
446 is to simply emit a gcc error. */
447 TRY_CATCH (e, RETURN_MASK_ALL)
448 {
449 struct symbol *sym;
450
451 sym = lookup_symbol (identifier, context->base.block, domain, NULL);
452 if (sym != NULL)
453 {
454 convert_symbol_sym (context, identifier, sym, domain);
455 found = 1;
456 }
457 else if (domain == VAR_DOMAIN)
458 {
459 struct bound_minimal_symbol bmsym;
460
461 bmsym = lookup_minimal_symbol (identifier, NULL, NULL);
462 if (bmsym.minsym != NULL)
463 {
464 convert_symbol_bmsym (context, bmsym);
465 found = 1;
466 }
467 }
468 }
469
470 if (e.reason < 0)
471 C_CTX (context)->c_ops->error (C_CTX (context), e.message);
472
473 if (compile_debug && !found)
474 fprintf_unfiltered (gdb_stdout,
475 "gcc_convert_symbol \"%s\": lookup_symbol failed\n",
476 identifier);
477 return;
478}
479
480/* See compile-internal.h. */
481
482gcc_address
483gcc_symbol_address (void *datum, struct gcc_c_context *gcc_context,
484 const char *identifier)
485{
486 struct compile_c_instance *context = datum;
487 volatile struct gdb_exception e;
488 gcc_address result = 0;
489 int found = 0;
490
491 /* We can't allow exceptions to escape out of this callback. Safest
492 is to simply emit a gcc error. */
493 TRY_CATCH (e, RETURN_MASK_ERROR)
494 {
495 struct symbol *sym;
496
497 /* We only need global functions here. */
498 sym = lookup_symbol (identifier, NULL, VAR_DOMAIN, NULL);
499 if (sym != NULL && SYMBOL_CLASS (sym) == LOC_BLOCK)
500 {
501 if (compile_debug)
502 fprintf_unfiltered (gdb_stdout,
503 "gcc_symbol_address \"%s\": full symbol\n",
504 identifier);
505 result = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
081a1c2c
JK
506 if (TYPE_GNU_IFUNC (SYMBOL_TYPE (sym)))
507 result = gnu_ifunc_resolve_addr (target_gdbarch (), result);
bb2ec1b3
TT
508 found = 1;
509 }
510 else
511 {
512 struct bound_minimal_symbol msym;
513
514 msym = lookup_bound_minimal_symbol (identifier);
515 if (msym.minsym != NULL)
516 {
517 if (compile_debug)
518 fprintf_unfiltered (gdb_stdout,
519 "gcc_symbol_address \"%s\": minimal "
520 "symbol\n",
521 identifier);
522 result = BMSYMBOL_VALUE_ADDRESS (msym);
081a1c2c
JK
523 if (MSYMBOL_TYPE (msym.minsym) == mst_text_gnu_ifunc)
524 result = gnu_ifunc_resolve_addr (target_gdbarch (), result);
bb2ec1b3
TT
525 found = 1;
526 }
527 }
528 }
529
530 if (e.reason < 0)
531 C_CTX (context)->c_ops->error (C_CTX (context), e.message);
532
533 if (compile_debug && !found)
534 fprintf_unfiltered (gdb_stdout,
535 "gcc_symbol_address \"%s\": failed\n",
536 identifier);
537 return result;
538}
539
540\f
541
542/* A hash function for symbol names. */
543
544static hashval_t
545hash_symname (const void *a)
546{
547 const struct symbol *sym = a;
548
549 return htab_hash_string (SYMBOL_NATURAL_NAME (sym));
550}
551
552/* A comparison function for hash tables that just looks at symbol
553 names. */
554
555static int
556eq_symname (const void *a, const void *b)
557{
558 const struct symbol *syma = a;
559 const struct symbol *symb = b;
560
561 return strcmp (SYMBOL_NATURAL_NAME (syma), SYMBOL_NATURAL_NAME (symb)) == 0;
562}
563
564/* If a symbol with the same name as SYM is already in HASHTAB, return
565 1. Otherwise, add SYM to HASHTAB and return 0. */
566
567static int
568symbol_seen (htab_t hashtab, struct symbol *sym)
569{
570 void **slot;
571
572 slot = htab_find_slot (hashtab, sym, INSERT);
573 if (*slot != NULL)
574 return 1;
575
576 *slot = sym;
577 return 0;
578}
579
580/* Generate C code to compute the length of a VLA. */
581
582static void
583generate_vla_size (struct compile_c_instance *compiler,
584 struct ui_file *stream,
585 struct gdbarch *gdbarch,
586 unsigned char *registers_used,
587 CORE_ADDR pc,
588 struct type *type,
589 struct symbol *sym)
590{
591 type = check_typedef (type);
592
593 if (TYPE_CODE (type) == TYPE_CODE_REF)
594 type = check_typedef (TYPE_TARGET_TYPE (type));
595
596 switch (TYPE_CODE (type))
597 {
598 case TYPE_CODE_RANGE:
599 {
600 if (TYPE_HIGH_BOUND_KIND (type) == PROP_LOCEXPR
601 || TYPE_HIGH_BOUND_KIND (type) == PROP_LOCLIST)
602 {
603 const struct dynamic_prop *prop = &TYPE_RANGE_DATA (type)->high;
604 char *name = c_get_range_decl_name (prop);
605 struct cleanup *cleanup = make_cleanup (xfree, name);
606
607 dwarf2_compile_property_to_c (stream, name,
608 gdbarch, registers_used,
609 prop, pc, sym);
610 do_cleanups (cleanup);
611 }
612 }
613 break;
614
615 case TYPE_CODE_ARRAY:
616 generate_vla_size (compiler, stream, gdbarch, registers_used, pc,
617 TYPE_INDEX_TYPE (type), sym);
618 generate_vla_size (compiler, stream, gdbarch, registers_used, pc,
619 TYPE_TARGET_TYPE (type), sym);
620 break;
621
622 case TYPE_CODE_UNION:
623 case TYPE_CODE_STRUCT:
624 {
625 int i;
626
627 for (i = 0; i < TYPE_NFIELDS (type); ++i)
628 if (!field_is_static (&TYPE_FIELD (type, i)))
629 generate_vla_size (compiler, stream, gdbarch, registers_used, pc,
630 TYPE_FIELD_TYPE (type, i), sym);
631 }
632 break;
633 }
634}
635
636/* Generate C code to compute the address of SYM. */
637
638static void
639generate_c_for_for_one_variable (struct compile_c_instance *compiler,
640 struct ui_file *stream,
641 struct gdbarch *gdbarch,
642 unsigned char *registers_used,
643 CORE_ADDR pc,
644 struct symbol *sym)
645{
646 volatile struct gdb_exception e;
647
648 TRY_CATCH (e, RETURN_MASK_ERROR)
649 {
650 if (is_dynamic_type (SYMBOL_TYPE (sym)))
651 {
652 struct ui_file *size_file = mem_fileopen ();
653 struct cleanup *cleanup = make_cleanup_ui_file_delete (size_file);
654
655 generate_vla_size (compiler, size_file, gdbarch, registers_used, pc,
656 SYMBOL_TYPE (sym), sym);
657 ui_file_put (size_file, ui_file_write_for_put, stream);
658
659 do_cleanups (cleanup);
660 }
661
662 if (SYMBOL_COMPUTED_OPS (sym) != NULL)
663 {
664 char *generated_name = symbol_substitution_name (sym);
665 struct cleanup *cleanup = make_cleanup (xfree, generated_name);
666 /* We need to emit to a temporary buffer in case an error
667 occurs in the middle. */
668 struct ui_file *local_file = mem_fileopen ();
669
670 make_cleanup_ui_file_delete (local_file);
671 SYMBOL_COMPUTED_OPS (sym)->generate_c_location (sym, local_file,
672 gdbarch,
673 registers_used,
674 pc, generated_name);
675 ui_file_put (local_file, ui_file_write_for_put, stream);
676
677 do_cleanups (cleanup);
678 }
679 else
680 {
681 switch (SYMBOL_CLASS (sym))
682 {
683 case LOC_REGISTER:
684 case LOC_ARG:
685 case LOC_REF_ARG:
686 case LOC_REGPARM_ADDR:
687 case LOC_LOCAL:
688 error (_("Local symbol unhandled when generating C code."));
689
690 case LOC_COMPUTED:
691 gdb_assert_not_reached (_("LOC_COMPUTED variable "
692 "missing a method."));
693
694 default:
695 /* Nothing to do for all other cases, as they don't represent
696 local variables. */
697 break;
698 }
699 }
700 }
701
7556d4a4
PA
702 if (e.reason < 0)
703 {
704 if (compiler->symbol_err_map == NULL)
705 compiler->symbol_err_map = htab_create_alloc (10,
706 hash_symbol_error,
707 eq_symbol_error,
708 del_symbol_error,
709 xcalloc,
710 xfree);
711 insert_symbol_error (compiler->symbol_err_map, sym, e.message);
712 }
bb2ec1b3
TT
713}
714
715/* See compile-internal.h. */
716
717unsigned char *
718generate_c_for_variable_locations (struct compile_c_instance *compiler,
719 struct ui_file *stream,
720 struct gdbarch *gdbarch,
721 const struct block *block,
722 CORE_ADDR pc)
723{
724 struct cleanup *cleanup, *outer;
725 htab_t symhash;
726 const struct block *static_block = block_static_block (block);
727 unsigned char *registers_used;
728
729 /* If we're already in the static or global block, there is nothing
730 to write. */
731 if (static_block == NULL || block == static_block)
732 return NULL;
733
734 registers_used = XCNEWVEC (unsigned char, gdbarch_num_regs (gdbarch));
735 outer = make_cleanup (xfree, registers_used);
736
737 /* Ensure that a given name is only entered once. This reflects the
738 reality of shadowing. */
739 symhash = htab_create_alloc (1, hash_symname, eq_symname, NULL,
740 xcalloc, xfree);
741 cleanup = make_cleanup_htab_delete (symhash);
742
743 while (1)
744 {
745 struct symbol *sym;
746 struct block_iterator iter;
747
748 /* Iterate over symbols in this block, generating code to
749 compute the location of each local variable. */
750 for (sym = block_iterator_first (block, &iter);
751 sym != NULL;
752 sym = block_iterator_next (&iter))
753 {
754 if (!symbol_seen (symhash, sym))
755 generate_c_for_for_one_variable (compiler, stream, gdbarch,
756 registers_used, pc, sym);
757 }
758
759 /* If we just finished the outermost block of a function, we're
760 done. */
761 if (BLOCK_FUNCTION (block) != NULL)
762 break;
763 block = BLOCK_SUPERBLOCK (block);
764 }
765
766 do_cleanups (cleanup);
767 discard_cleanups (outer);
768 return registers_used;
769}