Re: [PATCH v1 2/9] gdbstub: Introduce gdb_get_float64() to get 64-bit float registers

2020-05-01 Thread Richard Henderson
On 4/30/20 12:01 PM, Alex Bennée wrote: > From: Philippe Mathieu-Daudé > > When converted to use GByteArray in commits 462474d760c and > a010bdbe719, the call to stfq_p() was removed. This call > serialize a float. > Since we now use a GByteArray, we can not use stfq_p() directly. > Introduce

[PATCH v1 2/9] gdbstub: Introduce gdb_get_float64() to get 64-bit float registers

2020-04-30 Thread Alex Bennée
From: Philippe Mathieu-Daudé When converted to use GByteArray in commits 462474d760c and a010bdbe719, the call to stfq_p() was removed. This call serialize a float. Since we now use a GByteArray, we can not use stfq_p() directly. Introduce the gdb_get_float64() helper to load a float64 register.