blob: 912cdafc8c37f791b68843fb59d081b32e70d7d0 [file] [log] [blame]
Sean Silva9522ae12013-09-09 19:57:49 +00001======================
2Modules (EXPERIMENTAL)
3======================
Douglas Gregora2b3d582013-03-20 06:25:14 +00004
Sean Silvac9fd1862013-03-20 18:37:42 +00005.. warning::
6 The functionality described on this page is still experimental! Please
7 try it out and send us bug reports!
8
Sean Silva9522ae12013-09-09 19:57:49 +00009.. contents::
10 :local:
11
Douglas Gregora2b3d582013-03-20 06:25:14 +000012Introduction
13============
14Most software is built using a number of software libraries, including libraries supplied by the platform, internal libraries built as part of the software itself to provide structure, and third-party libraries. For each library, one needs to access both its interface (API) and its implementation. In the C family of languages, the interface to a library is accessed by including the appropriate header files(s):
15
16.. code-block:: c
17
18 #include <SomeLib.h>
19
20The implementation is handled separately by linking against the appropriate library. For example, by passing ``-lSomeLib`` to the linker.
21
22Modules provide an alternative, simpler way to use software libraries that provides better compile-time scalability and eliminates many of the problems inherent to using the C preprocessor to access the API of a library.
23
Douglas Gregor5529e3e2013-03-22 07:05:07 +000024Problems with the current model
Douglas Gregora2b3d582013-03-20 06:25:14 +000025-------------------------------
26The ``#include`` mechanism provided by the C preprocessor is a very poor way to access the API of a library, for a number of reasons:
27
28* **Compile-time scalability**: Each time a header is included, the
29 compiler must preprocess and parse the text in that header and every
30 header it includes, transitively. This process must be repeated for
31 every translation unit in the application, which involves a huge
32 amount of redundant work. In a project with *N* translation units
33 and *M* headers included in each translation unit, the compiler is
34 performing *M x N* work even though most of the *M* headers are
35 shared among multiple translation units. C++ is particularly bad,
36 because the compilation model for templates forces a huge amount of
37 code into headers.
38
39* **Fragility**: ``#include`` directives are treated as textual
40 inclusion by the preprocessor, and are therefore subject to any
41 active macro definitions at the time of inclusion. If any of the
42 active macro definitions happens to collide with a name in the
43 library, it can break the library API or cause compilation failures
44 in the library header itself. For an extreme example,
45 ``#define std "The C++ Standard"`` and then include a standard
46 library header: the result is a horrific cascade of failures in the
47 C++ Standard Library's implementation. More subtle real-world
48 problems occur when the headers for two different libraries interact
49 due to macro collisions, and users are forced to reorder
50 ``#include`` directives or introduce ``#undef`` directives to break
51 the (unintended) dependency.
52
53* **Conventional workarounds**: C programmers have
54 adopted a number of conventions to work around the fragility of the
55 C preprocessor model. Include guards, for example, are required for
56 the vast majority of headers to ensure that multiple inclusion
57 doesn't break the compile. Macro names are written with
58 ``LONG_PREFIXED_UPPERCASE_IDENTIFIERS`` to avoid collisions, and some
59 library/framework developers even use ``__underscored`` names
60 in headers to avoid collisions with "normal" names that (by
61 convention) shouldn't even be macros. These conventions are a
62 barrier to entry for developers coming from non-C languages, are
63 boilerplate for more experienced developers, and make our headers
64 far uglier than they should be.
65
66* **Tool confusion**: In a C-based language, it is hard to build tools
67 that work well with software libraries, because the boundaries of
68 the libraries are not clear. Which headers belong to a particular
69 library, and in what order should those headers be included to
70 guarantee that they compile correctly? Are the headers C, C++,
71 Objective-C++, or one of the variants of these languages? What
72 declarations in those headers are actually meant to be part of the
73 API, and what declarations are present only because they had to be
74 written as part of the header file?
75
Douglas Gregor5529e3e2013-03-22 07:05:07 +000076Semantic import
Douglas Gregora2b3d582013-03-20 06:25:14 +000077---------------
78Modules improve access to the API of software libraries by replacing the textual preprocessor inclusion model with a more robust, more efficient semantic model. From the user's perspective, the code looks only slightly different, because one uses an ``import`` declaration rather than a ``#include`` preprocessor directive:
79
80.. code-block:: c
81
82 import std.io; // pseudo-code; see below for syntax discussion
83
84However, this module import behaves quite differently from the corresponding ``#include <stdio.h>``: when the compiler sees the module import above, it loads a binary representation of the ``std.io`` module and makes its API available to the application directly. Preprocessor definitions that precede the import declaration have no impact on the API provided by ``std.io``, because the module itself was compiled as a separate, standalone module. Additionally, any linker flags required to use the ``std.io`` module will automatically be provided when the module is imported [#]_
85This semantic import model addresses many of the problems of the preprocessor inclusion model:
86
87* **Compile-time scalability**: The ``std.io`` module is only compiled once, and importing the module into a translation unit is a constant-time operation (independent of module system). Thus, the API of each software library is only parsed once, reducing the *M x N* compilation problem to an *M + N* problem.
88
89* **Fragility**: Each module is parsed as a standalone entity, so it has a consistent preprocessor environment. This completely eliminates the need for ``__underscored`` names and similarly defensive tricks. Moreover, the current preprocessor definitions when an import declaration is encountered are ignored, so one software library can not affect how another software library is compiled, eliminating include-order dependencies.
90
91* **Tool confusion**: Modules describe the API of software libraries, and tools can reason about and present a module as a representation of that API. Because modules can only be built standalone, tools can rely on the module definition to ensure that they get the complete API for the library. Moreover, modules can specify which languages they work with, so, e.g., one can not accidentally attempt to load a C++ module into a C program.
92
Douglas Gregor5529e3e2013-03-22 07:05:07 +000093Problems modules do not solve
Douglas Gregora2b3d582013-03-20 06:25:14 +000094-----------------------------
95Many programming languages have a module or package system, and because of the variety of features provided by these languages it is important to define what modules do *not* do. In particular, all of the following are considered out-of-scope for modules:
96
97* **Rewrite the world's code**: It is not realistic to require applications or software libraries to make drastic or non-backward-compatible changes, nor is it feasible to completely eliminate headers. Modules must interoperate with existing software libraries and allow a gradual transition.
98
99* **Versioning**: Modules have no notion of version information. Programmers must still rely on the existing versioning mechanisms of the underlying language (if any exist) to version software libraries.
100
101* **Namespaces**: Unlike in some languages, modules do not imply any notion of namespaces. Thus, a struct declared in one module will still conflict with a struct of the same name declared in a different module, just as they would if declared in two different headers. This aspect is important for backward compatibility, because (for example) the mangled names of entities in software libraries must not change when introducing modules.
102
Douglas Gregor03d262b2013-03-20 17:11:13 +0000103* **Binary distribution of modules**: Headers (particularly C++ headers) expose the full complexity of the language. Maintaining a stable binary module format across architectures, compiler versions, and compiler vendors is technically infeasible.
Douglas Gregora2b3d582013-03-20 06:25:14 +0000104
105Using Modules
106=============
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000107To enable modules, pass the command-line flag ``-fmodules`` [#]_. This will make any modules-enabled software libraries available as modules as well as introducing any modules-specific syntax. Additional `command-line parameters`_ are described in a separate section later.
Douglas Gregora2b3d582013-03-20 06:25:14 +0000108
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000109Import declaration
110------------------
111The most direct way to import a module is with an *import declaration*, which imports the named module:
112
113.. parsed-literal::
114
115 import std;
116
117The import declaration above imports the entire contents of the ``std`` module (which would contain, e.g., the entire C or C++ standard library) and make its API available within the current translation unit. To import only part of a module, one may use dot syntax to specific a particular submodule, e.g.,
118
119.. parsed-literal::
120
121 import std.io;
122
123Redundant import declarations are ignored, and one is free to import modules at any point within the translation unit, so long as the import declaration is at global scope.
124
125.. warning::
126 The import declaration syntax described here does not actually exist. Rather, it is a straw man proposal that may very well change when modules are discussed in the C and C++ committees. See the section `Includes as imports`_ to see how modules get imported today.
127
128Includes as imports
Douglas Gregora2b3d582013-03-20 06:25:14 +0000129-------------------
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000130The primary user-level feature of modules is the import operation, which provides access to the API of software libraries. However, today's programs make extensive use of ``#include``, and it is unrealistic to assume that all of this code will change overnight. Instead, modules automatically translate ``#include`` directives into the corresponding module import. For example, the include directive
Douglas Gregora2b3d582013-03-20 06:25:14 +0000131
132.. code-block:: c
133
134 #include <stdio.h>
135
Douglas Gregor03d262b2013-03-20 17:11:13 +0000136will be automatically mapped to an import of the module ``std.io``. Even with specific ``import`` syntax in the language, this particular feature is important for both adoption and backward compatibility: automatic translation of ``#include`` to ``import`` allows an application to get the benefits of modules (for all modules-enabled libraries) without any changes to the application itself. Thus, users can easily use modules with one compiler while falling back to the preprocessor-inclusion mechanism with other compilers.
Douglas Gregora2b3d582013-03-20 06:25:14 +0000137
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000138.. note::
139
140 The automatic mapping of ``#include`` to ``import`` also solves an implementation problem: importing a module with a definition of some entity (say, a ``struct Point``) and then parsing a header containing another definition of ``struct Point`` would cause a redefinition error, even if it is the same ``struct Point``. By mapping ``#include`` to ``import``, the compiler can guarantee that it always sees just the already-parsed definition from the module.
141
142Module maps
Douglas Gregora2b3d582013-03-20 06:25:14 +0000143-----------
144The crucial link between modules and headers is described by a *module map*, which describes how a collection of existing headers maps on to the (logical) structure of a module. For example, one could imagine a module ``std`` covering the C standard library. Each of the C standard library headers (``<stdio.h>``, ``<stdlib.h>``, ``<math.h>``, etc.) would contribute to the ``std`` module, by placing their respective APIs into the corresponding submodule (``std.io``, ``std.lib``, ``std.math``, etc.). Having a list of the headers that are part of the ``std`` module allows the compiler to build the ``std`` module as a standalone entity, and having the mapping from header names to (sub)modules allows the automatic translation of ``#include`` directives to module imports.
145
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000146Module maps are specified as separate files (each named ``module.map``) alongside the headers they describe, which allows them to be added to existing software libraries without having to change the library headers themselves (in most cases [#]_). The actual `Module map language`_ is described in a later section.
Douglas Gregora2b3d582013-03-20 06:25:14 +0000147
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000148.. note::
149
150 To actually see any benefits from modules, one first has to introduce module maps for the underlying C standard library and the libraries and headers on which it depends. The section `Modularizing a Platform`_ describes the steps one must take to write these module maps.
Daniel Jasper056ec122013-08-05 20:26:17 +0000151
152One can use module maps without modules to check the integrity of the use of header files. To do this, use the ``-fmodule-maps`` option instead of the ``-fmodules`` option.
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000153
154Compilation model
Douglas Gregora2b3d582013-03-20 06:25:14 +0000155-----------------
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000156The binary representation of modules is automatically generated by the compiler on an as-needed basis. When a module is imported (e.g., by an ``#include`` of one of the module's headers), the compiler will spawn a second instance of itself [#]_, with a fresh preprocessing context [#]_, to parse just the headers in that module. The resulting Abstract Syntax Tree (AST) is then persisted into the binary representation of the module that is then loaded into translation unit where the module import was encountered.
Douglas Gregora2b3d582013-03-20 06:25:14 +0000157
158The binary representation of modules is persisted in the *module cache*. Imports of a module will first query the module cache and, if a binary representation of the required module is already available, will load that representation directly. Thus, a module's headers will only be parsed once per language configuration, rather than once per translation unit that uses the module.
159
160Modules maintain references to each of the headers that were part of the module build. If any of those headers changes, or if any of the modules on which a module depends change, then the module will be (automatically) recompiled. The process should never require any user intervention.
161
162Command-line parameters
163-----------------------
164``-fmodules``
165 Enable the modules feature (EXPERIMENTAL).
166
167``-fcxx-modules``
168 Enable the modules feature for C++ (EXPERIMENTAL and VERY BROKEN).
169
Daniel Jasper056ec122013-08-05 20:26:17 +0000170``-fmodule-maps``
171 Enable interpretation of module maps (EXPERIMENTAL). This option is implied by ``-fmodules``.
172
Douglas Gregora2b3d582013-03-20 06:25:14 +0000173``-fmodules-cache-path=<directory>``
174 Specify the path to the modules cache. If not provided, Clang will select a system-appropriate default.
175
Daniel Dunbarf4910132013-04-16 18:21:19 +0000176``-fno-autolink``
177 Disable automatic linking against the libraries associated with imported modules.
Douglas Gregora2b3d582013-03-20 06:25:14 +0000178
179``-fmodules-ignore-macro=macroname``
180 Instruct modules to ignore the named macro when selecting an appropriate module variant. Use this for macros defined on the command line that don't affect how modules are built, to improve sharing of compiled module files.
181
Douglas Gregord44d2872013-03-25 21:19:16 +0000182``-fmodules-prune-interval=seconds``
183 Specify the minimum delay (in seconds) between attempts to prune the module cache. Module cache pruning attempts to clear out old, unused module files so that the module cache itself does not grow without bound. The default delay is large (604,800 seconds, or 7 days) because this is an expensive operation. Set this value to 0 to turn off pruning.
184
185``-fmodules-prune-after=seconds``
186 Specify the minimum time (in seconds) for which a file in the module cache must be unused (according to access time) before module pruning will remove it. The default delay is large (2,678,400 seconds, or 31 days) to avoid excessive module rebuilding.
187
Douglas Gregorc544ba02013-03-27 16:47:18 +0000188``-module-file-info <module file name>``
189 Debugging aid that prints information about a given module file (with a ``.pcm`` extension), including the language and preprocessor options that particular module variant was built with.
190
Daniel Jasperddd2dfc2013-09-24 09:14:14 +0000191``-fmodules-decluse``
192 Enable checking of module ``use`` declarations.
193
194``-fmodule-name=module-id``
195 Consider a source file as a part of the given module.
196
Daniel Jasper1b8840c2013-09-24 09:27:13 +0000197``-fmodule-map-file=<file>``
198 Load the given module map file if a header from its directory or one of its subdirectories is loaded.
199
Douglas Gregora2b3d582013-03-20 06:25:14 +0000200Module Map Language
201===================
Douglas Gregora2b3d582013-03-20 06:25:14 +0000202
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000203The module map language describes the mapping from header files to the
204logical structure of modules. To enable support for using a library as
205a module, one must write a ``module.map`` file for that library. The
206``module.map`` file is placed alongside the header files themselves,
207and is written in the module map language described below.
208
209As an example, the module map file for the C standard library might look a bit like this:
210
211.. parsed-literal::
212
213 module std [system] {
214 module complex {
215 header "complex.h"
216 export *
217 }
218
219 module ctype {
220 header "ctype.h"
221 export *
222 }
223
224 module errno {
225 header "errno.h"
226 header "sys/errno.h"
227 export *
228 }
229
230 module fenv {
231 header "fenv.h"
232 export *
233 }
234
235 // ...more headers follow...
236 }
237
238Here, the top-level module ``std`` encompasses the whole C standard library. It has a number of submodules containing different parts of the standard library: ``complex`` for complex numbers, ``ctype`` for character types, etc. Each submodule lists one of more headers that provide the contents for that submodule. Finally, the ``export *`` command specifies that anything included by that submodule will be automatically re-exported.
239
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000240Lexical structure
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000241-----------------
242Module map files use a simplified form of the C99 lexer, with the same rules for identifiers, tokens, string literals, ``/* */`` and ``//`` comments. The module map language has the following reserved words; all other C identifiers are valid identifiers.
243
244.. parsed-literal::
245
246 ``config_macros`` ``export`` ``module``
247 ``conflict`` ``framework`` ``requires``
Lawrence Crowlbc3f6282013-06-20 21:14:14 +0000248 ``exclude`` ``header`` ``private``
249 ``explicit`` ``link`` ``umbrella``
Daniel Jasperddd2dfc2013-09-24 09:14:14 +0000250 ``extern`` ``use``
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000251
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000252Module map file
253---------------
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000254A module map file consists of a series of module declarations:
255
256.. parsed-literal::
257
258 *module-map-file*:
259 *module-declaration**
260
261Within a module map file, modules are referred to by a *module-id*, which uses periods to separate each part of a module's name:
262
263.. parsed-literal::
264
265 *module-id*:
Dmitri Gribenkob2cc5212013-03-22 10:25:15 +0000266 *identifier* ('.' *identifier*)*
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000267
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000268Module declaration
269------------------
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000270A module declaration describes a module, including the headers that contribute to that module, its submodules, and other aspects of the module.
271
272.. parsed-literal::
273
274 *module-declaration*:
275 ``explicit``:sub:`opt` ``framework``:sub:`opt` ``module`` *module-id* *attributes*:sub:`opt` '{' *module-member** '}'
Daniel Jasper5f0a3522013-09-11 07:20:44 +0000276 ``extern`` ``module`` *module-id* *string-literal*
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000277
278The *module-id* should consist of only a single *identifier*, which provides the name of the module being defined. Each module shall have a single definition.
279
280The ``explicit`` qualifier can only be applied to a submodule, i.e., a module that is nested within another module. The contents of explicit submodules are only made available when the submodule itself was explicitly named in an import declaration or was re-exported from an imported module.
281
282The ``framework`` qualifier specifies that this module corresponds to a Darwin-style framework. A Darwin-style framework (used primarily on Mac OS X and iOS) is contained entirely in directory ``Name.framework``, where ``Name`` is the name of the framework (and, therefore, the name of the module). That directory has the following layout:
283
284.. parsed-literal::
285
286 Name.framework/
287 module.map Module map for the framework
288 Headers/ Subdirectory containing framework headers
289 Frameworks/ Subdirectory containing embedded frameworks
290 Resources/ Subdirectory containing additional resources
291 Name Symbolic link to the shared library for the framework
292
293The ``system`` attribute specifies that the module is a system module. When a system module is rebuilt, all of the module's header will be considered system headers, which suppresses warnings. This is equivalent to placing ``#pragma GCC system_header`` in each of the module's headers. The form of attributes is described in the section Attributes_, below.
294
295Modules can have a number of different kinds of members, each of which is described below:
296
Dmitri Gribenkob2cc5212013-03-22 10:25:15 +0000297.. parsed-literal::
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000298
299 *module-member*:
300 *requires-declaration*
301 *header-declaration*
302 *umbrella-dir-declaration*
303 *submodule-declaration*
304 *export-declaration*
Daniel Jasperddd2dfc2013-09-24 09:14:14 +0000305 *use-declaration*
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000306 *link-declaration*
307 *config-macros-declaration*
308 *conflict-declaration*
309
Daniel Jasper5f0a3522013-09-11 07:20:44 +0000310An extern module references a module defined by the *module-id* in a file given by the *string-literal*. The file can be referenced either by an absolute path or by a path relative to the current map file.
311
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000312Requires declaration
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000313~~~~~~~~~~~~~~~~~~~~
314A *requires-declaration* specifies the requirements that an importing translation unit must satisfy to use the module.
315
316.. parsed-literal::
317
318 *requires-declaration*:
319 ``requires`` *feature-list*
320
321 *feature-list*:
322 *identifier* (',' *identifier*)*
323
324The requirements clause allows specific modules or submodules to specify that they are only accessible with certain language dialects or on certain platforms. The feature list is a set of identifiers, defined below. If any of the features is not available in a given translation unit, that translation unit shall not import the module.
325
326The following features are defined:
327
328altivec
329 The target supports AltiVec.
330
331blocks
332 The "blocks" language feature is available.
333
334cplusplus
335 C++ support is available.
336
337cplusplus11
338 C++11 support is available.
339
340objc
341 Objective-C support is available.
342
343objc_arc
344 Objective-C Automatic Reference Counting (ARC) is available
345
346opencl
347 OpenCL is available
348
349tls
350 Thread local storage is available.
351
352*target feature*
353 A specific target feature (e.g., ``sse4``, ``avx``, ``neon``) is available.
354
355
356**Example**: The ``std`` module can be extended to also include C++ and C++11 headers using a *requires-declaration*:
357
358.. parsed-literal::
359
360 module std {
361 // C standard library...
362
363 module vector {
364 requires cplusplus
365 header "vector"
366 }
367
368 module type_traits {
369 requires cplusplus11
370 header "type_traits"
371 }
372 }
373
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000374Header declaration
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000375~~~~~~~~~~~~~~~~~~
376A header declaration specifies that a particular header is associated with the enclosing module.
377
378.. parsed-literal::
379
380 *header-declaration*:
381 ``umbrella``:sub:`opt` ``header`` *string-literal*
Lawrence Crowlbc3f6282013-06-20 21:14:14 +0000382 ``private`` ``header`` *string-literal*
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000383 ``exclude`` ``header`` *string-literal*
384
385A header declaration that does not contain ``exclude`` specifies a header that contributes to the enclosing module. Specifically, when the module is built, the named header will be parsed and its declarations will be (logically) placed into the enclosing submodule.
386
387A header with the ``umbrella`` specifier is called an umbrella header. An umbrella header includes all of the headers within its directory (and any subdirectories), and is typically used (in the ``#include`` world) to easily access the full API provided by a particular library. With modules, an umbrella header is a convenient shortcut that eliminates the need to write out ``header`` declarations for every library header. A given directory can only contain a single umbrella header.
388
389.. note::
390 Any headers not included by the umbrella header should have
391 explicit ``header`` declarations. Use the
392 ``-Wincomplete-umbrella`` warning option to ask Clang to complain
393 about headers not covered by the umbrella header or the module map.
394
Lawrence Crowlbc3f6282013-06-20 21:14:14 +0000395A header with the ``private`` specifier may not be included from outside the module itself.
396
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000397A header with the ``exclude`` specifier is excluded from the module. It will not be included when the module is built, nor will it be considered to be part of the module.
398
399**Example**: The C header ``assert.h`` is an excellent candidate for an excluded header, because it is meant to be included multiple times (possibly with different ``NDEBUG`` settings).
400
401.. parsed-literal::
402
403 module std [system] {
404 exclude header "assert.h"
405 }
406
407A given header shall not be referenced by more than one *header-declaration*.
408
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000409Umbrella directory declaration
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000410~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
411An umbrella directory declaration specifies that all of the headers in the specified directory should be included within the module.
412
413.. parsed-literal::
414
415 *umbrella-dir-declaration*:
416 ``umbrella`` *string-literal*
417
418The *string-literal* refers to a directory. When the module is built, all of the header files in that directory (and its subdirectories) are included in the module.
419
420An *umbrella-dir-declaration* shall not refer to the same directory as the location of an umbrella *header-declaration*. In other words, only a single kind of umbrella can be specified for a given directory.
421
422.. note::
423
424 Umbrella directories are useful for libraries that have a large number of headers but do not have an umbrella header.
425
426
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000427Submodule declaration
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000428~~~~~~~~~~~~~~~~~~~~~
429Submodule declarations describe modules that are nested within their enclosing module.
430
431.. parsed-literal::
432
433 *submodule-declaration*:
434 *module-declaration*
435 *inferred-submodule-declaration*
436
437A *submodule-declaration* that is a *module-declaration* is a nested module. If the *module-declaration* has a ``framework`` specifier, the enclosing module shall have a ``framework`` specifier; the submodule's contents shall be contained within the subdirectory ``Frameworks/SubName.framework``, where ``SubName`` is the name of the submodule.
438
439A *submodule-declaration* that is an *inferred-submodule-declaration* describes a set of submodules that correspond to any headers that are part of the module but are not explicitly described by a *header-declaration*.
440
441.. parsed-literal::
442
443 *inferred-submodule-declaration*:
444 ``explicit``:sub:`opt` ``framework``:sub:`opt` ``module`` '*' *attributes*:sub:`opt` '{' *inferred-submodule-member** '}'
445
446 *inferred-submodule-member*:
447 ``export`` '*'
448
449A module containing an *inferred-submodule-declaration* shall have either an umbrella header or an umbrella directory. The headers to which the *inferred-submodule-declaration* applies are exactly those headers included by the umbrella header (transitively) or included in the module because they reside within the umbrella directory (or its subdirectories).
450
451For each header included by the umbrella header or in the umbrella directory that is not named by a *header-declaration*, a module declaration is implicitly generated from the *inferred-submodule-declaration*. The module will:
452
453* Have the same name as the header (without the file extension)
454* Have the ``explicit`` specifier, if the *inferred-submodule-declaration* has the ``explicit`` specifier
455* Have the ``framework`` specifier, if the
456 *inferred-submodule-declaration* has the ``framework`` specifier
457* Have the attributes specified by the \ *inferred-submodule-declaration*
458* Contain a single *header-declaration* naming that header
459* Contain a single *export-declaration* ``export *``, if the \ *inferred-submodule-declaration* contains the \ *inferred-submodule-member* ``export *``
460
461**Example**: If the subdirectory "MyLib" contains the headers ``A.h`` and ``B.h``, then the following module map:
462
463.. parsed-literal::
464
465 module MyLib {
466 umbrella "MyLib"
467 explicit module * {
468 export *
469 }
470 }
471
472is equivalent to the (more verbose) module map:
473
474.. parsed-literal::
475
476 module MyLib {
477 explicit module A {
478 header "A.h"
479 export *
480 }
481
482 explicit module B {
483 header "B.h"
484 export *
485 }
486 }
487
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000488Export declaration
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000489~~~~~~~~~~~~~~~~~~
490An *export-declaration* specifies which imported modules will automatically be re-exported as part of a given module's API.
491
492.. parsed-literal::
493
494 *export-declaration*:
495 ``export`` *wildcard-module-id*
496
497 *wildcard-module-id*:
498 *identifier*
499 '*'
500 *identifier* '.' *wildcard-module-id*
501
502The *export-declaration* names a module or a set of modules that will be re-exported to any translation unit that imports the enclosing module. Each imported module that matches the *wildcard-module-id* up to, but not including, the first ``*`` will be re-exported.
503
504**Example**:: In the following example, importing ``MyLib.Derived`` also provides the API for ``MyLib.Base``:
505
506.. parsed-literal::
507
508 module MyLib {
509 module Base {
510 header "Base.h"
511 }
512
513 module Derived {
514 header "Derived.h"
515 export Base
516 }
517 }
518
519Note that, if ``Derived.h`` includes ``Base.h``, one can simply use a wildcard export to re-export everything ``Derived.h`` includes:
520
521.. parsed-literal::
522
523 module MyLib {
524 module Base {
525 header "Base.h"
526 }
527
528 module Derived {
529 header "Derived.h"
530 export *
531 }
532 }
533
534.. note::
535
536 The wildcard export syntax ``export *`` re-exports all of the
537 modules that were imported in the actual header file. Because
538 ``#include`` directives are automatically mapped to module imports,
539 ``export *`` provides the same transitive-inclusion behavior
540 provided by the C preprocessor, e.g., importing a given module
541 implicitly imports all of the modules on which it depends.
542 Therefore, liberal use of ``export *`` provides excellent backward
543 compatibility for programs that rely on transitive inclusion (i.e.,
544 all of them).
545
Daniel Jasperddd2dfc2013-09-24 09:14:14 +0000546Use declaration
547~~~~~~~~~~~~~~~
548A *use-declaration* specifies one of the other modules that the module is allowed to use. An import or include not matching one of these is rejected when the option *-fmodules-decluse*.
549
550.. parsed-literal::
551
552 *use-declaration*:
553 ``use`` *module-id*
554
555**Example**:: In the following example, use of A from C is not declared, so will trigger a warning.
556
557.. parsed-literal::
558
559 module A {
560 header "a.h"
561 }
562
563 module B {
564 header "b.h"
565 }
566
567 module C {
568 header "c.h"
569 use B
570 }
571
572When compiling a source file that implements a module, use the option ``-fmodule-name=``module-id to indicate that the source file is logically part of that module.
573
574The compiler at present only applies restrictions to the module directly being built.
575
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000576Link declaration
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000577~~~~~~~~~~~~~~~~
578A *link-declaration* specifies a library or framework against which a program should be linked if the enclosing module is imported in any translation unit in that program.
579
580.. parsed-literal::
581
582 *link-declaration*:
583 ``link`` ``framework``:sub:`opt` *string-literal*
584
585The *string-literal* specifies the name of the library or framework against which the program should be linked. For example, specifying "clangBasic" would instruct the linker to link with ``-lclangBasic`` for a Unix-style linker.
586
587A *link-declaration* with the ``framework`` specifies that the linker should link against the named framework, e.g., with ``-framework MyFramework``.
588
589.. note::
590
591 Automatic linking with the ``link`` directive is not yet widely
592 implemented, because it requires support from both the object file
593 format and the linker. The notion is similar to Microsoft Visual
594 Studio's ``#pragma comment(lib...)``.
595
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000596Configuration macros declaration
597~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000598The *config-macros-declaration* specifies the set of configuration macros that have an effect on the the API of the enclosing module.
599
600.. parsed-literal::
601
602 *config-macros-declaration*:
603 ``config_macros`` *attributes*:sub:`opt` *config-macro-list*:sub:`opt`
604
605 *config-macro-list*:
606 *identifier* (',' *identifier*)*
607
608Each *identifier* in the *config-macro-list* specifies the name of a macro. The compiler is required to maintain different variants of the given module for differing definitions of any of the named macros.
609
610A *config-macros-declaration* shall only be present on a top-level module, i.e., a module that is not nested within an enclosing module.
611
612The ``exhaustive`` attribute specifies that the list of macros in the *config-macros-declaration* is exhaustive, meaning that no other macro definition is intended to have an effect on the API of that module.
613
614.. note::
615
616 The ``exhaustive`` attribute implies that any macro definitions
617 for macros not listed as configuration macros should be ignored
618 completely when building the module. As an optimization, the
619 compiler could reduce the number of unique module variants by not
620 considering these non-configuration macros. This optimization is not
621 yet implemented in Clang.
622
623A translation unit shall not import the same module under different definitions of the configuration macros.
624
625.. note::
626
627 Clang implements a weak form of this requirement: the definitions
628 used for configuration macros are fixed based on the definitions
629 provided by the command line. If an import occurs and the definition
630 of any configuration macro has changed, the compiler will produce a
631 warning (under the control of ``-Wconfig-macros``).
632
633**Example:** A logging library might provide different API (e.g., in the form of different definitions for a logging macro) based on the ``NDEBUG`` macro setting:
634
635.. parsed-literal::
636
637 module MyLogger {
638 umbrella header "MyLogger.h"
639 config_macros [exhaustive] NDEBUG
640 }
641
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000642Conflict declarations
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000643~~~~~~~~~~~~~~~~~~~~~
644A *conflict-declaration* describes a case where the presence of two different modules in the same translation unit is likely to cause a problem. For example, two modules may provide similar-but-incompatible functionality.
645
646.. parsed-literal::
647
648 *conflict-declaration*:
649 ``conflict`` *module-id* ',' *string-literal*
650
651The *module-id* of the *conflict-declaration* specifies the module with which the enclosing module conflicts. The specified module shall not have been imported in the translation unit when the enclosing module is imported.
652
653The *string-literal* provides a message to be provided as part of the compiler diagnostic when two modules conflict.
654
655.. note::
656
657 Clang emits a warning (under the control of ``-Wmodule-conflict``)
658 when a module conflict is discovered.
659
660**Example:**
661
662.. parsed-literal::
663
664 module Conflicts {
665 explicit module A {
666 header "conflict_a.h"
667 conflict B, "we just don't like B"
668 }
669
670 module B {
671 header "conflict_b.h"
672 }
673 }
674
675
676Attributes
677----------
678Attributes are used in a number of places in the grammar to describe specific behavior of other declarations. The format of attributes is fairly simple.
679
680.. parsed-literal::
681
682 *attributes*:
683 *attribute* *attributes*:sub:`opt`
684
685 *attribute*:
686 '[' *identifier* ']'
687
688Any *identifier* can be used as an attribute, and each declaration specifies what attributes can be applied to it.
689
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000690Modularizing a Platform
691=======================
692To get any benefit out of modules, one needs to introduce module maps for software libraries starting at the bottom of the stack. This typically means introducing a module map covering the operating system's headers and the C standard library headers (in ``/usr/include``, for a Unix system).
693
694The module maps will be written using the `module map language`_, which provides the tools necessary to describe the mapping between headers and modules. Because the set of headers differs from one system to the next, the module map will likely have to be somewhat customized for, e.g., a particular distribution and version of the operating system. Moreover, the system headers themselves may require some modification, if they exhibit any anti-patterns that break modules. Such common patterns are described below.
695
696**Macro-guarded copy-and-pasted definitions**
697 System headers vend core types such as ``size_t`` for users. These types are often needed in a number of system headers, and are almost trivial to write. Hence, it is fairly common to see a definition such as the following copy-and-pasted throughout the headers:
698
699 .. parsed-literal::
700
701 #ifndef _SIZE_T
702 #define _SIZE_T
703 typedef __SIZE_TYPE__ size_t;
704 #endif
705
706 Unfortunately, when modules compiles all of the C library headers together into a single module, only the first actual type definition of ``size_t`` will be visible, and then only in the submodule corresponding to the lucky first header. Any other headers that have copy-and-pasted versions of this pattern will *not* have a definition of ``size_t``. Importing the submodule corresponding to one of those headers will therefore not yield ``size_t`` as part of the API, because it wasn't there when the header was parsed. The fix for this problem is either to pull the copied declarations into a common header that gets included everywhere ``size_t`` is part of the API, or to eliminate the ``#ifndef`` and redefine the ``size_t`` type. The latter works for C++ headers and C11, but will cause an error for non-modules C90/C99, where redefinition of ``typedefs`` is not permitted.
707
708**Conflicting definitions**
709 Different system headers may provide conflicting definitions for various macros, functions, or types. These conflicting definitions don't tend to cause problems in a pre-modules world unless someone happens to include both headers in one translation unit. Since the fix is often simply "don't do that", such problems persist. Modules requires that the conflicting definitions be eliminated or that they be placed in separate modules (the former is generally the better answer).
710
711**Missing includes**
712 Headers are often missing ``#include`` directives for headers that they actually depend on. As with the problem of conflicting definitions, this only affects unlucky users who don't happen to include headers in the right order. With modules, the headers of a particular module will be parsed in isolation, so the module may fail to build if there are missing includes.
713
714**Headers that vend multiple APIs at different times**
715 Some systems have headers that contain a number of different kinds of API definitions, only some of which are made available with a given include. For example, the header may vend ``size_t`` only when the macro ``__need_size_t`` is defined before that header is included, and also vend ``wchar_t`` only when the macro ``__need_wchar_t`` is defined. Such headers are often included many times in a single translation unit, and will have no include guards. There is no sane way to map this header to a submodule. One can either eliminate the header (e.g., by splitting it into separate headers, one per actual API) or simply ``exclude`` it in the module map.
716
717To detect and help address some of these problems, the ``clang-tools-extra`` repository contains a ``modularize`` tool that parses a set of given headers and attempts to detect these problems and produce a report. See the tool's in-source documentation for information on how to check your system or library headers.
718
Douglas Gregor5921e042013-03-22 07:08:56 +0000719Future Directions
720=================
721Modules is an experimental feature, and there is much work left to do to make it both real and useful. Here are a few ideas:
722
723**Detect unused module imports**
724 Unlike with ``#include`` directives, it should be fairly simple to track whether a directly-imported module has ever been used. By doing so, Clang can emit ``unused import`` or ``unused #include`` diagnostics, including Fix-Its to remove the useless imports/includes.
725
726**Fix-Its for missing imports**
727 It's fairly common for one to make use of some API while writing code, only to get a compiler error about "unknown type" or "no function named" because the corresponding header has not been included. Clang should detect such cases and auto-import the required module (with a Fix-It!).
728
729**Improve modularize**
730 The modularize tool is both extremely important (for deployment) and extremely crude. It needs better UI, better detection of problems (especially for C++), and perhaps an assistant mode to help write module maps for you.
731
732**C++ Support**
733 Modules clearly has to work for C++, or we'll never get to use it for the Clang code base.
734
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000735Where To Learn More About Modules
736=================================
737The Clang source code provides additional information about modules:
738
739``clang/lib/Headers/module.map``
740 Module map for Clang's compiler-specific header files.
741
742``clang/test/Modules/``
743 Tests specifically related to modules functionality.
744
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000745``clang/include/clang/Basic/Module.h``
746 The ``Module`` class in this header describes a module, and is used throughout the compiler to implement modules.
747
748``clang/include/clang/Lex/ModuleMap.h``
749 The ``ModuleMap`` class in this header describes the full module map, consisting of all of the module map files that have been parsed, and providing facilities for looking up module maps and mapping between modules and headers (in both directions).
750
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000751PCHInternals_
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000752 Information about the serialized AST format used for precompiled headers and modules. The actual implementation is in the ``clangSerialization`` library.
Douglas Gregora2b3d582013-03-20 06:25:14 +0000753
754.. [#] Automatic linking against the libraries of modules requires specific linker support, which is not widely available.
755
756.. [#] Modules are only available in C and Objective-C; a separate flag ``-fcxx-modules`` enables modules support for C++, which is even more experimental and broken.
757
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000758.. [#] There are certain anti-patterns that occur in headers, particularly system headers, that cause problems for modules. The section `Modularizing a Platform`_ describes some of them.
Douglas Gregora2b3d582013-03-20 06:25:14 +0000759
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000760.. [#] The second instance is actually a new thread within the current process, not a separate process. However, the original compiler instance is blocked on the execution of this thread.
Douglas Gregora2b3d582013-03-20 06:25:14 +0000761
Douglas Gregor5529e3e2013-03-22 07:05:07 +0000762.. [#] The preprocessing context in which the modules are parsed is actually dependent on the command-line options provided to the compiler, including the language dialect and any ``-D`` options. However, the compiled modules for different command-line options are kept distinct, and any preprocessor directives that occur within the translation unit are ignored. See the section on the `Configuration macros declaration`_ for more information.
Douglas Gregor9bb4a0c2013-03-22 06:21:35 +0000763
764.. _PCHInternals: PCHInternals.html
765