<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Jul 10, 2018, at 17:25, Louis Dionne via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" class="">cfe-dev@lists.llvm.org</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><blockquote type="cite" class=""><div class=""><br class="Apple-interchange-newline">On Jul 10, 2018, at 16:46, Eric Fiselier <<a href="mailto:eric@efcs.ca" class="">eric@efcs.ca</a>> wrote:</div><div class=""><br class="" style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;"><div class="gmail_quote" style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;">On Tue, Jul 10, 2018 at 1:13 PM, Louis Dionne<span class="Apple-converted-space"> </span><span dir="ltr" class=""><<a href="mailto:ldionne@apple.com" target="_blank" class="">ldionne@apple.com</a>></span><span class="Apple-converted-space"> </span>wrote:<br class=""><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding-left: 1ex;"><div class="" style="word-wrap: break-word;"><div dir="auto" class="" style="word-wrap: break-word;"><br class=""><div class=""><span class="gmail-"><blockquote type="cite" class=""><div class="">On Jul 10, 2018, at 10:07, Eric Fiselier <<a href="mailto:eric@efcs.ca" target="_blank" class="">eric@efcs.ca</a>> wrote:</div><br class="gmail-m_-1744977764213608698Apple-interchange-newline"><div class=""><div dir="ltr" class="">[…]</div></div></blockquote></span><span class="gmail-"><blockquote type="cite" class=""><div dir="ltr" class=""><div class="gmail_extra"><div class="gmail_quote"><div class=""> </div><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding-left: 1ex;">This would look something like:<br class=""><br class="">   <span class="Apple-converted-space"> </span>#ifdef _LIBCPP_NO_INTERNAL_LINKAGE_FO<wbr class="">R_ABI_UNSTABLE_SYMBOLS<br class="">   <span class="Apple-converted-space"> </span>#   define _LIBCPP_HIDE_FROM_ABI __attribute__((__visibility__(<wbr class="">"hidden")))<br class="">   <span class="Apple-converted-space"> </span>#else<br class="">   <span class="Apple-converted-space"> </span>#   define _LIBCPP_HIDE_FROM_ABI __attribute__((__visibility__(<wbr class="">"hidden"),internal_linkage))<br class="">   <span class="Apple-converted-space"> </span>#endif<br class=""><br class="">In the future, we can decide which default behavior we want, but for now, I suggest we stick to what we have right now, which is support for both (1) and (2). It would be fine to change this in the future if we make that decision.<br class=""><br class=""></blockquote><div class=""><br class=""></div><div class="">When we don’t have internal linkage, I suspect we'll want to keep `__always_inline__` as to prevent static libraries from providing each other with incompatible function definitions (I think this could occur?).</div></div></div></div></blockquote><div class=""><br class=""></div></span></div>The idea here is that some people don’t care about interoperability of static libraries (or, equivalently, object files) built with different libc++ headers. And since they don’t care about this, they’d rather not pay the cost of inlining or internal linkage, which is code bloat.</div></div></blockquote><div class=""><br class=""></div><div class="">The `__always_inline__` is always needed, at least when mixing ABI stable and ABI hidden symbols in a explicitly instantiated template. Here's a reproducer that should fail to link on GCC and Clang:</div><div class=""><a href="https://godbolt.org/g/LLZGjG" class="">https://godbolt.org/g/LLZGjG</a></div></div></div></blockquote><br class=""></div><div style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class="">I don’t believe this example is conforming. Per <a href="http://eel.is/c++draft/temp.explicit#12" class="">http://eel.is/c++draft/<wbr class="">temp.explicit#12</a>, `__init` should still be instantiated in `main.o`, because `__init` is marked inline. I must be wrong because otherwise both GCC and Clang are compiling this wrong.</div></div></blockquote><br class=""></div><div><div>I’ve kicked off a thread on llvm-dev here to try to clarify the situation: <a href="http://lists.llvm.org/pipermail/llvm-dev/2018-July/124549.html" class="">http://lists.llvm.org/pipermail/llvm-dev/2018-July/124549.html</a></div><div><br class=""></div><div>I want to avoid at all costs getting stuck like all the previous times this topic was brought up, so let me scale down the proposal to something that will still relieve much of the pain, while letting space for improvement in the future. The new proposal would be:</div><div><br class=""></div><div>1. Everything that is ABI stable is marked with a visibility macro like today (no change here).</div><div>2. Everything that is marked with `_LIBCPP_INLINE_VISIBILITY` today is marked with a new `_LIBCPP_HIDE_FROM_ABI` macro instead. This macro is defined to `__attribute__((__visibility__("hidden"), internal_linkage))`, or to `__attribute__((__visibility__("hidden"), __always_inline__))` if the `internal_linkage` attribute is not supported (e.g. GCC). There is no way to turn off both `internal_linkage` and `__always_inline__`, not until the issue brought up above is resolved. This would look something like this:</div><div><br class=""></div><div>    #if __has_attribute(internal_linkage)</div><div>    #  define _LIBCPP_INTERNAL_LINKAGE __attribute__ ((internal_linkage))</div><div>    #else</div><div>    #  define _LIBCPP_INTERNAL_LINKAGE __attribute__ ((__always_inline__))</div><div>    #endif</div><div><br class=""></div><div>    #ifndef _LIBCPP_HIDE_FROM_ABI</div><div>    #  define _LIBCPP_HIDE_FROM_ABI __attribute__((__visibility__(“hidden”))) _LIBCPP_INTERNAL_LINKAGE</div><div>    #endif</div><div><br class=""></div><div>In the future, as a pure improvement, we can add an alternative definition of `_LIBCPP_HIDE_FROM_ABI` which uses neither `internal_linkage` nor `__always_inline__`, for those that don't care about static archive interoperability but care about code size.</div><div><br class=""></div><div>3. We still don't touch `_LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY` for now.</div><div><br class=""></div><div>Concretely, this will solve the problem of abusive inlining of the vast majority of functions whenever libc++ is compiled on Clang, which is already a big improvement. And then I can go back to the design board to solve the remaining issues, having at least made a some progress.</div><div><br class=""></div><div>What do you think?</div><div><br class=""></div><div>Louis</div><div class=""><br class=""></div></div></body></html>