This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: RTL compression in GCC
- From: Martin Jambor <mjambor at suse dot cz>
- To: ALFONSO LUIS CASTANO MARIN <alfonsoluis dot castanom at um dot es>
- Cc: gcc at gcc dot gnu dot org
- Date: Mon, 20 Aug 2018 17:21:35 +0200
- Subject: Re: RTL compression in GCC
- References: <20180818172242.Horde.ka3TRsfzbklw-ZSxuQn6Og1@webmail.um.es>
Hello Alfonso,
On Sat, Aug 18 2018, ALFONSO LUIS CASTANO MARIN wrote:
> Dear Martin,
>
> I am interested in contributing to GCC to speed-up the compiler and I
> thought that the issues related with RTL are very interesting. I wonder if
> still there has not been done any job in RTL compression and if you could
> point me to someone how could give me some hints about how to contribute in
> this.
I suggest you discuss any GCC development ideas on the mailing list
gcc@gcc.gnu.org
As far as RTL compression is concerned, I do not remember it being
discussed or proposed before. From what I can tell, we are not usually
looking at RTL memory footprint when dealing with excessive memory
consumption, one reason is likely that there is only one function in the
RTL representation at a time, as opposed to the whole compilation unit
in GIMPLE. Others will surely correct me if I am wrong, however, and
may even suggest other areas where compilation speed could be improved.
Thanks,
Martin