py-linetable.c revision 1.1 1 1.1 christos /* Python interface to line tables.
2 1.1 christos
3 1.1 christos Copyright (C) 2013-2014 Free Software Foundation, Inc.
4 1.1 christos
5 1.1 christos This file is part of GDB.
6 1.1 christos
7 1.1 christos This program is free software; you can redistribute it and/or modify
8 1.1 christos it under the terms of the GNU General Public License as published by
9 1.1 christos the Free Software Foundation; either version 3 of the License, or
10 1.1 christos (at your option) any later version.
11 1.1 christos
12 1.1 christos This program is distributed in the hope that it will be useful,
13 1.1 christos but WITHOUT ANY WARRANTY; without even the implied warranty of
14 1.1 christos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 1.1 christos GNU General Public License for more details.
16 1.1 christos
17 1.1 christos You should have received a copy of the GNU General Public License
18 1.1 christos along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 1.1 christos
20 1.1 christos #include "defs.h"
21 1.1 christos #include "python-internal.h"
22 1.1 christos #include "exceptions.h"
23 1.1 christos
24 1.1 christos typedef struct {
25 1.1 christos PyObject_HEAD
26 1.1 christos /* The line table source line. */
27 1.1 christos int line;
28 1.1 christos /* The pc associated with the source line. */
29 1.1 christos CORE_ADDR pc;
30 1.1 christos } linetable_entry_object;
31 1.1 christos
32 1.1 christos static PyTypeObject linetable_entry_object_type
33 1.1 christos CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("linetable_entry_object");
34 1.1 christos
35 1.1 christos typedef struct {
36 1.1 christos PyObject_HEAD
37 1.1 christos /* The symtab python object. We store the Python object here as the
38 1.1 christos underlying symtab can become invalid, and we have to run validity
39 1.1 christos checks on it. */
40 1.1 christos PyObject *symtab;
41 1.1 christos } linetable_object;
42 1.1 christos
43 1.1 christos static PyTypeObject linetable_object_type
44 1.1 christos CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("linetable_object");
45 1.1 christos
46 1.1 christos typedef struct {
47 1.1 christos PyObject_HEAD
48 1.1 christos /* The current entry in the line table for the iterator */
49 1.1 christos int current_index;
50 1.1 christos /* Pointer back to the original source line table object. Needed to
51 1.1 christos check if the line table is still valid, and has not been invalidated
52 1.1 christos when an object file has been freed. */
53 1.1 christos PyObject *source;
54 1.1 christos } ltpy_iterator_object;
55 1.1 christos
56 1.1 christos static PyTypeObject ltpy_iterator_object_type
57 1.1 christos CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("ltpy_iterator_object");
58 1.1 christos
59 1.1 christos /* Internal helper function to extract gdb.Symtab from a gdb.Linetable
60 1.1 christos object. */
61 1.1 christos
62 1.1 christos static PyObject *
63 1.1 christos get_symtab (PyObject *linetable)
64 1.1 christos {
65 1.1 christos linetable_object *lt = (linetable_object *) linetable;
66 1.1 christos
67 1.1 christos return lt->symtab;
68 1.1 christos }
69 1.1 christos
70 1.1 christos #define LTPY_REQUIRE_VALID(lt_obj, symtab) \
71 1.1 christos do { \
72 1.1 christos symtab = symtab_object_to_symtab (get_symtab (lt_obj)); \
73 1.1 christos if (symtab == NULL) \
74 1.1 christos { \
75 1.1 christos PyErr_SetString (PyExc_RuntimeError, \
76 1.1 christos _("Symbol Table in line table is invalid."));\
77 1.1 christos return NULL; \
78 1.1 christos } \
79 1.1 christos } while (0)
80 1.1 christos
81 1.1 christos
82 1.1 christos /* Helper function to create a line table object that wraps a
83 1.1 christos gdb.Symtab object. */
84 1.1 christos
85 1.1 christos PyObject *
86 1.1 christos symtab_to_linetable_object (PyObject *symtab)
87 1.1 christos {
88 1.1 christos linetable_object *ltable;
89 1.1 christos
90 1.1 christos ltable = PyObject_New (linetable_object, &linetable_object_type);
91 1.1 christos if (ltable != NULL)
92 1.1 christos {
93 1.1 christos ltable->symtab = symtab;
94 1.1 christos Py_INCREF (symtab);
95 1.1 christos }
96 1.1 christos return (PyObject *) ltable;
97 1.1 christos }
98 1.1 christos
99 1.1 christos /* Internal helper function to build a line table object from a line
100 1.1 christos and an address. */
101 1.1 christos
102 1.1 christos static PyObject *
103 1.1 christos build_linetable_entry (int line, CORE_ADDR address)
104 1.1 christos {
105 1.1 christos linetable_entry_object *obj;
106 1.1 christos
107 1.1 christos obj = PyObject_New (linetable_entry_object,
108 1.1 christos &linetable_entry_object_type);
109 1.1 christos if (obj != NULL)
110 1.1 christos {
111 1.1 christos obj->line = line;
112 1.1 christos obj->pc = address;
113 1.1 christos }
114 1.1 christos
115 1.1 christos return (PyObject *) obj;
116 1.1 christos }
117 1.1 christos
118 1.1 christos /* Internal helper function to build a Python Tuple from a GDB Vector.
119 1.1 christos A line table entry can have multiple PCs for a given source line.
120 1.1 christos Construct a Tuple of all entries for the given source line, LINE
121 1.1 christos from the line table VEC. Construct one line table entry object per
122 1.1 christos address. */
123 1.1 christos
124 1.1 christos static PyObject *
125 1.1 christos build_line_table_tuple_from_pcs (int line, VEC (CORE_ADDR) *vec)
126 1.1 christos {
127 1.1 christos int vec_len = 0;
128 1.1 christos PyObject *tuple;
129 1.1 christos CORE_ADDR pc;
130 1.1 christos int i;
131 1.1 christos
132 1.1 christos vec_len = VEC_length (CORE_ADDR, vec);
133 1.1 christos if (vec_len < 1)
134 1.1 christos Py_RETURN_NONE;
135 1.1 christos
136 1.1 christos tuple = PyTuple_New (vec_len);
137 1.1 christos
138 1.1 christos if (tuple == NULL)
139 1.1 christos return NULL;
140 1.1 christos
141 1.1 christos for (i = 0; VEC_iterate (CORE_ADDR, vec, i, pc); ++i)
142 1.1 christos {
143 1.1 christos PyObject *obj = build_linetable_entry (line, pc);
144 1.1 christos
145 1.1 christos if (obj == NULL)
146 1.1 christos {
147 1.1 christos Py_DECREF (tuple);
148 1.1 christos tuple = NULL;
149 1.1 christos break;
150 1.1 christos }
151 1.1 christos else if (PyTuple_SetItem (tuple, i, obj) != 0)
152 1.1 christos {
153 1.1 christos Py_DECREF (obj);
154 1.1 christos Py_DECREF (tuple);
155 1.1 christos tuple = NULL;
156 1.1 christos break;
157 1.1 christos }
158 1.1 christos }
159 1.1 christos
160 1.1 christos return tuple;
161 1.1 christos }
162 1.1 christos
163 1.1 christos /* Implementation of gdb.LineTable.line (self) -> Tuple. Returns a
164 1.1 christos tuple of LineTableEntry objects associated with this line from the
165 1.1 christos in the line table. */
166 1.1 christos
167 1.1 christos static PyObject *
168 1.1 christos ltpy_get_pcs_for_line (PyObject *self, PyObject *args)
169 1.1 christos {
170 1.1 christos struct symtab *symtab;
171 1.1 christos gdb_py_longest py_line;
172 1.1 christos struct linetable_entry *best_entry = NULL;
173 1.1 christos linetable_entry_object *result;
174 1.1 christos VEC (CORE_ADDR) *pcs = NULL;
175 1.1 christos PyObject *tuple;
176 1.1 christos volatile struct gdb_exception except;
177 1.1 christos
178 1.1 christos LTPY_REQUIRE_VALID (self, symtab);
179 1.1 christos
180 1.1 christos if (! PyArg_ParseTuple (args, GDB_PY_LL_ARG, &py_line))
181 1.1 christos return NULL;
182 1.1 christos
183 1.1 christos TRY_CATCH (except, RETURN_MASK_ALL)
184 1.1 christos {
185 1.1 christos pcs = find_pcs_for_symtab_line (symtab, py_line, &best_entry);
186 1.1 christos }
187 1.1 christos GDB_PY_HANDLE_EXCEPTION (except);
188 1.1 christos
189 1.1 christos tuple = build_line_table_tuple_from_pcs (py_line, pcs);
190 1.1 christos VEC_free (CORE_ADDR, pcs);
191 1.1 christos
192 1.1 christos return tuple;
193 1.1 christos }
194 1.1 christos
195 1.1 christos /* Implementation of gdb.LineTable.has_line (self, line) -> Boolean.
196 1.1 christos Returns a Python Boolean indicating whether a source line has any
197 1.1 christos line table entries corresponding to it. */
198 1.1 christos
199 1.1 christos static PyObject *
200 1.1 christos ltpy_has_line (PyObject *self, PyObject *args)
201 1.1 christos {
202 1.1 christos struct symtab *symtab;
203 1.1 christos gdb_py_longest py_line;
204 1.1 christos int index;
205 1.1 christos
206 1.1 christos LTPY_REQUIRE_VALID (self, symtab);
207 1.1 christos
208 1.1 christos if (! PyArg_ParseTuple (args, GDB_PY_LL_ARG, &py_line))
209 1.1 christos return NULL;
210 1.1 christos
211 1.1 christos if (LINETABLE (symtab) == NULL)
212 1.1 christos {
213 1.1 christos PyErr_SetString (PyExc_RuntimeError,
214 1.1 christos _("Linetable information not found in symbol table"));
215 1.1 christos return NULL;
216 1.1 christos }
217 1.1 christos
218 1.1 christos for (index = 0; index < LINETABLE (symtab)->nitems; index++)
219 1.1 christos {
220 1.1 christos struct linetable_entry *item = &(symtab->linetable->item[index]);
221 1.1 christos if (item->line == py_line)
222 1.1 christos Py_RETURN_TRUE;
223 1.1 christos }
224 1.1 christos
225 1.1 christos Py_RETURN_FALSE;
226 1.1 christos }
227 1.1 christos
228 1.1 christos /* Implementation of gdb.LineTable.source_lines (self) -> FrozenSet.
229 1.1 christos Returns a Python FrozenSet that contains source line entries in the
230 1.1 christos line table. This function will just return the source lines
231 1.1 christos without corresponding addresses. */
232 1.1 christos
233 1.1 christos static PyObject *
234 1.1 christos ltpy_get_all_source_lines (PyObject *self, PyObject *args)
235 1.1 christos {
236 1.1 christos struct symtab *symtab;
237 1.1 christos Py_ssize_t index;
238 1.1 christos PyObject *source_list, *source_dict, *line;
239 1.1 christos struct linetable_entry *item;
240 1.1 christos Py_ssize_t list_size;
241 1.1 christos
242 1.1 christos LTPY_REQUIRE_VALID (self, symtab);
243 1.1 christos
244 1.1 christos if (LINETABLE (symtab) == NULL)
245 1.1 christos {
246 1.1 christos PyErr_SetString (PyExc_RuntimeError,
247 1.1 christos _("Linetable information not found in symbol table"));
248 1.1 christos return NULL;
249 1.1 christos }
250 1.1 christos
251 1.1 christos source_dict = PyDict_New ();
252 1.1 christos if (source_dict == NULL)
253 1.1 christos return NULL;
254 1.1 christos
255 1.1 christos for (index = 0; index < LINETABLE (symtab)->nitems; index++)
256 1.1 christos {
257 1.1 christos item = &(LINETABLE (symtab)->item[index]);
258 1.1 christos
259 1.1 christos /* 0 is used to signify end of line table information. Do not
260 1.1 christos include in the source set. */
261 1.1 christos if (item->line > 0)
262 1.1 christos {
263 1.1 christos line = gdb_py_object_from_longest (item->line);
264 1.1 christos
265 1.1 christos if (line == NULL)
266 1.1 christos {
267 1.1 christos Py_DECREF (source_dict);
268 1.1 christos return NULL;
269 1.1 christos }
270 1.1 christos
271 1.1 christos if (PyDict_SetItem (source_dict, line, Py_None) == -1)
272 1.1 christos {
273 1.1 christos Py_DECREF (line);
274 1.1 christos Py_DECREF (source_dict);
275 1.1 christos return NULL;
276 1.1 christos }
277 1.1 christos
278 1.1 christos Py_DECREF (line);
279 1.1 christos }
280 1.1 christos }
281 1.1 christos
282 1.1 christos
283 1.1 christos source_list = PyDict_Keys (source_dict);
284 1.1 christos Py_DECREF (source_dict);
285 1.1 christos
286 1.1 christos return source_list;
287 1.1 christos }
288 1.1 christos
289 1.1 christos /* Implementation of gdb.Linetable.is_valid (self) -> Boolean.
290 1.1 christos Returns True if this line table object still exists in GDB. */
291 1.1 christos
292 1.1 christos static PyObject *
293 1.1 christos ltpy_is_valid (PyObject *self, PyObject *args)
294 1.1 christos {
295 1.1 christos struct symtab *symtab = NULL;
296 1.1 christos linetable_object *obj = (linetable_object *) self;
297 1.1 christos
298 1.1 christos symtab = symtab_object_to_symtab (get_symtab (self));
299 1.1 christos
300 1.1 christos if (symtab == NULL)
301 1.1 christos Py_RETURN_FALSE;
302 1.1 christos
303 1.1 christos Py_RETURN_TRUE;
304 1.1 christos }
305 1.1 christos
306 1.1 christos /* Deconstructor for the line table object. Decrement the reference
307 1.1 christos to the symbol table object before calling the default free. */
308 1.1 christos
309 1.1 christos static void
310 1.1 christos ltpy_dealloc (PyObject *self)
311 1.1 christos {
312 1.1 christos linetable_object *obj = (linetable_object *) self;
313 1.1 christos
314 1.1 christos Py_DECREF (obj->symtab);
315 1.1 christos Py_TYPE (self)->tp_free (self);
316 1.1 christos }
317 1.1 christos
318 1.1 christos /* Initialize LineTable, LineTableEntry and LineTableIterator
319 1.1 christos objects. */
320 1.1 christos
321 1.1 christos int
322 1.1 christos gdbpy_initialize_linetable (void)
323 1.1 christos {
324 1.1 christos if (PyType_Ready (&linetable_object_type) < 0)
325 1.1 christos return -1;
326 1.1 christos if (PyType_Ready (&linetable_entry_object_type) < 0)
327 1.1 christos return -1;
328 1.1 christos if (PyType_Ready (<py_iterator_object_type) < 0)
329 1.1 christos return -1;
330 1.1 christos
331 1.1 christos Py_INCREF (&linetable_object_type);
332 1.1 christos Py_INCREF (&linetable_entry_object_type);
333 1.1 christos Py_INCREF (<py_iterator_object_type);
334 1.1 christos
335 1.1 christos if (gdb_pymodule_addobject (gdb_module, "LineTable",
336 1.1 christos (PyObject *) &linetable_object_type) < 0)
337 1.1 christos return -1;
338 1.1 christos
339 1.1 christos if (gdb_pymodule_addobject (gdb_module, "LineTableEntry",
340 1.1 christos (PyObject *) &linetable_entry_object_type) < 0)
341 1.1 christos return -1;
342 1.1 christos
343 1.1 christos if (gdb_pymodule_addobject (gdb_module, "LineTableIterator",
344 1.1 christos (PyObject *) <py_iterator_object_type) < 0)
345 1.1 christos return -1;
346 1.1 christos
347 1.1 christos return 0;
348 1.1 christos }
349 1.1 christos
350 1.1 christos /* Linetable entry object get functions. */
351 1.1 christos
352 1.1 christos /* Implementation of gdb.LineTableEntry.line (self) -> Long. Returns
353 1.1 christos a long integer associated with the line table entry. */
354 1.1 christos
355 1.1 christos static PyObject *
356 1.1 christos ltpy_entry_get_line (PyObject *self, void *closure)
357 1.1 christos {
358 1.1 christos linetable_entry_object *obj = (linetable_entry_object *) self;
359 1.1 christos
360 1.1 christos return gdb_py_object_from_longest (obj->line);
361 1.1 christos }
362 1.1 christos
363 1.1 christos /* Implementation of gdb.LineTableEntry.pc (self) -> Long. Returns a
364 1.1 christos a long integer associated with the PC of the line table entry. */
365 1.1 christos
366 1.1 christos static PyObject *
367 1.1 christos ltpy_entry_get_pc (PyObject *self, void *closure)
368 1.1 christos {
369 1.1 christos linetable_entry_object *obj = (linetable_entry_object *) self;
370 1.1 christos
371 1.1 christos return gdb_py_object_from_longest (obj->pc);
372 1.1 christos }
373 1.1 christos
374 1.1 christos /* Linetable iterator functions. */
375 1.1 christos
376 1.1 christos /* Return a new line table iterator. */
377 1.1 christos
378 1.1 christos static PyObject *
379 1.1 christos ltpy_iter (PyObject *self)
380 1.1 christos {
381 1.1 christos ltpy_iterator_object *ltpy_iter_obj;
382 1.1 christos struct symtab *symtab = NULL;
383 1.1 christos
384 1.1 christos LTPY_REQUIRE_VALID (self, symtab);
385 1.1 christos
386 1.1 christos ltpy_iter_obj = PyObject_New (ltpy_iterator_object,
387 1.1 christos <py_iterator_object_type);
388 1.1 christos if (ltpy_iter_obj == NULL)
389 1.1 christos return NULL;
390 1.1 christos
391 1.1 christos ltpy_iter_obj->current_index = 0;
392 1.1 christos ltpy_iter_obj->source = self;
393 1.1 christos
394 1.1 christos Py_INCREF (self);
395 1.1 christos return (PyObject *) ltpy_iter_obj;
396 1.1 christos }
397 1.1 christos
398 1.1 christos static void
399 1.1 christos ltpy_iterator_dealloc (PyObject *obj)
400 1.1 christos {
401 1.1 christos ltpy_iterator_object *iter_obj = (ltpy_iterator_object *) obj;
402 1.1 christos
403 1.1 christos Py_DECREF (iter_obj->source);
404 1.1 christos }
405 1.1 christos
406 1.1 christos /* Return a reference to the line table iterator. */
407 1.1 christos
408 1.1 christos static PyObject *
409 1.1 christos ltpy_iterator (PyObject *self)
410 1.1 christos {
411 1.1 christos ltpy_iterator_object *iter_obj = (ltpy_iterator_object *) self;
412 1.1 christos struct symtab *symtab;
413 1.1 christos
414 1.1 christos LTPY_REQUIRE_VALID (iter_obj->source, symtab);
415 1.1 christos
416 1.1 christos Py_INCREF (self);
417 1.1 christos return self;
418 1.1 christos }
419 1.1 christos
420 1.1 christos /* Return the next line table entry in the iteration through the line
421 1.1 christos table data structure. */
422 1.1 christos
423 1.1 christos static PyObject *
424 1.1 christos ltpy_iternext (PyObject *self)
425 1.1 christos {
426 1.1 christos ltpy_iterator_object *iter_obj = (ltpy_iterator_object *) self;
427 1.1 christos struct symtab *symtab;
428 1.1 christos int index;
429 1.1 christos PyObject *obj;
430 1.1 christos struct linetable_entry *item;
431 1.1 christos
432 1.1 christos LTPY_REQUIRE_VALID (iter_obj->source, symtab);
433 1.1 christos
434 1.1 christos if (iter_obj->current_index >= LINETABLE (symtab)->nitems)
435 1.1 christos goto stop_iteration;
436 1.1 christos
437 1.1 christos item = &(LINETABLE (symtab)->item[iter_obj->current_index]);
438 1.1 christos
439 1.1 christos /* Skip over internal entries such as 0. 0 signifies the end of
440 1.1 christos line table data and is not useful to the API user. */
441 1.1 christos while (item->line < 1)
442 1.1 christos {
443 1.1 christos iter_obj->current_index++;
444 1.1 christos
445 1.1 christos /* Exit if the internal value is the last item in the line table. */
446 1.1 christos if (iter_obj->current_index >= symtab->linetable->nitems)
447 1.1 christos goto stop_iteration;
448 1.1 christos item = &(symtab->linetable->item[iter_obj->current_index]);
449 1.1 christos }
450 1.1 christos
451 1.1 christos obj = build_linetable_entry (item->line, item->pc);
452 1.1 christos iter_obj->current_index++;
453 1.1 christos
454 1.1 christos return obj;
455 1.1 christos
456 1.1 christos stop_iteration:
457 1.1 christos PyErr_SetNone (PyExc_StopIteration);
458 1.1 christos return NULL;
459 1.1 christos }
460 1.1 christos
461 1.1 christos /* Implementation of gdb.LinetableIterator.is_valid (self) -> Boolean.
462 1.1 christos Returns True if this line table iterator object still exists in
463 1.1 christos GDB. */
464 1.1 christos
465 1.1 christos static PyObject *
466 1.1 christos ltpy_iter_is_valid (PyObject *self, PyObject *args)
467 1.1 christos {
468 1.1 christos struct symtab *symtab = NULL;
469 1.1 christos ltpy_iterator_object *iter_obj = (ltpy_iterator_object *) self;
470 1.1 christos
471 1.1 christos symtab = symtab_object_to_symtab (get_symtab (iter_obj->source));
472 1.1 christos
473 1.1 christos if (symtab == NULL)
474 1.1 christos Py_RETURN_FALSE;
475 1.1 christos
476 1.1 christos Py_RETURN_TRUE;
477 1.1 christos }
478 1.1 christos
479 1.1 christos
480 1.1 christos
482 1.1 christos static PyMethodDef linetable_object_methods[] = {
483 1.1 christos { "line", ltpy_get_pcs_for_line, METH_VARARGS,
484 1.1 christos "line (lineno) -> Tuple\n\
485 1.1 christos Return executable locations for a given source line." },
486 1.1 christos { "has_line", ltpy_has_line, METH_VARARGS,
487 1.1 christos "has_line (lineno) -> Boolean\n\
488 1.1 christos Return TRUE if this line has executable information, FALSE if not." },
489 1.1 christos { "source_lines", ltpy_get_all_source_lines, METH_NOARGS,
490 1.1 christos "source_lines () -> FrozenSet\n\
491 1.1 christos Return a frozen set of all executable source lines." },
492 1.1 christos { "is_valid", ltpy_is_valid, METH_NOARGS,
493 1.1 christos "is_valid () -> Boolean.\n\
494 1.1 christos Return True if this Linetable is valid, False if not." },
495 1.1 christos {NULL} /* Sentinel */
496 1.1 christos };
497 1.1 christos
498 1.1 christos static PyTypeObject linetable_object_type = {
499 1.1 christos PyVarObject_HEAD_INIT (NULL, 0)
500 1.1 christos "gdb.LineTable", /*tp_name*/
501 1.1 christos sizeof (linetable_object), /*tp_basicsize*/
502 1.1 christos 0, /*tp_itemsize*/
503 1.1 christos ltpy_dealloc, /*tp_dealloc*/
504 1.1 christos 0, /*tp_print*/
505 1.1 christos 0, /*tp_getattr*/
506 1.1 christos 0, /*tp_setattr*/
507 1.1 christos 0, /*tp_compare*/
508 1.1 christos 0, /*tp_repr*/
509 1.1 christos 0, /*tp_as_number*/
510 1.1 christos 0, /*tp_as_sequence*/
511 1.1 christos 0, /*tp_as_mapping*/
512 1.1 christos 0, /*tp_hash */
513 1.1 christos 0, /*tp_call*/
514 1.1 christos 0, /*tp_str*/
515 1.1 christos 0, /*tp_getattro*/
516 1.1 christos 0, /*tp_setattro*/
517 1.1 christos 0, /*tp_as_buffer*/
518 1.1 christos Py_TPFLAGS_DEFAULT, /*tp_flags*/
519 1.1 christos "GDB line table object", /* tp_doc */
520 1.1 christos 0, /* tp_traverse */
521 1.1 christos 0, /* tp_clear */
522 1.1 christos 0, /* tp_richcompare */
523 1.1 christos 0, /* tp_weaklistoffset */
524 1.1 christos ltpy_iter, /* tp_iter */
525 1.1 christos 0, /* tp_iternext */
526 1.1 christos linetable_object_methods, /* tp_methods */
527 1.1 christos 0, /* tp_members */
528 1.1 christos 0, /* tp_getset */
529 1.1 christos 0, /* tp_base */
530 1.1 christos 0, /* tp_dict */
531 1.1 christos 0, /* tp_descr_get */
532 1.1 christos 0, /* tp_descr_set */
533 1.1 christos 0, /* tp_dictoffset */
534 1.1 christos 0, /* tp_init */
535 1.1 christos 0, /* tp_alloc */
536 1.1 christos };
537 1.1 christos
538 1.1 christos static PyMethodDef ltpy_iterator_methods[] = {
539 1.1 christos { "is_valid", ltpy_iter_is_valid, METH_NOARGS,
540 1.1 christos "is_valid () -> Boolean.\n\
541 1.1 christos Return True if this Linetable iterator is valid, False if not." },
542 1.1 christos {NULL} /* Sentinel */
543 1.1 christos };
544 1.1 christos
545 1.1 christos static PyTypeObject ltpy_iterator_object_type = {
546 1.1 christos PyVarObject_HEAD_INIT (NULL, 0)
547 1.1 christos "gdb.LineTableIterator", /*tp_name*/
548 1.1 christos sizeof (ltpy_iterator_object), /*tp_basicsize*/
549 1.1 christos 0, /*tp_itemsize*/
550 1.1 christos ltpy_iterator_dealloc, /*tp_dealloc*/
551 1.1 christos 0, /*tp_print*/
552 1.1 christos 0, /*tp_getattr*/
553 1.1 christos 0, /*tp_setattr*/
554 1.1 christos 0, /*tp_compare*/
555 1.1 christos 0, /*tp_repr*/
556 1.1 christos 0, /*tp_as_number*/
557 1.1 christos 0, /*tp_as_sequence*/
558 1.1 christos 0, /*tp_as_mapping*/
559 1.1 christos 0, /*tp_hash */
560 1.1 christos 0, /*tp_call*/
561 1.1 christos 0, /*tp_str*/
562 1.1 christos 0, /*tp_getattro*/
563 1.1 christos 0, /*tp_setattro*/
564 1.1 christos 0, /*tp_as_buffer*/
565 1.1 christos Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_ITER, /*tp_flags*/
566 1.1 christos "GDB line table iterator object", /*tp_doc */
567 1.1 christos 0, /*tp_traverse */
568 1.1 christos 0, /*tp_clear */
569 1.1 christos 0, /*tp_richcompare */
570 1.1 christos 0, /*tp_weaklistoffset */
571 1.1 christos ltpy_iterator, /*tp_iter */
572 1.1 christos ltpy_iternext, /*tp_iternext */
573 1.1 christos ltpy_iterator_methods /*tp_methods */
574 1.1 christos };
575 1.1 christos
576 1.1 christos
577 1.1 christos static PyGetSetDef linetable_entry_object_getset[] = {
578 1.1 christos { "line", ltpy_entry_get_line, NULL,
579 1.1 christos "The line number in the source file.", NULL },
580 1.1 christos { "pc", ltpy_entry_get_pc, NULL,
581 1.1 christos "The memory address for this line number.", NULL },
582 1.1 christos { NULL } /* Sentinel */
583 1.1 christos };
584 1.1 christos
585 1.1 christos static PyTypeObject linetable_entry_object_type = {
586 1.1 christos PyVarObject_HEAD_INIT (NULL, 0)
587 1.1 christos "gdb.LineTableEntry", /*tp_name*/
588 1.1 christos sizeof (linetable_entry_object), /*tp_basicsize*/
589 1.1 christos 0, /*tp_itemsize*/
590 1.1 christos 0, /*tp_dealloc*/
591 1.1 christos 0, /*tp_print*/
592 1.1 christos 0, /*tp_getattr*/
593 1.1 christos 0, /*tp_setattr*/
594 1.1 christos 0, /*tp_compare*/
595 1.1 christos 0, /*tp_repr*/
596 1.1 christos 0, /*tp_as_number*/
597 1.1 christos 0, /*tp_as_sequence*/
598 1.1 christos 0, /*tp_as_mapping*/
599 1.1 christos 0, /*tp_hash */
600 1.1 christos 0, /*tp_call*/
601 1.1 christos 0, /*tp_str*/
602 1.1 christos 0, /*tp_getattro*/
603 1.1 christos 0, /*tp_setattro*/
604 1.1 christos 0, /*tp_as_buffer*/
605 1.1 christos Py_TPFLAGS_DEFAULT, /*tp_flags*/
606 1.1 christos "GDB line table entry object", /* tp_doc */
607 1.1 christos 0, /* tp_traverse */
608 1.1 christos 0, /* tp_clear */
609 1.1 christos 0, /* tp_richcompare */
610 1.1 christos 0, /* tp_weaklistoffset */
611 1.1 christos 0, /* tp_iter */
612 1.1 christos 0, /* tp_iternext */
613 1.1 christos 0, /* tp_methods */
614 1.1 christos 0, /* tp_members */
615 1.1 christos linetable_entry_object_getset, /* tp_getset */
616 1.1 christos 0, /* tp_base */
617 1.1 christos 0, /* tp_dict */
618 1.1 christos 0, /* tp_descr_get */
619 1.1 christos 0, /* tp_descr_set */
620 1.1 christos 0, /* tp_dictoffset */
621 1.1 christos 0, /* tp_init */
622 1.1 christos 0, /* tp_alloc */
623 };
624