LLVM 20.0.0git
Mangler.h
Go to the documentation of this file.
1//===-- llvm/IR/Mangler.h - Self-contained name mangler ---------*- 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// Unified name mangler for various backends.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_IR_MANGLER_H
14#define LLVM_IR_MANGLER_H
15
16#include "llvm/ADT/DenseMap.h"
17#include "llvm/ADT/StringRef.h"
18
19namespace llvm {
20
21class DataLayout;
22class GlobalValue;
23template <typename T> class SmallVectorImpl;
24class Triple;
25class Twine;
26class raw_ostream;
27
28class Mangler {
29 /// We need to give global values the same name every time they are mangled.
30 /// This keeps track of the number we give to anonymous ones.
31 mutable DenseMap<const GlobalValue*, unsigned> AnonGlobalIDs;
32
33public:
34 /// Print the appropriate prefix and the specified global variable's name.
35 /// If the global variable doesn't have a name, this fills in a unique name
36 /// for the global.
38 bool CannotUsePrivateLabel) const;
40 bool CannotUsePrivateLabel) const;
41
42 /// Print the appropriate prefix and the specified name as the global variable
43 /// name. GVName must not be empty.
44 static void getNameWithPrefix(raw_ostream &OS, const Twine &GVName,
45 const DataLayout &DL);
46 static void getNameWithPrefix(SmallVectorImpl<char> &OutName,
47 const Twine &GVName, const DataLayout &DL);
48};
49
51 const Triple &TT, Mangler &Mangler);
52
54 const Triple &T, Mangler &M);
55
56/// Returns the ARM64EC mangled function name unless the input is already
57/// mangled.
58std::optional<std::string> getArm64ECMangledFunctionName(StringRef Name);
59
60/// Returns the ARM64EC demangled function name, unless the input is not
61/// mangled.
62std::optional<std::string> getArm64ECDemangledFunctionName(StringRef Name);
63
64/// Check if an ARM64EC function name is mangled.
66 return Name[0] == '#' ||
67 (Name[0] == '?' && Name.find("@$$h") != StringRef::npos);
68}
69
70} // End llvm namespace
71
72#endif
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file defines the DenseMap class.
std::string Name
raw_pwrite_stream & OS
A parsed version of the target data layout string in and methods for querying it.
Definition: DataLayout.h:63
void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, bool CannotUsePrivateLabel) const
Print the appropriate prefix and the specified global variable's name.
Definition: Mangler.cpp:121
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:573
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
static constexpr size_t npos
Definition: StringRef.h:53
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
std::optional< std::string > getArm64ECMangledFunctionName(StringRef Name)
Returns the ARM64EC mangled function name unless the input is already mangled.
Definition: Mangler.cpp:294
bool isArm64ECMangledFunctionName(StringRef Name)
Check if an ARM64EC function name is mangled.
Definition: Mangler.h:65
std::optional< std::string > getArm64ECDemangledFunctionName(StringRef Name)
Returns the ARM64EC demangled function name, unless the input is not mangled.
Definition: Mangler.cpp:317
void emitLinkerFlagsForUsedCOFF(raw_ostream &OS, const GlobalValue *GV, const Triple &T, Mangler &M)
Definition: Mangler.cpp:280
void emitLinkerFlagsForGlobalCOFF(raw_ostream &OS, const GlobalValue *GV, const Triple &TT, Mangler &Mangler)
Definition: Mangler.cpp:214