Re: [PATCH] Add cold attribute to one time construction APIs

2020-08-24 Thread Jonathan Wakely via Gcc-patches
ch list as separate emails. > >``` >From c6cba40e0434147db89d3af05b598782cde651e3 Mon Sep 17 00:00:00 2001 >From: Aditya Kumar <1894981+hiradi...@users.noreply.github.com> >Date: Thu, 13 Aug 2020 09:41:34 -0700 >Subject: [PATCH] Add cold attribute to one time construction A

Re: [PATCH] Add cold attribute to one time construction APIs

2020-08-24 Thread Jonathan Wakely via Gcc-patches
me email. Not sent once to each list as > separate emails. > > > > >``` > >From c6cba40e0434147db89d3af05b598782cde651e3 Mon Sep 17 00:00:00 2001 > >From: Aditya Kumar <1894981+hiradi...@users.noreply.github.com> > >Date: Thu, 13 Aug 2020 09:41:34 -0700 >

Re: [PATCH] Add cold attribute to one time construction APIs

2020-08-24 Thread Jan Hubicka
++ need to go to both the libstdc++ list and the > > gcc-patches list, in the same email. Not sent once to each list as > > separate emails. > > > > > > > >``` > > >From c6cba40e0434147db89d3af05b598782cde651e3 Mon Sep 17 00:00:00 2001 > > >From: Aditya Kumar <1894

Re: [PATCH] Add cold attribute to one time construction APIs

2020-08-24 Thread Richard Biener via Gcc-patches
separate emails. > > > > >``` > >From c6cba40e0434147db89d3af05b598782cde651e3 Mon Sep 17 00:00:00 2001 > >From: Aditya Kumar <1894981+hiradi...@users.noreply.github.com> > >Date: Thu, 13 Aug 2020 09:41:34 -0700 > >Subject: [PATCH] Add cold attribute

Re: [PATCH] Add cold attribute to one time construction APIs

2020-08-18 Thread Jonathan Wakely via Gcc-patches
894981+hiradi...@users.noreply.github.com> Date: Thu, 13 Aug 2020 09:41:34 -0700 Subject: [PATCH] Add cold attribute to one time construction APIs __cxa_guard_acquire is used for only one purpose, namely guarding local static variable initialization, and since that purpose is definitionally cold, it should

Re: [PATCH] Add cold attribute to one time construction APIs

2020-08-18 Thread Jonathan Wakely via Gcc-patches
ug 2020 09:41:34 -0700 Subject: [PATCH] Add cold attribute to one time construction APIs __cxa_guard_acquire is used for only one purpose, namely guarding local static variable initialization, and since that purpose is definitionally cold, it should be attributed as cold. Definitionally isn't