In order to build a metrication tool I need a frontend that can
provide me with an abstract syntax tree containing information on all
actual language constructs in the code and also a CFG representation.
I reckon GCC has these capabilities and I was wondering if any of you
could tell me if it is p
Hi,
Steven Bosscher wrote:
On 7/25/06, Christian Wagner <[EMAIL PROTECTED]> wrote:
Hi,
I'm trying to extract information from C++ code during the compilation
process.
I need information about declarations, statements, functions (including
parameters and symbol name), source line
Hi,
I'm trying to extract information from C++ code during the compilation process.
I need information about declarations, statements, functions (including
parameters and symbol name), source line and source file.
In my opinion I have two ways to solve this problem:
1) The first one is to find