This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Dump values from FPU after each operation


> Date: Fri, 4 Nov 2011 09:14:35 +0100 (CET)
> From: Thomas Baruchel <baruchel@gmx.com>
> 
> Hi, I have a compiled program with no debugging symbol (and no source if
> you want to ask). I would like to know how some floating point value is
> made of, and since I know what value I am looking for, I think one easy
> way would be to lauch the program and to have on the standard output the
> content of the FPU after each operation; I am aware it will be a huge
> amount of value, but since I know which value is expected, I could
> probably parse this output to grep (with -A / -B options in order to extract
> 100 lines around the exact matching). But is it possible to do such a thing?
> 
> I am aware that dumping these registers will not tell me the operations,
> but this is not a big issue; I can probably guess it once I know the
> involved floating-point values.
> 
> If the data can't be redirect to standard output, I can save it, this is not
> the most important. Regards,

I think you want "info float" and/or "info all-registers", and you
want to turn on logging, so GDB writes everything to a log file you
can later process.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]