blob: 861cc04ac4554ee3fd7255554fbfe069eb3471e8 [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
25**_LIBCPP_INLINE_VISIBILITY**
26 Mark a function as hidden and force inlining whenever possible.
27
28**_LIBCPP_ALWAYS_INLINE**
29 A synonym for `_LIBCPP_INLINE_VISIBILITY`
30
31**_LIBCPP_TYPE_VIS**
32 Mark a type's typeinfo and vtable as having default visibility.
33 `_LIBCPP_TYPE_VIS`. This macro has no effect on the visibility of the
34 type's member functions. This attribute cannot be used on class templates.
35
36 **GCC Behavior**: GCC does not support Clang's `type_visibility(...)`
37 attribute. With GCC the `visibility(...)` attribute is used and member
38 functions are affected.
39
40**_LIBCPP_TYPE_VIS_ONLY**
41 The same as `_LIBCPP_TYPE_VIS` except that it may be applied to templates.
42
43 **Windows Behavior**: DLLs do not support dllimport/export on class templates.
44 The macro has an empty definition on this platform.
45
46 Note: This macro should be renamed `_LIBCPP_TEMPLATE_TYPE_VIS`.
47
48**_LIBCPP_ENUM_VIS**
49 Mark the typeinfo of an enum as having default visibility. This attribute
50 should be applied to all enum declarations.
51
52 **Windows Behavior**: DLLs do not support importing or exporting enumeration
53 typeinfo. The macro has an empty definition on this platform.
54
55 **GCC Behavior**: GCC un-hides the typeinfo for enumerations by default, even
56 if `-fvisibility=hidden` is specified. Additionally applying a visibility
57 attribute to an enum class results in a warning. The macro has an empty
58 definition with GCC.
59
60**_LIBCPP_EXTERN_TEMPLATE_TYPE_VIS**
61 Mark the member functions, typeinfo, and vtable of the type named in
62 a `_LIBCPP_EXTERN_TEMPLATE` declaration as being exported by the libc++ library.
63 This attribute must be specified on all extern class template declarations.
64
65 This macro is used to override the `_LIBCPP_TYPE_VIS_ONLY` attribute
66 specified on the primary template and to export the member functions produced
67 by the explicit instantiation in the dylib.
68
69 **GCC Behavior**: GCC ignores visibility attributes applied the type in
70 extern template declarations and applying an attribute results in a warning.
71 However since `_LIBCPP_TYPE_VIS_ONLY` is the same as `_LIBCPP_TYPE_VIS` the
72 visibility is already correct. The macro has an empty definition with GCC.
73
Shoaib Meenai5ac10672016-09-19 18:29:07 +000074 **Windows Behavior**: `extern template` and `dllexport` are fundamentally
75 incompatible *on a template class* on Windows; the former suppresses
76 instantiation, while the latter forces it. Specifying both on the same
77 declaration makes the template class be instantiated, which is not desirable
78 inside headers. This macro therefore expands to `dllimport` outside of libc++
79 but nothing inside of it (rather than expanding to `dllexport`); instead, the
80 explicit instantiations themselves are marked as exported. Note that this
81 applies *only* to extern template *classes*. Extern template *functions* obey
82 regular import/export semantics, and applying `dllexport` directly to the
83 extern template declaration is the correct thing to do for them.
84
85**_LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS**
86 Mark the member functions, typeinfo, and vtable of an explicit instantiation
87 of a class template as being exported by the libc++ library. This attribute
88 must be specified on all template class explicit instantiations.
89
90 It is only necessary to mark the explicit instantiation itself (as opposed to
91 the extern template declaration) as exported on Windows, as discussed above.
92 On all other platforms, this macro has an empty definition.
93
Eric Fiselier815ed732016-09-16 00:00:48 +000094**_LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY**
Eric Fiselier36648c22016-10-31 02:07:23 +000095 Mark a member function of a class template as visible and always inline. This
96 macro should only be applied to member functions of class templates that are
97 externally instantiated. It is important that these symbols are not marked
98 as hidden as that will prevent the dylib definition from being found.
Eric Fiselier815ed732016-09-16 00:00:48 +000099
100 This macro is used to maintain ABI compatibility for symbols that have been
Eric Fiselier36648c22016-10-31 02:07:23 +0000101 historically exported by the libc++ library but are now marked inline.
Eric Fiselier815ed732016-09-16 00:00:48 +0000102
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000103**_LIBCPP_EXCEPTION_ABI**
104 Mark the member functions, typeinfo, and vtable of the type as being exported
105 by the libc++ library. This macro must be applied to all *exception types*.
Eric Fiselier0f47c382016-09-16 02:51:26 +0000106 Exception types should be defined directly in namespace `std` and not the
107 versioning namespace. This allows throwing and catching some exception types
108 between libc++ and libstdc++.
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000109
Shoaib Meenai1732d222016-09-28 22:28:51 +0000110**_LIBCPP_NEW_DELETE_VIS**
111 Mark a symbol as being exported by the libc++ library. This macro must be
112 applied to all `operator new` and `operator delete` overloads.
113
Shoaib Meenaiaaa8acd2016-10-12 13:48:14 +0000114 **Windows Behavior**: The `operator new` and `operator delete` overloads
115 should not be marked as `dllimport`; if they were, source files including the
116 `<new>` header (either directly or transitively) would lose the ability to use
117 local overloads of `operator new` and `operator delete`. On Windows, this
118 macro therefore expands to `__declspec(dllexport)` when building the library
119 and has an empty definition otherwise. A related caveat is that libc++ must be
120 included on the link line before `msvcrt.lib`, otherwise Microsoft's
121 definitions of `operator new` and `operator delete` inside `msvcrt.lib` will
122 end up being used instead of libc++'s.
Shoaib Meenai1732d222016-09-28 22:28:51 +0000123
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000124Links
125=====
126
127* `[cfe-dev] Visibility in libc++ - 1 <http://lists.llvm.org/pipermail/cfe-dev/2013-July/030610.html>`_
128* `[cfe-dev] Visibility in libc++ - 2 <http://lists.llvm.org/pipermail/cfe-dev/2013-August/031195.html>`_
129* `[libcxx] Visibility fixes for Windows <http://lists.llvm.org/pipermail/cfe-commits/Week-of-Mon-20130805/085461.html>`_