Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: "Marcin Kościelnicki" <koriakin@0x04.net>
To: Ulrich Weigand <uweigand@de.ibm.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH v2 4/4] gdbserver: Add emit_ops for powerpc.
Date: Thu, 31 Mar 2016 13:45:00 -0000	[thread overview]
Message-ID: <56FD2A02.9040300@0x04.net> (raw)
In-Reply-To: <20160329182500.7B5BCC9C7@oc7340732750.ibm.com>

On 29/03/16 20:25, Ulrich Weigand wrote:
>> gdb/gdbserver/ChangeLog:
>>
>> 2016-03-14  Wei-cheng Wang  <cole945@gmail.com>
>> 	    Marcin Kościelnicki  <koriakin@0x04.net>
>>
>> 	* linux-ppc-low.c (emit_insns): New function.
>> 	(__EMIT_ASM, _EMIT_ASM, EMIT_ASM): New macros.
>> 	(ppc_emit_prologue): New function.
>> 	(ppc_emit_epilogue): New function.
>> 	(ppc_emit_add): New function.
>> 	(ppc_emit_sub): New function.
>> 	(ppc_emit_mul): New function.
>> 	(ppc_emit_lsh): New function.
>> 	(ppc_emit_rsh_signed): New function.
>> 	(ppc_emit_rsh_unsigned): New function.
>> 	(ppc_emit_ext): New function.
>> 	(ppc_emit_zero_ext): New function.
>> 	(ppc_emit_log_not): New function.
>> 	(ppc_emit_bit_and): New function.
>> 	(ppc_emit_bit_or): New function.
>> 	(ppc_emit_bit_xor): New function.
>> 	(ppc_emit_bit_not): New function.
>> 	(ppc_emit_equal): New function.
>> 	(ppc_emit_less_signed): New function.
>> 	(ppc_emit_less_unsigned): New function.
>> 	(ppc_emit_ref): New function.
>> 	(ppc_emit_const): New function.
>> 	(ppc_emit_reg): New function.
>> 	(ppc_emit_pop): New function.
>> 	(ppc_emit_stack_flush): New function.
>> 	(ppc_emit_swap): New function.
>> 	(ppc_emit_stack_adjust): New function.
>> 	(ppc_emit_call): New function.
>> 	(ppc_emit_int_call_1): New function.
>> 	(ppc_emit_void_call_2): New function.
>> 	(ppc_emit_if_goto): New function.
>> 	(ppc_emit_goto): New function.
>> 	(ppc_emit_eq_goto): New function.
>> 	(ppc_emit_ne_goto): New function.
>> 	(ppc_emit_lt_goto): New function.
>> 	(ppc_emit_le_goto): New function.
>> 	(ppc_emit_gt_goto): New function.
>> 	(ppc_emit_ge_goto): New function.
>> 	(ppc_write_goto_address): New function.
>> 	(ppc_emit_ops_impl): New static variable.
>> 	(ppc64v1_emit_prologue): New function.
>> 	(ppc64v2_emit_prologue): New function.
>> 	(ppc64_emit_epilogue): New function.
>> 	(ppc64_emit_add): New function.
>> 	(ppc64_emit_sub): New function.
>> 	(ppc64_emit_mul): New function.
>> 	(ppc64_emit_lsh): New function.
>> 	(ppc64_emit_rsh_signed): New function.
>> 	(ppc64_emit_rsh_unsigned): New function.
>> 	(ppc64_emit_ext): New function.
>> 	(ppc64_emit_zero_ext): New function.
>> 	(ppc64_emit_log_not): New function.
>> 	(ppc64_emit_bit_and): New function.
>> 	(ppc64_emit_bit_or): New function.
>> 	(ppc64_emit_bit_xor): New function.
>> 	(ppc64_emit_bit_not): New function.
>> 	(ppc64_emit_equal): New function.
>> 	(ppc64_emit_less_signed): New function.
>> 	(ppc64_emit_less_unsigned): New function.
>> 	(ppc64_emit_ref): New function.
>> 	(ppc64_emit_const): New function.
>> 	(ppc64v1_emit_reg): New function.
>> 	(ppc64v2_emit_reg): New function.
>> 	(ppc64_emit_pop): New function.
>> 	(ppc64_emit_stack_flush): New function.
>> 	(ppc64_emit_swap): New function.
>> 	(ppc64v1_emit_call): New function.
>> 	(ppc64v2_emit_call): New function.
>> 	(ppc64v1_emit_int_call_1): New function.
>> 	(ppc64v2_emit_int_call_1): New function.
>> 	(ppc64v1_emit_void_call_2): New function.
>> 	(ppc64v2_emit_void_call_2): New function.
>> 	(ppc64_emit_if_goto): New function.
>> 	(ppc64_emit_eq_goto): New function.
>> 	(ppc64_emit_ne_goto): New function.
>> 	(ppc64_emit_lt_goto): New function.
>> 	(ppc64_emit_le_goto): New function.
>> 	(ppc64_emit_gt_goto): New function.
>> 	(ppc64_emit_ge_goto): New function.
>> 	(ppc64v1_emit_ops_impl): New static variable.
>> 	(ppc64v2_emit_ops_impl): New static variable.
>> 	(ppc_emit_ops): New function.
>> 	(linux_low_target): Wire in ppc_emit_ops.
>> ---
>> The only change in this version is that is_elfv2_inferior is used instead of
>> assuming same ABI as gdbserver.
>
> Still OK once the rest is in.
>
> Thanks,
> Ulrich
>

