diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2021-11-19 22:25:23 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2022-02-06 15:48:18 -0500 |
commit | af39c5c8749757724a0f62dcb51be59cf3ecc678 (patch) | |
tree | a960f6bfd23ad6080061d29dbec58125cc33f106 /gdb/mdebugread.c | |
parent | 0d9acb4531cfe336b2b335fbaa1f2ef878a6e4d9 (diff) | |
download | gdb-af39c5c8749757724a0f62dcb51be59cf3ecc678.zip gdb-af39c5c8749757724a0f62dcb51be59cf3ecc678.tar.gz gdb-af39c5c8749757724a0f62dcb51be59cf3ecc678.tar.bz2 |
gdb: remove COMPUNIT_BLOCKVECTOR macro, add getter/setter
Add a getter and a setter for a compunit_symtab's blockvector. Remove
the corresponding macro and adjust all callers.
Change-Id: I99484c6619dcbbea7c5d89c72aa660316ca62f64
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index 44c7bc3..59b7038 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -1965,7 +1965,7 @@ parse_procedure (PDR *pr, struct compunit_symtab *search_symtab, #else s = mylookup_symbol (sh_name, - BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (search_symtab), + BLOCKVECTOR_BLOCK (search_symtab->blockvector (), STATIC_BLOCK), VAR_DOMAIN, LOC_BLOCK); @@ -4096,7 +4096,7 @@ mdebug_expand_psymtab (legacy_psymtab *pst, struct objfile *objfile) push_parse_stack (); top_stack->cur_st = cust->primary_filetab (); top_stack->cur_block - = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cust), STATIC_BLOCK); + = BLOCKVECTOR_BLOCK (cust->blockvector (), STATIC_BLOCK); BLOCK_START (top_stack->cur_block) = pst->text_low (objfile); BLOCK_END (top_stack->cur_block) = 0; top_stack->blocktype = stFile; @@ -4502,7 +4502,7 @@ add_block (struct block *b, struct symtab *s) + BLOCKVECTOR_NBLOCKS (bv) * sizeof (bv->block))); if (bv != SYMTAB_BLOCKVECTOR (s)) - SYMTAB_BLOCKVECTOR (s) = bv; + SYMTAB_COMPUNIT (s)->set_blockvector (bv); BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)++) = b; } @@ -4632,7 +4632,7 @@ new_symtab (const char *name, int maxlines, struct objfile *objfile) BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK) = new_block (NON_FUNCTION_BLOCK, lang); BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK); - COMPUNIT_BLOCKVECTOR (cust) = bv; + cust->set_blockvector (bv); cust->set_debugformat ("ECOFF"); return cust; |