Remove parameter sysret from linux_target_ops.get_syscall_trapinfo
[deliverable/binutils-gdb.git] / gdb / python / py-frame.c
CommitLineData
f8f6f20b
TJB
1/* Python interface to stack frames
2
618f726f 3 Copyright (C) 2008-2016 Free Software Foundation, Inc.
f8f6f20b
TJB
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20#include "defs.h"
21#include "charset.h"
22#include "block.h"
23#include "frame.h"
f8f6f20b
TJB
24#include "symtab.h"
25#include "stack.h"
26#include "value.h"
27#include "python-internal.h"
f3e9a817
PM
28#include "symfile.h"
29#include "objfiles.h"
5f3b99cf 30#include "user-regs.h"
f8f6f20b
TJB
31
32typedef struct {
33 PyObject_HEAD
34 struct frame_id frame_id;
35 struct gdbarch *gdbarch;
36
37 /* Marks that the FRAME_ID member actually holds the ID of the frame next
38 to this, and not this frames' ID itself. This is a hack to permit Python
39 frame objects which represent invalid frames (i.e., the last frame_info
40 in a corrupt stack). The problem arises from the fact that this code
41 relies on FRAME_ID to uniquely identify a frame, which is not always true
42 for the last "frame" in a corrupt stack (it can have a null ID, or the same
43 ID as the previous frame). Whenever get_prev_frame returns NULL, we
44 record the frame_id of the next frame and set FRAME_ID_IS_NEXT to 1. */
45 int frame_id_is_next;
46} frame_object;
47
48/* Require a valid frame. This must be called inside a TRY_CATCH, or
49 another context in which a gdb exception is allowed. */
50#define FRAPY_REQUIRE_VALID(frame_obj, frame) \
51 do { \
52 frame = frame_object_to_frame_info (frame_obj); \
53 if (frame == NULL) \
044c0f87 54 error (_("Frame is invalid.")); \
f8f6f20b
TJB
55 } while (0)
56
f8f6f20b
TJB
57/* Returns the frame_info object corresponding to the given Python Frame
58 object. If the frame doesn't exist anymore (the frame id doesn't
59 correspond to any frame in the inferior), returns NULL. */
60
cc72b2a2
KP
61struct frame_info *
62frame_object_to_frame_info (PyObject *obj)
f8f6f20b 63{
256458bc 64 frame_object *frame_obj = (frame_object *) obj;
f8f6f20b
TJB
65 struct frame_info *frame;
66
67 frame = frame_find_by_id (frame_obj->frame_id);
68 if (frame == NULL)
69 return NULL;
70
71 if (frame_obj->frame_id_is_next)
72 frame = get_prev_frame (frame);
73
74 return frame;
75}
76
77/* Called by the Python interpreter to obtain string representation
78 of the object. */
79
80static PyObject *
81frapy_str (PyObject *self)
82{
83 char *s;
f8f6f20b
TJB
84 PyObject *result;
85 struct ui_file *strfile;
86
87 strfile = mem_fileopen ();
88 fprint_frame_id (strfile, ((frame_object *) self)->frame_id);
759ef836 89 s = ui_file_xstrdup (strfile, NULL);
f8f6f20b
TJB
90 result = PyString_FromString (s);
91 xfree (s);
92
93 return result;
94}
95
96/* Implementation of gdb.Frame.is_valid (self) -> Boolean.
97 Returns True if the frame corresponding to the frame_id of this
98 object still exists in the inferior. */
99
100static PyObject *
101frapy_is_valid (PyObject *self, PyObject *args)
102{
76dce0be 103 struct frame_info *frame = NULL;
76dce0be 104
492d29ea 105 TRY
76dce0be 106 {
cc72b2a2 107 frame = frame_object_to_frame_info (self);
76dce0be 108 }
492d29ea
PA
109 CATCH (except, RETURN_MASK_ALL)
110 {
111 GDB_PY_HANDLE_EXCEPTION (except);
112 }
113 END_CATCH
f8f6f20b 114
f8f6f20b
TJB
115 if (frame == NULL)
116 Py_RETURN_FALSE;
117
118 Py_RETURN_TRUE;
119}
120
121/* Implementation of gdb.Frame.name (self) -> String.
122 Returns the name of the function corresponding to this frame. */
123
124static PyObject *
125frapy_name (PyObject *self, PyObject *args)
126{
127 struct frame_info *frame;
55b87a52 128 char *name = NULL;
f8f6f20b
TJB
129 enum language lang;
130 PyObject *result;
f8f6f20b 131
492d29ea 132 TRY
f8f6f20b 133 {
cc72b2a2 134 FRAPY_REQUIRE_VALID (self, frame);
f8f6f20b 135
e9e07ba6 136 find_frame_funname (frame, &name, &lang, NULL);
f8f6f20b 137 }
492d29ea
PA
138 CATCH (except, RETURN_MASK_ALL)
139 {
140 xfree (name);
141 GDB_PY_HANDLE_EXCEPTION (except);
142 }
143 END_CATCH
f8f6f20b
TJB
144
145 if (name)
55b87a52
KS
146 {
147 result = PyUnicode_Decode (name, strlen (name), host_charset (), NULL);
148 xfree (name);
149 }
f8f6f20b
TJB
150 else
151 {
152 result = Py_None;
153 Py_INCREF (Py_None);
154 }
155
156 return result;
157}
158
159/* Implementation of gdb.Frame.type (self) -> Integer.
160 Returns the frame type, namely one of the gdb.*_FRAME constants. */
161
162static PyObject *
163frapy_type (PyObject *self, PyObject *args)
164{
165 struct frame_info *frame;
166 enum frame_type type = NORMAL_FRAME;/* Initialize to appease gcc warning. */
f8f6f20b 167
492d29ea 168 TRY
f8f6f20b 169 {
cc72b2a2 170 FRAPY_REQUIRE_VALID (self, frame);
f8f6f20b
TJB
171
172 type = get_frame_type (frame);
173 }
492d29ea
PA
174 CATCH (except, RETURN_MASK_ALL)
175 {
176 GDB_PY_HANDLE_EXCEPTION (except);
177 }
178 END_CATCH
f8f6f20b
TJB
179
180 return PyInt_FromLong (type);
181}
182
bea883fd
SCR
183/* Implementation of gdb.Frame.architecture (self) -> gdb.Architecture.
184 Returns the frame's architecture as a gdb.Architecture object. */
185
186static PyObject *
187frapy_arch (PyObject *self, PyObject *args)
188{
189 struct frame_info *frame = NULL; /* Initialize to appease gcc warning. */
190 frame_object *obj = (frame_object *) self;
bea883fd 191
492d29ea 192 TRY
bea883fd
SCR
193 {
194 FRAPY_REQUIRE_VALID (self, frame);
195 }
492d29ea
PA
196 CATCH (except, RETURN_MASK_ALL)
197 {
198 GDB_PY_HANDLE_EXCEPTION (except);
199 }
200 END_CATCH
bea883fd
SCR
201
202 return gdbarch_to_arch_object (obj->gdbarch);
203}
204
f8f6f20b
TJB
205/* Implementation of gdb.Frame.unwind_stop_reason (self) -> Integer.
206 Returns one of the gdb.FRAME_UNWIND_* constants. */
207
208static PyObject *
209frapy_unwind_stop_reason (PyObject *self, PyObject *args)
210{
211 struct frame_info *frame = NULL; /* Initialize to appease gcc warning. */
f8f6f20b
TJB
212 enum unwind_stop_reason stop_reason;
213
492d29ea 214 TRY
f8f6f20b 215 {
cc72b2a2 216 FRAPY_REQUIRE_VALID (self, frame);
f8f6f20b 217 }
492d29ea
PA
218 CATCH (except, RETURN_MASK_ALL)
219 {
220 GDB_PY_HANDLE_EXCEPTION (except);
221 }
222 END_CATCH
f8f6f20b
TJB
223
224 stop_reason = get_frame_unwind_stop_reason (frame);
225
226 return PyInt_FromLong (stop_reason);
227}
228
229/* Implementation of gdb.Frame.pc (self) -> Long.
230 Returns the frame's resume address. */
231
232static PyObject *
233frapy_pc (PyObject *self, PyObject *args)
234{
235 CORE_ADDR pc = 0; /* Initialize to appease gcc warning. */
236 struct frame_info *frame;
f8f6f20b 237
492d29ea 238 TRY
f8f6f20b 239 {
cc72b2a2 240 FRAPY_REQUIRE_VALID (self, frame);
f8f6f20b
TJB
241
242 pc = get_frame_pc (frame);
243 }
492d29ea
PA
244 CATCH (except, RETURN_MASK_ALL)
245 {
246 GDB_PY_HANDLE_EXCEPTION (except);
247 }
248 END_CATCH
f8f6f20b 249
74aedc46 250 return gdb_py_long_from_ulongest (pc);
f8f6f20b
TJB
251}
252
5f3b99cf
SS
253/* Implementation of gdb.Frame.read_register (self, register) -> gdb.Value.
254 Returns the value of a register in this frame. */
255
256static PyObject *
257frapy_read_register (PyObject *self, PyObject *args)
258{
5f3b99cf
SS
259 const char *regnum_str;
260 struct value *val = NULL;
261
262 if (!PyArg_ParseTuple (args, "s", &regnum_str))
263 return NULL;
264
492d29ea 265 TRY
5f3b99cf
SS
266 {
267 struct frame_info *frame;
268 int regnum;
269
270 FRAPY_REQUIRE_VALID (self, frame);
271
272 regnum = user_reg_map_name_to_regnum (get_frame_arch (frame),
273 regnum_str,
274 strlen (regnum_str));
275 if (regnum >= 0)
276 val = value_of_register (regnum, frame);
277
278 if (val == NULL)
279 PyErr_SetString (PyExc_ValueError, _("Unknown register."));
280 }
492d29ea
PA
281 CATCH (except, RETURN_MASK_ALL)
282 {
283 GDB_PY_HANDLE_EXCEPTION (except);
284 }
285 END_CATCH
5f3b99cf
SS
286
287 return val == NULL ? NULL : value_to_value_object (val);
288}
289
f3e9a817
PM
290/* Implementation of gdb.Frame.block (self) -> gdb.Block.
291 Returns the frame's code block. */
292
293static PyObject *
294frapy_block (PyObject *self, PyObject *args)
295{
296 struct frame_info *frame;
3977b71f 297 const struct block *block = NULL, *fn_block;
f3e9a817 298
492d29ea 299 TRY
f3e9a817 300 {
cc72b2a2 301 FRAPY_REQUIRE_VALID (self, frame);
57126e4a 302 block = get_frame_block (frame, NULL);
f3e9a817 303 }
492d29ea
PA
304 CATCH (except, RETURN_MASK_ALL)
305 {
306 GDB_PY_HANDLE_EXCEPTION (except);
307 }
308 END_CATCH
f3e9a817 309
57126e4a
TT
310 for (fn_block = block;
311 fn_block != NULL && BLOCK_FUNCTION (fn_block) == NULL;
312 fn_block = BLOCK_SUPERBLOCK (fn_block))
313 ;
314
315 if (block == NULL || fn_block == NULL || BLOCK_FUNCTION (fn_block) == NULL)
f3e9a817
PM
316 {
317 PyErr_SetString (PyExc_RuntimeError,
1e1d6920 318 _("Cannot locate block for frame."));
f3e9a817
PM
319 return NULL;
320 }
321
322 if (block)
57126e4a 323 {
08be3fe3
DE
324 return block_to_block_object
325 (block, symbol_objfile (BLOCK_FUNCTION (fn_block)));
57126e4a 326 }
f3e9a817
PM
327
328 Py_RETURN_NONE;
329}
330
331
332/* Implementation of gdb.Frame.function (self) -> gdb.Symbol.
333 Returns the symbol for the function corresponding to this frame. */
334
335static PyObject *
336frapy_function (PyObject *self, PyObject *args)
337{
338 struct symbol *sym = NULL;
339 struct frame_info *frame;
f3e9a817 340
492d29ea 341 TRY
f3e9a817 342 {
cc72b2a2 343 FRAPY_REQUIRE_VALID (self, frame);
f3e9a817
PM
344
345 sym = find_pc_function (get_frame_address_in_block (frame));
346 }
492d29ea
PA
347 CATCH (except, RETURN_MASK_ALL)
348 {
349 GDB_PY_HANDLE_EXCEPTION (except);
350 }
351 END_CATCH
f3e9a817
PM
352
353 if (sym)
354 return symbol_to_symbol_object (sym);
355
356 Py_RETURN_NONE;
357}
358
f8f6f20b
TJB
359/* Convert a frame_info struct to a Python Frame object.
360 Sets a Python exception and returns NULL on error. */
361
595939de 362PyObject *
f8f6f20b
TJB
363frame_info_to_frame_object (struct frame_info *frame)
364{
365 frame_object *frame_obj;
366
367 frame_obj = PyObject_New (frame_object, &frame_object_type);
368 if (frame_obj == NULL)
6cbc7c3d 369 return NULL;
f8f6f20b 370
492d29ea 371 TRY
f8f6f20b 372 {
f8f6f20b 373
76dce0be
PM
374 /* Try to get the previous frame, to determine if this is the last frame
375 in a corrupt stack. If so, we need to store the frame_id of the next
376 frame and not of this one (which is possibly invalid). */
377 if (get_prev_frame (frame) == NULL
378 && get_frame_unwind_stop_reason (frame) != UNWIND_NO_REASON
379 && get_next_frame (frame) != NULL)
380 {
381 frame_obj->frame_id = get_frame_id (get_next_frame (frame));
382 frame_obj->frame_id_is_next = 1;
383 }
384 else
385 {
386 frame_obj->frame_id = get_frame_id (frame);
387 frame_obj->frame_id_is_next = 0;
388 }
389 frame_obj->gdbarch = get_frame_arch (frame);
390 }
492d29ea 391 CATCH (except, RETURN_MASK_ALL)
1efd7661
PM
392 {
393 Py_DECREF (frame_obj);
394 gdbpy_convert_exception (except);
395 return NULL;
396 }
492d29ea
PA
397 END_CATCH
398
595939de 399 return (PyObject *) frame_obj;
f8f6f20b
TJB
400}
401
402/* Implementation of gdb.Frame.older (self) -> gdb.Frame.
403 Returns the frame immediately older (outer) to this frame, or None if
404 there isn't one. */
405
406static PyObject *
407frapy_older (PyObject *self, PyObject *args)
408{
dcf87832 409 struct frame_info *frame, *prev = NULL;
f8f6f20b
TJB
410 PyObject *prev_obj = NULL; /* Initialize to appease gcc warning. */
411
492d29ea 412 TRY
f8f6f20b 413 {
cc72b2a2 414 FRAPY_REQUIRE_VALID (self, frame);
f8f6f20b
TJB
415
416 prev = get_prev_frame (frame);
f8f6f20b 417 }
492d29ea
PA
418 CATCH (except, RETURN_MASK_ALL)
419 {
420 GDB_PY_HANDLE_EXCEPTION (except);
421 }
422 END_CATCH
f8f6f20b 423
dcf87832
TT
424 if (prev)
425 prev_obj = (PyObject *) frame_info_to_frame_object (prev);
426 else
427 {
428 Py_INCREF (Py_None);
429 prev_obj = Py_None;
430 }
431
f8f6f20b
TJB
432 return prev_obj;
433}
434
435/* Implementation of gdb.Frame.newer (self) -> gdb.Frame.
436 Returns the frame immediately newer (inner) to this frame, or None if
437 there isn't one. */
438
439static PyObject *
440frapy_newer (PyObject *self, PyObject *args)
441{
dcf87832 442 struct frame_info *frame, *next = NULL;
f8f6f20b
TJB
443 PyObject *next_obj = NULL; /* Initialize to appease gcc warning. */
444
492d29ea 445 TRY
f8f6f20b 446 {
cc72b2a2 447 FRAPY_REQUIRE_VALID (self, frame);
f8f6f20b
TJB
448
449 next = get_next_frame (frame);
f8f6f20b 450 }
492d29ea
PA
451 CATCH (except, RETURN_MASK_ALL)
452 {
453 GDB_PY_HANDLE_EXCEPTION (except);
454 }
455 END_CATCH
f8f6f20b 456
dcf87832
TT
457 if (next)
458 next_obj = (PyObject *) frame_info_to_frame_object (next);
459 else
460 {
461 Py_INCREF (Py_None);
462 next_obj = Py_None;
463 }
464
f8f6f20b
TJB
465 return next_obj;
466}
467
f3e9a817
PM
468/* Implementation of gdb.Frame.find_sal (self) -> gdb.Symtab_and_line.
469 Returns the frame's symtab and line. */
470
471static PyObject *
472frapy_find_sal (PyObject *self, PyObject *args)
473{
474 struct frame_info *frame;
475 struct symtab_and_line sal;
f3e9a817
PM
476 PyObject *sal_obj = NULL; /* Initialize to appease gcc warning. */
477
492d29ea 478 TRY
f3e9a817 479 {
cc72b2a2 480 FRAPY_REQUIRE_VALID (self, frame);
f3e9a817
PM
481
482 find_frame_sal (frame, &sal);
483 sal_obj = symtab_and_line_to_sal_object (sal);
484 }
492d29ea
PA
485 CATCH (except, RETURN_MASK_ALL)
486 {
487 GDB_PY_HANDLE_EXCEPTION (except);
488 }
489 END_CATCH
f3e9a817
PM
490
491 return sal_obj;
492}
493
dc00d89f
PM
494/* Implementation of gdb.Frame.read_var_value (self, variable,
495 [block]) -> gdb.Value. If the optional block argument is provided
496 start the search from that block, otherwise search from the frame's
497 current block (determined by examining the resume address of the
498 frame). The variable argument must be a string or an instance of a
8dc78533
JK
499 gdb.Symbol. The block argument must be an instance of gdb.Block. Returns
500 NULL on error, with a python exception set. */
f8f6f20b
TJB
501static PyObject *
502frapy_read_var (PyObject *self, PyObject *args)
503{
504 struct frame_info *frame;
dc00d89f 505 PyObject *sym_obj, *block_obj = NULL;
f8f6f20b 506 struct symbol *var = NULL; /* gcc-4.3.2 false warning. */
63e43d3a 507 const struct block *block = NULL;
f8f6f20b 508 struct value *val = NULL;
f8f6f20b 509
dc00d89f 510 if (!PyArg_ParseTuple (args, "O|O", &sym_obj, &block_obj))
f8f6f20b
TJB
511 return NULL;
512
f3e9a817
PM
513 if (PyObject_TypeCheck (sym_obj, &symbol_object_type))
514 var = symbol_object_to_symbol (sym_obj);
515 else if (gdbpy_is_string (sym_obj))
f8f6f20b
TJB
516 {
517 char *var_name;
f8f6f20b 518 struct cleanup *cleanup;
f8f6f20b
TJB
519
520 var_name = python_string_to_target_string (sym_obj);
521 if (!var_name)
522 return NULL;
523 cleanup = make_cleanup (xfree, var_name);
524
dc00d89f
PM
525 if (block_obj)
526 {
527 block = block_object_to_block (block_obj);
528 if (!block)
529 {
530 PyErr_SetString (PyExc_RuntimeError,
531 _("Second argument must be block."));
af1c6971 532 do_cleanups (cleanup);
dc00d89f
PM
533 return NULL;
534 }
535 }
536
492d29ea 537 TRY
f8f6f20b 538 {
63e43d3a 539 struct block_symbol lookup_sym;
cc72b2a2 540 FRAPY_REQUIRE_VALID (self, frame);
f8f6f20b 541
dc00d89f 542 if (!block)
626e7282 543 block = get_frame_block (frame, NULL);
63e43d3a
PMR
544 lookup_sym = lookup_symbol (var_name, block, VAR_DOMAIN, NULL);
545 var = lookup_sym.symbol;
546 block = lookup_sym.block;
f8f6f20b 547 }
492d29ea 548 CATCH (except, RETURN_MASK_ALL)
af1c6971
TT
549 {
550 do_cleanups (cleanup);
f3300387
TT
551 gdbpy_convert_exception (except);
552 return NULL;
af1c6971 553 }
492d29ea 554 END_CATCH
f8f6f20b
TJB
555
556 if (!var)
557 {
558 PyErr_Format (PyExc_ValueError,
044c0f87 559 _("Variable '%s' not found."), var_name);
f8f6f20b
TJB
560 do_cleanups (cleanup);
561
562 return NULL;
563 }
564
565 do_cleanups (cleanup);
566 }
567 else
568 {
569 PyErr_SetString (PyExc_TypeError,
044c0f87 570 _("Argument must be a symbol or string."));
f8f6f20b
TJB
571 return NULL;
572 }
573
492d29ea 574 TRY
f8f6f20b 575 {
cc72b2a2 576 FRAPY_REQUIRE_VALID (self, frame);
f8f6f20b 577
63e43d3a 578 val = read_var_value (var, block, frame);
f8f6f20b 579 }
492d29ea
PA
580 CATCH (except, RETURN_MASK_ALL)
581 {
582 GDB_PY_HANDLE_EXCEPTION (except);
583 }
584 END_CATCH
f8f6f20b 585
dc00d89f 586 return value_to_value_object (val);
f8f6f20b
TJB
587}
588
f3e9a817
PM
589/* Select this frame. */
590
591static PyObject *
592frapy_select (PyObject *self, PyObject *args)
593{
594 struct frame_info *fi;
f3e9a817 595
492d29ea 596 TRY
f3e9a817 597 {
cc72b2a2 598 FRAPY_REQUIRE_VALID (self, fi);
f3e9a817
PM
599
600 select_frame (fi);
601 }
492d29ea
PA
602 CATCH (except, RETURN_MASK_ALL)
603 {
604 GDB_PY_HANDLE_EXCEPTION (except);
605 }
606 END_CATCH
f3e9a817
PM
607
608 Py_RETURN_NONE;
609}
610
d8e22779
TT
611/* Implementation of gdb.newest_frame () -> gdb.Frame.
612 Returns the newest frame object. */
613
614PyObject *
615gdbpy_newest_frame (PyObject *self, PyObject *args)
616{
dcf87832 617 struct frame_info *frame = NULL;
d8e22779 618
492d29ea 619 TRY
d8e22779
TT
620 {
621 frame = get_current_frame ();
d8e22779 622 }
492d29ea
PA
623 CATCH (except, RETURN_MASK_ALL)
624 {
625 GDB_PY_HANDLE_EXCEPTION (except);
626 }
627 END_CATCH
d8e22779 628
dcf87832 629 return frame_info_to_frame_object (frame);
d8e22779
TT
630}
631
f8f6f20b
TJB
632/* Implementation of gdb.selected_frame () -> gdb.Frame.
633 Returns the selected frame object. */
634
635PyObject *
636gdbpy_selected_frame (PyObject *self, PyObject *args)
637{
dcf87832 638 struct frame_info *frame = NULL;
f8f6f20b 639
492d29ea 640 TRY
f8f6f20b
TJB
641 {
642 frame = get_selected_frame ("No frame is currently selected.");
f8f6f20b 643 }
492d29ea
PA
644 CATCH (except, RETURN_MASK_ALL)
645 {
646 GDB_PY_HANDLE_EXCEPTION (except);
647 }
648 END_CATCH
f8f6f20b 649
dcf87832 650 return frame_info_to_frame_object (frame);
f8f6f20b
TJB
651}
652
653/* Implementation of gdb.stop_reason_string (Integer) -> String.
654 Return a string explaining the unwind stop reason. */
655
656PyObject *
657gdbpy_frame_stop_reason_string (PyObject *self, PyObject *args)
658{
659 int reason;
660 const char *str;
661
662 if (!PyArg_ParseTuple (args, "i", &reason))
663 return NULL;
664
2231f1fb 665 if (reason < UNWIND_FIRST || reason > UNWIND_LAST)
f8f6f20b 666 {
256458bc 667 PyErr_SetString (PyExc_ValueError,
044c0f87 668 _("Invalid frame stop reason."));
f8f6f20b
TJB
669 return NULL;
670 }
671
aead7601 672 str = unwind_stop_reason_to_string ((enum unwind_stop_reason) reason);
f8f6f20b
TJB
673 return PyUnicode_Decode (str, strlen (str), host_charset (), NULL);
674}
675
676/* Implements the equality comparison for Frame objects.
677 All other comparison operators will throw a TypeError Python exception,
678 as they aren't valid for frames. */
679
680static PyObject *
681frapy_richcompare (PyObject *self, PyObject *other, int op)
682{
18e8c3bc
TT
683 int result;
684
685 if (!PyObject_TypeCheck (other, &frame_object_type)
686 || (op != Py_EQ && op != Py_NE))
f8f6f20b 687 {
18e8c3bc
TT
688 Py_INCREF (Py_NotImplemented);
689 return Py_NotImplemented;
f8f6f20b
TJB
690 }
691
692 if (frame_id_eq (((frame_object *) self)->frame_id,
693 ((frame_object *) other)->frame_id))
18e8c3bc
TT
694 result = Py_EQ;
695 else
696 result = Py_NE;
f8f6f20b 697
18e8c3bc
TT
698 if (op == result)
699 Py_RETURN_TRUE;
f8f6f20b
TJB
700 Py_RETURN_FALSE;
701}
702
703/* Sets up the Frame API in the gdb module. */
704
999633ed 705int
f8f6f20b
TJB
706gdbpy_initialize_frames (void)
707{
6a1b1664 708 frame_object_type.tp_new = PyType_GenericNew;
f8f6f20b 709 if (PyType_Ready (&frame_object_type) < 0)
999633ed 710 return -1;
f8f6f20b 711
9a2b4c1b
MS
712 /* Note: These would probably be best exposed as class attributes of
713 Frame, but I don't know how to do it except by messing with the
714 type's dictionary. That seems too messy. */
999633ed
TT
715 if (PyModule_AddIntConstant (gdb_module, "NORMAL_FRAME", NORMAL_FRAME) < 0
716 || PyModule_AddIntConstant (gdb_module, "DUMMY_FRAME", DUMMY_FRAME) < 0
717 || PyModule_AddIntConstant (gdb_module, "INLINE_FRAME", INLINE_FRAME) < 0
718 || PyModule_AddIntConstant (gdb_module, "TAILCALL_FRAME",
719 TAILCALL_FRAME) < 0
720 || PyModule_AddIntConstant (gdb_module, "SIGTRAMP_FRAME",
721 SIGTRAMP_FRAME) < 0
722 || PyModule_AddIntConstant (gdb_module, "ARCH_FRAME", ARCH_FRAME) < 0
723 || PyModule_AddIntConstant (gdb_module, "SENTINEL_FRAME",
724 SENTINEL_FRAME) < 0)
725 return -1;
2231f1fb
KP
726
727#define SET(name, description) \
999633ed
TT
728 if (PyModule_AddIntConstant (gdb_module, "FRAME_"#name, name) < 0) \
729 return -1;
2231f1fb
KP
730#include "unwind_stop_reasons.def"
731#undef SET
f8f6f20b 732
aa36459a
TT
733 return gdb_pymodule_addobject (gdb_module, "Frame",
734 (PyObject *) &frame_object_type);
f8f6f20b
TJB
735}
736
737\f
738
739static PyMethodDef frame_object_methods[] = {
740 { "is_valid", frapy_is_valid, METH_NOARGS,
741 "is_valid () -> Boolean.\n\
742Return true if this frame is valid, false if not." },
743 { "name", frapy_name, METH_NOARGS,
744 "name () -> String.\n\
745Return the function name of the frame, or None if it can't be determined." },
746 { "type", frapy_type, METH_NOARGS,
747 "type () -> Integer.\n\
748Return the type of the frame." },
bea883fd
SCR
749 { "architecture", frapy_arch, METH_NOARGS,
750 "architecture () -> gdb.Architecture.\n\
751Return the architecture of the frame." },
f8f6f20b
TJB
752 { "unwind_stop_reason", frapy_unwind_stop_reason, METH_NOARGS,
753 "unwind_stop_reason () -> Integer.\n\
754Return the reason why it's not possible to find frames older than this." },
755 { "pc", frapy_pc, METH_NOARGS,
756 "pc () -> Long.\n\
757Return the frame's resume address." },
5f3b99cf
SS
758 { "read_register", frapy_read_register, METH_VARARGS,
759 "read_register (register_name) -> gdb.Value\n\
760Return the value of the register in the frame." },
f3e9a817
PM
761 { "block", frapy_block, METH_NOARGS,
762 "block () -> gdb.Block.\n\
763Return the frame's code block." },
764 { "function", frapy_function, METH_NOARGS,
765 "function () -> gdb.Symbol.\n\
766Returns the symbol for the function corresponding to this frame." },
f8f6f20b
TJB
767 { "older", frapy_older, METH_NOARGS,
768 "older () -> gdb.Frame.\n\
769Return the frame that called this frame." },
770 { "newer", frapy_newer, METH_NOARGS,
771 "newer () -> gdb.Frame.\n\
772Return the frame called by this frame." },
f3e9a817
PM
773 { "find_sal", frapy_find_sal, METH_NOARGS,
774 "find_sal () -> gdb.Symtab_and_line.\n\
775Return the frame's symtab and line." },
f8f6f20b
TJB
776 { "read_var", frapy_read_var, METH_VARARGS,
777 "read_var (variable) -> gdb.Value.\n\
778Return the value of the variable in this frame." },
f3e9a817
PM
779 { "select", frapy_select, METH_NOARGS,
780 "Select this frame as the user's current frame." },
f8f6f20b
TJB
781 {NULL} /* Sentinel */
782};
783
f0823d2c 784PyTypeObject frame_object_type = {
9a27f2c6 785 PyVarObject_HEAD_INIT (NULL, 0)
f8f6f20b
TJB
786 "gdb.Frame", /* tp_name */
787 sizeof (frame_object), /* tp_basicsize */
788 0, /* tp_itemsize */
789 0, /* tp_dealloc */
790 0, /* tp_print */
791 0, /* tp_getattr */
792 0, /* tp_setattr */
793 0, /* tp_compare */
794 0, /* tp_repr */
795 0, /* tp_as_number */
796 0, /* tp_as_sequence */
797 0, /* tp_as_mapping */
798 0, /* tp_hash */
799 0, /* tp_call */
800 frapy_str, /* tp_str */
801 0, /* tp_getattro */
802 0, /* tp_setattro */
803 0, /* tp_as_buffer */
804 Py_TPFLAGS_DEFAULT, /* tp_flags */
805 "GDB frame object", /* tp_doc */
806 0, /* tp_traverse */
807 0, /* tp_clear */
808 frapy_richcompare, /* tp_richcompare */
809 0, /* tp_weaklistoffset */
810 0, /* tp_iter */
811 0, /* tp_iternext */
812 frame_object_methods, /* tp_methods */
813 0, /* tp_members */
814 0, /* tp_getset */
815 0, /* tp_base */
816 0, /* tp_dict */
817 0, /* tp_descr_get */
818 0, /* tp_descr_set */
819 0, /* tp_dictoffset */
820 0, /* tp_init */
821 0, /* tp_alloc */
f8f6f20b 822};
This page took 0.761986 seconds and 4 git commands to generate.