diff options
author | dim <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
commit | 3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65 (patch) | |
tree | dbbd4047878da71c1a706e26ce05b4e7791b14cc /docs/Modules.rst | |
parent | 38d6f2e7f2ce51a5b3836d26596c6c34a3288752 (diff) | |
download | FreeBSD-src-3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65.zip FreeBSD-src-3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65.tar.gz |
Vendor import of clang trunk r238337:
https://llvm.org/svn/llvm-project/cfe/trunk@238337
Diffstat (limited to 'docs/Modules.rst')
-rw-r--r-- | docs/Modules.rst | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/docs/Modules.rst b/docs/Modules.rst index 1575ce6..9999106 100644 --- a/docs/Modules.rst +++ b/docs/Modules.rst @@ -210,6 +210,12 @@ Command-line parameters ``-fno-modules-implicit-maps`` Suppresses the implicit search for files called ``module.modulemap`` and similar. Instead, module files need to be explicitly specified via ``-fmodule-map-file`` or transitively used. +``-fno-implicit-modules`` + All modules used by the build must be specified with ``-fmodule-file``. + +``-fmodule-file=<file>`` + Load the given precompiled module file. + Module Semantics ================ @@ -423,7 +429,7 @@ tls A specific target feature (e.g., ``sse4``, ``avx``, ``neon``) is available. -**Example**: The ``std`` module can be extended to also include C++ and C++11 headers using a *requires-declaration*: +**Example:** The ``std`` module can be extended to also include C++ and C++11 headers using a *requires-declaration*: .. parsed-literal:: @@ -464,11 +470,16 @@ A header with the ``umbrella`` specifier is called an umbrella header. An umbrel A header with the ``private`` specifier may not be included from outside the module itself. -A header with the ``textual`` specifier will not be included when the module is built, and will be textually included if it is named by a ``#include`` directive. However, it is considered to be part of the module for the purpose of checking *use-declaration*\s. +A header with the ``textual`` specifier will not be compiled when the module is +built, and will be textually included if it is named by a ``#include`` +directive. However, it is considered to be part of the module for the purpose +of checking *use-declaration*\s, and must still be a lexically-valid header +file. In the future, we intend to pre-tokenize such headers and include the +token sequence within the prebuilt module representation. A 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, even if an ``umbrella`` header or directory would otherwise make it part of the module. -**Example**: The C header ``assert.h`` is an excellent candidate for a textual header, because it is meant to be included multiple times (possibly with different ``NDEBUG`` settings). However, declarations within it should typically be split into a separate modular header. +**Example:** The C header ``assert.h`` is an excellent candidate for a textual header, because it is meant to be included multiple times (possibly with different ``NDEBUG`` settings). However, declarations within it should typically be split into a separate modular header. .. parsed-literal:: @@ -530,7 +541,7 @@ For each header included by the umbrella header or in the umbrella directory tha * Contain a single *header-declaration* naming that header * Contain a single *export-declaration* ``export *``, if the \ *inferred-submodule-declaration* contains the \ *inferred-submodule-member* ``export *`` -**Example**: If the subdirectory "MyLib" contains the headers ``A.h`` and ``B.h``, then the following module map: +**Example:** If the subdirectory "MyLib" contains the headers ``A.h`` and ``B.h``, then the following module map: .. parsed-literal:: @@ -573,7 +584,7 @@ An *export-declaration* specifies which imported modules will automatically be r The *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. -**Example**:: In the following example, importing ``MyLib.Derived`` also provides the API for ``MyLib.Base``: +**Example:** In the following example, importing ``MyLib.Derived`` also provides the API for ``MyLib.Base``: .. parsed-literal:: @@ -617,14 +628,16 @@ Note that, if ``Derived.h`` includes ``Base.h``, one can simply use a wildcard e Use declaration ~~~~~~~~~~~~~~~ -A *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*. +A *use-declaration* specifies another module that the current top-level module +intends to use. When the option *-fmodules-decluse* is specified, a module can +only use other modules that are explicitly specified in this way. .. parsed-literal:: *use-declaration*: ``use`` *module-id* -**Example**:: In the following example, use of A from C is not declared, so will trigger a warning. +**Example:** In the following example, use of A from C is not declared, so will trigger a warning. .. parsed-literal:: @@ -641,7 +654,9 @@ A *use-declaration* specifies one of the other modules that the module is allowe use B } -When 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. +When 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. The compiler at present only applies restrictions to the module directly being built. |