Re: [committed] Introduce RTL function reader

2017-01-06 Thread Jakub Jelinek
On Fri, Jan 06, 2017 at 12:34:01PM -0500, David Malcolm wrote: > On Fri, 2017-01-06 at 10:25 -0700, Jeff Law wrote: > > On 01/06/2017 09:43 AM, David Malcolm wrote: > > > On Fri, 2017-01-06 at 17:25 +0100, Jakub Jelinek wrote: > > > > On Thu, Jan 05, 2017 at 03:20:26PM -0500, David Malcolm wrote:

Re: [committed] Introduce RTL function reader

2017-01-06 Thread David Malcolm
On Fri, 2017-01-06 at 10:25 -0700, Jeff Law wrote: > On 01/06/2017 09:43 AM, David Malcolm wrote: > > On Fri, 2017-01-06 at 17:25 +0100, Jakub Jelinek wrote: > > > On Thu, Jan 05, 2017 at 03:20:26PM -0500, David Malcolm wrote: > > > > + /* Handle "reuse_rtx". */ > > > > + if (strcmp (code_name,

Re: [committed] Introduce RTL function reader

2017-01-06 Thread Jeff Law
On 01/06/2017 09:43 AM, David Malcolm wrote: On Fri, 2017-01-06 at 17:25 +0100, Jakub Jelinek wrote: On Thu, Jan 05, 2017 at 03:20:26PM -0500, David Malcolm wrote: + /* Handle "reuse_rtx". */ + if (strcmp (code_name, "reuse_rtx") == 0) +{ + read_name (); + long idx = atoi

Re: [committed] Introduce RTL function reader

2017-01-06 Thread David Malcolm
On Fri, 2017-01-06 at 17:25 +0100, Jakub Jelinek wrote: > On Thu, Jan 05, 2017 at 03:20:26PM -0500, David Malcolm wrote: > > + /* Handle "reuse_rtx". */ > > + if (strcmp (code_name, "reuse_rtx") == 0) > > +{ > > + read_name (); > > + long idx = atoi (name.string); > > + /*

Re: [committed] Introduce RTL function reader

2017-01-06 Thread Jakub Jelinek
On Thu, Jan 05, 2017 at 03:20:26PM -0500, David Malcolm wrote: > + /* Handle "reuse_rtx". */ > + if (strcmp (code_name, "reuse_rtx") == 0) > +{ > + read_name (); > + long idx = atoi (name.string); > + /* Look it up by ID. */ > + gcc_assert (idx <

Re: [committed] Introduce RTL function reader

2017-01-06 Thread Rainer Orth
Hi David, > The various parts of patch 8 appear to now have been approved, so > I've committed it (along with "Add ASSERT_RTX_PTR_EQ", which it > requires and is required by) to trunk as r244110, having rebased, > and bootstrapped & regrtested on x86_64-pc-linux-gnu, and tested > stage 1's

[committed] Introduce RTL function reader

2017-01-05 Thread David Malcolm
On Thu, 2017-01-05 at 10:43 +0100, Uros Bizjak wrote: > On Tue, Jan 3, 2017 at 5:47 PM, David Malcolm > wrote: > > Ping: > > https://gcc.gnu.org/ml/gcc-patches/2016-12/msg01616.html > > > > (the patch has been successfully bootstrap on > > x86_64-pc-linux-gnu, and also