[InstCombine] Signed saturation patterns
[llvm-complete.git] / docs / CommandGuide / llvm-cxxmap.rst
blobb0bf1c49fc20203732bcd8c22539fddafb3b43ca
1 llvm-cxxmap - Mangled name remapping tool
2 =========================================
4 .. program:: llvm-cxxmap
6 SYNOPSIS
7 --------
9 :program:`llvm-cxxmap` [*options*] *symbol-file-1* *symbol-file-2*
11 DESCRIPTION
12 -----------
14 The :program:`llvm-cxxmap` tool performs fuzzy matching of C++ mangled names,
15 based on a file describing name components that should be considered equivalent.
17 The symbol files should contain a list of C++ mangled names (one per line).
18 Blank lines and lines starting with ``#`` are ignored. The output is a list
19 of pairs of equivalent symbols, one per line, of the form
21 .. code-block:: none
23   <symbol-1> <symbol-2>
25 where ``<symbol-1>`` is a symbol from *symbol-file-1* and ``<symbol-2>`` is
26 a symbol from *symbol-file-2*. Mappings for which the two symbols are identical
27 are omitted.
29 OPTIONS
30 -------
32 .. program:: llvm-cxxmap
34 .. option:: -remapping-file=file, -r=file
36  Specify a file containing a list of equivalence rules that should be used
37  to determine whether two symbols are equivalent. Required.
38  See :ref:`remapping-file`.
40 .. option:: -output=file, -o=file
42  Specify a file to write the list of matched names to. If unspecified, the
43  list will be written to stdout.
45 .. option:: -Wambiguous
47  Produce a warning if there are multiple equivalent (but distinct) symbols in
48  *symbol-file-2*.
50 .. option:: -Wincomplete
52  Produce a warning if *symbol-file-1* contains a symbol for which there is no
53  equivalent symbol in *symbol-file-2*.
55 .. _remapping-file:
57 REMAPPING FILE
58 --------------
60 The remapping file is a text file containing lines of the form
62 .. code-block:: none
64   fragmentkind fragment1 fragment2
66 where ``fragmentkind`` is one of ``name``, ``type``, or ``encoding``,
67 indicating whether the following mangled name fragments are
68 <`name <http://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle.name>`_>s,
69 <`type <http://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle.type>`_>s, or
70 <`encoding <http://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle.encoding>`_>s,
71 respectively.
72 Blank lines and lines starting with ``#`` are ignored.
74 For convenience, built-in <substitution>s such as ``St`` and ``Ss``
75 are accepted as <name>s (even though they technically are not <name>s).
77 For example, to specify that ``absl::string_view`` and ``std::string_view``
78 should be treated as equivalent, the following remapping file could be used:
80 .. code-block:: none
82   # absl::string_view is considered equivalent to std::string_view
83   type N4absl11string_viewE St17basic_string_viewIcSt11char_traitsIcEE
85   # std:: might be std::__1:: in libc++ or std::__cxx11:: in libstdc++
86   name St St3__1
87   name St St7__cxx11
89 .. note::
91   Symbol remapping is currently only supported for C++ mangled names
92   following the Itanium C++ ABI mangling scheme. This covers all C++ targets
93   supported by Clang other than Windows targets.