This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Load and parse RTL from textual dump files
- From: HEBBAL Yacine <y_hebbal at esi dot dz>
- To: gcc at gcc dot gnu dot org
- Date: Mon, 18 Dec 2017 11:30:47 +0100
- Subject: Load and parse RTL from textual dump files
- Authentication-results: sourceware.org; auth=none
Hello,
In one of my projects, I need to determine automatically what are the names
and types of data fields manipulated by functions in binary code of a given
program (e.g. Linux kernel).
I found that RTL dumps contains most of information I need in a form very
close to the one of the binary code.
For this end, I need to parse generated RTL expressions in order to extract
operands properties.
Is it possible to load and parse RTL expressions from textual dump files
using existing code in GCC ? Thanks