mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
1d506c26d9
This commit is the result of the following actions: - Running gdb/copyright.py to update all of the copyright headers to include 2024, - Manually updating a few files the copyright.py script told me to update, these files had copyright headers embedded within the file, - Regenerating gdbsupport/Makefile.in to refresh it's copyright date, - Using grep to find other files that still mentioned 2023. If these files were updated last year from 2022 to 2023 then I've updated them this year to 2024. I'm sure I've probably missed some dates. Feel free to fix them up as you spot them.
689 lines
18 KiB
C
689 lines
18 KiB
C
/* Scheme interface to symbol tables.
|
||
|
||
Copyright (C) 2008-2024 Free Software Foundation, Inc.
|
||
|
||
This file is part of GDB.
|
||
|
||
This program is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||
|
||
/* See README file in this directory for implementation notes, coding
|
||
conventions, et.al. */
|
||
|
||
#include "defs.h"
|
||
#include "symtab.h"
|
||
#include "source.h"
|
||
#include "objfiles.h"
|
||
#include "block.h"
|
||
#include "guile-internal.h"
|
||
|
||
/* A <gdb:symtab> smob. */
|
||
|
||
struct symtab_smob
|
||
{
|
||
/* This always appears first.
|
||
eqable_gdb_smob is used so that symtabs are eq?-able.
|
||
Also, a symtab object is associated with an objfile. eqable_gdb_smob
|
||
lets us track the lifetime of all symtabs associated with an objfile.
|
||
When an objfile is deleted we need to invalidate the symtab object. */
|
||
eqable_gdb_smob base;
|
||
|
||
/* The GDB symbol table structure.
|
||
If this is NULL the symtab is invalid. This can happen when the
|
||
underlying objfile is freed. */
|
||
struct symtab *symtab;
|
||
};
|
||
|
||
/* A <gdb:sal> smob.
|
||
A smob describing a gdb symtab-and-line object.
|
||
A sal is associated with an objfile. All access must be gated by checking
|
||
the validity of symtab_scm.
|
||
TODO: Sals are not eq?-able at the moment, or even comparable. */
|
||
|
||
struct sal_smob
|
||
{
|
||
/* This always appears first. */
|
||
gdb_smob base;
|
||
|
||
/* The <gdb:symtab> object of the symtab.
|
||
We store this instead of a pointer to the symtab_smob because it's not
|
||
clear GC will know the symtab_smob is referenced by us otherwise, and we
|
||
need quick access to symtab_smob->symtab to know if this sal is valid. */
|
||
SCM symtab_scm;
|
||
|
||
/* The GDB symbol table and line structure.
|
||
This object is ephemeral in GDB, so keep our own copy.
|
||
The symtab pointer in this struct is not usable: If the symtab is deleted
|
||
this pointer will not be updated. Use symtab_scm instead to determine
|
||
if this sal is valid. */
|
||
struct symtab_and_line sal;
|
||
};
|
||
|
||
static const char symtab_smob_name[] = "gdb:symtab";
|
||
/* "symtab-and-line" is pretty long, and "sal" is short and unique. */
|
||
static const char sal_smob_name[] = "gdb:sal";
|
||
|
||
/* The tags Guile knows the symbol table smobs by. */
|
||
static scm_t_bits symtab_smob_tag;
|
||
static scm_t_bits sal_smob_tag;
|
||
|
||
/* This is called when an objfile is about to be freed.
|
||
Invalidate the symbol table as further actions on the symbol table
|
||
would result in bad data. All access to st_smob->symtab should be
|
||
gated by stscm_get_valid_symtab_smob_arg_unsafe which will raise an
|
||
exception on invalid symbol tables. */
|
||
struct stscm_deleter
|
||
{
|
||
/* Helper function for stscm_del_objfile_symtabs to mark the symtab
|
||
as invalid. */
|
||
|
||
static int
|
||
stscm_mark_symtab_invalid (void **slot, void *info)
|
||
{
|
||
symtab_smob *st_smob = (symtab_smob *) *slot;
|
||
|
||
st_smob->symtab = NULL;
|
||
return 1;
|
||
}
|
||
|
||
void operator() (htab_t htab)
|
||
{
|
||
gdb_assert (htab != nullptr);
|
||
htab_traverse_noresize (htab, stscm_mark_symtab_invalid, NULL);
|
||
htab_delete (htab);
|
||
}
|
||
};
|
||
|
||
static const registry<objfile>::key<htab, stscm_deleter>
|
||
stscm_objfile_data_key;
|
||
|
||
/* Administrivia for symtab smobs. */
|
||
|
||
/* Helper function to hash a symbol_smob. */
|
||
|
||
static hashval_t
|
||
stscm_hash_symtab_smob (const void *p)
|
||
{
|
||
const symtab_smob *st_smob = (const symtab_smob *) p;
|
||
|
||
return htab_hash_pointer (st_smob->symtab);
|
||
}
|
||
|
||
/* Helper function to compute equality of symtab_smobs. */
|
||
|
||
static int
|
||
stscm_eq_symtab_smob (const void *ap, const void *bp)
|
||
{
|
||
const symtab_smob *a = (const symtab_smob *) ap;
|
||
const symtab_smob *b = (const symtab_smob *) bp;
|
||
|
||
return (a->symtab == b->symtab
|
||
&& a->symtab != NULL);
|
||
}
|
||
|
||
/* Return the struct symtab pointer -> SCM mapping table.
|
||
It is created if necessary. */
|
||
|
||
static htab_t
|
||
stscm_objfile_symtab_map (struct symtab *symtab)
|
||
{
|
||
struct objfile *objfile = symtab->compunit ()->objfile ();
|
||
htab_t htab = stscm_objfile_data_key.get (objfile);
|
||
|
||
if (htab == NULL)
|
||
{
|
||
htab = gdbscm_create_eqable_gsmob_ptr_map (stscm_hash_symtab_smob,
|
||
stscm_eq_symtab_smob);
|
||
stscm_objfile_data_key.set (objfile, htab);
|
||
}
|
||
|
||
return htab;
|
||
}
|
||
|
||
/* The smob "free" function for <gdb:symtab>. */
|
||
|
||
static size_t
|
||
stscm_free_symtab_smob (SCM self)
|
||
{
|
||
symtab_smob *st_smob = (symtab_smob *) SCM_SMOB_DATA (self);
|
||
|
||
if (st_smob->symtab != NULL)
|
||
{
|
||
htab_t htab = stscm_objfile_symtab_map (st_smob->symtab);
|
||
|
||
gdbscm_clear_eqable_gsmob_ptr_slot (htab, &st_smob->base);
|
||
}
|
||
|
||
/* Not necessary, done to catch bugs. */
|
||
st_smob->symtab = NULL;
|
||
|
||
return 0;
|
||
}
|
||
|
||
/* The smob "print" function for <gdb:symtab>. */
|
||
|
||
static int
|
||
stscm_print_symtab_smob (SCM self, SCM port, scm_print_state *pstate)
|
||
{
|
||
symtab_smob *st_smob = (symtab_smob *) SCM_SMOB_DATA (self);
|
||
|
||
gdbscm_printf (port, "#<%s ", symtab_smob_name);
|
||
gdbscm_printf (port, "%s",
|
||
st_smob->symtab != NULL
|
||
? symtab_to_filename_for_display (st_smob->symtab)
|
||
: "<invalid>");
|
||
scm_puts (">", port);
|
||
|
||
scm_remember_upto_here_1 (self);
|
||
|
||
/* Non-zero means success. */
|
||
return 1;
|
||
}
|
||
|
||
/* Low level routine to create a <gdb:symtab> object. */
|
||
|
||
static SCM
|
||
stscm_make_symtab_smob (void)
|
||
{
|
||
symtab_smob *st_smob = (symtab_smob *)
|
||
scm_gc_malloc (sizeof (symtab_smob), symtab_smob_name);
|
||
SCM st_scm;
|
||
|
||
st_smob->symtab = NULL;
|
||
st_scm = scm_new_smob (symtab_smob_tag, (scm_t_bits) st_smob);
|
||
gdbscm_init_eqable_gsmob (&st_smob->base, st_scm);
|
||
|
||
return st_scm;
|
||
}
|
||
|
||
/* Return non-zero if SCM is a symbol table smob. */
|
||
|
||
static int
|
||
stscm_is_symtab (SCM scm)
|
||
{
|
||
return SCM_SMOB_PREDICATE (symtab_smob_tag, scm);
|
||
}
|
||
|
||
/* (symtab? object) -> boolean */
|
||
|
||
static SCM
|
||
gdbscm_symtab_p (SCM scm)
|
||
{
|
||
return scm_from_bool (stscm_is_symtab (scm));
|
||
}
|
||
|
||
/* Create a new <gdb:symtab> object that encapsulates SYMTAB. */
|
||
|
||
SCM
|
||
stscm_scm_from_symtab (struct symtab *symtab)
|
||
{
|
||
htab_t htab;
|
||
eqable_gdb_smob **slot;
|
||
symtab_smob *st_smob, st_smob_for_lookup;
|
||
SCM st_scm;
|
||
|
||
/* If we've already created a gsmob for this symtab, return it.
|
||
This makes symtabs eq?-able. */
|
||
htab = stscm_objfile_symtab_map (symtab);
|
||
st_smob_for_lookup.symtab = symtab;
|
||
slot = gdbscm_find_eqable_gsmob_ptr_slot (htab, &st_smob_for_lookup.base);
|
||
if (*slot != NULL)
|
||
return (*slot)->containing_scm;
|
||
|
||
st_scm = stscm_make_symtab_smob ();
|
||
st_smob = (symtab_smob *) SCM_SMOB_DATA (st_scm);
|
||
st_smob->symtab = symtab;
|
||
gdbscm_fill_eqable_gsmob_ptr_slot (slot, &st_smob->base);
|
||
|
||
return st_scm;
|
||
}
|
||
|
||
/* Returns the <gdb:symtab> object in SELF.
|
||
Throws an exception if SELF is not a <gdb:symtab> object. */
|
||
|
||
static SCM
|
||
stscm_get_symtab_arg_unsafe (SCM self, int arg_pos, const char *func_name)
|
||
{
|
||
SCM_ASSERT_TYPE (stscm_is_symtab (self), self, arg_pos, func_name,
|
||
symtab_smob_name);
|
||
|
||
return self;
|
||
}
|
||
|
||
/* Returns a pointer to the symtab smob of SELF.
|
||
Throws an exception if SELF is not a <gdb:symtab> object. */
|
||
|
||
static symtab_smob *
|
||
stscm_get_symtab_smob_arg_unsafe (SCM self, int arg_pos, const char *func_name)
|
||
{
|
||
SCM st_scm = stscm_get_symtab_arg_unsafe (self, arg_pos, func_name);
|
||
symtab_smob *st_smob = (symtab_smob *) SCM_SMOB_DATA (st_scm);
|
||
|
||
return st_smob;
|
||
}
|
||
|
||
/* Return non-zero if symtab ST_SMOB is valid. */
|
||
|
||
static int
|
||
stscm_is_valid (symtab_smob *st_smob)
|
||
{
|
||
return st_smob->symtab != NULL;
|
||
}
|
||
|
||
/* Throw a Scheme error if SELF is not a valid symtab smob.
|
||
Otherwise return a pointer to the symtab_smob object. */
|
||
|
||
static symtab_smob *
|
||
stscm_get_valid_symtab_smob_arg_unsafe (SCM self, int arg_pos,
|
||
const char *func_name)
|
||
{
|
||
symtab_smob *st_smob
|
||
= stscm_get_symtab_smob_arg_unsafe (self, arg_pos, func_name);
|
||
|
||
if (!stscm_is_valid (st_smob))
|
||
{
|
||
gdbscm_invalid_object_error (func_name, arg_pos, self,
|
||
_("<gdb:symtab>"));
|
||
}
|
||
|
||
return st_smob;
|
||
}
|
||
|
||
|
||
/* Symbol table methods. */
|
||
|
||
/* (symtab-valid? <gdb:symtab>) -> boolean
|
||
Returns #t if SELF still exists in GDB. */
|
||
|
||
static SCM
|
||
gdbscm_symtab_valid_p (SCM self)
|
||
{
|
||
symtab_smob *st_smob
|
||
= stscm_get_symtab_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
|
||
|
||
return scm_from_bool (stscm_is_valid (st_smob));
|
||
}
|
||
|
||
/* (symtab-filename <gdb:symtab>) -> string */
|
||
|
||
static SCM
|
||
gdbscm_symtab_filename (SCM self)
|
||
{
|
||
symtab_smob *st_smob
|
||
= stscm_get_valid_symtab_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
|
||
struct symtab *symtab = st_smob->symtab;
|
||
|
||
return gdbscm_scm_from_c_string (symtab_to_filename_for_display (symtab));
|
||
}
|
||
|
||
/* (symtab-fullname <gdb:symtab>) -> string */
|
||
|
||
static SCM
|
||
gdbscm_symtab_fullname (SCM self)
|
||
{
|
||
symtab_smob *st_smob
|
||
= stscm_get_valid_symtab_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
|
||
struct symtab *symtab = st_smob->symtab;
|
||
|
||
return gdbscm_scm_from_c_string (symtab_to_fullname (symtab));
|
||
}
|
||
|
||
/* (symtab-objfile <gdb:symtab>) -> <gdb:objfile> */
|
||
|
||
static SCM
|
||
gdbscm_symtab_objfile (SCM self)
|
||
{
|
||
symtab_smob *st_smob
|
||
= stscm_get_valid_symtab_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
|
||
const struct symtab *symtab = st_smob->symtab;
|
||
|
||
return ofscm_scm_from_objfile (symtab->compunit ()->objfile ());
|
||
}
|
||
|
||
/* (symtab-global-block <gdb:symtab>) -> <gdb:block>
|
||
Return the GLOBAL_BLOCK of the underlying symtab. */
|
||
|
||
static SCM
|
||
gdbscm_symtab_global_block (SCM self)
|
||
{
|
||
symtab_smob *st_smob
|
||
= stscm_get_valid_symtab_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
|
||
const struct symtab *symtab = st_smob->symtab;
|
||
const struct blockvector *blockvector;
|
||
|
||
blockvector = symtab->compunit ()->blockvector ();
|
||
const struct block *block = blockvector->global_block ();
|
||
|
||
return bkscm_scm_from_block (block, symtab->compunit ()->objfile ());
|
||
}
|
||
|
||
/* (symtab-static-block <gdb:symtab>) -> <gdb:block>
|
||
Return the STATIC_BLOCK of the underlying symtab. */
|
||
|
||
static SCM
|
||
gdbscm_symtab_static_block (SCM self)
|
||
{
|
||
symtab_smob *st_smob
|
||
= stscm_get_valid_symtab_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
|
||
const struct symtab *symtab = st_smob->symtab;
|
||
const struct blockvector *blockvector;
|
||
|
||
blockvector = symtab->compunit ()->blockvector ();
|
||
const struct block *block = blockvector->static_block ();
|
||
|
||
return bkscm_scm_from_block (block, symtab->compunit ()->objfile ());
|
||
}
|
||
|
||
/* Administrivia for sal (symtab-and-line) smobs. */
|
||
|
||
/* The smob "print" function for <gdb:sal>. */
|
||
|
||
static int
|
||
stscm_print_sal_smob (SCM self, SCM port, scm_print_state *pstate)
|
||
{
|
||
sal_smob *s_smob = (sal_smob *) SCM_SMOB_DATA (self);
|
||
|
||
gdbscm_printf (port, "#<%s ", symtab_smob_name);
|
||
scm_write (s_smob->symtab_scm, port);
|
||
if (s_smob->sal.line != 0)
|
||
gdbscm_printf (port, " line %d", s_smob->sal.line);
|
||
scm_puts (">", port);
|
||
|
||
scm_remember_upto_here_1 (self);
|
||
|
||
/* Non-zero means success. */
|
||
return 1;
|
||
}
|
||
|
||
/* Low level routine to create a <gdb:sal> object. */
|
||
|
||
static SCM
|
||
stscm_make_sal_smob (void)
|
||
{
|
||
sal_smob *s_smob
|
||
= (sal_smob *) scm_gc_malloc (sizeof (sal_smob), sal_smob_name);
|
||
SCM s_scm;
|
||
|
||
s_smob->symtab_scm = SCM_BOOL_F;
|
||
new (&s_smob->sal) symtab_and_line ();
|
||
s_scm = scm_new_smob (sal_smob_tag, (scm_t_bits) s_smob);
|
||
gdbscm_init_gsmob (&s_smob->base);
|
||
|
||
return s_scm;
|
||
}
|
||
|
||
/* Return non-zero if SCM is a <gdb:sal> object. */
|
||
|
||
static int
|
||
stscm_is_sal (SCM scm)
|
||
{
|
||
return SCM_SMOB_PREDICATE (sal_smob_tag, scm);
|
||
}
|
||
|
||
/* (sal? object) -> boolean */
|
||
|
||
static SCM
|
||
gdbscm_sal_p (SCM scm)
|
||
{
|
||
return scm_from_bool (stscm_is_sal (scm));
|
||
}
|
||
|
||
/* Create a new <gdb:sal> object that encapsulates SAL. */
|
||
|
||
SCM
|
||
stscm_scm_from_sal (struct symtab_and_line sal)
|
||
{
|
||
SCM st_scm, s_scm;
|
||
sal_smob *s_smob;
|
||
|
||
st_scm = SCM_BOOL_F;
|
||
if (sal.symtab != NULL)
|
||
st_scm = stscm_scm_from_symtab (sal.symtab);
|
||
|
||
s_scm = stscm_make_sal_smob ();
|
||
s_smob = (sal_smob *) SCM_SMOB_DATA (s_scm);
|
||
s_smob->symtab_scm = st_scm;
|
||
s_smob->sal = sal;
|
||
|
||
return s_scm;
|
||
}
|
||
|
||
/* Returns the <gdb:sal> object in SELF.
|
||
Throws an exception if SELF is not a <gdb:sal> object. */
|
||
|
||
static SCM
|
||
stscm_get_sal_arg (SCM self, int arg_pos, const char *func_name)
|
||
{
|
||
SCM_ASSERT_TYPE (stscm_is_sal (self), self, arg_pos, func_name,
|
||
sal_smob_name);
|
||
|
||
return self;
|
||
}
|
||
|
||
/* Returns a pointer to the sal smob of SELF.
|
||
Throws an exception if SELF is not a <gdb:sal> object. */
|
||
|
||
static sal_smob *
|
||
stscm_get_sal_smob_arg (SCM self, int arg_pos, const char *func_name)
|
||
{
|
||
SCM s_scm = stscm_get_sal_arg (self, arg_pos, func_name);
|
||
sal_smob *s_smob = (sal_smob *) SCM_SMOB_DATA (s_scm);
|
||
|
||
return s_smob;
|
||
}
|
||
|
||
/* Return non-zero if the symtab in S_SMOB is valid. */
|
||
|
||
static int
|
||
stscm_sal_is_valid (sal_smob *s_smob)
|
||
{
|
||
symtab_smob *st_smob;
|
||
|
||
/* If there's no symtab that's ok, the sal is still valid. */
|
||
if (gdbscm_is_false (s_smob->symtab_scm))
|
||
return 1;
|
||
|
||
st_smob = (symtab_smob *) SCM_SMOB_DATA (s_smob->symtab_scm);
|
||
|
||
return st_smob->symtab != NULL;
|
||
}
|
||
|
||
/* Throw a Scheme error if SELF is not a valid sal smob.
|
||
Otherwise return a pointer to the sal_smob object. */
|
||
|
||
static sal_smob *
|
||
stscm_get_valid_sal_smob_arg (SCM self, int arg_pos, const char *func_name)
|
||
{
|
||
sal_smob *s_smob = stscm_get_sal_smob_arg (self, arg_pos, func_name);
|
||
|
||
if (!stscm_sal_is_valid (s_smob))
|
||
{
|
||
gdbscm_invalid_object_error (func_name, arg_pos, self,
|
||
_("<gdb:sal>"));
|
||
}
|
||
|
||
return s_smob;
|
||
}
|
||
|
||
/* sal methods */
|
||
|
||
/* (sal-valid? <gdb:sal>) -> boolean
|
||
Returns #t if the symtab for SELF still exists in GDB. */
|
||
|
||
static SCM
|
||
gdbscm_sal_valid_p (SCM self)
|
||
{
|
||
sal_smob *s_smob = stscm_get_sal_smob_arg (self, SCM_ARG1, FUNC_NAME);
|
||
|
||
return scm_from_bool (stscm_sal_is_valid (s_smob));
|
||
}
|
||
|
||
/* (sal-pc <gdb:sal>) -> address */
|
||
|
||
static SCM
|
||
gdbscm_sal_pc (SCM self)
|
||
{
|
||
sal_smob *s_smob = stscm_get_valid_sal_smob_arg (self, SCM_ARG1, FUNC_NAME);
|
||
const struct symtab_and_line *sal = &s_smob->sal;
|
||
|
||
return gdbscm_scm_from_ulongest (sal->pc);
|
||
}
|
||
|
||
/* (sal-last <gdb:sal>) -> address
|
||
Returns #f if no ending address is recorded. */
|
||
|
||
static SCM
|
||
gdbscm_sal_last (SCM self)
|
||
{
|
||
sal_smob *s_smob = stscm_get_valid_sal_smob_arg (self, SCM_ARG1, FUNC_NAME);
|
||
const struct symtab_and_line *sal = &s_smob->sal;
|
||
|
||
if (sal->end > 0)
|
||
return gdbscm_scm_from_ulongest (sal->end - 1);
|
||
return SCM_BOOL_F;
|
||
}
|
||
|
||
/* (sal-line <gdb:sal>) -> integer
|
||
Returns #f if no line number is recorded. */
|
||
|
||
static SCM
|
||
gdbscm_sal_line (SCM self)
|
||
{
|
||
sal_smob *s_smob = stscm_get_valid_sal_smob_arg (self, SCM_ARG1, FUNC_NAME);
|
||
const struct symtab_and_line *sal = &s_smob->sal;
|
||
|
||
if (sal->line > 0)
|
||
return scm_from_int (sal->line);
|
||
return SCM_BOOL_F;
|
||
}
|
||
|
||
/* (sal-symtab <gdb:sal>) -> <gdb:symtab>
|
||
Returns #f if no symtab is recorded. */
|
||
|
||
static SCM
|
||
gdbscm_sal_symtab (SCM self)
|
||
{
|
||
sal_smob *s_smob = stscm_get_valid_sal_smob_arg (self, SCM_ARG1, FUNC_NAME);
|
||
|
||
return s_smob->symtab_scm;
|
||
}
|
||
|
||
/* (find-pc-line address) -> <gdb:sal> */
|
||
|
||
static SCM
|
||
gdbscm_find_pc_line (SCM pc_scm)
|
||
{
|
||
ULONGEST pc_ull;
|
||
symtab_and_line sal;
|
||
|
||
gdbscm_parse_function_args (FUNC_NAME, SCM_ARG1, NULL, "U", pc_scm, &pc_ull);
|
||
|
||
gdbscm_gdb_exception exc {};
|
||
try
|
||
{
|
||
CORE_ADDR pc = (CORE_ADDR) pc_ull;
|
||
|
||
sal = find_pc_line (pc, 0);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
exc = unpack (except);
|
||
}
|
||
|
||
GDBSCM_HANDLE_GDB_EXCEPTION (exc);
|
||
return stscm_scm_from_sal (sal);
|
||
}
|
||
|
||
/* Initialize the Scheme symbol support. */
|
||
|
||
static const scheme_function symtab_functions[] =
|
||
{
|
||
{ "symtab?", 1, 0, 0, as_a_scm_t_subr (gdbscm_symtab_p),
|
||
"\
|
||
Return #t if the object is a <gdb:symtab> object." },
|
||
|
||
{ "symtab-valid?", 1, 0, 0, as_a_scm_t_subr (gdbscm_symtab_valid_p),
|
||
"\
|
||
Return #t if the symtab still exists in GDB.\n\
|
||
Symtabs are deleted when the corresponding objfile is freed." },
|
||
|
||
{ "symtab-filename", 1, 0, 0, as_a_scm_t_subr (gdbscm_symtab_filename),
|
||
"\
|
||
Return the symtab's source file name." },
|
||
|
||
{ "symtab-fullname", 1, 0, 0, as_a_scm_t_subr (gdbscm_symtab_fullname),
|
||
"\
|
||
Return the symtab's full source file name." },
|
||
|
||
{ "symtab-objfile", 1, 0, 0, as_a_scm_t_subr (gdbscm_symtab_objfile),
|
||
"\
|
||
Return the symtab's objfile." },
|
||
|
||
{ "symtab-global-block", 1, 0, 0,
|
||
as_a_scm_t_subr (gdbscm_symtab_global_block),
|
||
"\
|
||
Return the symtab's global block." },
|
||
|
||
{ "symtab-static-block", 1, 0, 0,
|
||
as_a_scm_t_subr (gdbscm_symtab_static_block),
|
||
"\
|
||
Return the symtab's static block." },
|
||
|
||
{ "sal?", 1, 0, 0, as_a_scm_t_subr (gdbscm_sal_p),
|
||
"\
|
||
Return #t if the object is a <gdb:sal> (symtab-and-line) object." },
|
||
|
||
{ "sal-valid?", 1, 0, 0, as_a_scm_t_subr (gdbscm_sal_valid_p),
|
||
"\
|
||
Return #t if the symtab for the sal still exists in GDB.\n\
|
||
Symtabs are deleted when the corresponding objfile is freed." },
|
||
|
||
{ "sal-symtab", 1, 0, 0, as_a_scm_t_subr (gdbscm_sal_symtab),
|
||
"\
|
||
Return the sal's symtab." },
|
||
|
||
{ "sal-line", 1, 0, 0, as_a_scm_t_subr (gdbscm_sal_line),
|
||
"\
|
||
Return the sal's line number, or #f if there is none." },
|
||
|
||
{ "sal-pc", 1, 0, 0, as_a_scm_t_subr (gdbscm_sal_pc),
|
||
"\
|
||
Return the sal's address." },
|
||
|
||
{ "sal-last", 1, 0, 0, as_a_scm_t_subr (gdbscm_sal_last),
|
||
"\
|
||
Return the last address specified by the sal, or #f if there is none." },
|
||
|
||
{ "find-pc-line", 1, 0, 0, as_a_scm_t_subr (gdbscm_find_pc_line),
|
||
"\
|
||
Return the sal corresponding to the address, or #f if there isn't one.\n\
|
||
\n\
|
||
Arguments: address" },
|
||
|
||
END_FUNCTIONS
|
||
};
|
||
|
||
void
|
||
gdbscm_initialize_symtabs (void)
|
||
{
|
||
symtab_smob_tag
|
||
= gdbscm_make_smob_type (symtab_smob_name, sizeof (symtab_smob));
|
||
scm_set_smob_free (symtab_smob_tag, stscm_free_symtab_smob);
|
||
scm_set_smob_print (symtab_smob_tag, stscm_print_symtab_smob);
|
||
|
||
sal_smob_tag = gdbscm_make_smob_type (sal_smob_name, sizeof (sal_smob));
|
||
scm_set_smob_print (sal_smob_tag, stscm_print_sal_smob);
|
||
|
||
gdbscm_define_functions (symtab_functions, 1);
|
||
}
|