blob: 5eae9a769f8ab76f1803360734830347b3f3d5cf [file] [log] [blame]
Eric Fiselier1b57fa82016-09-15 22:27:07 +00001========================
2Symbol Visibility Macros
3========================
4
5.. contents::
6 :local:
7
8Overview
9========
10
11Libc++ uses various "visibility" macros in order to provide a stable ABI in
12both the library and the headers. These macros work by changing the
13visibility and inlining characteristics of the symbols they are applied to.
14
15Visibility Macros
16=================
17
18**_LIBCPP_HIDDEN**
19 Mark a symbol as hidden so it will not be exported from shared libraries.
20
21**_LIBCPP_FUNC_VIS**
22 Mark a symbol as being exported by the libc++ library. This attribute must
23 be applied to the declaration of all functions exported by the libc++ dylib.
24
Shoaib Meenai2d71db42016-11-16 22:18:10 +000025**_LIBCPP_OVERRIDABLE_FUNC_VIS**
26 Mark a symbol as being exported by the libc++ library, but allow it to be
27 overridden locally. On non-Windows, this is equivalent to `_LIBCPP_FUNC_VIS`.
28 This macro is applied to all `operator new` and `operator delete` overloads.
29
30 **Windows Behavior**: Any symbol marked `dllimport` cannot be overridden
31 locally, since `dllimport` indicates the symbol should be bound to a separate
32 DLL. All `operator new` and `operator delete` overloads are required to be
33 locally overridable, and therefore must not be marked `dllimport`. On Windows,
34 this macro therefore expands to `__declspec(dllexport)` when building the
35 library and has an empty definition otherwise.
36
Eric Fiselier1b57fa82016-09-15 22:27:07 +000037**_LIBCPP_INLINE_VISIBILITY**
38 Mark a function as hidden and force inlining whenever possible.
39
40**_LIBCPP_ALWAYS_INLINE**
41 A synonym for `_LIBCPP_INLINE_VISIBILITY`
42
43**_LIBCPP_TYPE_VIS**
44 Mark a type's typeinfo and vtable as having default visibility.
45 `_LIBCPP_TYPE_VIS`. This macro has no effect on the visibility of the
46 type's member functions. This attribute cannot be used on class templates.
47
48 **GCC Behavior**: GCC does not support Clang's `type_visibility(...)`
49 attribute. With GCC the `visibility(...)` attribute is used and member
50 functions are affected.
51
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +000052**_LIBCPP_TEMPLATE_ONLY**
53 The same as `_LIBCPP_TYPE_VIS` except that it may be applied to class
54 templates.
Eric Fiselier1b57fa82016-09-15 22:27:07 +000055
56 **Windows Behavior**: DLLs do not support dllimport/export on class templates.
57 The macro has an empty definition on this platform.
58
Eric Fiselier1b57fa82016-09-15 22:27:07 +000059
60**_LIBCPP_ENUM_VIS**
61 Mark the typeinfo of an enum as having default visibility. This attribute
62 should be applied to all enum declarations.
63
64 **Windows Behavior**: DLLs do not support importing or exporting enumeration
65 typeinfo. The macro has an empty definition on this platform.
66
67 **GCC Behavior**: GCC un-hides the typeinfo for enumerations by default, even
68 if `-fvisibility=hidden` is specified. Additionally applying a visibility
69 attribute to an enum class results in a warning. The macro has an empty
70 definition with GCC.
71
72**_LIBCPP_EXTERN_TEMPLATE_TYPE_VIS**
73 Mark the member functions, typeinfo, and vtable of the type named in
74 a `_LIBCPP_EXTERN_TEMPLATE` declaration as being exported by the libc++ library.
75 This attribute must be specified on all extern class template declarations.
76
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +000077 This macro is used to override the `_LIBCPP_TEMPLATE_VIS` attribute
Eric Fiselier1b57fa82016-09-15 22:27:07 +000078 specified on the primary template and to export the member functions produced
79 by the explicit instantiation in the dylib.
80
81 **GCC Behavior**: GCC ignores visibility attributes applied the type in
82 extern template declarations and applying an attribute results in a warning.
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +000083 However since `_LIBCPP_TEMPLATE_VIS` is the same as
84 `__attribute__((visibility("default"))` the visibility is already correct.
85 The macro has an empty definition with GCC.
Eric Fiselier1b57fa82016-09-15 22:27:07 +000086
Shoaib Meenai5ac10672016-09-19 18:29:07 +000087 **Windows Behavior**: `extern template` and `dllexport` are fundamentally
88 incompatible *on a template class* on Windows; the former suppresses
89 instantiation, while the latter forces it. Specifying both on the same
90 declaration makes the template class be instantiated, which is not desirable
91 inside headers. This macro therefore expands to `dllimport` outside of libc++
92 but nothing inside of it (rather than expanding to `dllexport`); instead, the
93 explicit instantiations themselves are marked as exported. Note that this
94 applies *only* to extern template *classes*. Extern template *functions* obey
95 regular import/export semantics, and applying `dllexport` directly to the
96 extern template declaration is the correct thing to do for them.
97
98**_LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS**
99 Mark the member functions, typeinfo, and vtable of an explicit instantiation
100 of a class template as being exported by the libc++ library. This attribute
101 must be specified on all template class explicit instantiations.
102
103 It is only necessary to mark the explicit instantiation itself (as opposed to
104 the extern template declaration) as exported on Windows, as discussed above.
105 On all other platforms, this macro has an empty definition.
106
Eric Fiselier815ed732016-09-16 00:00:48 +0000107**_LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY**
Eric Fiselier36648c22016-10-31 02:07:23 +0000108 Mark a member function of a class template as visible and always inline. This
109 macro should only be applied to member functions of class templates that are
110 externally instantiated. It is important that these symbols are not marked
111 as hidden as that will prevent the dylib definition from being found.
Eric Fiselier815ed732016-09-16 00:00:48 +0000112
113 This macro is used to maintain ABI compatibility for symbols that have been
Eric Fiselier36648c22016-10-31 02:07:23 +0000114 historically exported by the libc++ library but are now marked inline.
Eric Fiselier815ed732016-09-16 00:00:48 +0000115
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000116**_LIBCPP_EXCEPTION_ABI**
117 Mark the member functions, typeinfo, and vtable of the type as being exported
118 by the libc++ library. This macro must be applied to all *exception types*.
Eric Fiselier0f47c382016-09-16 02:51:26 +0000119 Exception types should be defined directly in namespace `std` and not the
120 versioning namespace. This allows throwing and catching some exception types
121 between libc++ and libstdc++.
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000122
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000123Links
124=====
125
126* `[cfe-dev] Visibility in libc++ - 1 <http://lists.llvm.org/pipermail/cfe-dev/2013-July/030610.html>`_
127* `[cfe-dev] Visibility in libc++ - 2 <http://lists.llvm.org/pipermail/cfe-dev/2013-August/031195.html>`_
128* `[libcxx] Visibility fixes for Windows <http://lists.llvm.org/pipermail/cfe-commits/Week-of-Mon-20130805/085461.html>`_