Re: Profile-driven optimization

=?ISO-8859-1?Q?Pertti_Kellom=E4ki?= <pertti.kellomaki@tut.fi>
Fri, 01 Feb 2008 13:14:26 +0200

          From comp.compilers

Related articles
Profile-driven optimization plfriko@yahoo.de (Tim Frink) (2008-01-29)
Re: Profile-driven optimization gene.ressler@gmail.com (Gene) (2008-01-31)
Re: Profile-driven optimization pertti.kellomaki@tut.fi (=?ISO-8859-1?Q?Pertti_Kellom=E4ki?=) (2008-02-01)
Re: Profile-driven optimization news1@oregonw.com (M Wolfe) (2008-02-02)
Re: Profile-driven optimization albert@mustatilhi.cs.tut.fi (Pasi Ojala) (2008-02-08)
| List of all articles for this month |

From: =?ISO-8859-1?Q?Pertti_Kellom=E4ki?= <pertti.kellomaki@tut.fi>
Newsgroups: comp.compilers
Date: Fri, 01 Feb 2008 13:14:26 +0200
Organization: Compilers Central
References: 08-01-078
Keywords: optimize, parallel
Posted-Date: 01 Feb 2008 20:48:56 EST

Tim Frink wrote:
> Based on that, they get one path through
> the program that is executed most frequently.
>
> I'm now wondering what sort of optimizations can be performed to that
> path.


A single instruction of a VLIW machine consists of a (fixed) number
of operations that the machine can execute in parallel. The operations
must be independent, i.e. one operation cannot use the output of
another as an input in the same cycle. This means that a VLIW machine
is potentially capable of impressive amounts of instruction level
parallelism, but only if the compiler is able to find it.


Typical basic blocks are relatively short, which limits the practical
amount of instruction level parallelism that the compiler can exploit.
So the trick that e.g. the Multiflow compiler used is to guess based
on the profiling information which basic blocks will usually be
executed in sequence, and do instruction scheduling (ordering of
instructions) on this larger region. Look up trace scheduling,
superblocks and hyperblocks for more information.


Since the IA-64 architecture can be thought of as VLIW-on-demand,
I suppose this is quite relevant there as well.
--
Pertti



Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.