1 /* Python interface to symbol tables.
3 Copyright (C) 2008-2021 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
24 #include "python-internal.h"
28 struct symtab_object
{
30 /* The GDB Symbol table structure. */
31 struct symtab
*symtab
;
32 /* A symtab object is associated with an objfile, so keep track with
33 a doubly-linked list, rooted in the objfile. This allows
34 invalidation of the underlying struct symtab when the objfile is
40 extern PyTypeObject symtab_object_type
41 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("symtab_object");
42 static const struct objfile_data
*stpy_objfile_data_key
;
44 /* Require a valid symbol table. All access to symtab_object->symtab
45 should be gated by this call. */
46 #define STPY_REQUIRE_VALID(symtab_obj, symtab) \
48 symtab = symtab_object_to_symtab (symtab_obj); \
51 PyErr_SetString (PyExc_RuntimeError, \
52 _("Symbol Table is invalid.")); \
59 /* The GDB Symbol table structure. */
61 /* The GDB Symbol table and line structure. */
62 struct symtab_and_line
*sal
;
63 /* A Symtab and line object is associated with an objfile, so keep
64 track with a doubly-linked list, rooted in the objfile. This
65 allows invalidation of the underlying struct symtab_and_line
66 when the objfile is deleted. */
71 extern PyTypeObject sal_object_type
72 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("sal_object");
73 static const struct objfile_data
*salpy_objfile_data_key
;
75 /* Require a valid symbol table and line object. All access to
76 sal_object->sal should be gated by this call. */
77 #define SALPY_REQUIRE_VALID(sal_obj, sal) \
79 sal = sal_object_to_symtab_and_line (sal_obj); \
82 PyErr_SetString (PyExc_RuntimeError, \
83 _("Symbol Table and Line is invalid.")); \
89 stpy_str (PyObject
*self
)
92 struct symtab
*symtab
= NULL
;
94 STPY_REQUIRE_VALID (self
, symtab
);
96 result
= PyString_FromString (symtab_to_filename_for_display (symtab
));
102 stpy_get_filename (PyObject
*self
, void *closure
)
105 struct symtab
*symtab
= NULL
;
106 const char *filename
;
108 STPY_REQUIRE_VALID (self
, symtab
);
109 filename
= symtab_to_filename_for_display (symtab
);
111 str_obj
= host_string_to_python_string (filename
).release ();
116 stpy_get_objfile (PyObject
*self
, void *closure
)
118 struct symtab
*symtab
= NULL
;
120 STPY_REQUIRE_VALID (self
, symtab
);
122 return objfile_to_objfile_object (SYMTAB_OBJFILE (symtab
)).release ();
125 /* Getter function for symtab.producer. */
128 stpy_get_producer (PyObject
*self
, void *closure
)
130 struct symtab
*symtab
= NULL
;
131 struct compunit_symtab
*cust
;
133 STPY_REQUIRE_VALID (self
, symtab
);
134 cust
= SYMTAB_COMPUNIT (symtab
);
135 if (COMPUNIT_PRODUCER (cust
) != NULL
)
137 const char *producer
= COMPUNIT_PRODUCER (cust
);
139 return host_string_to_python_string (producer
).release ();
146 stpy_fullname (PyObject
*self
, PyObject
*args
)
148 const char *fullname
;
149 struct symtab
*symtab
= NULL
;
151 STPY_REQUIRE_VALID (self
, symtab
);
153 fullname
= symtab_to_fullname (symtab
);
155 return host_string_to_python_string (fullname
).release ();
158 /* Implementation of gdb.Symtab.is_valid (self) -> Boolean.
159 Returns True if this Symbol table still exists in GDB. */
162 stpy_is_valid (PyObject
*self
, PyObject
*args
)
164 struct symtab
*symtab
= NULL
;
166 symtab
= symtab_object_to_symtab (self
);
173 /* Return the GLOBAL_BLOCK of the underlying symtab. */
176 stpy_global_block (PyObject
*self
, PyObject
*args
)
178 struct symtab
*symtab
= NULL
;
179 const struct block
*block
= NULL
;
180 const struct blockvector
*blockvector
;
182 STPY_REQUIRE_VALID (self
, symtab
);
184 blockvector
= SYMTAB_BLOCKVECTOR (symtab
);
185 block
= BLOCKVECTOR_BLOCK (blockvector
, GLOBAL_BLOCK
);
186 return block_to_block_object (block
, SYMTAB_OBJFILE (symtab
));
189 /* Return the STATIC_BLOCK of the underlying symtab. */
192 stpy_static_block (PyObject
*self
, PyObject
*args
)
194 struct symtab
*symtab
= NULL
;
195 const struct block
*block
= NULL
;
196 const struct blockvector
*blockvector
;
198 STPY_REQUIRE_VALID (self
, symtab
);
200 blockvector
= SYMTAB_BLOCKVECTOR (symtab
);
201 block
= BLOCKVECTOR_BLOCK (blockvector
, STATIC_BLOCK
);
202 return block_to_block_object (block
, SYMTAB_OBJFILE (symtab
));
205 /* Implementation of gdb.Symtab.linetable (self) -> gdb.LineTable.
206 Returns a gdb.LineTable object corresponding to this symbol
210 stpy_get_linetable (PyObject
*self
, PyObject
*args
)
212 struct symtab
*symtab
= NULL
;
214 STPY_REQUIRE_VALID (self
, symtab
);
216 return symtab_to_linetable_object (self
);
220 salpy_str (PyObject
*self
)
222 const char *filename
;
224 struct symtab_and_line
*sal
= NULL
;
226 SALPY_REQUIRE_VALID (self
, sal
);
228 sal_obj
= (sal_object
*) self
;
229 if (sal_obj
->symtab
== Py_None
)
230 filename
= "<unknown>";
233 symtab
*symtab
= symtab_object_to_symtab (sal_obj
->symtab
);
234 filename
= symtab_to_filename_for_display (symtab
);
237 return PyString_FromFormat ("symbol and line for %s, line %d", filename
,
242 stpy_dealloc (PyObject
*obj
)
244 symtab_object
*symtab
= (symtab_object
*) obj
;
247 symtab
->prev
->next
= symtab
->next
;
248 else if (symtab
->symtab
)
250 set_objfile_data (SYMTAB_OBJFILE (symtab
->symtab
),
251 stpy_objfile_data_key
, symtab
->next
);
254 symtab
->next
->prev
= symtab
->prev
;
255 symtab
->symtab
= NULL
;
256 Py_TYPE (obj
)->tp_free (obj
);
261 salpy_get_pc (PyObject
*self
, void *closure
)
263 struct symtab_and_line
*sal
= NULL
;
265 SALPY_REQUIRE_VALID (self
, sal
);
267 return gdb_py_object_from_ulongest (sal
->pc
).release ();
270 /* Implementation of the get method for the 'last' attribute of
271 gdb.Symtab_and_line. */
274 salpy_get_last (PyObject
*self
, void *closure
)
276 struct symtab_and_line
*sal
= NULL
;
278 SALPY_REQUIRE_VALID (self
, sal
);
281 return gdb_py_object_from_ulongest (sal
->end
- 1).release ();
287 salpy_get_line (PyObject
*self
, void *closure
)
289 struct symtab_and_line
*sal
= NULL
;
291 SALPY_REQUIRE_VALID (self
, sal
);
293 return gdb_py_object_from_longest (sal
->line
).release ();
297 salpy_get_symtab (PyObject
*self
, void *closure
)
299 struct symtab_and_line
*sal
;
300 sal_object
*self_sal
= (sal_object
*) self
;
302 SALPY_REQUIRE_VALID (self
, sal
);
304 Py_INCREF (self_sal
->symtab
);
306 return (PyObject
*) self_sal
->symtab
;
309 /* Implementation of gdb.Symtab_and_line.is_valid (self) -> Boolean.
310 Returns True if this Symbol table and line object still exists GDB. */
313 salpy_is_valid (PyObject
*self
, PyObject
*args
)
315 struct symtab_and_line
*sal
;
317 sal
= sal_object_to_symtab_and_line (self
);
325 salpy_dealloc (PyObject
*self
)
327 sal_object
*self_sal
= (sal_object
*) self
;
330 self_sal
->prev
->next
= self_sal
->next
;
331 else if (self_sal
->symtab
!= Py_None
)
333 (SYMTAB_OBJFILE (symtab_object_to_symtab (self_sal
->symtab
)),
334 salpy_objfile_data_key
, self_sal
->next
);
337 self_sal
->next
->prev
= self_sal
->prev
;
339 Py_DECREF (self_sal
->symtab
);
340 xfree (self_sal
->sal
);
341 Py_TYPE (self
)->tp_free (self
);
344 /* Given a sal, and a sal_object that has previously been allocated
345 and initialized, populate the sal_object with the struct sal data.
346 Also, register the sal_object life-cycle with the life-cycle of the
347 object file associated with this sal, if needed. If a failure
348 occurs during the sal population, this function will return -1. */
349 static int CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION
350 set_sal (sal_object
*sal_obj
, struct symtab_and_line sal
)
352 PyObject
*symtab_obj
;
356 symtab_obj
= symtab_to_symtab_object (sal
.symtab
);
357 /* If a symtab existed in the sal, but it cannot be duplicated,
359 if (symtab_obj
== NULL
)
364 symtab_obj
= Py_None
;
368 sal_obj
->sal
= ((struct symtab_and_line
*)
369 xmemdup (&sal
, sizeof (struct symtab_and_line
),
370 sizeof (struct symtab_and_line
)));
371 sal_obj
->symtab
= symtab_obj
;
372 sal_obj
->prev
= NULL
;
374 /* If the SAL does not have a symtab, we do not add it to the
375 objfile cleanup observer linked list. */
376 if (sal_obj
->symtab
!= Py_None
)
378 symtab
*symtab
= symtab_object_to_symtab (sal_obj
->symtab
);
381 = ((sal_object
*) objfile_data (SYMTAB_OBJFILE (symtab
),
382 salpy_objfile_data_key
));
384 sal_obj
->next
->prev
= sal_obj
;
386 set_objfile_data (SYMTAB_OBJFILE (symtab
),
387 salpy_objfile_data_key
, sal_obj
);
390 sal_obj
->next
= NULL
;
395 /* Given a symtab, and a symtab_object that has previously been
396 allocated and initialized, populate the symtab_object with the
397 struct symtab data. Also, register the symtab_object life-cycle
398 with the life-cycle of the object file associated with this
399 symtab, if needed. */
401 set_symtab (symtab_object
*obj
, struct symtab
*symtab
)
403 obj
->symtab
= symtab
;
409 objfile_data (SYMTAB_OBJFILE (symtab
), stpy_objfile_data_key
));
411 obj
->next
->prev
= obj
;
412 set_objfile_data (SYMTAB_OBJFILE (symtab
), stpy_objfile_data_key
, obj
);
418 /* Create a new symbol table (gdb.Symtab) object that encapsulates the
419 symtab structure from GDB. */
421 symtab_to_symtab_object (struct symtab
*symtab
)
423 symtab_object
*symtab_obj
;
425 symtab_obj
= PyObject_New (symtab_object
, &symtab_object_type
);
427 set_symtab (symtab_obj
, symtab
);
429 return (PyObject
*) symtab_obj
;
432 /* Create a new symtab and line (gdb.Symtab_and_line) object
433 that encapsulates the symtab_and_line structure from GDB. */
435 symtab_and_line_to_sal_object (struct symtab_and_line sal
)
437 gdbpy_ref
<sal_object
> sal_obj (PyObject_New (sal_object
, &sal_object_type
));
440 if (set_sal (sal_obj
.get (), sal
) < 0)
444 return (PyObject
*) sal_obj
.release ();
447 /* Return struct symtab_and_line reference that is wrapped by this
449 struct symtab_and_line
*
450 sal_object_to_symtab_and_line (PyObject
*obj
)
452 if (! PyObject_TypeCheck (obj
, &sal_object_type
))
454 return ((sal_object
*) obj
)->sal
;
457 /* Return struct symtab reference that is wrapped by this object. */
459 symtab_object_to_symtab (PyObject
*obj
)
461 if (! PyObject_TypeCheck (obj
, &symtab_object_type
))
463 return ((symtab_object
*) obj
)->symtab
;
466 /* This function is called when an objfile is about to be freed.
467 Invalidate the symbol table as further actions on the symbol table
468 would result in bad data. All access to obj->symtab should be
469 gated by STPY_REQUIRE_VALID which will raise an exception on
470 invalid symbol tables. */
472 del_objfile_symtab (struct objfile
*objfile
, void *datum
)
474 symtab_object
*obj
= (symtab_object
*) datum
;
478 symtab_object
*next
= obj
->next
;
487 /* This function is called when an objfile is about to be freed.
488 Invalidate the sal object as further actions on the sal
489 would result in bad data. All access to obj->sal should be
490 gated by SALPY_REQUIRE_VALID which will raise an exception on
491 invalid symbol table and line objects. */
493 del_objfile_sal (struct objfile
*objfile
, void *datum
)
495 sal_object
*obj
= (sal_object
*) datum
;
499 sal_object
*next
= obj
->next
;
501 gdbpy_ref
<> tmp (obj
->symtab
);
502 obj
->symtab
= Py_None
;
515 gdbpy_initialize_symtabs (void)
517 symtab_object_type
.tp_new
= PyType_GenericNew
;
518 if (PyType_Ready (&symtab_object_type
) < 0)
521 sal_object_type
.tp_new
= PyType_GenericNew
;
522 if (PyType_Ready (&sal_object_type
) < 0)
525 /* Register an objfile "free" callback so we can properly
526 invalidate symbol tables, and symbol table and line data
527 structures when an object file that is about to be
529 stpy_objfile_data_key
530 = register_objfile_data_with_cleanup (NULL
, del_objfile_symtab
);
531 salpy_objfile_data_key
532 = register_objfile_data_with_cleanup (NULL
, del_objfile_sal
);
534 if (gdb_pymodule_addobject (gdb_module
, "Symtab",
535 (PyObject
*) &symtab_object_type
) < 0)
538 return gdb_pymodule_addobject (gdb_module
, "Symtab_and_line",
539 (PyObject
*) &sal_object_type
);
544 static gdb_PyGetSetDef symtab_object_getset
[] = {
545 { "filename", stpy_get_filename
, NULL
,
546 "The symbol table's source filename.", NULL
},
547 { "objfile", stpy_get_objfile
, NULL
, "The symtab's objfile.",
549 { "producer", stpy_get_producer
, NULL
,
550 "The name/version of the program that compiled this symtab.", NULL
},
551 {NULL
} /* Sentinel */
554 static PyMethodDef symtab_object_methods
[] = {
555 { "is_valid", stpy_is_valid
, METH_NOARGS
,
556 "is_valid () -> Boolean.\n\
557 Return true if this symbol table is valid, false if not." },
558 { "fullname", stpy_fullname
, METH_NOARGS
,
559 "fullname () -> String.\n\
560 Return the symtab's full source filename." },
561 { "global_block", stpy_global_block
, METH_NOARGS
,
562 "global_block () -> gdb.Block.\n\
563 Return the global block of the symbol table." },
564 { "static_block", stpy_static_block
, METH_NOARGS
,
565 "static_block () -> gdb.Block.\n\
566 Return the static block of the symbol table." },
567 { "linetable", stpy_get_linetable
, METH_NOARGS
,
568 "linetable () -> gdb.LineTable.\n\
569 Return the LineTable associated with this symbol table" },
570 {NULL
} /* Sentinel */
573 PyTypeObject symtab_object_type
= {
574 PyVarObject_HEAD_INIT (NULL
, 0)
575 "gdb.Symtab", /*tp_name*/
576 sizeof (symtab_object
), /*tp_basicsize*/
578 stpy_dealloc
, /*tp_dealloc*/
585 0, /*tp_as_sequence*/
593 Py_TPFLAGS_DEFAULT
, /*tp_flags*/
594 "GDB symtab object", /*tp_doc */
597 0, /*tp_richcompare */
598 0, /*tp_weaklistoffset */
601 symtab_object_methods
, /*tp_methods */
603 symtab_object_getset
/*tp_getset */
606 static gdb_PyGetSetDef sal_object_getset
[] = {
607 { "symtab", salpy_get_symtab
, NULL
, "Symtab object.", NULL
},
608 { "pc", salpy_get_pc
, NULL
, "Return the symtab_and_line's pc.", NULL
},
609 { "last", salpy_get_last
, NULL
,
610 "Return the symtab_and_line's last address.", NULL
},
611 { "line", salpy_get_line
, NULL
,
612 "Return the symtab_and_line's line.", NULL
},
613 {NULL
} /* Sentinel */
616 static PyMethodDef sal_object_methods
[] = {
617 { "is_valid", salpy_is_valid
, METH_NOARGS
,
618 "is_valid () -> Boolean.\n\
619 Return true if this symbol table and line is valid, false if not." },
620 {NULL
} /* Sentinel */
623 PyTypeObject sal_object_type
= {
624 PyVarObject_HEAD_INIT (NULL
, 0)
625 "gdb.Symtab_and_line", /*tp_name*/
626 sizeof (sal_object
), /*tp_basicsize*/
628 salpy_dealloc
, /*tp_dealloc*/
635 0, /*tp_as_sequence*/
639 salpy_str
, /*tp_str*/
643 Py_TPFLAGS_DEFAULT
, /*tp_flags*/
644 "GDB symtab_and_line object", /*tp_doc */
647 0, /*tp_richcompare */
648 0, /*tp_weaklistoffset */
651 sal_object_methods
, /*tp_methods */
653 sal_object_getset
/*tp_getset */