ptid_t
debug_target::wait (ptid_t arg0, struct target_waitstatus *arg1, target_wait_flags arg2)
{
- ptid_t result;
gdb_printf (gdb_stdlog, "-> %s->wait (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->wait (arg0, arg1, arg2);
+ ptid_t result
+ = this->beneath ()->wait (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->wait (", this->beneath ()->shortname ());
target_debug_print_ptid_t (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::insert_breakpoint (struct gdbarch *arg0, struct bp_target_info *arg1)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->insert_breakpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->insert_breakpoint (arg0, arg1);
+ int result
+ = this->beneath ()->insert_breakpoint (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->insert_breakpoint (", this->beneath ()->shortname ());
target_debug_print_struct_gdbarch_p (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::remove_breakpoint (struct gdbarch *arg0, struct bp_target_info *arg1, enum remove_bp_reason arg2)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->remove_breakpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->remove_breakpoint (arg0, arg1, arg2);
+ int result
+ = this->beneath ()->remove_breakpoint (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->remove_breakpoint (", this->beneath ()->shortname ());
target_debug_print_struct_gdbarch_p (arg0);
gdb_puts (", ", gdb_stdlog);
bool
debug_target::stopped_by_sw_breakpoint ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->stopped_by_sw_breakpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->stopped_by_sw_breakpoint ();
+ bool result
+ = this->beneath ()->stopped_by_sw_breakpoint ();
gdb_printf (gdb_stdlog, "<- %s->stopped_by_sw_breakpoint (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::supports_stopped_by_sw_breakpoint ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_stopped_by_sw_breakpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_stopped_by_sw_breakpoint ();
+ bool result
+ = this->beneath ()->supports_stopped_by_sw_breakpoint ();
gdb_printf (gdb_stdlog, "<- %s->supports_stopped_by_sw_breakpoint (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::stopped_by_hw_breakpoint ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->stopped_by_hw_breakpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->stopped_by_hw_breakpoint ();
+ bool result
+ = this->beneath ()->stopped_by_hw_breakpoint ();
gdb_printf (gdb_stdlog, "<- %s->stopped_by_hw_breakpoint (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::supports_stopped_by_hw_breakpoint ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_stopped_by_hw_breakpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_stopped_by_hw_breakpoint ();
+ bool result
+ = this->beneath ()->supports_stopped_by_hw_breakpoint ();
gdb_printf (gdb_stdlog, "<- %s->supports_stopped_by_hw_breakpoint (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
int
debug_target::can_use_hw_breakpoint (enum bptype arg0, int arg1, int arg2)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->can_use_hw_breakpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->can_use_hw_breakpoint (arg0, arg1, arg2);
+ int result
+ = this->beneath ()->can_use_hw_breakpoint (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->can_use_hw_breakpoint (", this->beneath ()->shortname ());
target_debug_print_enum_bptype (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::ranged_break_num_registers ()
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->ranged_break_num_registers (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->ranged_break_num_registers ();
+ int result
+ = this->beneath ()->ranged_break_num_registers ();
gdb_printf (gdb_stdlog, "<- %s->ranged_break_num_registers (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_int (result);
int
debug_target::insert_hw_breakpoint (struct gdbarch *arg0, struct bp_target_info *arg1)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->insert_hw_breakpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->insert_hw_breakpoint (arg0, arg1);
+ int result
+ = this->beneath ()->insert_hw_breakpoint (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->insert_hw_breakpoint (", this->beneath ()->shortname ());
target_debug_print_struct_gdbarch_p (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::remove_hw_breakpoint (struct gdbarch *arg0, struct bp_target_info *arg1)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->remove_hw_breakpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->remove_hw_breakpoint (arg0, arg1);
+ int result
+ = this->beneath ()->remove_hw_breakpoint (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->remove_hw_breakpoint (", this->beneath ()->shortname ());
target_debug_print_struct_gdbarch_p (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::remove_watchpoint (CORE_ADDR arg0, int arg1, enum target_hw_bp_type arg2, struct expression *arg3)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->remove_watchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->remove_watchpoint (arg0, arg1, arg2, arg3);
+ int result
+ = this->beneath ()->remove_watchpoint (arg0, arg1, arg2, arg3);
gdb_printf (gdb_stdlog, "<- %s->remove_watchpoint (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::insert_watchpoint (CORE_ADDR arg0, int arg1, enum target_hw_bp_type arg2, struct expression *arg3)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->insert_watchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->insert_watchpoint (arg0, arg1, arg2, arg3);
+ int result
+ = this->beneath ()->insert_watchpoint (arg0, arg1, arg2, arg3);
gdb_printf (gdb_stdlog, "<- %s->insert_watchpoint (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::insert_mask_watchpoint (CORE_ADDR arg0, CORE_ADDR arg1, enum target_hw_bp_type arg2)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->insert_mask_watchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->insert_mask_watchpoint (arg0, arg1, arg2);
+ int result
+ = this->beneath ()->insert_mask_watchpoint (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->insert_mask_watchpoint (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::remove_mask_watchpoint (CORE_ADDR arg0, CORE_ADDR arg1, enum target_hw_bp_type arg2)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->remove_mask_watchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->remove_mask_watchpoint (arg0, arg1, arg2);
+ int result
+ = this->beneath ()->remove_mask_watchpoint (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->remove_mask_watchpoint (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);
bool
debug_target::stopped_by_watchpoint ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->stopped_by_watchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->stopped_by_watchpoint ();
+ bool result
+ = this->beneath ()->stopped_by_watchpoint ();
gdb_printf (gdb_stdlog, "<- %s->stopped_by_watchpoint (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::have_steppable_watchpoint ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->have_steppable_watchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->have_steppable_watchpoint ();
+ bool result
+ = this->beneath ()->have_steppable_watchpoint ();
gdb_printf (gdb_stdlog, "<- %s->have_steppable_watchpoint (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::stopped_data_address (CORE_ADDR *arg0)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->stopped_data_address (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->stopped_data_address (arg0);
+ bool result
+ = this->beneath ()->stopped_data_address (arg0);
gdb_printf (gdb_stdlog, "<- %s->stopped_data_address (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR_p (arg0);
gdb_puts (") = ", gdb_stdlog);
bool
debug_target::watchpoint_addr_within_range (CORE_ADDR arg0, CORE_ADDR arg1, int arg2)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->watchpoint_addr_within_range (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->watchpoint_addr_within_range (arg0, arg1, arg2);
+ bool result
+ = this->beneath ()->watchpoint_addr_within_range (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->watchpoint_addr_within_range (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::region_ok_for_hw_watchpoint (CORE_ADDR arg0, int arg1)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->region_ok_for_hw_watchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->region_ok_for_hw_watchpoint (arg0, arg1);
+ int result
+ = this->beneath ()->region_ok_for_hw_watchpoint (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->region_ok_for_hw_watchpoint (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);
bool
debug_target::can_accel_watchpoint_condition (CORE_ADDR arg0, int arg1, int arg2, struct expression *arg3)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->can_accel_watchpoint_condition (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->can_accel_watchpoint_condition (arg0, arg1, arg2, arg3);
+ bool result
+ = this->beneath ()->can_accel_watchpoint_condition (arg0, arg1, arg2, arg3);
gdb_printf (gdb_stdlog, "<- %s->can_accel_watchpoint_condition (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::masked_watch_num_registers (CORE_ADDR arg0, CORE_ADDR arg1)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->masked_watch_num_registers (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->masked_watch_num_registers (arg0, arg1);
+ int result
+ = this->beneath ()->masked_watch_num_registers (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->masked_watch_num_registers (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::can_do_single_step ()
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->can_do_single_step (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->can_do_single_step ();
+ int result
+ = this->beneath ()->can_do_single_step ();
gdb_printf (gdb_stdlog, "<- %s->can_do_single_step (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_int (result);
bool
debug_target::supports_terminal_ours ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_terminal_ours (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_terminal_ours ();
+ bool result
+ = this->beneath ()->supports_terminal_ours ();
gdb_printf (gdb_stdlog, "<- %s->supports_terminal_ours (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
int
debug_target::insert_fork_catchpoint (int arg0)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->insert_fork_catchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->insert_fork_catchpoint (arg0);
+ int result
+ = this->beneath ()->insert_fork_catchpoint (arg0);
gdb_printf (gdb_stdlog, "<- %s->insert_fork_catchpoint (", this->beneath ()->shortname ());
target_debug_print_int (arg0);
gdb_puts (") = ", gdb_stdlog);
int
debug_target::remove_fork_catchpoint (int arg0)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->remove_fork_catchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->remove_fork_catchpoint (arg0);
+ int result
+ = this->beneath ()->remove_fork_catchpoint (arg0);
gdb_printf (gdb_stdlog, "<- %s->remove_fork_catchpoint (", this->beneath ()->shortname ());
target_debug_print_int (arg0);
gdb_puts (") = ", gdb_stdlog);
int
debug_target::insert_vfork_catchpoint (int arg0)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->insert_vfork_catchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->insert_vfork_catchpoint (arg0);
+ int result
+ = this->beneath ()->insert_vfork_catchpoint (arg0);
gdb_printf (gdb_stdlog, "<- %s->insert_vfork_catchpoint (", this->beneath ()->shortname ());
target_debug_print_int (arg0);
gdb_puts (") = ", gdb_stdlog);
int
debug_target::remove_vfork_catchpoint (int arg0)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->remove_vfork_catchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->remove_vfork_catchpoint (arg0);
+ int result
+ = this->beneath ()->remove_vfork_catchpoint (arg0);
gdb_printf (gdb_stdlog, "<- %s->remove_vfork_catchpoint (", this->beneath ()->shortname ());
target_debug_print_int (arg0);
gdb_puts (") = ", gdb_stdlog);
int
debug_target::insert_exec_catchpoint (int arg0)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->insert_exec_catchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->insert_exec_catchpoint (arg0);
+ int result
+ = this->beneath ()->insert_exec_catchpoint (arg0);
gdb_printf (gdb_stdlog, "<- %s->insert_exec_catchpoint (", this->beneath ()->shortname ());
target_debug_print_int (arg0);
gdb_puts (") = ", gdb_stdlog);
int
debug_target::remove_exec_catchpoint (int arg0)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->remove_exec_catchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->remove_exec_catchpoint (arg0);
+ int result
+ = this->beneath ()->remove_exec_catchpoint (arg0);
gdb_printf (gdb_stdlog, "<- %s->remove_exec_catchpoint (", this->beneath ()->shortname ());
target_debug_print_int (arg0);
gdb_puts (") = ", gdb_stdlog);
int
debug_target::set_syscall_catchpoint (int arg0, bool arg1, int arg2, gdb::array_view<const int> arg3)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->set_syscall_catchpoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->set_syscall_catchpoint (arg0, arg1, arg2, arg3);
+ int result
+ = this->beneath ()->set_syscall_catchpoint (arg0, arg1, arg2, arg3);
gdb_printf (gdb_stdlog, "<- %s->set_syscall_catchpoint (", this->beneath ()->shortname ());
target_debug_print_int (arg0);
gdb_puts (", ", gdb_stdlog);
bool
debug_target::thread_alive (ptid_t arg0)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->thread_alive (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->thread_alive (arg0);
+ bool result
+ = this->beneath ()->thread_alive (arg0);
gdb_printf (gdb_stdlog, "<- %s->thread_alive (", this->beneath ()->shortname ());
target_debug_print_ptid_t (arg0);
gdb_puts (") = ", gdb_stdlog);
std::string
debug_target::pid_to_str (ptid_t arg0)
{
- std::string result;
gdb_printf (gdb_stdlog, "-> %s->pid_to_str (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->pid_to_str (arg0);
+ std::string result
+ = this->beneath ()->pid_to_str (arg0);
gdb_printf (gdb_stdlog, "<- %s->pid_to_str (", this->beneath ()->shortname ());
target_debug_print_ptid_t (arg0);
gdb_puts (") = ", gdb_stdlog);
const char *
debug_target::extra_thread_info (thread_info *arg0)
{
- const char * result;
gdb_printf (gdb_stdlog, "-> %s->extra_thread_info (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->extra_thread_info (arg0);
+ const char * result
+ = this->beneath ()->extra_thread_info (arg0);
gdb_printf (gdb_stdlog, "<- %s->extra_thread_info (", this->beneath ()->shortname ());
target_debug_print_thread_info_p (arg0);
gdb_puts (") = ", gdb_stdlog);
const char *
debug_target::thread_name (thread_info *arg0)
{
- const char * result;
gdb_printf (gdb_stdlog, "-> %s->thread_name (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->thread_name (arg0);
+ const char * result
+ = this->beneath ()->thread_name (arg0);
gdb_printf (gdb_stdlog, "<- %s->thread_name (", this->beneath ()->shortname ());
target_debug_print_thread_info_p (arg0);
gdb_puts (") = ", gdb_stdlog);
thread_info *
debug_target::thread_handle_to_thread_info (const gdb_byte *arg0, int arg1, inferior *arg2)
{
- thread_info * result;
gdb_printf (gdb_stdlog, "-> %s->thread_handle_to_thread_info (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->thread_handle_to_thread_info (arg0, arg1, arg2);
+ thread_info * result
+ = this->beneath ()->thread_handle_to_thread_info (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->thread_handle_to_thread_info (", this->beneath ()->shortname ());
target_debug_print_const_gdb_byte_p (arg0);
gdb_puts (", ", gdb_stdlog);
gdb::byte_vector
debug_target::thread_info_to_thread_handle (struct thread_info *arg0)
{
- gdb::byte_vector result;
gdb_printf (gdb_stdlog, "-> %s->thread_info_to_thread_handle (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->thread_info_to_thread_handle (arg0);
+ gdb::byte_vector result
+ = this->beneath ()->thread_info_to_thread_handle (arg0);
gdb_printf (gdb_stdlog, "<- %s->thread_info_to_thread_handle (", this->beneath ()->shortname ());
target_debug_print_struct_thread_info_p (arg0);
gdb_puts (") = ", gdb_stdlog);
const char *
debug_target::pid_to_exec_file (int arg0)
{
- const char * result;
gdb_printf (gdb_stdlog, "-> %s->pid_to_exec_file (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->pid_to_exec_file (arg0);
+ const char * result
+ = this->beneath ()->pid_to_exec_file (arg0);
gdb_printf (gdb_stdlog, "<- %s->pid_to_exec_file (", this->beneath ()->shortname ());
target_debug_print_int (arg0);
gdb_puts (") = ", gdb_stdlog);
const target_section_table *
debug_target::get_section_table ()
{
- const target_section_table * result;
gdb_printf (gdb_stdlog, "-> %s->get_section_table (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_section_table ();
+ const target_section_table * result
+ = this->beneath ()->get_section_table ();
gdb_printf (gdb_stdlog, "<- %s->get_section_table (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_const_target_section_table_p (result);
thread_control_capabilities
debug_target::get_thread_control_capabilities ()
{
- thread_control_capabilities result;
gdb_printf (gdb_stdlog, "-> %s->get_thread_control_capabilities (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_thread_control_capabilities ();
+ thread_control_capabilities result
+ = this->beneath ()->get_thread_control_capabilities ();
gdb_printf (gdb_stdlog, "<- %s->get_thread_control_capabilities (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_thread_control_capabilities (result);
bool
debug_target::attach_no_wait ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->attach_no_wait (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->attach_no_wait ();
+ bool result
+ = this->beneath ()->attach_no_wait ();
gdb_printf (gdb_stdlog, "<- %s->attach_no_wait (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::can_async_p ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->can_async_p (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->can_async_p ();
+ bool result
+ = this->beneath ()->can_async_p ();
gdb_printf (gdb_stdlog, "<- %s->can_async_p (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::is_async_p ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->is_async_p (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->is_async_p ();
+ bool result
+ = this->beneath ()->is_async_p ();
gdb_printf (gdb_stdlog, "<- %s->is_async_p (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
int
debug_target::async_wait_fd ()
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->async_wait_fd (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->async_wait_fd ();
+ int result
+ = this->beneath ()->async_wait_fd ();
gdb_printf (gdb_stdlog, "<- %s->async_wait_fd (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_int (result);
bool
debug_target::has_pending_events ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->has_pending_events (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->has_pending_events ();
+ bool result
+ = this->beneath ()->has_pending_events ();
gdb_printf (gdb_stdlog, "<- %s->has_pending_events (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::supports_non_stop ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_non_stop (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_non_stop ();
+ bool result
+ = this->beneath ()->supports_non_stop ();
gdb_printf (gdb_stdlog, "<- %s->supports_non_stop (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::always_non_stop_p ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->always_non_stop_p (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->always_non_stop_p ();
+ bool result
+ = this->beneath ()->always_non_stop_p ();
gdb_printf (gdb_stdlog, "<- %s->always_non_stop_p (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
int
debug_target::find_memory_regions (find_memory_region_ftype arg0, void *arg1)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->find_memory_regions (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->find_memory_regions (arg0, arg1);
+ int result
+ = this->beneath ()->find_memory_regions (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->find_memory_regions (", this->beneath ()->shortname ());
target_debug_print_find_memory_region_ftype (arg0);
gdb_puts (", ", gdb_stdlog);
gdb::unique_xmalloc_ptr<char>
debug_target::make_corefile_notes (bfd *arg0, int *arg1)
{
- gdb::unique_xmalloc_ptr<char> result;
gdb_printf (gdb_stdlog, "-> %s->make_corefile_notes (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->make_corefile_notes (arg0, arg1);
+ gdb::unique_xmalloc_ptr<char> result
+ = this->beneath ()->make_corefile_notes (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->make_corefile_notes (", this->beneath ()->shortname ());
target_debug_print_bfd_p (arg0);
gdb_puts (", ", gdb_stdlog);
gdb_byte *
debug_target::get_bookmark (const char *arg0, int arg1)
{
- gdb_byte * result;
gdb_printf (gdb_stdlog, "-> %s->get_bookmark (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_bookmark (arg0, arg1);
+ gdb_byte * result
+ = this->beneath ()->get_bookmark (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->get_bookmark (", this->beneath ()->shortname ());
target_debug_print_const_char_p (arg0);
gdb_puts (", ", gdb_stdlog);
CORE_ADDR
debug_target::get_thread_local_address (ptid_t arg0, CORE_ADDR arg1, CORE_ADDR arg2)
{
- CORE_ADDR result;
gdb_printf (gdb_stdlog, "-> %s->get_thread_local_address (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_thread_local_address (arg0, arg1, arg2);
+ CORE_ADDR result
+ = this->beneath ()->get_thread_local_address (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->get_thread_local_address (", this->beneath ()->shortname ());
target_debug_print_ptid_t (arg0);
gdb_puts (", ", gdb_stdlog);
enum target_xfer_status
debug_target::xfer_partial (enum target_object arg0, const char *arg1, gdb_byte *arg2, const gdb_byte *arg3, ULONGEST arg4, ULONGEST arg5, ULONGEST *arg6)
{
- enum target_xfer_status result;
gdb_printf (gdb_stdlog, "-> %s->xfer_partial (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->xfer_partial (arg0, arg1, arg2, arg3, arg4, arg5, arg6);
+ enum target_xfer_status result
+ = this->beneath ()->xfer_partial (arg0, arg1, arg2, arg3, arg4, arg5, arg6);
gdb_printf (gdb_stdlog, "<- %s->xfer_partial (", this->beneath ()->shortname ());
target_debug_print_enum_target_object (arg0);
gdb_puts (", ", gdb_stdlog);
ULONGEST
debug_target::get_memory_xfer_limit ()
{
- ULONGEST result;
gdb_printf (gdb_stdlog, "-> %s->get_memory_xfer_limit (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_memory_xfer_limit ();
+ ULONGEST result
+ = this->beneath ()->get_memory_xfer_limit ();
gdb_printf (gdb_stdlog, "<- %s->get_memory_xfer_limit (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_ULONGEST (result);
std::vector<mem_region>
debug_target::memory_map ()
{
- std::vector<mem_region> result;
gdb_printf (gdb_stdlog, "-> %s->memory_map (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->memory_map ();
+ std::vector<mem_region> result
+ = this->beneath ()->memory_map ();
gdb_printf (gdb_stdlog, "<- %s->memory_map (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_std_vector_mem_region (result);
const struct target_desc *
debug_target::read_description ()
{
- const struct target_desc * result;
gdb_printf (gdb_stdlog, "-> %s->read_description (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->read_description ();
+ const struct target_desc * result
+ = this->beneath ()->read_description ();
gdb_printf (gdb_stdlog, "<- %s->read_description (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_const_struct_target_desc_p (result);
ptid_t
debug_target::get_ada_task_ptid (long arg0, ULONGEST arg1)
{
- ptid_t result;
gdb_printf (gdb_stdlog, "-> %s->get_ada_task_ptid (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_ada_task_ptid (arg0, arg1);
+ ptid_t result
+ = this->beneath ()->get_ada_task_ptid (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->get_ada_task_ptid (", this->beneath ()->shortname ());
target_debug_print_long (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::auxv_parse (const gdb_byte **arg0, const gdb_byte *arg1, CORE_ADDR *arg2, CORE_ADDR *arg3)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->auxv_parse (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->auxv_parse (arg0, arg1, arg2, arg3);
+ int result
+ = this->beneath ()->auxv_parse (arg0, arg1, arg2, arg3);
gdb_printf (gdb_stdlog, "<- %s->auxv_parse (", this->beneath ()->shortname ());
target_debug_print_const_gdb_byte_pp (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::search_memory (CORE_ADDR arg0, ULONGEST arg1, const gdb_byte *arg2, ULONGEST arg3, CORE_ADDR *arg4)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->search_memory (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->search_memory (arg0, arg1, arg2, arg3, arg4);
+ int result
+ = this->beneath ()->search_memory (arg0, arg1, arg2, arg3, arg4);
gdb_printf (gdb_stdlog, "<- %s->search_memory (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);
bool
debug_target::can_execute_reverse ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->can_execute_reverse (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->can_execute_reverse ();
+ bool result
+ = this->beneath ()->can_execute_reverse ();
gdb_printf (gdb_stdlog, "<- %s->can_execute_reverse (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
enum exec_direction_kind
debug_target::execution_direction ()
{
- enum exec_direction_kind result;
gdb_printf (gdb_stdlog, "-> %s->execution_direction (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->execution_direction ();
+ enum exec_direction_kind result
+ = this->beneath ()->execution_direction ();
gdb_printf (gdb_stdlog, "<- %s->execution_direction (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_enum_exec_direction_kind (result);
bool
debug_target::supports_multi_process ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_multi_process (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_multi_process ();
+ bool result
+ = this->beneath ()->supports_multi_process ();
gdb_printf (gdb_stdlog, "<- %s->supports_multi_process (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::supports_enable_disable_tracepoint ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_enable_disable_tracepoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_enable_disable_tracepoint ();
+ bool result
+ = this->beneath ()->supports_enable_disable_tracepoint ();
gdb_printf (gdb_stdlog, "<- %s->supports_enable_disable_tracepoint (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::supports_disable_randomization ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_disable_randomization (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_disable_randomization ();
+ bool result
+ = this->beneath ()->supports_disable_randomization ();
gdb_printf (gdb_stdlog, "<- %s->supports_disable_randomization (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::supports_string_tracing ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_string_tracing (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_string_tracing ();
+ bool result
+ = this->beneath ()->supports_string_tracing ();
gdb_printf (gdb_stdlog, "<- %s->supports_string_tracing (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::supports_evaluation_of_breakpoint_conditions ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_evaluation_of_breakpoint_conditions (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_evaluation_of_breakpoint_conditions ();
+ bool result
+ = this->beneath ()->supports_evaluation_of_breakpoint_conditions ();
gdb_printf (gdb_stdlog, "<- %s->supports_evaluation_of_breakpoint_conditions (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::supports_dumpcore ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_dumpcore (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_dumpcore ();
+ bool result
+ = this->beneath ()->supports_dumpcore ();
gdb_printf (gdb_stdlog, "<- %s->supports_dumpcore (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::can_run_breakpoint_commands ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->can_run_breakpoint_commands (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->can_run_breakpoint_commands ();
+ bool result
+ = this->beneath ()->can_run_breakpoint_commands ();
gdb_printf (gdb_stdlog, "<- %s->can_run_breakpoint_commands (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
struct gdbarch *
debug_target::thread_architecture (ptid_t arg0)
{
- struct gdbarch * result;
gdb_printf (gdb_stdlog, "-> %s->thread_architecture (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->thread_architecture (arg0);
+ struct gdbarch * result
+ = this->beneath ()->thread_architecture (arg0);
gdb_printf (gdb_stdlog, "<- %s->thread_architecture (", this->beneath ()->shortname ());
target_debug_print_ptid_t (arg0);
gdb_puts (") = ", gdb_stdlog);
struct address_space *
debug_target::thread_address_space (ptid_t arg0)
{
- struct address_space * result;
gdb_printf (gdb_stdlog, "-> %s->thread_address_space (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->thread_address_space (arg0);
+ struct address_space * result
+ = this->beneath ()->thread_address_space (arg0);
gdb_printf (gdb_stdlog, "<- %s->thread_address_space (", this->beneath ()->shortname ());
target_debug_print_ptid_t (arg0);
gdb_puts (") = ", gdb_stdlog);
bool
debug_target::filesystem_is_local ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->filesystem_is_local (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->filesystem_is_local ();
+ bool result
+ = this->beneath ()->filesystem_is_local ();
gdb_printf (gdb_stdlog, "<- %s->filesystem_is_local (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::can_download_tracepoint ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->can_download_tracepoint (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->can_download_tracepoint ();
+ bool result
+ = this->beneath ()->can_download_tracepoint ();
gdb_printf (gdb_stdlog, "<- %s->can_download_tracepoint (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
int
debug_target::get_trace_status (struct trace_status *arg0)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->get_trace_status (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_trace_status (arg0);
+ int result
+ = this->beneath ()->get_trace_status (arg0);
gdb_printf (gdb_stdlog, "<- %s->get_trace_status (", this->beneath ()->shortname ());
target_debug_print_struct_trace_status_p (arg0);
gdb_puts (") = ", gdb_stdlog);
int
debug_target::trace_find (enum trace_find_type arg0, int arg1, CORE_ADDR arg2, CORE_ADDR arg3, int *arg4)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->trace_find (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->trace_find (arg0, arg1, arg2, arg3, arg4);
+ int result
+ = this->beneath ()->trace_find (arg0, arg1, arg2, arg3, arg4);
gdb_printf (gdb_stdlog, "<- %s->trace_find (", this->beneath ()->shortname ());
target_debug_print_enum_trace_find_type (arg0);
gdb_puts (", ", gdb_stdlog);
bool
debug_target::get_trace_state_variable_value (int arg0, LONGEST *arg1)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->get_trace_state_variable_value (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_trace_state_variable_value (arg0, arg1);
+ bool result
+ = this->beneath ()->get_trace_state_variable_value (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->get_trace_state_variable_value (", this->beneath ()->shortname ());
target_debug_print_int (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::save_trace_data (const char *arg0)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->save_trace_data (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->save_trace_data (arg0);
+ int result
+ = this->beneath ()->save_trace_data (arg0);
gdb_printf (gdb_stdlog, "<- %s->save_trace_data (", this->beneath ()->shortname ());
target_debug_print_const_char_p (arg0);
gdb_puts (") = ", gdb_stdlog);
int
debug_target::upload_tracepoints (struct uploaded_tp **arg0)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->upload_tracepoints (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->upload_tracepoints (arg0);
+ int result
+ = this->beneath ()->upload_tracepoints (arg0);
gdb_printf (gdb_stdlog, "<- %s->upload_tracepoints (", this->beneath ()->shortname ());
target_debug_print_struct_uploaded_tp_pp (arg0);
gdb_puts (") = ", gdb_stdlog);
int
debug_target::upload_trace_state_variables (struct uploaded_tsv **arg0)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->upload_trace_state_variables (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->upload_trace_state_variables (arg0);
+ int result
+ = this->beneath ()->upload_trace_state_variables (arg0);
gdb_printf (gdb_stdlog, "<- %s->upload_trace_state_variables (", this->beneath ()->shortname ());
target_debug_print_struct_uploaded_tsv_pp (arg0);
gdb_puts (") = ", gdb_stdlog);
LONGEST
debug_target::get_raw_trace_data (gdb_byte *arg0, ULONGEST arg1, LONGEST arg2)
{
- LONGEST result;
gdb_printf (gdb_stdlog, "-> %s->get_raw_trace_data (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_raw_trace_data (arg0, arg1, arg2);
+ LONGEST result
+ = this->beneath ()->get_raw_trace_data (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->get_raw_trace_data (", this->beneath ()->shortname ());
target_debug_print_gdb_byte_p (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::get_min_fast_tracepoint_insn_len ()
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->get_min_fast_tracepoint_insn_len (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_min_fast_tracepoint_insn_len ();
+ int result
+ = this->beneath ()->get_min_fast_tracepoint_insn_len ();
gdb_printf (gdb_stdlog, "<- %s->get_min_fast_tracepoint_insn_len (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_int (result);
bool
debug_target::set_trace_notes (const char *arg0, const char *arg1, const char *arg2)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->set_trace_notes (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->set_trace_notes (arg0, arg1, arg2);
+ bool result
+ = this->beneath ()->set_trace_notes (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->set_trace_notes (", this->beneath ()->shortname ());
target_debug_print_const_char_p (arg0);
gdb_puts (", ", gdb_stdlog);
int
debug_target::core_of_thread (ptid_t arg0)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->core_of_thread (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->core_of_thread (arg0);
+ int result
+ = this->beneath ()->core_of_thread (arg0);
gdb_printf (gdb_stdlog, "<- %s->core_of_thread (", this->beneath ()->shortname ());
target_debug_print_ptid_t (arg0);
gdb_puts (") = ", gdb_stdlog);
int
debug_target::verify_memory (const gdb_byte *arg0, CORE_ADDR arg1, ULONGEST arg2)
{
- int result;
gdb_printf (gdb_stdlog, "-> %s->verify_memory (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->verify_memory (arg0, arg1, arg2);
+ int result
+ = this->beneath ()->verify_memory (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->verify_memory (", this->beneath ()->shortname ());
target_debug_print_const_gdb_byte_p (arg0);
gdb_puts (", ", gdb_stdlog);
bool
debug_target::get_tib_address (ptid_t arg0, CORE_ADDR *arg1)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->get_tib_address (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_tib_address (arg0, arg1);
+ bool result
+ = this->beneath ()->get_tib_address (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->get_tib_address (", this->beneath ()->shortname ());
target_debug_print_ptid_t (arg0);
gdb_puts (", ", gdb_stdlog);
bool
debug_target::static_tracepoint_marker_at (CORE_ADDR arg0, static_tracepoint_marker *arg1)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->static_tracepoint_marker_at (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->static_tracepoint_marker_at (arg0, arg1);
+ bool result
+ = this->beneath ()->static_tracepoint_marker_at (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->static_tracepoint_marker_at (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);
std::vector<static_tracepoint_marker>
debug_target::static_tracepoint_markers_by_strid (const char *arg0)
{
- std::vector<static_tracepoint_marker> result;
gdb_printf (gdb_stdlog, "-> %s->static_tracepoint_markers_by_strid (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->static_tracepoint_markers_by_strid (arg0);
+ std::vector<static_tracepoint_marker> result
+ = this->beneath ()->static_tracepoint_markers_by_strid (arg0);
gdb_printf (gdb_stdlog, "<- %s->static_tracepoint_markers_by_strid (", this->beneath ()->shortname ());
target_debug_print_const_char_p (arg0);
gdb_puts (") = ", gdb_stdlog);
traceframe_info_up
debug_target::traceframe_info ()
{
- traceframe_info_up result;
gdb_printf (gdb_stdlog, "-> %s->traceframe_info (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->traceframe_info ();
+ traceframe_info_up result
+ = this->beneath ()->traceframe_info ();
gdb_printf (gdb_stdlog, "<- %s->traceframe_info (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_traceframe_info_up (result);
bool
debug_target::use_agent (bool arg0)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->use_agent (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->use_agent (arg0);
+ bool result
+ = this->beneath ()->use_agent (arg0);
gdb_printf (gdb_stdlog, "<- %s->use_agent (", this->beneath ()->shortname ());
target_debug_print_bool (arg0);
gdb_puts (") = ", gdb_stdlog);
bool
debug_target::can_use_agent ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->can_use_agent (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->can_use_agent ();
+ bool result
+ = this->beneath ()->can_use_agent ();
gdb_printf (gdb_stdlog, "<- %s->can_use_agent (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
struct btrace_target_info *
debug_target::enable_btrace (thread_info *arg0, const struct btrace_config *arg1)
{
- struct btrace_target_info * result;
gdb_printf (gdb_stdlog, "-> %s->enable_btrace (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->enable_btrace (arg0, arg1);
+ struct btrace_target_info * result
+ = this->beneath ()->enable_btrace (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->enable_btrace (", this->beneath ()->shortname ());
target_debug_print_thread_info_p (arg0);
gdb_puts (", ", gdb_stdlog);
enum btrace_error
debug_target::read_btrace (struct btrace_data *arg0, struct btrace_target_info *arg1, enum btrace_read_type arg2)
{
- enum btrace_error result;
gdb_printf (gdb_stdlog, "-> %s->read_btrace (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->read_btrace (arg0, arg1, arg2);
+ enum btrace_error result
+ = this->beneath ()->read_btrace (arg0, arg1, arg2);
gdb_printf (gdb_stdlog, "<- %s->read_btrace (", this->beneath ()->shortname ());
target_debug_print_struct_btrace_data_p (arg0);
gdb_puts (", ", gdb_stdlog);
const struct btrace_config *
debug_target::btrace_conf (const struct btrace_target_info *arg0)
{
- const struct btrace_config * result;
gdb_printf (gdb_stdlog, "-> %s->btrace_conf (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->btrace_conf (arg0);
+ const struct btrace_config * result
+ = this->beneath ()->btrace_conf (arg0);
gdb_printf (gdb_stdlog, "<- %s->btrace_conf (", this->beneath ()->shortname ());
target_debug_print_const_struct_btrace_target_info_p (arg0);
gdb_puts (") = ", gdb_stdlog);
enum record_method
debug_target::record_method (ptid_t arg0)
{
- enum record_method result;
gdb_printf (gdb_stdlog, "-> %s->record_method (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->record_method (arg0);
+ enum record_method result
+ = this->beneath ()->record_method (arg0);
gdb_printf (gdb_stdlog, "<- %s->record_method (", this->beneath ()->shortname ());
target_debug_print_ptid_t (arg0);
gdb_puts (") = ", gdb_stdlog);
bool
debug_target::supports_delete_record ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_delete_record (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_delete_record ();
+ bool result
+ = this->beneath ()->supports_delete_record ();
gdb_printf (gdb_stdlog, "<- %s->supports_delete_record (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::record_is_replaying (ptid_t arg0)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->record_is_replaying (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->record_is_replaying (arg0);
+ bool result
+ = this->beneath ()->record_is_replaying (arg0);
gdb_printf (gdb_stdlog, "<- %s->record_is_replaying (", this->beneath ()->shortname ());
target_debug_print_ptid_t (arg0);
gdb_puts (") = ", gdb_stdlog);
bool
debug_target::record_will_replay (ptid_t arg0, int arg1)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->record_will_replay (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->record_will_replay (arg0, arg1);
+ bool result
+ = this->beneath ()->record_will_replay (arg0, arg1);
gdb_printf (gdb_stdlog, "<- %s->record_will_replay (", this->beneath ()->shortname ());
target_debug_print_ptid_t (arg0);
gdb_puts (", ", gdb_stdlog);
bool
debug_target::augmented_libraries_svr4_read ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->augmented_libraries_svr4_read (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->augmented_libraries_svr4_read ();
+ bool result
+ = this->beneath ()->augmented_libraries_svr4_read ();
gdb_printf (gdb_stdlog, "<- %s->augmented_libraries_svr4_read (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
const struct frame_unwind *
debug_target::get_unwinder ()
{
- const struct frame_unwind * result;
gdb_printf (gdb_stdlog, "-> %s->get_unwinder (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_unwinder ();
+ const struct frame_unwind * result
+ = this->beneath ()->get_unwinder ();
gdb_printf (gdb_stdlog, "<- %s->get_unwinder (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_const_struct_frame_unwind_p (result);
const struct frame_unwind *
debug_target::get_tailcall_unwinder ()
{
- const struct frame_unwind * result;
gdb_printf (gdb_stdlog, "-> %s->get_tailcall_unwinder (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->get_tailcall_unwinder ();
+ const struct frame_unwind * result
+ = this->beneath ()->get_tailcall_unwinder ();
gdb_printf (gdb_stdlog, "<- %s->get_tailcall_unwinder (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_const_struct_frame_unwind_p (result);
bool
debug_target::supports_memory_tagging ()
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_memory_tagging (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_memory_tagging ();
+ bool result
+ = this->beneath ()->supports_memory_tagging ();
gdb_printf (gdb_stdlog, "<- %s->supports_memory_tagging (", this->beneath ()->shortname ());
gdb_puts (") = ", gdb_stdlog);
target_debug_print_bool (result);
bool
debug_target::fetch_memtags (CORE_ADDR arg0, size_t arg1, gdb::byte_vector &arg2, int arg3)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->fetch_memtags (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->fetch_memtags (arg0, arg1, arg2, arg3);
+ bool result
+ = this->beneath ()->fetch_memtags (arg0, arg1, arg2, arg3);
gdb_printf (gdb_stdlog, "<- %s->fetch_memtags (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);
bool
debug_target::store_memtags (CORE_ADDR arg0, size_t arg1, const gdb::byte_vector &arg2, int arg3)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->store_memtags (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->store_memtags (arg0, arg1, arg2, arg3);
+ bool result
+ = this->beneath ()->store_memtags (arg0, arg1, arg2, arg3);
gdb_printf (gdb_stdlog, "<- %s->store_memtags (", this->beneath ()->shortname ());
target_debug_print_CORE_ADDR (arg0);
gdb_puts (", ", gdb_stdlog);