1 /* Python interface to line tables.
3 Copyright (C) 2013-2024 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/>. */
20 #include "python-internal.h"
22 struct linetable_entry_object
{
24 /* The line table source line. */
26 /* The pc associated with the source line. */
30 extern PyTypeObject linetable_entry_object_type
31 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("linetable_entry_object");
33 struct linetable_object
{
35 /* The symtab python object. We store the Python object here as the
36 underlying symtab can become invalid, and we have to run validity
41 extern PyTypeObject linetable_object_type
42 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("linetable_object");
44 struct ltpy_iterator_object
{
46 /* The current entry in the line table for the iterator */
48 /* Pointer back to the original source line table object. Needed to
49 check if the line table is still valid, and has not been invalidated
50 when an object file has been freed. */
54 extern PyTypeObject ltpy_iterator_object_type
55 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("ltpy_iterator_object");
57 /* Internal helper function to extract gdb.Symtab from a gdb.LineTable
61 get_symtab (PyObject
*linetable
)
63 linetable_object
*lt
= (linetable_object
*) linetable
;
68 #define LTPY_REQUIRE_VALID(lt_obj, symtab) \
70 symtab = symtab_object_to_symtab (get_symtab (lt_obj)); \
73 PyErr_SetString (PyExc_RuntimeError, \
74 _("Symbol Table in line table is invalid."));\
80 /* Helper function to create a line table object that wraps a
84 symtab_to_linetable_object (PyObject
*symtab
)
86 linetable_object
*ltable
;
88 ltable
= PyObject_New (linetable_object
, &linetable_object_type
);
91 ltable
->symtab
= symtab
;
94 return (PyObject
*) ltable
;
97 /* Internal helper function to build a line table object from a line
101 build_linetable_entry (int line
, CORE_ADDR address
)
103 linetable_entry_object
*obj
;
105 obj
= PyObject_New (linetable_entry_object
,
106 &linetable_entry_object_type
);
113 return (PyObject
*) obj
;
116 /* Internal helper function to build a Python Tuple from a vector.
117 A line table entry can have multiple PCs for a given source line.
118 Construct a Tuple of all entries for the given source line, LINE
119 from the line table PCS. Construct one line table entry object per
123 build_line_table_tuple_from_pcs (int line
, const std::vector
<CORE_ADDR
> &pcs
)
130 gdbpy_ref
<> tuple (PyTuple_New (pcs
.size ()));
135 for (i
= 0; i
< pcs
.size (); ++i
)
137 CORE_ADDR pc
= pcs
[i
];
138 gdbpy_ref
<> obj (build_linetable_entry (line
, pc
));
142 else if (PyTuple_SetItem (tuple
.get (), i
, obj
.release ()) != 0)
146 return tuple
.release ();
149 /* Implementation of gdb.LineTable.line (self) -> Tuple. Returns a
150 tuple of LineTableEntry objects associated with this line from the
151 in the line table. */
154 ltpy_get_pcs_for_line (PyObject
*self
, PyObject
*args
)
156 struct symtab
*symtab
;
157 gdb_py_longest py_line
;
158 const linetable_entry
*best_entry
= nullptr;
159 std::vector
<CORE_ADDR
> pcs
;
161 LTPY_REQUIRE_VALID (self
, symtab
);
163 if (! PyArg_ParseTuple (args
, GDB_PY_LL_ARG
, &py_line
))
168 pcs
= find_pcs_for_symtab_line (symtab
, py_line
, &best_entry
);
170 catch (const gdb_exception
&except
)
172 return gdbpy_handle_gdb_exception (nullptr, except
);
175 return build_line_table_tuple_from_pcs (py_line
, pcs
);
178 /* Implementation of gdb.LineTable.has_line (self, line) -> Boolean.
179 Returns a Python Boolean indicating whether a source line has any
180 line table entries corresponding to it. */
183 ltpy_has_line (PyObject
*self
, PyObject
*args
)
185 struct symtab
*symtab
;
186 gdb_py_longest py_line
;
189 LTPY_REQUIRE_VALID (self
, symtab
);
191 if (! PyArg_ParseTuple (args
, GDB_PY_LL_ARG
, &py_line
))
194 if (symtab
->linetable () == NULL
)
196 PyErr_SetString (PyExc_RuntimeError
,
197 _("Linetable information not found in symbol table"));
201 for (index
= 0; index
< symtab
->linetable ()->nitems
; index
++)
203 const linetable_entry
*item
= &(symtab
->linetable ()->item
[index
]);
204 if (item
->line
== py_line
)
211 /* Implementation of gdb.LineTable.source_lines (self) -> List.
212 Returns a Python List that contains source line entries in the
213 line table. This function will just return the source lines
214 without corresponding addresses. */
217 ltpy_get_all_source_lines (PyObject
*self
, PyObject
*args
)
219 struct symtab
*symtab
;
222 LTPY_REQUIRE_VALID (self
, symtab
);
224 if (symtab
->linetable () == NULL
)
226 PyErr_SetString (PyExc_RuntimeError
,
227 _("Linetable information not found in symbol table"));
231 gdbpy_ref
<> source_dict (PyDict_New ());
232 if (source_dict
== NULL
)
235 for (index
= 0; index
< symtab
->linetable ()->nitems
; index
++)
237 const linetable_entry
*item
= &(symtab
->linetable ()->item
[index
]);
239 /* 0 is used to signify end of line table information. Do not
240 include in the source set. */
243 gdbpy_ref
<> line
= gdb_py_object_from_longest (item
->line
);
248 if (PyDict_SetItem (source_dict
.get (), line
.get (), Py_None
) == -1)
253 return PyDict_Keys (source_dict
.get ());
256 /* Implementation of gdb.LineTable.is_valid (self) -> Boolean.
257 Returns True if this line table object still exists in GDB. */
260 ltpy_is_valid (PyObject
*self
, PyObject
*args
)
262 struct symtab
*symtab
= NULL
;
264 symtab
= symtab_object_to_symtab (get_symtab (self
));
272 /* Deconstructor for the line table object. Decrement the reference
273 to the symbol table object before calling the default free. */
276 ltpy_dealloc (PyObject
*self
)
278 linetable_object
*obj
= (linetable_object
*) self
;
280 Py_DECREF (obj
->symtab
);
281 Py_TYPE (self
)->tp_free (self
);
284 /* Initialize LineTable, LineTableEntry and LineTableIterator
287 static int CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION
288 gdbpy_initialize_linetable (void)
290 if (gdbpy_type_ready (&linetable_object_type
) < 0)
292 if (gdbpy_type_ready (&linetable_entry_object_type
) < 0)
294 if (gdbpy_type_ready (<py_iterator_object_type
) < 0)
300 /* LineTable entry object get functions. */
302 /* Implementation of gdb.LineTableEntry.line (self) -> Long. Returns
303 a long integer associated with the line table entry. */
306 ltpy_entry_get_line (PyObject
*self
, void *closure
)
308 linetable_entry_object
*obj
= (linetable_entry_object
*) self
;
310 return gdb_py_object_from_longest (obj
->line
).release ();
313 /* Implementation of gdb.LineTableEntry.pc (self) -> Long. Returns a
314 a long integer associated with the PC of the line table entry. */
317 ltpy_entry_get_pc (PyObject
*self
, void *closure
)
319 linetable_entry_object
*obj
= (linetable_entry_object
*) self
;
321 return gdb_py_object_from_ulongest (obj
->pc
).release ();
324 /* LineTable iterator functions. */
326 /* Return a new line table iterator. */
329 ltpy_iter (PyObject
*self
)
331 ltpy_iterator_object
*ltpy_iter_obj
;
332 struct symtab
*symtab
= NULL
;
334 LTPY_REQUIRE_VALID (self
, symtab
);
336 ltpy_iter_obj
= PyObject_New (ltpy_iterator_object
,
337 <py_iterator_object_type
);
338 if (ltpy_iter_obj
== NULL
)
341 ltpy_iter_obj
->current_index
= 0;
342 ltpy_iter_obj
->source
= self
;
345 return (PyObject
*) ltpy_iter_obj
;
349 ltpy_iterator_dealloc (PyObject
*obj
)
351 ltpy_iterator_object
*iter_obj
= (ltpy_iterator_object
*) obj
;
353 Py_DECREF (iter_obj
->source
);
354 Py_TYPE (obj
)->tp_free (obj
);
357 /* Return a reference to the line table iterator. */
360 ltpy_iterator (PyObject
*self
)
362 ltpy_iterator_object
*iter_obj
= (ltpy_iterator_object
*) self
;
363 struct symtab
*symtab
;
365 LTPY_REQUIRE_VALID (iter_obj
->source
, symtab
);
371 /* Return the next line table entry in the iteration through the line
372 table data structure. */
375 ltpy_iternext (PyObject
*self
)
377 ltpy_iterator_object
*iter_obj
= (ltpy_iterator_object
*) self
;
378 struct symtab
*symtab
;
381 LTPY_REQUIRE_VALID (iter_obj
->source
, symtab
);
383 if (symtab
->linetable () == nullptr
384 || iter_obj
->current_index
>= symtab
->linetable ()->nitems
)
386 PyErr_SetNone (PyExc_StopIteration
);
390 const linetable_entry
*item
391 = &(symtab
->linetable ()->item
[iter_obj
->current_index
]);
393 /* Skip over internal entries such as 0. 0 signifies the end of
394 line table data and is not useful to the API user. */
395 while (item
->line
< 1)
397 iter_obj
->current_index
++;
399 /* Exit if the internal value is the last item in the line table. */
400 if (iter_obj
->current_index
>= symtab
->linetable ()->nitems
)
402 PyErr_SetNone (PyExc_StopIteration
);
405 item
= &(symtab
->linetable ()->item
[iter_obj
->current_index
]);
408 struct objfile
*objfile
= symtab
->compunit ()->objfile ();
409 obj
= build_linetable_entry (item
->line
, item
->pc (objfile
));
410 iter_obj
->current_index
++;
415 /* Implementation of gdb.LineTableIterator.is_valid (self) -> Boolean.
416 Returns True if this line table iterator object still exists in
420 ltpy_iter_is_valid (PyObject
*self
, PyObject
*args
)
422 struct symtab
*symtab
= NULL
;
423 ltpy_iterator_object
*iter_obj
= (ltpy_iterator_object
*) self
;
425 symtab
= symtab_object_to_symtab (get_symtab (iter_obj
->source
));
433 GDBPY_INITIALIZE_FILE (gdbpy_initialize_linetable
);
437 static PyMethodDef linetable_object_methods
[] = {
438 { "line", ltpy_get_pcs_for_line
, METH_VARARGS
,
439 "line (lineno) -> Tuple\n\
440 Return executable locations for a given source line." },
441 { "has_line", ltpy_has_line
, METH_VARARGS
,
442 "has_line (lineno) -> Boolean\n\
443 Return TRUE if this line has executable information, FALSE if not." },
444 { "source_lines", ltpy_get_all_source_lines
, METH_NOARGS
,
445 "source_lines () -> List\n\
446 Return a list of all executable source lines." },
447 { "is_valid", ltpy_is_valid
, METH_NOARGS
,
448 "is_valid () -> Boolean.\n\
449 Return True if this LineTable is valid, False if not." },
450 {NULL
} /* Sentinel */
453 PyTypeObject linetable_object_type
= {
454 PyVarObject_HEAD_INIT (NULL
, 0)
455 "gdb.LineTable", /*tp_name*/
456 sizeof (linetable_object
), /*tp_basicsize*/
458 ltpy_dealloc
, /*tp_dealloc*/
465 0, /*tp_as_sequence*/
473 Py_TPFLAGS_DEFAULT
, /*tp_flags*/
474 "GDB line table object", /* tp_doc */
477 0, /* tp_richcompare */
478 0, /* tp_weaklistoffset */
479 ltpy_iter
, /* tp_iter */
481 linetable_object_methods
, /* tp_methods */
486 0, /* tp_descr_get */
487 0, /* tp_descr_set */
488 0, /* tp_dictoffset */
493 static PyMethodDef ltpy_iterator_methods
[] = {
494 { "is_valid", ltpy_iter_is_valid
, METH_NOARGS
,
495 "is_valid () -> Boolean.\n\
496 Return True if this LineTable iterator is valid, False if not." },
497 {NULL
} /* Sentinel */
500 PyTypeObject ltpy_iterator_object_type
= {
501 PyVarObject_HEAD_INIT (NULL
, 0)
502 "gdb.LineTableIterator", /*tp_name*/
503 sizeof (ltpy_iterator_object
), /*tp_basicsize*/
505 ltpy_iterator_dealloc
, /*tp_dealloc*/
512 0, /*tp_as_sequence*/
520 Py_TPFLAGS_DEFAULT
, /*tp_flags*/
521 "GDB line table iterator object", /*tp_doc */
524 0, /*tp_richcompare */
525 0, /*tp_weaklistoffset */
526 ltpy_iterator
, /*tp_iter */
527 ltpy_iternext
, /*tp_iternext */
528 ltpy_iterator_methods
/*tp_methods */
532 static gdb_PyGetSetDef linetable_entry_object_getset
[] = {
533 { "line", ltpy_entry_get_line
, NULL
,
534 "The line number in the source file.", NULL
},
535 { "pc", ltpy_entry_get_pc
, NULL
,
536 "The memory address for this line number.", NULL
},
537 { NULL
} /* Sentinel */
540 PyTypeObject linetable_entry_object_type
= {
541 PyVarObject_HEAD_INIT (NULL
, 0)
542 "gdb.LineTableEntry", /*tp_name*/
543 sizeof (linetable_entry_object
), /*tp_basicsize*/
552 0, /*tp_as_sequence*/
560 Py_TPFLAGS_DEFAULT
, /*tp_flags*/
561 "GDB line table entry object", /* tp_doc */
564 0, /* tp_richcompare */
565 0, /* tp_weaklistoffset */
570 linetable_entry_object_getset
, /* tp_getset */
573 0, /* tp_descr_get */
574 0, /* tp_descr_set */
575 0, /* tp_dictoffset */