diff --git a/clang/docs/Multilib.rst b/clang/docs/Multilib.rst new file mode 100644 --- /dev/null +++ b/clang/docs/Multilib.rst @@ -0,0 +1,320 @@ +======== +Multilib +======== + +Introduction +============ + +This document describes how multilib is implemented in Clang. + +What is multilib and why might you care? +If you're :doc:`cross compiling` then you can't use native +system headers and libraries. To address this, you can use a combination of +``--sysroot``, ``-isystem`` and ``-L`` options to point clang at suitable +directories for your target. +However, when there are many possible directories to choose from, it's not +necessarily obvious which one to pick. +Multilib allows a toolchain designer to imbue the toolchain with the ability to +pick a suitable directory automatically, based on the options the user provides +to clang. For example, if the user specifies +``--target=arm-none-eabi -mcpu=cortex-m4`` the toolchain can choose a directory +containing headers and libraries suitable for Armv7E-M, because it knows that's +a suitable architecture for Arm Cortex-M4. +Multilib can also choose between libraries for the same architecture based on +other options. For example if the user specifies ``-fno-exceptions`` then a +toolchain could select libraries built without exception support, thereby +reducing the size of the resulting binary. + +Design +====== + +Clang supports GCC's ``-print-multi-lib`` and ``-print-multi-directory`` +options. These are described in +`GCC Developer Options `_. + +There are two ways to configure multilib in Clang: hard-coded or via a +configuration file. + +Hard-coded Multilib +=================== + +The available libraries can be hard-coded in clang. Typically this is done +using the ``MultilibBuilder`` interface. There are many examples of this in +``Gnu.cpp``. +The remainder of this document will not focus on this type of multilib. + +Multilib via configuration file +=============================== + +Some clang toolchains support loading multilib configuration from a +``multilib.yaml`` configuration file. + +A ``multilib.yaml`` configuration file specifies which multilib variants are +available, their relative location, what compilation options were used to build +them, and the criteria by which they are selected. + +Multilib processing +=================== + +Clang goes through the following steps to use multilib from a configuration +file: +#. Convert command line arguments to flags. Clang can accept the same + information via different arguments - for example, + ``--target=arm-none-eabi -march=armv7-m`` and + ``--target=armv7m-none-eabi`` are equivalent. Clang can also accept many + independent pieces of information within a single flag - for example + ``-march=armv8.1m.main+fp+mve`` specifies the architecture and two + extensions in a single command line argument. + To make it easier for the multilib system, clang converts the command line + arguments into a standard set of simpler "flags". In many cases these flags + will look like a command line argument with the leading ``-`` stripped off, + but where a suitable form for the flag doesn't exist in command line + arguments then its form will be different. For example, an Arm architecture + extension is represented like ``march=+mve`` since there's no way to specify + it in isolation in a command line argument. + To see what flags are emitted for a given set of command line arguments, use + the ``-print-multi-selection-flags-experimental`` command line argument + along with the rest of the arguments you want to use. +#. Load ``multilib.yaml`` from sysroot. +#. Generate additional flags. ``multilib.yaml`` contains a ``flagMap`` section, + which specifies how to generate additional flags based on the flags derived + from command line arguments. Flags are matched using regular expressions. + These regular expressions shall use the POSIX extended regular expression + syntax. +#. Match flags against multilib variants. If the generated flags are a superset + of the flags specified for a multilib variant then the variant is considered + a match. + If more than one variant matches then a toolchain may opt to either use only + the *last* matching multilib variant, or may use all matching variants, + thereby :ref:`layering` them. +#. Generate ``-isystem`` and ``-L`` arguments. Iterate in reverse order over + the matching multilib variants, and generate ``-isystem`` and ``-L`` + arguments based on the multilib variant's directory. + +Multilib layering +================= + +When clang selects multilib variants, it may find that more than one variant +matches. + +It is up to the ToolChain subclass to decide what to do in this case. +There are two options permitted: +#. Use only the *last* matching multilib variant. This option exists primarily + for compatibility with the previous multilib design. +#. Use all matching variants, thereby layering them. + +This decision is hard-coded per ToolChain subclass. The latter option is +preferred for ToolChain subclasses without backwards compatibility +requirements. + +If the latter option is chosen then ``-isystem`` and ``-L`` arguments will be +generated for each matching multilib variant, in reverse order. + +This means that the compiler or linker will find files in the last matching +multilib variant that has the given file. +This behaviour permits multilib variants with only a partial set of files. +This means a toolchain can be distributed with one base multilib variant +containing all system headers and includes, and more specialised multilib +variants containing only files that are different to those in the base variant. + +For example, a multilib variant could be compiled with ``-fno-exceptions``. +This option doesn't affect the content of header files, nor does it affect the +C libraries. Therefore if multilib layering is supported by the ToolChain +subclass and a suitable base multilib variant is present then the +``-fno-exceptions`` multilib variant need only contain C++ libraries. + +Stability +========= + +Multilib via configuration file shall be considered an experimental feature +until LLVM 18, at which point ``-print-multi-selection-flags-experimental`` +should be renamed to ``-print-multi-selection-flags``. +A toolchain can opt in to using this feature by including a ``multilib.yaml`` +file in its distribution, once support for it is added in relevant ToolChain +subclasses. +Once stability is reached, flags emitted by ``-print-multi-selection-flags`` +should not be removed or changed, although new flags may be added. + +Restrictions +============ + +Despite the name, multilib is used to locate both ``include`` and ``lib`` +directories. Therefore it is important that consistent options are passed to +the clang driver when both compiling and linking. Otherwise inconsistent +``include`` and ``lib`` directories may be used, and the results will be +undefined. + +multilib.yaml +============= + +The below example serves as a small of a possible multilib, and documents +the available options. + +For a more comprehensive example see +``clang/test/Driver/Inputs/baremetal_multilib/multilib.yaml`` in the +``llvm-project`` sources. + +.. code-block:: yaml + # multilib.yaml + + # Syntax is YAML 1.2 + + # This defines the minimum version of Clang required to use this file. + # It is required to be present. + # Clang will emit an error if this number is greater than its version, but + # will accept lesser versions. + minimumClangVersion: 17.0.0 + + # The rest of this file is in two parts: + # 1. A list of multilib variants. + # 2. A list of regular expressions that may match flags generated from + # command line arguments, and further flags that shall be added if the + # regex matches. + # Both parts are required, but may be empty lists. + # It is acceptable for the file to contain properties not documented here, + # and these will be ignored by Clang. + + # List of multilib variants. + # The ordering of variants is important if more than one variant can match + # the same set of flags. See the docs on multilib layering for more info. + variants: + + # Example of a multilib variant targeting Arm v6-M. + # dir is the relative location of the directory containing the headers + # and/or libraries. + # Exactly how dir is used is left up to the ToolChain subclass to define, but + # typically it will be joined to the sysroot. + - dir: thumb/v6-m + # List of one or more "flags", as generated by clang from the command line + # arguments and subsequently from the flagMap. + # Here, if the flags are a superset of {V6M} then this multilib variant + # will be considered a match. + flags: [V6M] + # If a user invokes clang with -print-multi-lib then the arguments it + # prints will be derived from printArgs. For example: + # thumb/v6-m;@-target=thumbv6m-none-eabi + # printArgs is not used by clang otherwise. + printArgs: [--target=thumbv6m-none-eabi] + + # Similarly, a multilib variant targeting Arm v7-M with an FPU (floating + # point unit). + - dir: thumb/v7-m + # Here, the flags generated by clang must be a superset of + # {V7MorLater, hasFPU} for this multilib variant to be a match. + flags: [V7MorLater, hasFPU] + printArgs: [--target=thumbv7m-none-eabi, -mfpu=fpv4-sp-d16] + + + # The second section of the file is a list of regular expressions that are + # used to map from auto-detected flags to custom flags. + # The regex must match a whole flag string. + # One or both of "matchFlags" & "noMatchFlags" must be specified. + # "matchFlags" flags will be added if an argument matches, while + # "noMatchFlags" flags will be added otherwise. + flagMap: + + # Set a "V6M" flag if the regular expression matches any of the flags + # generated from the command line arguments. + # regex is a POSIX extended regular expression strings. + - regex: target=thumbv6m-.* + # matchFlags is a list of one or more strings. + matchFlags: [V6M] + + # Set a "V7MorLater" flag if the regular expression matches any of the flags + # generated from the command line arguments. + - regex: target=thumbv[7-9].* + matchFlags: [V7MorLater] + + # Example of noMatchFlags - set hasFPU if mfpu=none *doesn't* match. + - regex: mfpu=none + # noMatchFlags is a list of one or more strings. + noMatchFlags: [hasFPU] + +Design principles +================= + +Stable API +---------- + +The new multilib system will be considered experimental in LLVM 17, but in +LLVM 18 it will be stable. In particular this is important to which multilib +selection flags clang generates from command line arguments. Once a flag is +generated by a released version of clang it may be used in multilib.yaml +files that exist independently of the LLVM release cycle, and therefore +ceasing to generate the flag would be a breaking change and should be +avoided. + +Incomplete API +-------------- + +The API need only multilib selection based on only a limited set of command +line arguments. Later LLVM versions can add support for multilib selection from +more command line arguments as needed. + +Extensible +---------- + +It is likely that the configuration format will need to evolve in future to +adapt to new requirements. +Using a format like YAML that supports key-value pairs helps here as it's +trivial to add new keys alongside existing ones. + +Backwards compatibility +----------------------- + +New versions of Clang should be able to use configuration written for earlier +Clang versions. +To avoid behaving in a way that may be subtly incorrect, Clang should be able +to detect if the configuration is too new and emit an error. + +Forwards compatibility +---------------------- + +As an author of a multilib configuration, it should be possible to design the +configuration in such a way that it is likely to work well with future Clang +versions. For example, if a future version of Clang is likely to add support +for newer versions of an architecture and the architecture is known to be +designed for backwards compatibility then it should be possible to express +compatibility for such architecture versions in the multilib configuration. + +Not GNU spec files +------------------ + +The GNU spec files standard is large and complex and there's little desire to +import that complexity to LLVM. It's also heavily oriented towards processing +command line argument strings which is hard to do correctly, hence the large +amount of logic dedicated to that task in the Clang driver. While compatibility +with GNU would bring benefits, the cost in this case is deemed too high. + +Avoid re-inventing feature detection in the configuration +--------------------------------------------------------- + +A large amount of logic in the Clang driver is dedicated to inferring which +architectural features are available based on the given command line arguments. +It is neither desirable nor practical to repeat such logic in each multilib +configuration. Instead the configuration should be able to benefit from the +heavy lifting Clang already does to detect features. + +Low maintenance +--------------- + +Multilib is a relatively small feature in the scheme of things so supporting it +should accordingly take little time. Where possible this should be achieved by +implementing it in terms of existing features in the LLVM codebase. + +Minimal additional API surface +------------------------------ + +The greater the API surface, the greater the difficulty of keeping it stable. +Where possible the additional API surface should be kept small by defining it +in relation to existing APIs. An example of this is keeping a simple +relationship between flag names and command line arguments where possible. +Since the command line arguments are part of a stable API they are unlikely +to change, and therefore the flag names get the same stability. + +Low compile-time overhead +------------------------- + +If the process of selecting multilib directories must be done on every +invocation of the clang driver then it must have a negligible impact on +overall compile time. diff --git a/clang/docs/index.rst b/clang/docs/index.rst --- a/clang/docs/index.rst +++ b/clang/docs/index.rst @@ -100,6 +100,7 @@ CodeOwners InternalsManual DriverInternals + Multilib OffloadingDesign PCHInternals ItaniumMangleAbiTags