qiucf added a comment.

In D116016#3202148 <https://reviews.llvm.org/D116016#3202148>, @MaskRay wrote:

>> This is part of the efforts adding .gnu_attribute support for PowerPC. In 
>> Clang, an extra metadata field will be added as float-abi to show current 
>> long double format. So backend can emit .gnu_attribute section data from 
>> this metadata.
>
> How does .gnu_attribute work with the metadata?

Planned way to do is check the module flag in ASM printer, like

  if (flt == "doubledouble")
    OutStreamer->emitGNUAttribute(4, 5);
  else if (flt == "ieeequad")
    OutStreamer->emitGNUAttribute(4, 13);
  else if (flt == "ieeedouble")
    OutStreamer->emitGNUAttribute(4, 9);

Currently this doesn't look like the most elegant way, and doesn't fully match 
behavior of GCC. (In GCC, if no floating operations exist, the attributes won't 
be generated) But since the floating abi option applies to the whole module, 
adding them to module flags are more reasonable than function attributes.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D116016/new/

https://reviews.llvm.org/D116016

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to