Displaying 3 results from an estimated 3 matches for "compiler_survey_felix_von_leitn".
Did you mean:
compiler_survey_felix_von_leitner
2009 Nov 07
3
[LLVMdev] interesting preso
I enjoyed this presentation:
http://www.linux-kongress.org/2009/slides/compiler_survey_felix_von_leitner.pdf
Among other things it lists small code sequences when compiled with a
small collection of compilers, including llvm 2.6. It looks like
there are several fairly obvious things we could do better...
-Chris
2009 Nov 08
0
[LLVMdev] interesting preso
2009/11/7 Chris Lattner <clattner at apple.com>:
> I enjoyed this presentation:
> http://www.linux-kongress.org/2009/slides/compiler_survey_felix_von_leitner.pdf
Wow, very comprehensive!
Is there anyone working on vectorization? This is something that
interests me, I might give it a try, just need some pointers.
cheers,
--renato
Reclaim your digital rights, eliminate DRM, learn more at
http://www.defectivebydesign.org/what_is_drm
2009 Nov 08
2
[LLVMdev] interesting preso
On Nov 7, 2009, at 4:15 PM, Renato Golin wrote:
> 2009/11/7 Chris Lattner <clattner at apple.com>:
>> I enjoyed this presentation:
>> http://www.linux-kongress.org/2009/slides/compiler_survey_felix_von_leitner.pdf
>
> Wow, very comprehensive!
>
> Is there anyone working on vectorization? This is something that
> interests me, I might give it a try, just need some pointers.
The first step is loop dependence analysis. This is required to
determine loop reuse information and is the basi...