gdb/infrun.h - gdb

Data types defined

Macros defined

Source code

  1. /* Copyright (C) 1986-2015 Free Software Foundation, Inc.

  2.    This file is part of GDB.

  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 3 of the License, or
  6.    (at your option) any later version.

  7.    This program is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.    GNU General Public License for more details.

  11.    You should have received a copy of the GNU General Public License
  12.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  13. #ifndef INFRUN_H
  14. #define INFRUN_H 1

  15. #include "symtab.h"

  16. struct target_waitstatus;
  17. struct frame_info;
  18. struct address_space;

  19. /* True if we are debugging run control.  */
  20. extern unsigned int debug_infrun;

  21. /* True if we are debugging displaced stepping.  */
  22. extern int debug_displaced;

  23. /* Nonzero if we want to give control to the user when we're notified
  24.    of shared library events by the dynamic linker.  */
  25. extern int stop_on_solib_events;

  26. /* Are we simulating synchronous execution? This is used in async gdb
  27.    to implement the 'run', 'continue' etc commands, which will not
  28.    redisplay the prompt until the execution is actually over.  */
  29. extern int sync_execution;

  30. /* True if execution commands resume all threads of all processes by
  31.    default; otherwise, resume only threads of the current inferior
  32.    process.  */
  33. extern int sched_multi;

  34. /* When set, stop the 'step' command if we enter a function which has
  35.    no line number information.  The normal behavior is that we step
  36.    over such function.  */
  37. extern int step_stop_if_no_debug;

  38. /* If set, the inferior should be controlled in non-stop mode.  In
  39.    this mode, each thread is controlled independently.  Execution
  40.    commands apply only to the selected thread by default, and stop
  41.    events stop only the thread that had the event -- the other threads
  42.    are kept running freely.  */
  43. extern int non_stop;

  44. /* When set (default), the target should attempt to disable the
  45.    operating system's address space randomization feature when
  46.    starting an inferior.  */
  47. extern int disable_randomization;

  48. /* Reverse execution.  */
  49. enum exec_direction_kind
  50.   {
  51.     EXEC_FORWARD,
  52.     EXEC_REVERSE
  53.   };

  54. /* The current execution direction.  This should only be set to enum
  55.    exec_direction_kind values.  It is only an int to make it
  56.    compatible with make_cleanup_restore_integer.  */
  57. extern int execution_direction;

  58. /* Save register contents here when executing a "finish" command or
  59.    are about to pop a stack dummy frame, if-and-only-if
  60.    proceed_to_finish is set.  Thus this contains the return value from
  61.    the called function (assuming values are returned in a
  62.    register).  */
  63. extern struct regcache *stop_registers;

  64. extern void start_remote (int from_tty);

  65. /* Clear out all variables saying what to do when inferior is
  66.    continued or steppedFirst do this, then set the ones you want,
  67.    then call `proceed'.  STEP indicates whether we're preparing for a
  68.    step/stepi command.  */
  69. extern void clear_proceed_status (int step);

  70. extern void proceed (CORE_ADDR, enum gdb_signal, int);

  71. /* The `resume' routine should only be called in special circumstances.
  72.    Normally, use `proceed', which handles a lot of bookkeeping.  */
  73. extern void resume (int, enum gdb_signal);

  74. /* Return a ptid representing the set of threads that we will proceed,
  75.    in the perspective of the user/frontend.  */
  76. extern ptid_t user_visible_resume_ptid (int step);

  77. extern void wait_for_inferior (void);

  78. extern void normal_stop (void);

  79. extern void get_last_target_status (ptid_t *ptid,
  80.                                     struct target_waitstatus *status);

  81. extern void prepare_for_detach (void);

  82. extern void fetch_inferior_event (void *);

  83. extern void init_wait_for_inferior (void);

  84. extern void insert_step_resume_breakpoint_at_sal (struct gdbarch *,
  85.                                                   struct symtab_and_line ,
  86.                                                   struct frame_id);

  87. /* Returns true if we're trying to step past the instruction at
  88.    ADDRESS in ASPACE.  */
  89. extern int stepping_past_instruction_at (struct address_space *aspace,
  90.                                          CORE_ADDR address);

  91. /* Returns true if we're trying to step past an instruction that
  92.    triggers a non-steppable watchpoint.  */
  93. extern int stepping_past_nonsteppable_watchpoint (void);

  94. extern void set_step_info (struct frame_info *frame,
  95.                            struct symtab_and_line sal);

  96. /* Several print_*_reason helper functions to print why the inferior
  97.    has stopped to the passed in UIOUT.  */

  98. /* Signal received, print why the inferior has stopped.  */
  99. extern void print_signal_received_reason (struct ui_out *uiout,
  100.                                           enum gdb_signal siggnal);

  101. /* Print why the inferior has stopped.  We are done with a
  102.    step/next/si/ni command, print why the inferior has stopped.  */
  103. extern void print_end_stepping_range_reason (struct ui_out *uiout);

  104. /* The inferior was terminated by a signal, print why it stopped.  */
  105. extern void print_signal_exited_reason (struct ui_out *uiout,
  106.                                         enum gdb_signal siggnal);

  107. /* The inferior program is finished, print why it stopped.  */
  108. extern void print_exited_reason (struct ui_out *uiout, int exitstatus);

  109. /* Reverse execution: target ran out of history info, print why the
  110.    inferior has stopped.  */
  111. extern void print_no_history_reason (struct ui_out *uiout);

  112. extern void print_stop_event (struct target_waitstatus *ws);

  113. extern int signal_stop_state (int);

  114. extern int signal_print_state (int);

  115. extern int signal_pass_state (int);

  116. extern int signal_stop_update (int, int);

  117. extern int signal_print_update (int, int);

  118. extern int signal_pass_update (int, int);

  119. extern void update_signals_program_target (void);

  120. /* Clear the convenience variables associated with the exit of the
  121.    inferior.  Currently, those variables are $_exitcode and
  122.    $_exitsignal.  */
  123. extern void clear_exit_convenience_vars (void);

  124. /* Dump LEN bytes at BUF in hex to FILE, followed by a newline.  */
  125. extern void displaced_step_dump_bytes (struct ui_file *file,
  126.                                        const gdb_byte *buf, size_t len);

  127. extern struct displaced_step_closure *get_displaced_step_closure_by_addr
  128.     (CORE_ADDR addr);

  129. extern void update_observer_mode (void);

  130. extern void signal_catch_update (const unsigned int *);

  131. /* In some circumstances we allow a command to specify a numeric
  132.    signal.  The idea is to keep these circumstances limited so that
  133.    users (and scripts) develop portable habits.  For comparison,
  134.    POSIX.2 `kill' requires that 1,2,3,6,9,14, and 15 work (and using a
  135.    numeric signal at all is obsolescent.  We are slightly more lenient
  136.    and allow 1-15 which should match host signal numbers on most
  137.    systems.  Use of symbolic signal names is strongly encouraged.  */
  138. enum gdb_signal gdb_signal_from_command (int num);

  139. #endif /* INFRUN_H */