HomeSort by: relevance | last modified time | path
    Searched defs:stop_pc (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/
linux-nat.h 253 CORE_ADDR stop_pc = 0; member in struct:lwp_info
gdbthread.h 217 calling stop_pc.reset() (see thread_info::set_executing()).
221 std::optional<CORE_ADDR> stop_pc; member in struct:thread_suspend_state
329 is true also clears the thread's stop_pc. */
366 known that stop_pc has a value. If this function is being used in a
367 situation where a thread may not have had a stop_pc assigned, then
368 stop_pc_p() can be used to check if the stop_pc is defined. */
370 CORE_ADDR stop_pc () const function in class:thread_info
372 gdb_assert (m_suspend.stop_pc.has_value ());
373 return *m_suspend.stop_pc;
378 void set_stop_pc (CORE_ADDR stop_pc)
    [all...]
infrun.c 3652 && pc == cur_thr->stop_pc ()
4073 if (pc != tp->stop_pc ())
4077 paddress (gdbarch, tp->stop_pc ()),
5151 ecs->event_thread->stop_pc (),
5186 find_pc_partial_function_sym (ecs->event_thread->stop_pc (),
5562 infrun_debug_printf ("saved stop_pc=%s for %s "
5565 t->stop_pc ()),
6191 ecs->event_thread->stop_pc (),
6385 ecs->event_thread->stop_pc (),
6508 /* Note we can't read registers yet (the stop_pc), because w
7697 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
7787 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
7854 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
8012 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
8227 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
8324 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
linux-nat.h 253 CORE_ADDR stop_pc = 0; member in struct:lwp_info
gdbthread.h 217 calling stop_pc.reset() (see thread_info::set_executing()).
221 std::optional<CORE_ADDR> stop_pc; member in struct:thread_suspend_state
329 is true also clears the thread's stop_pc. */
366 known that stop_pc has a value. If this function is being used in a
367 situation where a thread may not have had a stop_pc assigned, then
368 stop_pc_p() can be used to check if the stop_pc is defined. */
370 CORE_ADDR stop_pc () const function in class:thread_info
372 gdb_assert (m_suspend.stop_pc.has_value ());
373 return *m_suspend.stop_pc;
378 void set_stop_pc (CORE_ADDR stop_pc)
    [all...]
infrun.c 3647 && pc == cur_thr->stop_pc ()
4068 if (pc != tp->stop_pc ())
4072 paddress (gdbarch, tp->stop_pc ()),
5146 ecs->event_thread->stop_pc (),
5181 find_pc_partial_function_sym (ecs->event_thread->stop_pc (),
5557 infrun_debug_printf ("saved stop_pc=%s for %s "
5560 t->stop_pc ()),
6186 ecs->event_thread->stop_pc (),
6380 ecs->event_thread->stop_pc (),
6503 /* Note we can't read registers yet (the stop_pc), because w
7692 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
7782 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
7849 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
8007 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
8194 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
8290 CORE_ADDR stop_pc = ecs->event_thread->stop_pc (); local
    [all...]
  /src/external/gpl3/gdb/dist/gdbserver/
linux-low.h 513 any required STOP_PC adjustment has already been propagated to
847 CORE_ADDR stop_pc = 0; member in struct:lwp_info
linux-low.cc 330 CORE_ADDR pc = lwp->stop_pc;
917 lwp->stop_pc = pc;
1679 if (pc != lp->stop_pc)
1947 tpoint_related_event |= tracepoint_finished_step (tinfo, lwp->stop_pc);
1949 tpoint_related_event |= handle_tracepoint_bkpts (tinfo, lwp->stop_pc);
1953 tpoint_related_event |= tracepoint_was_hit (tinfo, lwp->stop_pc);
1985 return fast_tracepoint_collecting (thread_area, lwp->stop_pc, status);
2053 && (status.adjusted_insn_addr <= lwp->stop_pc
2054 && lwp->stop_pc < status.adjusted_insn_addr_end))
2070 && (uintptr_t) info.si_addr == lwp->stop_pc)
3079 CORE_ADDR stop_pc = event_child->stop_pc; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbserver/
linux-low.h 513 any required STOP_PC adjustment has already been propagated to
844 CORE_ADDR stop_pc = 0; member in struct:lwp_info
linux-low.cc 331 CORE_ADDR pc = lwp->stop_pc;
919 lwp->stop_pc = pc;
1682 if (pc != lp->stop_pc)
1950 tpoint_related_event |= tracepoint_finished_step (tinfo, lwp->stop_pc);
1952 tpoint_related_event |= handle_tracepoint_bkpts (tinfo, lwp->stop_pc);
1956 tpoint_related_event |= tracepoint_was_hit (tinfo, lwp->stop_pc);
1988 return fast_tracepoint_collecting (thread_area, lwp->stop_pc, status);
2056 && (status.adjusted_insn_addr <= lwp->stop_pc
2057 && lwp->stop_pc < status.adjusted_insn_addr_end))
2073 && (uintptr_t) info.si_addr == lwp->stop_pc)
3086 CORE_ADDR stop_pc = event_child->stop_pc; local
    [all...]

Completed in 130 milliseconds