LLVM 22.0.0git
Comdat.h
Go to the documentation of this file.
1//===- llvm/IR/Comdat.h - Comdat definitions --------------------*- 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/// @file
10/// This file contains the declaration of the Comdat class, which represents a
11/// single COMDAT in LLVM.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_IR_COMDAT_H
16#define LLVM_IR_COMDAT_H
17
18#include "llvm-c/Types.h"
22
23namespace llvm {
24
25class GlobalObject;
26class raw_ostream;
27class StringRef;
28template <typename ValueTy> class StringMapEntry;
29
30// This is a Name X SelectionKind pair. The reason for having this be an
31// independent object instead of just adding the name and the SelectionKind
32// to a GlobalObject is that it is invalid to have two Comdats with the same
33// name but different SelectionKind. This structure makes that unrepresentable.
34class Comdat {
35public:
37 Any, ///< The linker may choose any COMDAT.
38 ExactMatch, ///< The data referenced by the COMDAT must be the same.
39 Largest, ///< The linker will choose the largest COMDAT.
40 NoDeduplicate, ///< No deduplication is performed.
41 SameSize, ///< The data referenced by the COMDAT must be the same size.
42 };
43
44 Comdat(const Comdat &) = delete;
46
47 SelectionKind getSelectionKind() const { return SK; }
48 void setSelectionKind(SelectionKind Val) { SK = Val; }
50 LLVM_ABI void print(raw_ostream &OS, bool IsForDebug = false) const;
51 LLVM_ABI void dump() const;
52 const SmallPtrSetImpl<GlobalObject *> &getUsers() const { return Users; }
53
54private:
55 friend class Module;
56 friend class GlobalObject;
57
58 Comdat();
59 void addUser(GlobalObject *GO);
60 void removeUser(GlobalObject *GO);
61
62 // Points to the map in Module.
64 SelectionKind SK = Any;
65 // Globals using this comdat.
67};
68
69// Create wrappers for C Binding types (see CBindingWrapping.h).
71
73 C.print(OS);
74 return OS;
75}
76
77} // end namespace llvm
78
79#endif // LLVM_IR_COMDAT_H
aarch64 promote const
always inline
#define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref)
#define LLVM_ABI
Definition: Compiler.h:213
std::string Name
iv Induction Variable Users
Definition: IVUsers.cpp:48
raw_pwrite_stream & OS
This file defines the SmallPtrSet class.
Comdat(const Comdat &)=delete
LLVM_ABI void print(raw_ostream &OS, bool IsForDebug=false) const
Definition: AsmWriter.cpp:5105
LLVM_ABI StringRef getName() const
Definition: Comdat.cpp:28
LLVM_ABI void dump() const
Definition: AsmWriter.cpp:5491
const SmallPtrSetImpl< GlobalObject * > & getUsers() const
Definition: Comdat.h:52
@ Largest
The linker will choose the largest COMDAT.
Definition: Comdat.h:39
@ SameSize
The data referenced by the COMDAT must be the same size.
Definition: Comdat.h:41
@ Any
The linker may choose any COMDAT.
Definition: Comdat.h:37
@ NoDeduplicate
No deduplication is performed.
Definition: Comdat.h:40
@ ExactMatch
The data referenced by the COMDAT must be the same.
Definition: Comdat.h:38
void setSelectionKind(SelectionKind Val)
Definition: Comdat.h:48
SelectionKind getSelectionKind() const
Definition: Comdat.h:47
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:67
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
Definition: SmallPtrSet.h:380
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
Definition: SmallPtrSet.h:541
StringMapEntry - This is used to represent one value that is inserted into a StringMap.
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:55
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:53
struct LLVMComdat * LLVMComdatRef
Definition: Types.h:155
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18