1 //===--- ItaniumManglingCanonicalizer.h -------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines a class for computing equivalence classes of mangled names
10 // given a set of equivalences between name fragments.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_SUPPORT_ITANIUMMANGLINGCANONICALIZER_H
15 #define LLVM_SUPPORT_ITANIUMMANGLINGCANONICALIZER_H
17 #include "llvm/ADT/StringRef.h"
22 /// Canonicalizer for mangled names.
24 /// This class allows specifying a list of "equivalent" manglings. For example,
25 /// you can specify that Ss is equivalent to
26 /// NSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE
27 /// and then manglings that refer to libstdc++'s 'std::string' will be
28 /// considered equivalent to manglings that are the same except that they refer
29 /// to libc++'s 'std::string'.
31 /// This can be used when data (eg, profiling data) is available for a version
32 /// of a program built in a different configuration, with correspondingly
33 /// different manglings.
34 class ItaniumManglingCanonicalizer
{
36 ItaniumManglingCanonicalizer();
37 ItaniumManglingCanonicalizer(const ItaniumManglingCanonicalizer
&) = delete;
38 void operator=(const ItaniumManglingCanonicalizer
&) = delete;
39 ~ItaniumManglingCanonicalizer();
41 enum class EquivalenceError
{
44 /// Both the equivalent manglings have already been used as components of
45 /// some other mangling we've looked at. It's too late to add this
49 /// The first equivalent mangling is invalid.
52 /// The second equivalent mangling is invalid.
53 InvalidSecondMangling
,
56 enum class FragmentKind
{
57 /// The mangling fragment is a <name> (or a predefined <substitution>).
59 /// The mangling fragment is a <type>.
61 /// The mangling fragment is an <encoding>.
65 /// Add an equivalence between \p First and \p Second. Both manglings must
66 /// live at least as long as the canonicalizer.
67 EquivalenceError
addEquivalence(FragmentKind Kind
, StringRef First
,
70 using Key
= uintptr_t;
72 /// Form a canonical key for the specified mangling. They key will be the
73 /// same for all equivalent manglings, and different for any two
74 /// non-equivalent manglings, but is otherwise unspecified.
76 /// Returns Key() if (and only if) the mangling is not a valid Itanium C++
79 /// The string denoted by Mangling must live as long as the canonicalizer.
80 Key
canonicalize(StringRef Mangling
);
82 /// Find a canonical key for the specified mangling, if one has already been
83 /// formed. Otherwise returns Key().
84 Key
lookup(StringRef Mangling
);
92 #endif // LLVM_SUPPORT_ITANIUMMANGLINGCANONICALIZER_H