Displaying 2 results from an estimated 2 matches for "pereira05".
Did you mean:
pereira
2006 Jun 14
0
[LLVMdev] Code instruction selection based on SSA-graphs
>
> What do you think about this approach? Whould it be interesting to
> implement something like that for LLVM? May be you already have
> considered something like that? Are there any plans to it?
We have talked about whole function instruction selection but does
not have immediate plan to implement it. If we were to implement it
today, it would probably be done on DAGs with
2006 Jun 14
4
[LLVMdev] Code instruction selection based on SSA-graphs
Hi,
LLVM already uses dynamic-programming based optimal pattern matching
selectors for some of the target architectures. But as far as I know,
the code is first converted out of the SSA form, before the selection
process takes place. The same approach is used by many other compilers.
But there is an article from Erik Eckstein, where a different method is
proposed. In the described approach, the