1 /* Python interface to symbols.
3 Copyright (C) 2008, 2009, 2010, 2011 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/>. */
22 #include "exceptions.h"
25 #include "python-internal.h"
28 typedef struct sympy_symbol_object {
30 /* The GDB symbol structure this object is wrapping. */
31 struct symbol *symbol;
32 /* A symbol object is associated with an objfile, so keep track with
33 doubly-linked list, rooted in the objfile. This lets us
34 invalidate the underlying struct symbol when the objfile is
36 struct sympy_symbol_object *prev;
37 struct sympy_symbol_object *next;
40 /* Require a valid symbol. All access to symbol_object->symbol should be
41 gated by this call. */
42 #define SYMPY_REQUIRE_VALID(symbol_obj, symbol) \
44 symbol = symbol_object_to_symbol (symbol_obj); \
47 PyErr_SetString (PyExc_RuntimeError, \
48 _("Symbol is invalid.")); \
53 static const struct objfile_data *sympy_objfile_data_key;
56 sympy_str (PyObject *self)
59 struct symbol *symbol = NULL;
61 SYMPY_REQUIRE_VALID (self, symbol);
63 result = PyString_FromString (SYMBOL_PRINT_NAME (symbol));
69 sympy_get_type (PyObject *self, void *closure)
71 struct symbol *symbol = NULL;
73 SYMPY_REQUIRE_VALID (self, symbol);
75 if (SYMBOL_TYPE (symbol) == NULL)
81 return type_to_type_object (SYMBOL_TYPE (symbol));
85 sympy_get_symtab (PyObject *self, void *closure)
87 struct symbol *symbol = NULL;
89 SYMPY_REQUIRE_VALID (self, symbol);
91 return symtab_to_symtab_object (SYMBOL_SYMTAB (symbol));
95 sympy_get_name (PyObject *self, void *closure)
97 struct symbol *symbol = NULL;
99 SYMPY_REQUIRE_VALID (self, symbol);
101 return PyString_FromString (SYMBOL_NATURAL_NAME (symbol));
105 sympy_get_linkage_name (PyObject *self, void *closure)
107 struct symbol *symbol = NULL;
109 SYMPY_REQUIRE_VALID (self, symbol);
111 return PyString_FromString (SYMBOL_LINKAGE_NAME (symbol));
115 sympy_get_print_name (PyObject *self, void *closure)
117 struct symbol *symbol = NULL;
119 SYMPY_REQUIRE_VALID (self, symbol);
121 return sympy_str (self);
125 sympy_get_addr_class (PyObject *self, void *closure)
127 struct symbol *symbol = NULL;
129 SYMPY_REQUIRE_VALID (self, symbol);
131 return PyInt_FromLong (SYMBOL_CLASS (symbol));
135 sympy_is_argument (PyObject *self, void *closure)
137 struct symbol *symbol = NULL;
139 SYMPY_REQUIRE_VALID (self, symbol);
141 return PyBool_FromLong (SYMBOL_IS_ARGUMENT (symbol));
145 sympy_is_constant (PyObject *self, void *closure)
147 struct symbol *symbol = NULL;
148 enum address_class class;
150 SYMPY_REQUIRE_VALID (self, symbol);
152 class = SYMBOL_CLASS (symbol);
154 return PyBool_FromLong (class == LOC_CONST || class == LOC_CONST_BYTES);
158 sympy_is_function (PyObject *self, void *closure)
160 struct symbol *symbol = NULL;
161 enum address_class class;
163 SYMPY_REQUIRE_VALID (self, symbol);
165 class = SYMBOL_CLASS (symbol);
167 return PyBool_FromLong (class == LOC_BLOCK);
171 sympy_is_variable (PyObject *self, void *closure)
173 struct symbol *symbol = NULL;
174 enum address_class class;
176 SYMPY_REQUIRE_VALID (self, symbol);
178 class = SYMBOL_CLASS (symbol);
180 return PyBool_FromLong (!SYMBOL_IS_ARGUMENT (symbol)
181 && (class == LOC_LOCAL || class == LOC_REGISTER
182 || class == LOC_STATIC || class == LOC_COMPUTED
183 || class == LOC_OPTIMIZED_OUT));
186 /* Implementation of gdb.Symbol.is_valid (self) -> Boolean.
187 Returns True if this Symbol still exists in GDB. */
190 sympy_is_valid (PyObject *self, PyObject *args)
192 struct symbol *symbol = NULL;
194 symbol = symbol_object_to_symbol (self);
201 /* Given a symbol, and a symbol_object that has previously been
202 allocated and initialized, populate the symbol_object with the
203 struct symbol data. Also, register the symbol_object life-cycle
204 with the life-cycle of the object file associated with this
205 symbol, if needed. */
207 set_symbol (symbol_object *obj, struct symbol *symbol)
209 obj->symbol = symbol;
211 if (SYMBOL_SYMTAB (symbol))
213 obj->next = objfile_data (SYMBOL_SYMTAB (symbol)->objfile,
214 sympy_objfile_data_key);
217 obj->next->prev = obj;
218 set_objfile_data (SYMBOL_SYMTAB (symbol)->objfile,
219 sympy_objfile_data_key, obj);
225 /* Create a new symbol object (gdb.Symbol) that encapsulates the struct
226 symbol object from GDB. */
228 symbol_to_symbol_object (struct symbol *sym)
230 symbol_object *sym_obj;
232 sym_obj = PyObject_New (symbol_object, &symbol_object_type);
234 set_symbol (sym_obj, sym);
236 return (PyObject *) sym_obj;
239 /* Return the symbol that is wrapped by this symbol object. */
241 symbol_object_to_symbol (PyObject *obj)
243 if (! PyObject_TypeCheck (obj, &symbol_object_type))
245 return ((symbol_object *) obj)->symbol;
249 sympy_dealloc (PyObject *obj)
251 symbol_object *sym_obj = (symbol_object *) obj;
254 sym_obj->prev->next = sym_obj->next;
255 else if (SYMBOL_SYMTAB (sym_obj->symbol))
257 set_objfile_data (SYMBOL_SYMTAB (sym_obj->symbol)->objfile,
258 sympy_objfile_data_key, sym_obj->next);
261 sym_obj->next->prev = sym_obj->prev;
262 sym_obj->symbol = NULL;
266 gdb.lookup_symbol (name [, block] [, domain]) -> (symbol, is_field_of_this)
267 A tuple with 2 elements is always returned. The first is the symbol
268 object or None, the second is a boolean with the value of
269 is_a_field_of_this (see comment in lookup_symbol_in_language). */
272 gdbpy_lookup_symbol (PyObject *self, PyObject *args, PyObject *kw)
274 int domain = VAR_DOMAIN, is_a_field_of_this = 0;
276 static char *keywords[] = { "name", "block", "domain", NULL };
277 struct symbol *symbol;
278 PyObject *block_obj = NULL, *ret_tuple, *sym_obj, *bool_obj;
279 const struct block *block = NULL;
281 if (! PyArg_ParseTupleAndKeywords (args, kw, "s|O!i", keywords, &name,
282 &block_object_type, &block_obj, &domain))
286 block = block_object_to_block (block_obj);
289 struct frame_info *selected_frame;
290 volatile struct gdb_exception except;
292 TRY_CATCH (except, RETURN_MASK_ALL)
294 selected_frame = get_selected_frame (_("No frame selected."));
295 block = get_frame_block (selected_frame, NULL);
297 GDB_PY_HANDLE_EXCEPTION (except);
300 symbol = lookup_symbol (name, block, domain, &is_a_field_of_this);
302 ret_tuple = PyTuple_New (2);
308 sym_obj = symbol_to_symbol_object (symbol);
311 Py_DECREF (ret_tuple);
320 PyTuple_SET_ITEM (ret_tuple, 0, sym_obj);
322 bool_obj = is_a_field_of_this? Py_True : Py_False;
323 Py_INCREF (bool_obj);
324 PyTuple_SET_ITEM (ret_tuple, 1, bool_obj);
330 gdb.lookup_global_symbol (name [, domain]) -> symbol or None. */
333 gdbpy_lookup_global_symbol (PyObject *self, PyObject *args, PyObject *kw)
335 int domain = VAR_DOMAIN;
337 static char *keywords[] = { "name", "domain", NULL };
338 struct symbol *symbol;
341 if (! PyArg_ParseTupleAndKeywords (args, kw, "s|i", keywords, &name,
345 symbol = lookup_symbol_global (name, NULL, domain);
349 sym_obj = symbol_to_symbol_object (symbol);
362 /* This function is called when an objfile is about to be freed.
363 Invalidate the symbol as further actions on the symbol would result
364 in bad data. All access to obj->symbol should be gated by
365 SYMPY_REQUIRE_VALID which will raise an exception on invalid
368 del_objfile_symbols (struct objfile *objfile, void *datum)
370 symbol_object *obj = datum;
373 symbol_object *next = obj->next;
384 gdbpy_initialize_symbols (void)
386 if (PyType_Ready (&symbol_object_type) < 0)
389 /* Register an objfile "free" callback so we can properly
390 invalidate symbol when an object file that is about to be
392 sympy_objfile_data_key
393 = register_objfile_data_with_cleanup (NULL, del_objfile_symbols);
395 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_UNDEF", LOC_UNDEF);
396 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_CONST", LOC_CONST);
397 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_STATIC", LOC_STATIC);
398 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_REGISTER", LOC_REGISTER);
399 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_ARG", LOC_ARG);
400 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_REF_ARG", LOC_REF_ARG);
401 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_LOCAL", LOC_LOCAL);
402 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_TYPEDEF", LOC_TYPEDEF);
403 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_LABEL", LOC_LABEL);
404 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_BLOCK", LOC_BLOCK);
405 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_CONST_BYTES",
407 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_UNRESOLVED",
409 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_OPTIMIZED_OUT",
411 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_COMPUTED", LOC_COMPUTED);
412 PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_REGPARM_ADDR",
414 PyModule_AddIntConstant (gdb_module, "SYMBOL_UNDEF_DOMAIN", UNDEF_DOMAIN);
415 PyModule_AddIntConstant (gdb_module, "SYMBOL_VAR_DOMAIN", VAR_DOMAIN);
416 PyModule_AddIntConstant (gdb_module, "SYMBOL_STRUCT_DOMAIN", STRUCT_DOMAIN);
417 PyModule_AddIntConstant (gdb_module, "SYMBOL_LABEL_DOMAIN", LABEL_DOMAIN);
418 PyModule_AddIntConstant (gdb_module, "SYMBOL_VARIABLES_DOMAIN",
420 PyModule_AddIntConstant (gdb_module, "SYMBOL_FUNCTIONS_DOMAIN",
422 PyModule_AddIntConstant (gdb_module, "SYMBOL_TYPES_DOMAIN", TYPES_DOMAIN);
424 Py_INCREF (&symbol_object_type);
425 PyModule_AddObject (gdb_module, "Symbol", (PyObject *) &symbol_object_type);
430 static PyGetSetDef symbol_object_getset[] = {
431 { "type", sympy_get_type, NULL,
432 "Type of the symbol.", NULL },
433 { "symtab", sympy_get_symtab, NULL,
434 "Symbol table in which the symbol appears.", NULL },
435 { "name", sympy_get_name, NULL,
436 "Name of the symbol, as it appears in the source code.", NULL },
437 { "linkage_name", sympy_get_linkage_name, NULL,
438 "Name of the symbol, as used by the linker (i.e., may be mangled).",
440 { "print_name", sympy_get_print_name, NULL,
441 "Name of the symbol in a form suitable for output.\n\
442 This is either name or linkage_name, depending on whether the user asked GDB\n\
443 to display demangled or mangled names.", NULL },
444 { "addr_class", sympy_get_addr_class, NULL, "Address class of the symbol." },
445 { "is_argument", sympy_is_argument, NULL,
446 "True if the symbol is an argument of a function." },
447 { "is_constant", sympy_is_constant, NULL,
448 "True if the symbol is a constant." },
449 { "is_function", sympy_is_function, NULL,
450 "True if the symbol is a function or method." },
451 { "is_variable", sympy_is_variable, NULL,
452 "True if the symbol is a variable." },
453 { NULL } /* Sentinel */
456 static PyMethodDef symbol_object_methods[] = {
457 { "is_valid", sympy_is_valid, METH_NOARGS,
458 "is_valid () -> Boolean.\n\
459 Return true if this symbol is valid, false if not." },
460 {NULL} /* Sentinel */
463 PyTypeObject symbol_object_type = {
464 PyObject_HEAD_INIT (NULL)
466 "gdb.Symbol", /*tp_name*/
467 sizeof (symbol_object), /*tp_basicsize*/
469 sympy_dealloc, /*tp_dealloc*/
476 0, /*tp_as_sequence*/
480 sympy_str, /*tp_str*/
484 Py_TPFLAGS_DEFAULT, /*tp_flags*/
485 "GDB symbol object", /*tp_doc */
488 0, /*tp_richcompare */
489 0, /*tp_weaklistoffset */
492 symbol_object_methods, /*tp_methods */
494 symbol_object_getset /*tp_getset */