Thanks, pushed.


      reply	other threads:[~2016-03-31 13:45 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-13  2:31 [PATCH 0/3] gdbserver: Add powerpc fast tracepoint support Marcin Kościelnicki
2016-03-13  2:32 ` [PATCH 3/3] " Marcin Kościelnicki
2016-03-14 22:10   ` [PATCH 3/4 v2] " Marcin Kościelnicki
2016-03-16 16:58     ` Ulrich Weigand
2016-03-16 17:55       ` Marcin Kościelnicki
2016-03-17  6:30         ` Ulrich Weigand
2016-03-18 15:09           ` [PATCH v2 3/4] " Marcin Kościelnicki
2016-03-29 18:23             ` Ulrich Weigand
2016-03-30 14:52             ` Simon Marchi
2016-03-30 14:57               ` Ulrich Weigand
2016-03-30 15:24                 ` Simon Marchi
2016-03-30 15:28                   ` Simon Marchi
2016-03-30 15:35                     ` Ulrich Weigand
2016-03-31  1:31                       ` Marcin Kościelnicki
2016-03-31 11:39                         ` Ulrich Weigand
2016-03-31 13:45                           ` Marcin Kościelnicki
2016-03-13  2:32 ` [PATCH 1/3] gdbserver/IPA: Export some functions via global function pointers Marcin Kościelnicki
2016-03-14 14:41   ` Ulrich Weigand
2016-03-14 14:53     ` Marcin Kościelnicki
2016-03-14 17:49       ` Ulrich Weigand
2016-03-22  9:19         ` Marcin Kościelnicki
2016-03-29 18:08           ` Ulrich Weigand
2016-03-29 21:51             ` Pedro Alves
2016-03-30 11:30               ` Ulrich Weigand
2016-03-29 21:52             ` Marcin Kościelnicki
2016-03-30 11:32               ` Ulrich Weigand
2016-03-30 22:02                 ` Marcin Kościelnicki
2016-03-31 18:22                   ` Sergio Durigan Junior
2016-03-31 21:42                     ` [PATCH obv] gdbserver: Fix C++ build errors in tracepoint.c Marcin Kościelnicki
2016-03-14 17:08     ` [PATCH 1/3] gdbserver/IPA: Export some functions via global function pointers Simon Marchi
2016-03-14 17:40       ` Ulrich Weigand
2016-03-13  2:32 ` [PATCH 2/3] IPA: Add alloc_jump_pad_buffer target hook Marcin Kościelnicki
2016-03-18 15:08   ` [PATCH 2/4 v2] " Marcin Kościelnicki
2016-03-29 18:18     ` Ulrich Weigand
2016-03-29 22:04       ` Marcin Kościelnicki
2016-03-30 11:38         ` Ulrich Weigand
2016-03-30 14:50           ` Yao Qi
2016-03-30 14:58             ` Ulrich Weigand
2016-03-31  7:34               ` Yao Qi
2016-03-31 11:37                 ` Ulrich Weigand
2016-03-31  1:16       ` [PATCH 2/4 v3] " Marcin Kościelnicki
2016-03-31 11:38         ` Ulrich Weigand
2016-03-31 13:42           ` Marcin Kościelnicki
2016-04-01 14:43         ` Ulrich Weigand
2016-04-03 12:31           ` [PATCH] IPA: Fix build problem on !HAVE_GETAUXVAL Marcin Kościelnicki
2016-04-03 16:26             ` Ulrich Weigand
2016-04-03 16:28               ` Marcin Kościelnicki
2016-04-04 14:41                 ` Ulrich Weigand
2016-04-05 13:33                   ` [PATCH] IPA: Move getauxval out of #ifndef IN_PROCESS_AGENT Marcin Kościelnicki
2016-04-05 15:04                     ` Ulrich Weigand
2016-04-05 16:55                       ` Marcin Kościelnicki
2016-03-14 22:25 ` [PATCH 4/4] gdbserver: Add emit_ops for powerpc Marcin Kościelnicki
2016-03-16 17:16   ` Ulrich Weigand
2016-03-18 15:10     ` [PATCH v2 " Marcin Kościelnicki
2016-03-29 18:25       ` Ulrich Weigand
2016-03-31 13:45         ` Marcin Kościelnicki [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=56FD2A02.9040300@0x04.net \
    --to=koriakin@0x04.net \
    --cc=gdb-patches@sourceware.org \
    --cc=uweigand@de.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox