[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / include / llvm / Support / ItaniumManglingCanonicalizer.h
blob6920000340d4f5643ae28b4fd7e1a7b8bfd006b4
1 //===--- ItaniumManglingCanonicalizer.h -------------------------*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 //
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"
19 #include <cstddef>
21 namespace llvm {
22 /// Canonicalizer for mangled names.
23 ///
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'.
30 ///
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 {
35 public:
36 ItaniumManglingCanonicalizer();
37 ItaniumManglingCanonicalizer(const ItaniumManglingCanonicalizer &) = delete;
38 void operator=(const ItaniumManglingCanonicalizer &) = delete;
39 ~ItaniumManglingCanonicalizer();
41 enum class EquivalenceError {
42 Success,
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
46 /// equivalence.
47 ManglingAlreadyUsed,
49 /// The first equivalent mangling is invalid.
50 InvalidFirstMangling,
52 /// The second equivalent mangling is invalid.
53 InvalidSecondMangling,
56 enum class FragmentKind {
57 /// The mangling fragment is a <name> (or a predefined <substitution>).
58 Name,
59 /// The mangling fragment is a <type>.
60 Type,
61 /// The mangling fragment is an <encoding>.
62 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,
68 StringRef Second);
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.
75 ///
76 /// Returns Key() if (and only if) the mangling is not a valid Itanium C++
77 /// ABI mangling.
78 ///
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);
86 private:
87 struct Impl;
88 Impl *P;
90 } // namespace llvm
92 #endif // LLVM_SUPPORT_ITANIUMMANGLINGCANONICALIZER_H