1 //===- LLVMContextImpl.cpp - Implement LLVMContextImpl --------------------===//
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 implements the opaque LLVMContextImpl.
11 //===----------------------------------------------------------------------===//
13 #include "LLVMContextImpl.h"
14 #include "AttributeImpl.h"
15 #include "llvm/ADT/SetVector.h"
16 #include "llvm/ADT/StringMapEntry.h"
17 #include "llvm/ADT/iterator.h"
18 #include "llvm/ADT/iterator_range.h"
19 #include "llvm/IR/DiagnosticHandler.h"
20 #include "llvm/IR/LLVMRemarkStreamer.h"
21 #include "llvm/IR/Module.h"
22 #include "llvm/IR/OptBisect.h"
23 #include "llvm/IR/Type.h"
24 #include "llvm/IR/Use.h"
25 #include "llvm/IR/User.h"
26 #include "llvm/Remarks/RemarkStreamer.h"
27 #include "llvm/Support/CommandLine.h"
28 #include "llvm/Support/Compiler.h"
29 #include "llvm/Support/ErrorHandling.h"
30 #include "llvm/Support/TypeSize.h"
36 LLVMContextImpl::LLVMContextImpl(LLVMContext
&C
)
37 : DiagHandler(std::make_unique
<DiagnosticHandler
>()),
38 VoidTy(C
, Type::VoidTyID
), LabelTy(C
, Type::LabelTyID
),
39 HalfTy(C
, Type::HalfTyID
), BFloatTy(C
, Type::BFloatTyID
),
40 FloatTy(C
, Type::FloatTyID
), DoubleTy(C
, Type::DoubleTyID
),
41 MetadataTy(C
, Type::MetadataTyID
), TokenTy(C
, Type::TokenTyID
),
42 X86_FP80Ty(C
, Type::X86_FP80TyID
), FP128Ty(C
, Type::FP128TyID
),
43 PPC_FP128Ty(C
, Type::PPC_FP128TyID
), X86_MMXTy(C
, Type::X86_MMXTyID
),
44 X86_AMXTy(C
, Type::X86_AMXTyID
), Int1Ty(C
, 1), Int8Ty(C
, 8),
45 Int16Ty(C
, 16), Int32Ty(C
, 32), Int64Ty(C
, 64), Int128Ty(C
, 128) {}
47 LLVMContextImpl::~LLVMContextImpl() {
49 // Check that any variable location records that fell off the end of a block
50 // when it's terminator was removed were eventually replaced. This assertion
51 // firing indicates that DbgVariableRecords went missing during the lifetime
52 // of the LLVMContext.
53 assert(TrailingDbgRecords
.empty() && "DbgRecords in blocks not cleaned");
56 // NOTE: We need to delete the contents of OwnedModules, but Module's dtor
57 // will call LLVMContextImpl::removeModule, thus invalidating iterators into
58 // the container. Avoid iterators during this operation:
59 while (!OwnedModules
.empty())
60 delete *OwnedModules
.begin();
63 // Check for metadata references from leaked Values.
64 for (auto &Pair
: ValueMetadata
)
66 assert(ValueMetadata
.empty() && "Values with metadata have been leaked");
69 // Drop references for MDNodes. Do this before Values get deleted to avoid
70 // unnecessary RAUW when nodes are still unresolved.
71 for (auto *I
: DistinctMDNodes
)
72 I
->dropAllReferences();
73 #define HANDLE_MDNODE_LEAF_UNIQUABLE(CLASS) \
74 for (auto *I : CLASS##s) \
75 I->dropAllReferences();
76 #include "llvm/IR/Metadata.def"
78 // Also drop references that come from the Value bridges.
79 for (auto &Pair
: ValuesAsMetadata
)
80 Pair
.second
->dropUsers();
81 for (auto &Pair
: MetadataAsValues
)
82 Pair
.second
->dropUse();
83 // Do not untrack ValueAsMetadata references for DIArgLists, as they have
84 // already been more efficiently untracked above.
85 for (DIArgList
*AL
: DIArgLists
) {
86 AL
->dropAllReferences(/* Untrack */ false);
92 for (MDNode
*I
: DistinctMDNodes
)
93 I
->deleteAsSubclass();
95 for (auto *ConstantRangeListAttribute
: ConstantRangeListAttributes
)
96 ConstantRangeListAttribute
->~ConstantRangeListAttributeImpl();
97 #define HANDLE_MDNODE_LEAF_UNIQUABLE(CLASS) \
98 for (CLASS * I : CLASS##s) \
100 #include "llvm/IR/Metadata.def"
102 // Free the constants.
103 for (auto *I
: ExprConstants
)
104 I
->dropAllReferences();
105 for (auto *I
: ArrayConstants
)
106 I
->dropAllReferences();
107 for (auto *I
: StructConstants
)
108 I
->dropAllReferences();
109 for (auto *I
: VectorConstants
)
110 I
->dropAllReferences();
111 ExprConstants
.freeConstants();
112 ArrayConstants
.freeConstants();
113 StructConstants
.freeConstants();
114 VectorConstants
.freeConstants();
115 InlineAsms
.freeConstants();
117 CAZConstants
.clear();
118 CPNConstants
.clear();
119 CTNConstants
.clear();
122 IntZeroConstants
.clear();
123 IntOneConstants
.clear();
124 IntConstants
.clear();
125 IntSplatConstants
.clear();
127 FPSplatConstants
.clear();
128 CDSConstants
.clear();
130 // Destroy attribute node lists.
131 for (FoldingSetIterator
<AttributeSetNode
> I
= AttrsSetNodes
.begin(),
132 E
= AttrsSetNodes
.end(); I
!= E
; ) {
133 FoldingSetIterator
<AttributeSetNode
> Elem
= I
++;
137 // Destroy MetadataAsValues.
139 SmallVector
<MetadataAsValue
*, 8> MDVs
;
140 MDVs
.reserve(MetadataAsValues
.size());
141 for (auto &Pair
: MetadataAsValues
)
142 MDVs
.push_back(Pair
.second
);
143 MetadataAsValues
.clear();
148 // Destroy ValuesAsMetadata.
149 for (auto &Pair
: ValuesAsMetadata
)
153 void LLVMContextImpl::dropTriviallyDeadConstantArrays() {
154 SmallSetVector
<ConstantArray
*, 4> WorkList
;
156 // When ArrayConstants are of substantial size and only a few in them are
157 // dead, starting WorkList with all elements of ArrayConstants can be
158 // wasteful. Instead, starting WorkList with only elements that have empty
160 for (ConstantArray
*C
: ArrayConstants
)
164 while (!WorkList
.empty()) {
165 ConstantArray
*C
= WorkList
.pop_back_val();
166 if (C
->use_empty()) {
167 for (const Use
&Op
: C
->operands()) {
168 if (auto *COp
= dyn_cast
<ConstantArray
>(Op
))
169 WorkList
.insert(COp
);
171 C
->destroyConstant();
176 void Module::dropTriviallyDeadConstantArrays() {
177 Context
.pImpl
->dropTriviallyDeadConstantArrays();
182 /// Make MDOperand transparent for hashing.
184 /// This overload of an implementation detail of the hashing library makes
185 /// MDOperand hash to the same value as a \a Metadata pointer.
187 /// Note that overloading \a hash_value() as follows:
190 /// size_t hash_value(const MDOperand &X) { return hash_value(X.get()); }
193 /// does not cause MDOperand to be transparent. In particular, a bare pointer
194 /// doesn't get hashed before it's combined, whereas \a MDOperand would.
195 static const Metadata
*get_hashable_data(const MDOperand
&X
) { return X
.get(); }
197 } // end namespace llvm
199 unsigned MDNodeOpsKey::calculateHash(MDNode
*N
, unsigned Offset
) {
200 unsigned Hash
= hash_combine_range(N
->op_begin() + Offset
, N
->op_end());
203 SmallVector
<Metadata
*, 8> MDs(drop_begin(N
->operands(), Offset
));
204 unsigned RawHash
= calculateHash(MDs
);
205 assert(Hash
== RawHash
&&
206 "Expected hash of MDOperand to equal hash of Metadata*");
212 unsigned MDNodeOpsKey::calculateHash(ArrayRef
<Metadata
*> Ops
) {
213 return hash_combine_range(Ops
.begin(), Ops
.end());
216 StringMapEntry
<uint32_t> *LLVMContextImpl::getOrInsertBundleTag(StringRef Tag
) {
217 uint32_t NewIdx
= BundleTagCache
.size();
218 return &*(BundleTagCache
.insert(std::make_pair(Tag
, NewIdx
)).first
);
221 void LLVMContextImpl::getOperandBundleTags(SmallVectorImpl
<StringRef
> &Tags
) const {
222 Tags
.resize(BundleTagCache
.size());
223 for (const auto &T
: BundleTagCache
)
224 Tags
[T
.second
] = T
.first();
227 uint32_t LLVMContextImpl::getOperandBundleTagID(StringRef Tag
) const {
228 auto I
= BundleTagCache
.find(Tag
);
229 assert(I
!= BundleTagCache
.end() && "Unknown tag!");
233 SyncScope::ID
LLVMContextImpl::getOrInsertSyncScopeID(StringRef SSN
) {
234 auto NewSSID
= SSC
.size();
235 assert(NewSSID
< std::numeric_limits
<SyncScope::ID
>::max() &&
236 "Hit the maximum number of synchronization scopes allowed!");
237 return SSC
.insert(std::make_pair(SSN
, SyncScope::ID(NewSSID
))).first
->second
;
240 void LLVMContextImpl::getSyncScopeNames(
241 SmallVectorImpl
<StringRef
> &SSNs
) const {
242 SSNs
.resize(SSC
.size());
243 for (const auto &SSE
: SSC
)
244 SSNs
[SSE
.second
] = SSE
.first();
247 /// Gets the OptPassGate for this LLVMContextImpl, which defaults to the
248 /// singleton OptBisect if not explicitly set.
249 OptPassGate
&LLVMContextImpl::getOptPassGate() const {
251 OPG
= &getGlobalPassGate();
255 void LLVMContextImpl::setOptPassGate(OptPassGate
& OPG
) {