arm, objdump: print obsolote warning when 26-bit set in instructions
[binutils-gdb.git] / gdb / python / py-instruction.c
blob7d775721ad6266c8f77c17e8b7c511acedd599a5
1 /* Python interface to instruction objects.
3 Copyright 2017-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 "py-instruction.h"
22 /* Python type object for the abstract gdb.Instruction class. This class
23 contains getters for four elements: "pc" (int), "data" (buffer), "decode"
24 (str) and "size" (int) that must be overridden by sub classes. */
26 PyTypeObject py_insn_type = {
27 PyVarObject_HEAD_INIT (NULL, 0)
30 /* Python instruction object. */
32 struct py_insn_obj {
33 PyObject_HEAD
36 /* Getter function for gdb.Instruction attributes. */
38 static PyObject *
39 py_insn_getter (PyObject *self, void *closure)
41 return PyErr_Format (PyExc_NotImplementedError, _("Not implemented."));
44 /* Instruction members. */
46 static gdb_PyGetSetDef py_insn_getset[] =
48 { "pc", py_insn_getter, NULL, "instruction address", NULL},
49 { "data", py_insn_getter, NULL, "instruction memory", NULL},
50 { "decoded", py_insn_getter, NULL, "decoded instruction", NULL},
51 { "size", py_insn_getter, NULL, "instruction size in bytes", NULL},
52 {NULL}
55 /* See py-instruction.h. */
57 PyTypeObject *
58 py_insn_get_insn_type ()
60 if (py_insn_type.tp_new == nullptr)
62 py_insn_type.tp_new = PyType_GenericNew;
63 py_insn_type.tp_flags = Py_TPFLAGS_DEFAULT;
64 py_insn_type.tp_basicsize = sizeof (py_insn_obj);
65 py_insn_type.tp_name = "gdb.Instruction";
66 py_insn_type.tp_doc = "GDB instruction object";
67 py_insn_type.tp_getset = py_insn_getset;
69 if (gdbpy_type_ready (&py_insn_type) < 0)
71 /* Reset the tp_new field so any subsequent calls to this
72 function will retry to make the type ready. */
73 py_insn_type.tp_new = nullptr;
74 return nullptr;
78 return &py_insn_type;
81 /* Sets up the gdb.Instruction type. */
83 static int CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION
84 gdbpy_initialize_instruction (void)
86 if (py_insn_get_insn_type () == nullptr)
87 return -1;
88 return 0;
91 GDBPY_INITIALIZE_FILE (gdbpy_initialize_instruction);