[PATCH 6/7] gdb: select "Cygwin" OS ABI for Cygwin binaries

Simon Marchi simon.marchi@efficios.com
Thu Apr 2 14:08:33 GMT 2020


On 2020-04-02 10:03 a.m., Pedro Alves wrote:
> On 4/2/20 3:01 PM, Simon Marchi wrote:
>> On 2020-04-02 9:56 a.m., Pedro Alves wrote:
>>> On 4/1/20 10:53 PM, Simon Marchi via Gdb-patches wrote:
>>>> However, when BFD maps the file/section data in memory for GDB to read, is that mapping
>>>> guaranteed to be sufficiently aligned as well?
>>>
>>> I think so.  If bfd heap allocates, then memory will be aligned to the word size at
>>> least.  If bfd mmaps, then memory will be aligned to page size.  And then if the
>>> data structures are aligned, we should be good.
>>
>> Following this message from Tom [1], I'm going to change the code to use
>> bfd_get_full_section_contents and store the data into a pre-allocated gdb::byte_vector.
>> Does that change anything?
> 
> I don't think it does.

Err, just to make a correction: bfd_get_full_section_contents allocates the memory itself
and returns a pointer, so I won't use gdb::byte_vector.  Since BFD does the allocation
itself, then we can say it's responsible for returning a properly aligned buffer.

Simon



More information about the Gdb-patches mailing list