Re: Rebuild C code from GCC intermediate format

2006-09-14 Thread Rafael EspĂ­ndola
I wish to know if there exists any plugin that translate these intermediate format into C sources. I intent to modify these intermediate formats and retranslate then into C source to anylise the trasnsformations. For reading a C like representation you can use -fdump-tree-*. It might have the

Re: Rebuild C code from GCC intermediate format

2006-09-13 Thread Diego Novillo
Leonardo Mata wrote on 09/08/06 15:56: I wish to know if there exists any plugin that translate these intermediate format into C sources. Not that I know of. There is an existing effort to implement link-time optimizations (search for LTO in the archives and web pages) that may at some point

Rebuild C code from GCC intermediate format

2006-09-08 Thread Leonardo Mata
Hello ALL! I'm working in a project to automatic create parallel code for anthill program model http://homepages.dcc.ufmg.br/~dorgival/artigos/sbac2005.pdf the goal is to translate a C uniq source into various C source files that represent the parallelized code. I've been looking for a compiler