NEW 191201
Do not re-declare soft-linked functions in SOFT_LINK* macros
https://bugs.webkit.org/show_bug.cgi?id=191201
Summary Do not re-declare soft-linked functions in SOFT_LINK* macros
Jer Noble
Reported 2018-11-02 11:39:46 PDT
Do not re-declare soft-linked functions in SOFT_LINK* macros
Attachments
Patch (38.79 KB, patch)
2018-11-02 11:44 PDT, Jer Noble
no flags
Patch (38.89 KB, patch)
2018-11-02 11:52 PDT, Jer Noble
no flags
Patch (38.97 KB, patch)
2018-11-02 11:58 PDT, Jer Noble
no flags
Jer Noble
Comment 1 2018-11-02 11:44:39 PDT
Jer Noble
Comment 2 2018-11-02 11:52:58 PDT
Jer Noble
Comment 3 2018-11-02 11:58:21 PDT
Alexey Proskuryakov
Comment 4 2018-11-02 12:31:40 PDT
Comment on attachment 353721 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=353721&action=review > Source/WTF/ChangeLog:8 > + Re-declaring soft-linked functions can cause build errors when upstream frameworks change, for example, their export attributes This is a good thing, we don’t want to diverge from what the framework declares. It’s similar to how we redeclare as much as possible in SOI headers.
Jer Noble
Comment 5 2018-11-02 12:48:31 PDT
Comment on attachment 353721 [details] Patch (In reply to Alexey Proskuryakov from comment #4) > Comment on attachment 353721 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=353721&action=review > > > Source/WTF/ChangeLog:8 > > + Re-declaring soft-linked functions can cause build errors when upstream frameworks change, for example, their export attributes > > This is a good thing, we don’t want to diverge from what the framework > declares. > > It’s similar to how we redeclare as much as possible in SOI headers. I get the goal. But we explicitly redeclare them as __always_inline__ and visibility('hidden') attributes to our own redeclaration, so we are explicitly redeclaring them to be different than the framework. So if this is our goal, we need to stop doing that. Until then, your premise is invalid.
Jer Noble
Comment 6 2018-11-02 12:51:33 PDT
(In reply to Jer Noble from comment #5) > Comment on attachment 353721 [details] > Patch > > (In reply to Alexey Proskuryakov from comment #4) > > Comment on attachment 353721 [details] > > Patch > > > > View in context: > > https://bugs.webkit.org/attachment.cgi?id=353721&action=review > > > > > Source/WTF/ChangeLog:8 > > > + Re-declaring soft-linked functions can cause build errors when upstream frameworks change, for example, their export attributes > > > > This is a good thing, we don’t want to diverge from what the framework > > declares. > > > > It’s similar to how we redeclare as much as possible in SOI headers. > > I get the goal. But we explicitly redeclare them as __always_inline__ and > visibility('hidden') attributes to our own redeclaration, so we are > explicitly redeclaring them to be different than the framework. So if this > is our goal, we need to stop doing that. Until then, your premise is invalid. Also, we do /not/ match the declarations in the SPI headers either, since we routinely have to add "NS_ASSUME_NONNULL_BEGIN/END" macros around classes and methods.
Alex Christensen
Comment 7 2021-11-01 12:47:25 PDT
Comment on attachment 353721 [details] Patch This has been requesting review for more than one year. If this is still needed, please rebase and re-request review.
Note You need to log in before you can comment on or make changes to this bug.