1 //===- LLVMContextImpl.cpp - Implement LLVMContextImpl --------------------===// 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 implements the opaque LLVMContextImpl. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "LLVMContextImpl.h" 14 #include "llvm/ADT/SetVector.h" 15 #include "llvm/IR/Module.h" 16 #include "llvm/IR/OptBisect.h" 17 #include "llvm/IR/Type.h" 18 #include "llvm/Support/CommandLine.h" 19 #include "llvm/Support/ManagedStatic.h" 20 #include <cassert> 21 #include <utility> 22 23 using namespace llvm; 24 25 static cl::opt<bool> 26 OpaquePointersCL("opaque-pointers", cl::desc("Use opaque pointers"), 27 cl::init(false)); 28 29 LLVMContextImpl::LLVMContextImpl(LLVMContext &C) 30 : DiagHandler(std::make_unique<DiagnosticHandler>()), 31 VoidTy(C, Type::VoidTyID), LabelTy(C, Type::LabelTyID), 32 HalfTy(C, Type::HalfTyID), BFloatTy(C, Type::BFloatTyID), 33 FloatTy(C, Type::FloatTyID), DoubleTy(C, Type::DoubleTyID), 34 MetadataTy(C, Type::MetadataTyID), TokenTy(C, Type::TokenTyID), 35 X86_FP80Ty(C, Type::X86_FP80TyID), FP128Ty(C, Type::FP128TyID), 36 PPC_FP128Ty(C, Type::PPC_FP128TyID), X86_MMXTy(C, Type::X86_MMXTyID), 37 X86_AMXTy(C, Type::X86_AMXTyID), Int1Ty(C, 1), Int8Ty(C, 8), 38 Int16Ty(C, 16), Int32Ty(C, 32), Int64Ty(C, 64), Int128Ty(C, 128) {} 39 40 LLVMContextImpl::~LLVMContextImpl() { 41 // NOTE: We need to delete the contents of OwnedModules, but Module's dtor 42 // will call LLVMContextImpl::removeModule, thus invalidating iterators into 43 // the container. Avoid iterators during this operation: 44 while (!OwnedModules.empty()) 45 delete *OwnedModules.begin(); 46 47 #ifndef NDEBUG 48 // Check for metadata references from leaked Values. 49 for (auto &Pair : ValueMetadata) 50 Pair.first->dump(); 51 assert(ValueMetadata.empty() && "Values with metadata have been leaked"); 52 #endif 53 54 // Drop references for MDNodes. Do this before Values get deleted to avoid 55 // unnecessary RAUW when nodes are still unresolved. 56 for (auto *I : DistinctMDNodes) { 57 // We may have DIArgList that were uniqued, and as it has a custom 58 // implementation of dropAllReferences, it needs to be explicitly invoked. 59 if (auto *AL = dyn_cast<DIArgList>(I)) { 60 AL->dropAllReferences(); 61 continue; 62 } 63 I->dropAllReferences(); 64 } 65 #define HANDLE_MDNODE_LEAF_UNIQUABLE(CLASS) \ 66 for (auto *I : CLASS##s) \ 67 I->dropAllReferences(); 68 #include "llvm/IR/Metadata.def" 69 70 // Also drop references that come from the Value bridges. 71 for (auto &Pair : ValuesAsMetadata) 72 Pair.second->dropUsers(); 73 for (auto &Pair : MetadataAsValues) 74 Pair.second->dropUse(); 75 76 // Destroy MDNodes. 77 for (MDNode *I : DistinctMDNodes) 78 I->deleteAsSubclass(); 79 #define HANDLE_MDNODE_LEAF_UNIQUABLE(CLASS) \ 80 for (CLASS * I : CLASS##s) \ 81 delete I; 82 #include "llvm/IR/Metadata.def" 83 84 // Free the constants. 85 for (auto *I : ExprConstants) 86 I->dropAllReferences(); 87 for (auto *I : ArrayConstants) 88 I->dropAllReferences(); 89 for (auto *I : StructConstants) 90 I->dropAllReferences(); 91 for (auto *I : VectorConstants) 92 I->dropAllReferences(); 93 ExprConstants.freeConstants(); 94 ArrayConstants.freeConstants(); 95 StructConstants.freeConstants(); 96 VectorConstants.freeConstants(); 97 InlineAsms.freeConstants(); 98 99 CAZConstants.clear(); 100 CPNConstants.clear(); 101 UVConstants.clear(); 102 PVConstants.clear(); 103 IntConstants.clear(); 104 FPConstants.clear(); 105 CDSConstants.clear(); 106 107 // Destroy attribute node lists. 108 for (FoldingSetIterator<AttributeSetNode> I = AttrsSetNodes.begin(), 109 E = AttrsSetNodes.end(); I != E; ) { 110 FoldingSetIterator<AttributeSetNode> Elem = I++; 111 delete &*Elem; 112 } 113 114 // Destroy MetadataAsValues. 115 { 116 SmallVector<MetadataAsValue *, 8> MDVs; 117 MDVs.reserve(MetadataAsValues.size()); 118 for (auto &Pair : MetadataAsValues) 119 MDVs.push_back(Pair.second); 120 MetadataAsValues.clear(); 121 for (auto *V : MDVs) 122 delete V; 123 } 124 125 // Destroy ValuesAsMetadata. 126 for (auto &Pair : ValuesAsMetadata) 127 delete Pair.second; 128 } 129 130 void LLVMContextImpl::dropTriviallyDeadConstantArrays() { 131 SmallSetVector<ConstantArray *, 4> WorkList; 132 133 // When ArrayConstants are of substantial size and only a few in them are 134 // dead, starting WorkList with all elements of ArrayConstants can be 135 // wasteful. Instead, starting WorkList with only elements that have empty 136 // uses. 137 for (ConstantArray *C : ArrayConstants) 138 if (C->use_empty()) 139 WorkList.insert(C); 140 141 while (!WorkList.empty()) { 142 ConstantArray *C = WorkList.pop_back_val(); 143 if (C->use_empty()) { 144 for (const Use &Op : C->operands()) { 145 if (auto *COp = dyn_cast<ConstantArray>(Op)) 146 WorkList.insert(COp); 147 } 148 C->destroyConstant(); 149 } 150 } 151 } 152 153 void Module::dropTriviallyDeadConstantArrays() { 154 Context.pImpl->dropTriviallyDeadConstantArrays(); 155 } 156 157 namespace llvm { 158 159 /// Make MDOperand transparent for hashing. 160 /// 161 /// This overload of an implementation detail of the hashing library makes 162 /// MDOperand hash to the same value as a \a Metadata pointer. 163 /// 164 /// Note that overloading \a hash_value() as follows: 165 /// 166 /// \code 167 /// size_t hash_value(const MDOperand &X) { return hash_value(X.get()); } 168 /// \endcode 169 /// 170 /// does not cause MDOperand to be transparent. In particular, a bare pointer 171 /// doesn't get hashed before it's combined, whereas \a MDOperand would. 172 static const Metadata *get_hashable_data(const MDOperand &X) { return X.get(); } 173 174 } // end namespace llvm 175 176 unsigned MDNodeOpsKey::calculateHash(MDNode *N, unsigned Offset) { 177 unsigned Hash = hash_combine_range(N->op_begin() + Offset, N->op_end()); 178 #ifndef NDEBUG 179 { 180 SmallVector<Metadata *, 8> MDs(drop_begin(N->operands(), Offset)); 181 unsigned RawHash = calculateHash(MDs); 182 assert(Hash == RawHash && 183 "Expected hash of MDOperand to equal hash of Metadata*"); 184 } 185 #endif 186 return Hash; 187 } 188 189 unsigned MDNodeOpsKey::calculateHash(ArrayRef<Metadata *> Ops) { 190 return hash_combine_range(Ops.begin(), Ops.end()); 191 } 192 193 StringMapEntry<uint32_t> *LLVMContextImpl::getOrInsertBundleTag(StringRef Tag) { 194 uint32_t NewIdx = BundleTagCache.size(); 195 return &*(BundleTagCache.insert(std::make_pair(Tag, NewIdx)).first); 196 } 197 198 void LLVMContextImpl::getOperandBundleTags(SmallVectorImpl<StringRef> &Tags) const { 199 Tags.resize(BundleTagCache.size()); 200 for (const auto &T : BundleTagCache) 201 Tags[T.second] = T.first(); 202 } 203 204 uint32_t LLVMContextImpl::getOperandBundleTagID(StringRef Tag) const { 205 auto I = BundleTagCache.find(Tag); 206 assert(I != BundleTagCache.end() && "Unknown tag!"); 207 return I->second; 208 } 209 210 SyncScope::ID LLVMContextImpl::getOrInsertSyncScopeID(StringRef SSN) { 211 auto NewSSID = SSC.size(); 212 assert(NewSSID < std::numeric_limits<SyncScope::ID>::max() && 213 "Hit the maximum number of synchronization scopes allowed!"); 214 return SSC.insert(std::make_pair(SSN, SyncScope::ID(NewSSID))).first->second; 215 } 216 217 void LLVMContextImpl::getSyncScopeNames( 218 SmallVectorImpl<StringRef> &SSNs) const { 219 SSNs.resize(SSC.size()); 220 for (const auto &SSE : SSC) 221 SSNs[SSE.second] = SSE.first(); 222 } 223 224 /// Gets the OptPassGate for this LLVMContextImpl, which defaults to the 225 /// singleton OptBisect if not explicitly set. 226 OptPassGate &LLVMContextImpl::getOptPassGate() const { 227 if (!OPG) 228 OPG = &(*OptBisector); 229 return *OPG; 230 } 231 232 void LLVMContextImpl::setOptPassGate(OptPassGate& OPG) { 233 this->OPG = &OPG; 234 } 235 236 bool LLVMContextImpl::getOpaquePointers() { 237 if (LLVM_UNLIKELY(!(OpaquePointers.hasValue()))) 238 OpaquePointers = OpaquePointersCL; 239 return *OpaquePointers; 240 } 241 242 void LLVMContextImpl::setOpaquePointers(bool OP) { OpaquePointers = OP; } 243