Re: [PATCH] libgccjit: Add support for types used by atomic builtins [PR96066] [PR96067]

2021-12-09 Thread David Malcolm via Gcc-patches
On Sun, 2021-11-21 at 16:44 -0500, Antoni Boucher wrote: > Thanks for the review! > I updated the patch. > > See notes below. Thanks; the updated patch looks good for trunk. Dave

Re: [PATCH] libgccjit: Add support for types used by atomic builtins [PR96066] [PR96067]

2021-12-03 Thread Antoni Boucher via Gcc-patches
David: PING In case you missed it, that's the last patch left to review for now. Le dimanche 21 novembre 2021 à 16:44 -0500, Antoni Boucher a écrit : > Thanks for the review! > I updated the patch. > > See notes below. > > Le samedi 20 novembre 2021 à 13:50 -0500, David Malcolm a écrit : > >

Re: [PATCH] libgccjit: Add support for types used by atomic builtins [PR96066] [PR96067]

2021-11-21 Thread Antoni Boucher via Gcc-patches
; + > > +  virtual type *is_const () { return m_other_type; } > > + > >    void replay_into (replayer *) FINAL OVERRIDE; > >   > >  private: > > @@ -701,9 +710,16 @@ public: > >    memento_of_get_volatile (type *other_type) > >    : decorated_type

Re: [PATCH] libgccjit: Add support for types used by atomic builtins [PR96066] [PR96067]

2021-11-20 Thread David Malcolm via Gcc-patches
On Sat, 2021-11-20 at 11:27 -0500, Antoni Boucher wrote: > Hi. > Here's the updated patch. > Thanks for the review! Thanks for the updated patch... > > Le jeudi 20 mai 2021 à 16:24 -0400, David Malcolm a écrit : > > On Mon, 2021-05-17 at 21:02 -0400, Antoni Boucher via Jit wrote: > > > Hello. >

Re: [PATCH] libgccjit: Add support for types used by atomic builtins [PR96066] [PR96067]

2021-11-20 Thread Antoni Boucher via Gcc-patches
> >  #define create_code create_code_hello_world > >  #define verify_code verify_code_hello_world > > As with various other patches, this needs to also add a new entry to > the "testcases" array making use of the new > {create|verify}_code_builtin_types func

Re: [PATCH] libgccjit: Add support for types used by atomic builtins [PR96066] [PR96067]

2021-05-26 Thread Antoni Boucher via Gcc-patches
Hi. Here's the new patch with the fixes requested. Le jeudi 20 mai 2021 à 16:24 -0400, David Malcolm a écrit : > On Mon, 2021-05-17 at 21:02 -0400, Antoni Boucher via Jit wrote: > > Hello. > > This patch fixes the issue with using atomic builtins in libgccjit. > > Thanks to review it. > >

Re: [PATCH] libgccjit: Add support for types used by atomic builtins [PR96066] [PR96067]

2021-05-20 Thread David Malcolm via Gcc-patches
On Mon, 2021-05-17 at 21:02 -0400, Antoni Boucher via Jit wrote: > Hello. > This patch fixes the issue with using atomic builtins in libgccjit. > Thanks to review it. [...snip...] > diff --git a/gcc/jit/jit-recording.c b/gcc/jit/jit-recording.c > index 117ff70114c..de876ff9fa6 100644 > ---

[PATCH] libgccjit: Add support for types used by atomic builtins [PR96066] [PR96067]

2021-05-17 Thread Antoni Boucher via Gcc-patches
Hello. This patch fixes the issue with using atomic builtins in libgccjit. Thanks to review it. From 0ce53d373ffba9f3f80a2d2b4e1a7d724ba31b7d Mon Sep 17 00:00:00 2001 From: Antoni Boucher Date: Sun, 9 May 2021 20:14:37 -0400 Subject: [PATCH] Add support for types used by atomic builtins [PR96066]