opcodes: Fix date in ChangeLog entry
[deliverable/binutils-gdb.git] / gdb / gdbserver / ChangeLog
index 089ca32641fd953c14fcaefc90d3d385058d44ad..644a81088fe62821eaecaf5a57d501dbe7d12f44 100644 (file)
@@ -1,3 +1,225 @@
+2016-03-30  Marcin Kościelnicki  <koriakin@0x04.net>
+
+       * linux-aarch64-ipa.c: Rename gdb_agent_get_raw_reg to get_raw_reg.
+       * linux-amd64-ipa.c: Likewise.
+       * linux-i386-ipa.c: Likewise.
+       * linux-s390-ipa.c: Likewise.
+       * tracepoint.c: IPA-export gdb_collect_ptr instead of gdb_collect,
+       ditto for get_raw_reg_ptr, get_trace_state_variable_value_ptr,
+       set_trace_state_variable_value_ptr.
+       (struct ipa_sym_addresses): Likewise.
+       (symbol_list): Likewise.
+       (install_fast_tracepoint): Dereference gdb_collect_ptr instead of
+       accessing gdb_collect directly.
+       (gdb_collect_ptr_type): New typedef.
+       (get_raw_reg_ptr_type): New typedef.
+       (get_trace_state_variable_value_ptr_type): New typedef.
+       (set_trace_state_variable_value_ptr_type): New typedef.
+       (gdb_collect_ptr): New global.
+       (get_raw_reg_ptr): New global.
+       (get_trace_state_variable_value_ptr): New global.
+       (set_trace_state_variable_value_ptr): New global.
+       (get_raw_reg_func_addr): Dereference get_raw_reg_ptr instead of
+       accessing get_raw_reg directly.
+       (get_get_tsv_func_addr): Likewise for
+       get_trace_state_variable_value_ptr.
+       (get_set_tsv_func_addr): Likewise for
+       set_trace_state_variable_value_ptr.
+       * tracepoint.h: Rename gdb_agent_get_raw_reg to get_raw_reg.
+
+2016-03-30  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * tracepoint.c (cmd_qtenable_disable): Remove whitespace.
+
+2016-03-30  Marcin Kościelnicki  <koriakin@0x04.net>
+
+       * remote-utils.c (look_up_one_symbol): Remove own_buf, handle 'v'
+       packets.
+       (relocate_instruction): Remove own_buf.
+       * server.c (own_buf): Make global.
+       (handle_v_requests): Make global.
+       * server.h (own_buf): New declaration.
+       (handle_v_requests): New prototype.
+
+2016-03-29  Marcin Kościelnicki  <koriakin@0x04.net>
+
+       PR 18377
+       * linux-s390-low.c (add_insns): New function.
+       (s390_emit_prologue): New function.
+       (s390_emit_epilogue): New function.
+       (s390_emit_add): New function.
+       (s390_emit_sub): New function.
+       (s390_emit_mul): New function.
+       (s390_emit_lsh): New function.
+       (s390_emit_rsh_signed): New function.
+       (s390_emit_rsh_unsigned): New function.
+       (s390_emit_ext): New function.
+       (s390_emit_log_not): New function.
+       (s390_emit_bit_and): New function.
+       (s390_emit_bit_or): New function.
+       (s390_emit_bit_xor): New function.
+       (s390_emit_bit_not): New function.
+       (s390_emit_equal): New function.
+       (s390_emit_less_signed): New function.
+       (s390_emit_less_unsigned): New function.
+       (s390_emit_ref): New function.
+       (s390_emit_if_goto): New function.
+       (s390_emit_goto): New function.
+       (s390_write_goto_address): New function.
+       (s390_emit_litpool): New function.
+       (s390_emit_const): New function.
+       (s390_emit_call): New function.
+       (s390_emit_reg): New function.
+       (s390_emit_pop): New function.
+       (s390_emit_stack_flush): New function.
+       (s390_emit_zero_ext): New function.
+       (s390_emit_swap): New function.
+       (s390_emit_stack_adjust): New function.
+       (s390_emit_set_r2): New function.
+       (s390_emit_int_call_1): New function.
+       (s390_emit_void_call_2): New function.
+       (s390_emit_eq_goto): New function.
+       (s390_emit_ne_goto): New function.
+       (s390_emit_lt_goto): New function.
+       (s390_emit_le_goto): New function.
+       (s390_emit_gt_goto): New function.
+       (s390_emit_ge_goto): New function.
+       (s390x_emit_prologue): New function.
+       (s390x_emit_epilogue): New function.
+       (s390x_emit_add): New function.
+       (s390x_emit_sub): New function.
+       (s390x_emit_mul): New function.
+       (s390x_emit_lsh): New function.
+       (s390x_emit_rsh_signed): New function.
+       (s390x_emit_rsh_unsigned): New function.
+       (s390x_emit_ext): New function.
+       (s390x_emit_log_not): New function.
+       (s390x_emit_bit_and): New function.
+       (s390x_emit_bit_or): New function.
+       (s390x_emit_bit_xor): New function.
+       (s390x_emit_bit_not): New function.
+       (s390x_emit_equal): New function.
+       (s390x_emit_less_signed): New function.
+       (s390x_emit_less_unsigned): New function.
+       (s390x_emit_ref): New function.
+       (s390x_emit_if_goto): New function.
+       (s390x_emit_const): New function.
+       (s390x_emit_call): New function.
+       (s390x_emit_reg): New function.
+       (s390x_emit_pop): New function.
+       (s390x_emit_stack_flush): New function.
+       (s390x_emit_zero_ext): New function.
+       (s390x_emit_swap): New function.
+       (s390x_emit_stack_adjust): New function.
+       (s390x_emit_int_call_1): New function.
+       (s390x_emit_void_call_2): New function.
+       (s390x_emit_eq_goto): New function.
+       (s390x_emit_ne_goto): New function.
+       (s390x_emit_lt_goto): New function.
+       (s390x_emit_le_goto): New function.
+       (s390x_emit_gt_goto): New function.
+       (s390x_emit_ge_goto): New function.
+       (s390_emit_ops): New function.
+       (struct linux_target_ops): Fill in emit_ops hook.
+
+2016-03-29  Marcin Kościelnicki  <koriakin@0x04.net>
+
+       PR 18377
+       * Makefile.in: Add s390 IPA files.
+       * configure.srv: Build IPA for s390.
+       * linux-s390-ipa.c: New file.
+       * linux-s390-low.c: New includes - inttypes.h and linux-s390-tdesc.h.
+       (init_registers_s390_linux32): Move declaration to linux-s390-tdesc.h.
+       (tdesc_s390_linux32): Likewise.
+       (init_registers_s390_linux32v1): Likewise.
+       (tdesc_s390_linux32v1): Likewise.
+       (init_registers_s390_linux32v2): Likewise.
+       (tdesc_s390_linux32v2): Likewise.
+       (init_registers_s390_linux64): Likewise.
+       (tdesc_s390_linux64): Likewise.
+       (init_registers_s390_linux64v1): Likewise.
+       (tdesc_s390_linux64v1): Likewise.
+       (init_registers_s390_linux64v2): Likewise.
+       (tdesc_s390_linux64v2): Likewise.
+       (init_registers_s390_te_linux64): Likewise.
+       (tdesc_s390_te_linux64): Likewise.
+       (init_registers_s390_vx_linux64): Likewise.
+       (tdesc_s390_vx_linux64): Likewise.
+       (init_registers_s390_tevx_linux64): Likewise.
+       (tdesc_s390_tevx_linux64): Likewise.
+       (init_registers_s390x_linux64): Likewise.
+       (tdesc_s390x_linux64): Likewise.
+       (init_registers_s390x_linux64v1): Likewise.
+       (tdesc_s390x_linux64v1): Likewise.
+       (init_registers_s390x_linux64v2): Likewise.
+       (tdesc_s390x_linux64v2): Likewise.
+       (init_registers_s390x_te_linux64): Likewise.
+       (tdesc_s390x_te_linux64): Likewise.
+       (init_registers_s390x_vx_linux64): Likewise.
+       (tdesc_s390x_vx_linux64): Likewise.
+       (init_registers_s390x_tevx_linux64): Likewise.
+       (tdesc_s390x_tevx_linux64): Likewise.
+       (have_hwcap_s390_vx): New static variable.
+       (s390_arch_setup): Fill have_hwcap_s390_vx.
+       (s390_get_thread_area): New function.
+       (s390_ft_entry_gpr_esa): New const.
+       (s390_ft_entry_gpr_zarch): New const.
+       (s390_ft_entry_misc): New const.
+       (s390_ft_entry_fr): New const.
+       (s390_ft_entry_vr): New const.
+       (s390_ft_main_31): New const.
+       (s390_ft_main_64): New const.
+       (s390_ft_exit_fr): New const.
+       (s390_ft_exit_vr): New const.
+       (s390_ft_exit_misc): New const.
+       (s390_ft_exit_gpr_esa): New const.
+       (s390_ft_exit_gpr_zarch): New const.
+       (append_insns): New function.
+       (s390_relocate_instruction): New function.
+       (s390_install_fast_tracepoint_jump_pad): New function.
+       (s390_get_min_fast_tracepoint_insn_len): New function.
+       (s390_get_ipa_tdesc_idx): New function.
+       (struct linux_target_ops): Wire in the above functions.
+       (initialize_low_arch) [!__s390x__]: Don't initialize s390x tdescs.
+       * linux-s390-tdesc.h: New file.
+
+2016-03-29  Marcin Kościelnicki  <koriakin@0x04.net>
+
+       * linux-s390-low.c (s390_supports_tracepoints): New function.
+       (struct linux_target_ops): Fill supports_tracepoints hook.
+
+2016-03-18  Yao Qi  <yao.qi@linaro.org>
+
+       * linux-low.c (lwp_signal_can_be_delivered): New function.
+       (linux_resume_one_lwp_throw): Use lwp_signal_can_be_delivered.
+
+2016-03-18  Yao Qi  <yao.qi@linaro.org>
+
+       * linux-low.c (linux_resume_one_lwp_throw): Set 'signal' to
+       0 if signal is enqueued.  Remove 'signal' from one debugging
+       message.  Move one debugging message to some lines below.
+       Remove code setting 'signal' to 0.
+
+2016-03-18  Yao Qi  <yao.qi@linaro.org>
+
+       * linux-low.c (linux_low_filter_event): Remove redundant
+       WIFSTOPPED check together with linux_wstatus_maybe_breakpoint.
+
+2016-03-09  Marcin Kościelnicki  <koriakin@0x04.net>
+
+       * linux-ppc-low.c (ppc_supports_tracepoints): New function.
+       (struct linux_target_ops): Wire in the above.
+
+2016-03-03  Yao Qi  <yao.qi@linaro.org>
+
+       * linux-low.c: Update comments to start_step_over.
+
+2016-03-03  Yao Qi  <yao.qi@linaro.org>
+
+       PR server/19736
+       * linux-low.c (handle_extended_wait): Set child suspended
+       if event_lwp->bp_reinsert isn't zero.
+
 2016-03-02  Yao Qi  <yao.qi@linaro.org>
 
        * linux-low.c (linux_resume_one_lwp_throw): Replace code with
This page took 0.028825 seconds and 4 git commands to generate.