1 /* Python interface to line tables.
3 Copyright (C) 2013-2019 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/>. */
21 #include "python-internal.h"
25 /* The line table source line. */
27 /* The pc associated with the source line. */
29 } linetable_entry_object
;
31 extern PyTypeObject linetable_entry_object_type
32 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("linetable_entry_object");
36 /* The symtab python object. We store the Python object here as the
37 underlying symtab can become invalid, and we have to run validity
42 extern PyTypeObject linetable_object_type
43 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("linetable_object");
47 /* The current entry in the line table for the iterator */
49 /* Pointer back to the original source line table object. Needed to
50 check if the line table is still valid, and has not been invalidated
51 when an object file has been freed. */
53 } ltpy_iterator_object
;
55 extern PyTypeObject ltpy_iterator_object_type
56 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("ltpy_iterator_object");
58 /* Internal helper function to extract gdb.Symtab from a gdb.LineTable
62 get_symtab (PyObject
*linetable
)
64 linetable_object
*lt
= (linetable_object
*) linetable
;
69 #define LTPY_REQUIRE_VALID(lt_obj, symtab) \
71 symtab = symtab_object_to_symtab (get_symtab (lt_obj)); \
74 PyErr_SetString (PyExc_RuntimeError, \
75 _("Symbol Table in line table is invalid."));\
81 /* Helper function to create a line table object that wraps a
85 symtab_to_linetable_object (PyObject
*symtab
)
87 linetable_object
*ltable
;
89 ltable
= PyObject_New (linetable_object
, &linetable_object_type
);
92 ltable
->symtab
= symtab
;
95 return (PyObject
*) ltable
;
98 /* Internal helper function to build a line table object from a line
102 build_linetable_entry (int line
, CORE_ADDR address
)
104 linetable_entry_object
*obj
;
106 obj
= PyObject_New (linetable_entry_object
,
107 &linetable_entry_object_type
);
114 return (PyObject
*) obj
;
117 /* Internal helper function to build a Python Tuple from a vector.
118 A line table entry can have multiple PCs for a given source line.
119 Construct a Tuple of all entries for the given source line, LINE
120 from the line table PCS. Construct one line table entry object per
124 build_line_table_tuple_from_pcs (int line
, const std::vector
<CORE_ADDR
> &pcs
)
131 gdbpy_ref
<> tuple (PyTuple_New (pcs
.size ()));
136 for (i
= 0; i
< pcs
.size (); ++i
)
138 CORE_ADDR pc
= pcs
[i
];
139 gdbpy_ref
<> obj (build_linetable_entry (line
, pc
));
143 else if (PyTuple_SetItem (tuple
.get (), i
, obj
.release ()) != 0)
147 return tuple
.release ();
150 /* Implementation of gdb.LineTable.line (self) -> Tuple. Returns a
151 tuple of LineTableEntry objects associated with this line from the
152 in the line table. */
155 ltpy_get_pcs_for_line (PyObject
*self
, PyObject
*args
)
157 struct symtab
*symtab
;
158 gdb_py_longest py_line
;
159 struct linetable_entry
*best_entry
= NULL
;
160 std::vector
<CORE_ADDR
> pcs
;
162 LTPY_REQUIRE_VALID (self
, symtab
);
164 if (! PyArg_ParseTuple (args
, GDB_PY_LL_ARG
, &py_line
))
169 pcs
= find_pcs_for_symtab_line (symtab
, py_line
, &best_entry
);
171 catch (const gdb_exception
&except
)
173 GDB_PY_HANDLE_EXCEPTION (except
);
176 return build_line_table_tuple_from_pcs (py_line
, pcs
);
179 /* Implementation of gdb.LineTable.has_line (self, line) -> Boolean.
180 Returns a Python Boolean indicating whether a source line has any
181 line table entries corresponding to it. */
184 ltpy_has_line (PyObject
*self
, PyObject
*args
)
186 struct symtab
*symtab
;
187 gdb_py_longest py_line
;
190 LTPY_REQUIRE_VALID (self
, symtab
);
192 if (! PyArg_ParseTuple (args
, GDB_PY_LL_ARG
, &py_line
))
195 if (SYMTAB_LINETABLE (symtab
) == NULL
)
197 PyErr_SetString (PyExc_RuntimeError
,
198 _("Linetable information not found in symbol table"));
202 for (index
= 0; index
< SYMTAB_LINETABLE (symtab
)->nitems
; index
++)
204 struct linetable_entry
*item
= &(SYMTAB_LINETABLE (symtab
)->item
[index
]);
205 if (item
->line
== py_line
)
212 /* Implementation of gdb.LineTable.source_lines (self) -> List.
213 Returns a Python List that contains source line entries in the
214 line table. This function will just return the source lines
215 without corresponding addresses. */
218 ltpy_get_all_source_lines (PyObject
*self
, PyObject
*args
)
220 struct symtab
*symtab
;
222 struct linetable_entry
*item
;
224 LTPY_REQUIRE_VALID (self
, symtab
);
226 if (SYMTAB_LINETABLE (symtab
) == NULL
)
228 PyErr_SetString (PyExc_RuntimeError
,
229 _("Linetable information not found in symbol table"));
233 gdbpy_ref
<> source_dict (PyDict_New ());
234 if (source_dict
== NULL
)
237 for (index
= 0; index
< SYMTAB_LINETABLE (symtab
)->nitems
; index
++)
239 item
= &(SYMTAB_LINETABLE (symtab
)->item
[index
]);
241 /* 0 is used to signify end of line table information. Do not
242 include in the source set. */
245 gdbpy_ref
<> line
= gdb_py_object_from_longest (item
->line
);
250 if (PyDict_SetItem (source_dict
.get (), line
.get (), Py_None
) == -1)
255 return PyDict_Keys (source_dict
.get ());
258 /* Implementation of gdb.LineTable.is_valid (self) -> Boolean.
259 Returns True if this line table object still exists in GDB. */
262 ltpy_is_valid (PyObject
*self
, PyObject
*args
)
264 struct symtab
*symtab
= NULL
;
266 symtab
= symtab_object_to_symtab (get_symtab (self
));
274 /* Deconstructor for the line table object. Decrement the reference
275 to the symbol table object before calling the default free. */
278 ltpy_dealloc (PyObject
*self
)
280 linetable_object
*obj
= (linetable_object
*) self
;
282 Py_DECREF (obj
->symtab
);
283 Py_TYPE (self
)->tp_free (self
);
286 /* Initialize LineTable, LineTableEntry and LineTableIterator
290 gdbpy_initialize_linetable (void)
292 if (PyType_Ready (&linetable_object_type
) < 0)
294 if (PyType_Ready (&linetable_entry_object_type
) < 0)
296 if (PyType_Ready (<py_iterator_object_type
) < 0)
299 Py_INCREF (&linetable_object_type
);
300 Py_INCREF (&linetable_entry_object_type
);
301 Py_INCREF (<py_iterator_object_type
);
303 if (gdb_pymodule_addobject (gdb_module
, "LineTable",
304 (PyObject
*) &linetable_object_type
) < 0)
307 if (gdb_pymodule_addobject (gdb_module
, "LineTableEntry",
308 (PyObject
*) &linetable_entry_object_type
) < 0)
311 if (gdb_pymodule_addobject (gdb_module
, "LineTableIterator",
312 (PyObject
*) <py_iterator_object_type
) < 0)
318 /* LineTable entry object get functions. */
320 /* Implementation of gdb.LineTableEntry.line (self) -> Long. Returns
321 a long integer associated with the line table entry. */
324 ltpy_entry_get_line (PyObject
*self
, void *closure
)
326 linetable_entry_object
*obj
= (linetable_entry_object
*) self
;
328 return gdb_py_object_from_longest (obj
->line
).release ();
331 /* Implementation of gdb.LineTableEntry.pc (self) -> Long. Returns a
332 a long integer associated with the PC of the line table entry. */
335 ltpy_entry_get_pc (PyObject
*self
, void *closure
)
337 linetable_entry_object
*obj
= (linetable_entry_object
*) self
;
339 return gdb_py_object_from_longest (obj
->pc
).release ();
342 /* LineTable iterator functions. */
344 /* Return a new line table iterator. */
347 ltpy_iter (PyObject
*self
)
349 ltpy_iterator_object
*ltpy_iter_obj
;
350 struct symtab
*symtab
= NULL
;
352 LTPY_REQUIRE_VALID (self
, symtab
);
354 ltpy_iter_obj
= PyObject_New (ltpy_iterator_object
,
355 <py_iterator_object_type
);
356 if (ltpy_iter_obj
== NULL
)
359 ltpy_iter_obj
->current_index
= 0;
360 ltpy_iter_obj
->source
= self
;
363 return (PyObject
*) ltpy_iter_obj
;
367 ltpy_iterator_dealloc (PyObject
*obj
)
369 ltpy_iterator_object
*iter_obj
= (ltpy_iterator_object
*) obj
;
371 Py_DECREF (iter_obj
->source
);
374 /* Return a reference to the line table iterator. */
377 ltpy_iterator (PyObject
*self
)
379 ltpy_iterator_object
*iter_obj
= (ltpy_iterator_object
*) self
;
380 struct symtab
*symtab
;
382 LTPY_REQUIRE_VALID (iter_obj
->source
, symtab
);
388 /* Return the next line table entry in the iteration through the line
389 table data structure. */
392 ltpy_iternext (PyObject
*self
)
394 ltpy_iterator_object
*iter_obj
= (ltpy_iterator_object
*) self
;
395 struct symtab
*symtab
;
397 struct linetable_entry
*item
;
399 LTPY_REQUIRE_VALID (iter_obj
->source
, symtab
);
401 if (iter_obj
->current_index
>= SYMTAB_LINETABLE (symtab
)->nitems
)
403 PyErr_SetNone (PyExc_StopIteration
);
407 item
= &(SYMTAB_LINETABLE (symtab
)->item
[iter_obj
->current_index
]);
409 /* Skip over internal entries such as 0. 0 signifies the end of
410 line table data and is not useful to the API user. */
411 while (item
->line
< 1)
413 iter_obj
->current_index
++;
415 /* Exit if the internal value is the last item in the line table. */
416 if (iter_obj
->current_index
>= SYMTAB_LINETABLE (symtab
)->nitems
)
418 PyErr_SetNone (PyExc_StopIteration
);
421 item
= &(SYMTAB_LINETABLE (symtab
)->item
[iter_obj
->current_index
]);
424 obj
= build_linetable_entry (item
->line
, item
->pc
);
425 iter_obj
->current_index
++;
430 /* Implementation of gdb.LineTableIterator.is_valid (self) -> Boolean.
431 Returns True if this line table iterator object still exists in
435 ltpy_iter_is_valid (PyObject
*self
, PyObject
*args
)
437 struct symtab
*symtab
= NULL
;
438 ltpy_iterator_object
*iter_obj
= (ltpy_iterator_object
*) self
;
440 symtab
= symtab_object_to_symtab (get_symtab (iter_obj
->source
));
450 static PyMethodDef linetable_object_methods
[] = {
451 { "line", ltpy_get_pcs_for_line
, METH_VARARGS
,
452 "line (lineno) -> Tuple\n\
453 Return executable locations for a given source line." },
454 { "has_line", ltpy_has_line
, METH_VARARGS
,
455 "has_line (lineno) -> Boolean\n\
456 Return TRUE if this line has executable information, FALSE if not." },
457 { "source_lines", ltpy_get_all_source_lines
, METH_NOARGS
,
458 "source_lines () -> List\n\
459 Return a list of all executable source lines." },
460 { "is_valid", ltpy_is_valid
, METH_NOARGS
,
461 "is_valid () -> Boolean.\n\
462 Return True if this LineTable is valid, False if not." },
463 {NULL
} /* Sentinel */
466 PyTypeObject linetable_object_type
= {
467 PyVarObject_HEAD_INIT (NULL
, 0)
468 "gdb.LineTable", /*tp_name*/
469 sizeof (linetable_object
), /*tp_basicsize*/
471 ltpy_dealloc
, /*tp_dealloc*/
478 0, /*tp_as_sequence*/
486 Py_TPFLAGS_DEFAULT
, /*tp_flags*/
487 "GDB line table object", /* tp_doc */
490 0, /* tp_richcompare */
491 0, /* tp_weaklistoffset */
492 ltpy_iter
, /* tp_iter */
494 linetable_object_methods
, /* tp_methods */
499 0, /* tp_descr_get */
500 0, /* tp_descr_set */
501 0, /* tp_dictoffset */
506 static PyMethodDef ltpy_iterator_methods
[] = {
507 { "is_valid", ltpy_iter_is_valid
, METH_NOARGS
,
508 "is_valid () -> Boolean.\n\
509 Return True if this LineTable iterator is valid, False if not." },
510 {NULL
} /* Sentinel */
513 PyTypeObject ltpy_iterator_object_type
= {
514 PyVarObject_HEAD_INIT (NULL
, 0)
515 "gdb.LineTableIterator", /*tp_name*/
516 sizeof (ltpy_iterator_object
), /*tp_basicsize*/
518 ltpy_iterator_dealloc
, /*tp_dealloc*/
525 0, /*tp_as_sequence*/
533 Py_TPFLAGS_DEFAULT
| Py_TPFLAGS_HAVE_ITER
, /*tp_flags*/
534 "GDB line table iterator object", /*tp_doc */
537 0, /*tp_richcompare */
538 0, /*tp_weaklistoffset */
539 ltpy_iterator
, /*tp_iter */
540 ltpy_iternext
, /*tp_iternext */
541 ltpy_iterator_methods
/*tp_methods */
545 static gdb_PyGetSetDef linetable_entry_object_getset
[] = {
546 { "line", ltpy_entry_get_line
, NULL
,
547 "The line number in the source file.", NULL
},
548 { "pc", ltpy_entry_get_pc
, NULL
,
549 "The memory address for this line number.", NULL
},
550 { NULL
} /* Sentinel */
553 PyTypeObject linetable_entry_object_type
= {
554 PyVarObject_HEAD_INIT (NULL
, 0)
555 "gdb.LineTableEntry", /*tp_name*/
556 sizeof (linetable_entry_object
), /*tp_basicsize*/
565 0, /*tp_as_sequence*/
573 Py_TPFLAGS_DEFAULT
, /*tp_flags*/
574 "GDB line table entry object", /* tp_doc */
577 0, /* tp_richcompare */
578 0, /* tp_weaklistoffset */
583 linetable_entry_object_getset
, /* tp_getset */
586 0, /* tp_descr_get */
587 0, /* tp_descr_set */
588 0, /* tp_dictoffset */