Re: [PATCH,FORTRAN 00/29] Move towards stringpool, part 1

2023-04-13 Thread Bernhard Reutner-Fischer via Gcc-patches
Hi all, Janne! On Wed, 19 Sep 2018 16:40:01 +0200 Bernhard Reutner-Fischer wrote: > On Fri, 7 Sep 2018 at 10:07, Bernhard Reutner-Fischer > wrote: > > > > On Wed, 5 Sep 2018 at 20:57, Janne Blomqvist > > wrote: > > > > > > On Wed, Sep 5, 2018 at 5:58 PM Bernhard Reutner-Fischer > > > wrote

Re: [PATCH,FORTRAN 00/29] Move towards stringpool, part 1

2021-04-18 Thread Bernhard Reutner-Fischer via Gcc-patches
On Fri, 7 Sep 2018 10:30:30 +0200 Bernhard Reutner-Fischer wrote: > On Thu, 6 Sep 2018 at 03:25, Jerry DeLisle wrote: > > > > On 09/05/2018 07:57 AM, Bernhard Reutner-Fischer wrote: > > > Hi, > > > > > > The fortran frontend still uses stack-based handling of (symbol) names > > > with fixed-si

Re: [PATCH,FORTRAN 00/29] Move towards stringpool, part 1

2018-09-19 Thread Bernhard Reutner-Fischer
On Fri, 7 Sep 2018 at 10:07, Bernhard Reutner-Fischer wrote: > > On Wed, 5 Sep 2018 at 20:57, Janne Blomqvist > wrote: > > > > On Wed, Sep 5, 2018 at 5:58 PM Bernhard Reutner-Fischer > > wrote: > > >> Bootstrapped and regtested on x86_64-foo-linux. > >> > >> I'd appreciate if someone could dou

Re: [PATCH,FORTRAN 00/29] Move towards stringpool, part 1

2018-09-07 Thread Bernhard Reutner-Fischer
On Wed, 5 Sep 2018 at 20:57, Janne Blomqvist wrote: > > On Wed, Sep 5, 2018 at 5:58 PM Bernhard Reutner-Fischer > wrote: >> Bootstrapped and regtested on x86_64-foo-linux. >> >> I'd appreciate if someone could double check for regressions on other >> setups. Git branch: >> https://gcc.gnu.org/g

Re: [PATCH,FORTRAN 00/29] Move towards stringpool, part 1

2018-09-05 Thread Janne Blomqvist
On Wed, Sep 5, 2018 at 5:58 PM Bernhard Reutner-Fischer < rep.dot@gmail.com> wrote: > Hi, > > The fortran frontend still uses stack-based handling of (symbol) names > with fixed-sized buffers. Furthermore these buffers often are too small > when dealing with F2003 identifiers which can be up t

[PATCH,FORTRAN 00/29] Move towards stringpool, part 1

2018-09-05 Thread Bernhard Reutner-Fischer
Hi, The fortran frontend still uses stack-based handling of (symbol) names with fixed-sized buffers. Furthermore these buffers often are too small when dealing with F2003 identifiers which can be up to, including 63 bytes long. Other frontends use the stringpool since many years. This janitorial