Duncan P. N. Exon Smith | 71db642 | 2015-02-02 18:20:15 +0000 | [diff] [blame] | 1 | //===- Metadata.cpp - Implement Metadata classes --------------------------===// |
Devang Patel | a4f43fb | 2009-07-28 21:49:47 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Metadata classes. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | 1300f45 | 2009-12-28 08:24:16 +0000 | [diff] [blame] | 14 | #include "LLVMContextImpl.h" |
Duncan P. N. Exon Smith | d9901ff | 2015-02-02 18:53:21 +0000 | [diff] [blame] | 15 | #include "MetadataImpl.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "SymbolTableListTraitsImpl.h" |
Eugene Zelenko | deaf695 | 2017-02-17 00:00:09 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/APFloat.h" |
| 18 | #include "llvm/ADT/APInt.h" |
| 19 | #include "llvm/ADT/ArrayRef.h" |
| 20 | #include "llvm/ADT/DenseSet.h" |
| 21 | #include "llvm/ADT/None.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/STLExtras.h" |
David Majnemer | fa0f1e6 | 2016-08-16 18:48:34 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/SetVector.h" |
Eugene Zelenko | deaf695 | 2017-02-17 00:00:09 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/SmallPtrSet.h" |
Rafael Espindola | ab73c49 | 2014-01-28 16:56:46 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallSet.h" |
Eugene Zelenko | deaf695 | 2017-02-17 00:00:09 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/SmallVector.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/StringMap.h" |
Eugene Zelenko | deaf695 | 2017-02-17 00:00:09 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/StringRef.h" |
Eugene Zelenko | de6cce2 | 2017-06-19 22:05:08 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/Twine.h" |
Eugene Zelenko | deaf695 | 2017-02-17 00:00:09 +0000 | [diff] [blame] | 30 | #include "llvm/IR/Argument.h" |
| 31 | #include "llvm/IR/BasicBlock.h" |
| 32 | #include "llvm/IR/Constant.h" |
Chandler Carruth | 8cd041e | 2014-03-04 12:24:34 +0000 | [diff] [blame] | 33 | #include "llvm/IR/ConstantRange.h" |
Eugene Zelenko | deaf695 | 2017-02-17 00:00:09 +0000 | [diff] [blame] | 34 | #include "llvm/IR/Constants.h" |
Duncan P. N. Exon Smith | d9901ff | 2015-02-02 18:53:21 +0000 | [diff] [blame] | 35 | #include "llvm/IR/DebugInfoMetadata.h" |
Eugene Zelenko | deaf695 | 2017-02-17 00:00:09 +0000 | [diff] [blame] | 36 | #include "llvm/IR/DebugLoc.h" |
| 37 | #include "llvm/IR/Function.h" |
| 38 | #include "llvm/IR/GlobalObject.h" |
| 39 | #include "llvm/IR/GlobalVariable.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 40 | #include "llvm/IR/Instruction.h" |
| 41 | #include "llvm/IR/LLVMContext.h" |
Eugene Zelenko | de6cce2 | 2017-06-19 22:05:08 +0000 | [diff] [blame] | 42 | #include "llvm/IR/Metadata.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 43 | #include "llvm/IR/Module.h" |
Eugene Zelenko | deaf695 | 2017-02-17 00:00:09 +0000 | [diff] [blame] | 44 | #include "llvm/IR/TrackingMDRef.h" |
| 45 | #include "llvm/IR/Type.h" |
| 46 | #include "llvm/IR/Value.h" |
Chandler Carruth | 4220e9c | 2014-03-04 11:17:44 +0000 | [diff] [blame] | 47 | #include "llvm/IR/ValueHandle.h" |
Eugene Zelenko | deaf695 | 2017-02-17 00:00:09 +0000 | [diff] [blame] | 48 | #include "llvm/Support/Casting.h" |
| 49 | #include "llvm/Support/ErrorHandling.h" |
| 50 | #include "llvm/Support/MathExtras.h" |
| 51 | #include <algorithm> |
| 52 | #include <cassert> |
| 53 | #include <cstddef> |
| 54 | #include <cstdint> |
| 55 | #include <iterator> |
| 56 | #include <tuple> |
Eugene Zelenko | de6cce2 | 2017-06-19 22:05:08 +0000 | [diff] [blame] | 57 | #include <type_traits> |
Eugene Zelenko | deaf695 | 2017-02-17 00:00:09 +0000 | [diff] [blame] | 58 | #include <utility> |
| 59 | #include <vector> |
Duncan P. N. Exon Smith | 46d91ad | 2014-11-14 18:42:06 +0000 | [diff] [blame] | 60 | |
Devang Patel | a4f43fb | 2009-07-28 21:49:47 +0000 | [diff] [blame] | 61 | using namespace llvm; |
| 62 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 63 | MetadataAsValue::MetadataAsValue(Type *Ty, Metadata *MD) |
| 64 | : Value(Ty, MetadataAsValueVal), MD(MD) { |
| 65 | track(); |
| 66 | } |
| 67 | |
| 68 | MetadataAsValue::~MetadataAsValue() { |
| 69 | getType()->getContext().pImpl->MetadataAsValues.erase(MD); |
| 70 | untrack(); |
| 71 | } |
| 72 | |
Sanjay Patel | 9da9c76 | 2016-03-12 20:44:58 +0000 | [diff] [blame] | 73 | /// Canonicalize metadata arguments to intrinsics. |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 74 | /// |
| 75 | /// To support bitcode upgrades (and assembly semantic sugar) for \a |
| 76 | /// MetadataAsValue, we need to canonicalize certain metadata. |
| 77 | /// |
| 78 | /// - nullptr is replaced by an empty MDNode. |
| 79 | /// - An MDNode with a single null operand is replaced by an empty MDNode. |
| 80 | /// - An MDNode whose only operand is a \a ConstantAsMetadata gets skipped. |
| 81 | /// |
| 82 | /// This maintains readability of bitcode from when metadata was a type of |
| 83 | /// value, and these bridges were unnecessary. |
| 84 | static Metadata *canonicalizeMetadataForValue(LLVMContext &Context, |
| 85 | Metadata *MD) { |
| 86 | if (!MD) |
| 87 | // !{} |
| 88 | return MDNode::get(Context, None); |
| 89 | |
| 90 | // Return early if this isn't a single-operand MDNode. |
| 91 | auto *N = dyn_cast<MDNode>(MD); |
| 92 | if (!N || N->getNumOperands() != 1) |
| 93 | return MD; |
| 94 | |
| 95 | if (!N->getOperand(0)) |
| 96 | // !{} |
| 97 | return MDNode::get(Context, None); |
| 98 | |
| 99 | if (auto *C = dyn_cast<ConstantAsMetadata>(N->getOperand(0))) |
| 100 | // Look through the MDNode. |
| 101 | return C; |
| 102 | |
| 103 | return MD; |
| 104 | } |
| 105 | |
| 106 | MetadataAsValue *MetadataAsValue::get(LLVMContext &Context, Metadata *MD) { |
| 107 | MD = canonicalizeMetadataForValue(Context, MD); |
| 108 | auto *&Entry = Context.pImpl->MetadataAsValues[MD]; |
| 109 | if (!Entry) |
| 110 | Entry = new MetadataAsValue(Type::getMetadataTy(Context), MD); |
| 111 | return Entry; |
| 112 | } |
| 113 | |
| 114 | MetadataAsValue *MetadataAsValue::getIfExists(LLVMContext &Context, |
| 115 | Metadata *MD) { |
| 116 | MD = canonicalizeMetadataForValue(Context, MD); |
| 117 | auto &Store = Context.pImpl->MetadataAsValues; |
Benjamin Kramer | 4c1f097 | 2015-02-08 21:56:09 +0000 | [diff] [blame] | 118 | return Store.lookup(MD); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | void MetadataAsValue::handleChangedMetadata(Metadata *MD) { |
| 122 | LLVMContext &Context = getContext(); |
| 123 | MD = canonicalizeMetadataForValue(Context, MD); |
| 124 | auto &Store = Context.pImpl->MetadataAsValues; |
| 125 | |
| 126 | // Stop tracking the old metadata. |
| 127 | Store.erase(this->MD); |
| 128 | untrack(); |
| 129 | this->MD = nullptr; |
| 130 | |
| 131 | // Start tracking MD, or RAUW if necessary. |
| 132 | auto *&Entry = Store[MD]; |
| 133 | if (Entry) { |
| 134 | replaceAllUsesWith(Entry); |
| 135 | delete this; |
| 136 | return; |
| 137 | } |
| 138 | |
| 139 | this->MD = MD; |
| 140 | track(); |
| 141 | Entry = this; |
| 142 | } |
| 143 | |
| 144 | void MetadataAsValue::track() { |
| 145 | if (MD) |
| 146 | MetadataTracking::track(&MD, *MD, *this); |
| 147 | } |
| 148 | |
| 149 | void MetadataAsValue::untrack() { |
| 150 | if (MD) |
| 151 | MetadataTracking::untrack(MD); |
| 152 | } |
| 153 | |
Chandler Carruth | a7dc087 | 2015-12-29 02:14:50 +0000 | [diff] [blame] | 154 | bool MetadataTracking::track(void *Ref, Metadata &MD, OwnerTy Owner) { |
| 155 | assert(Ref && "Expected live reference"); |
| 156 | assert((Owner || *static_cast<Metadata **>(Ref) == &MD) && |
| 157 | "Reference without owner must be direct"); |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 158 | if (auto *R = ReplaceableMetadataImpl::getOrCreate(MD)) { |
Chandler Carruth | a7dc087 | 2015-12-29 02:14:50 +0000 | [diff] [blame] | 159 | R->addRef(Ref, Owner); |
| 160 | return true; |
| 161 | } |
Duncan P. N. Exon Smith | 4b1bc64 | 2016-04-23 04:15:56 +0000 | [diff] [blame] | 162 | if (auto *PH = dyn_cast<DistinctMDOperandPlaceholder>(&MD)) { |
| 163 | assert(!PH->Use && "Placeholders can only be used once"); |
| 164 | assert(!Owner && "Unexpected callback to owner"); |
| 165 | PH->Use = static_cast<Metadata **>(Ref); |
| 166 | return true; |
| 167 | } |
Chandler Carruth | a7dc087 | 2015-12-29 02:14:50 +0000 | [diff] [blame] | 168 | return false; |
| 169 | } |
| 170 | |
| 171 | void MetadataTracking::untrack(void *Ref, Metadata &MD) { |
| 172 | assert(Ref && "Expected live reference"); |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 173 | if (auto *R = ReplaceableMetadataImpl::getIfExists(MD)) |
Chandler Carruth | a7dc087 | 2015-12-29 02:14:50 +0000 | [diff] [blame] | 174 | R->dropRef(Ref); |
Duncan P. N. Exon Smith | 4b1bc64 | 2016-04-23 04:15:56 +0000 | [diff] [blame] | 175 | else if (auto *PH = dyn_cast<DistinctMDOperandPlaceholder>(&MD)) |
| 176 | PH->Use = nullptr; |
Chandler Carruth | a7dc087 | 2015-12-29 02:14:50 +0000 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | bool MetadataTracking::retrack(void *Ref, Metadata &MD, void *New) { |
| 180 | assert(Ref && "Expected live reference"); |
| 181 | assert(New && "Expected live reference"); |
| 182 | assert(Ref != New && "Expected change"); |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 183 | if (auto *R = ReplaceableMetadataImpl::getIfExists(MD)) { |
Chandler Carruth | a7dc087 | 2015-12-29 02:14:50 +0000 | [diff] [blame] | 184 | R->moveRef(Ref, New, MD); |
| 185 | return true; |
| 186 | } |
Duncan P. N. Exon Smith | 4b1bc64 | 2016-04-23 04:15:56 +0000 | [diff] [blame] | 187 | assert(!isa<DistinctMDOperandPlaceholder>(MD) && |
| 188 | "Unexpected move of an MDOperand"); |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 189 | assert(!isReplaceable(MD) && |
| 190 | "Expected un-replaceable metadata, since we didn't move a reference"); |
Chandler Carruth | a7dc087 | 2015-12-29 02:14:50 +0000 | [diff] [blame] | 191 | return false; |
| 192 | } |
| 193 | |
| 194 | bool MetadataTracking::isReplaceable(const Metadata &MD) { |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 195 | return ReplaceableMetadataImpl::isReplaceable(MD); |
Chandler Carruth | a7dc087 | 2015-12-29 02:14:50 +0000 | [diff] [blame] | 196 | } |
| 197 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 198 | void ReplaceableMetadataImpl::addRef(void *Ref, OwnerTy Owner) { |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 199 | bool WasInserted = |
| 200 | UseMap.insert(std::make_pair(Ref, std::make_pair(Owner, NextIndex))) |
| 201 | .second; |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 202 | (void)WasInserted; |
| 203 | assert(WasInserted && "Expected to add a reference"); |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 204 | |
| 205 | ++NextIndex; |
| 206 | assert(NextIndex != 0 && "Unexpected overflow"); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | void ReplaceableMetadataImpl::dropRef(void *Ref) { |
| 210 | bool WasErased = UseMap.erase(Ref); |
| 211 | (void)WasErased; |
| 212 | assert(WasErased && "Expected to drop a reference"); |
| 213 | } |
| 214 | |
| 215 | void ReplaceableMetadataImpl::moveRef(void *Ref, void *New, |
| 216 | const Metadata &MD) { |
| 217 | auto I = UseMap.find(Ref); |
| 218 | assert(I != UseMap.end() && "Expected to move a reference"); |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 219 | auto OwnerAndIndex = I->second; |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 220 | UseMap.erase(I); |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 221 | bool WasInserted = UseMap.insert(std::make_pair(New, OwnerAndIndex)).second; |
| 222 | (void)WasInserted; |
| 223 | assert(WasInserted && "Expected to add a reference"); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 224 | |
| 225 | // Check that the references are direct if there's no owner. |
| 226 | (void)MD; |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 227 | assert((OwnerAndIndex.first || *static_cast<Metadata **>(Ref) == &MD) && |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 228 | "Reference without owner must be direct"); |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 229 | assert((OwnerAndIndex.first || *static_cast<Metadata **>(New) == &MD) && |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 230 | "Reference without owner must be direct"); |
| 231 | } |
| 232 | |
| 233 | void ReplaceableMetadataImpl::replaceAllUsesWith(Metadata *MD) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 234 | if (UseMap.empty()) |
| 235 | return; |
| 236 | |
| 237 | // Copy out uses since UseMap will get touched below. |
Eugene Zelenko | de6cce2 | 2017-06-19 22:05:08 +0000 | [diff] [blame] | 238 | using UseTy = std::pair<void *, std::pair<OwnerTy, uint64_t>>; |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 239 | SmallVector<UseTy, 8> Uses(UseMap.begin(), UseMap.end()); |
| 240 | std::sort(Uses.begin(), Uses.end(), [](const UseTy &L, const UseTy &R) { |
| 241 | return L.second.second < R.second.second; |
| 242 | }); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 243 | for (const auto &Pair : Uses) { |
Duncan P. N. Exon Smith | 4a4f785 | 2015-01-14 19:56:10 +0000 | [diff] [blame] | 244 | // Check that this Ref hasn't disappeared after RAUW (when updating a |
| 245 | // previous Ref). |
| 246 | if (!UseMap.count(Pair.first)) |
| 247 | continue; |
| 248 | |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 249 | OwnerTy Owner = Pair.second.first; |
| 250 | if (!Owner) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 251 | // Update unowned tracking references directly. |
| 252 | Metadata *&Ref = *static_cast<Metadata **>(Pair.first); |
| 253 | Ref = MD; |
Duncan P. N. Exon Smith | 121eeff | 2014-12-12 19:24:33 +0000 | [diff] [blame] | 254 | if (MD) |
| 255 | MetadataTracking::track(Ref); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 256 | UseMap.erase(Pair.first); |
| 257 | continue; |
| 258 | } |
| 259 | |
| 260 | // Check for MetadataAsValue. |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 261 | if (Owner.is<MetadataAsValue *>()) { |
| 262 | Owner.get<MetadataAsValue *>()->handleChangedMetadata(MD); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 263 | continue; |
| 264 | } |
| 265 | |
| 266 | // There's a Metadata owner -- dispatch. |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 267 | Metadata *OwnerMD = Owner.get<Metadata *>(); |
| 268 | switch (OwnerMD->getMetadataID()) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 269 | #define HANDLE_METADATA_LEAF(CLASS) \ |
| 270 | case Metadata::CLASS##Kind: \ |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 271 | cast<CLASS>(OwnerMD)->handleChangedOperand(Pair.first, MD); \ |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 272 | continue; |
| 273 | #include "llvm/IR/Metadata.def" |
| 274 | default: |
| 275 | llvm_unreachable("Invalid metadata subclass"); |
| 276 | } |
| 277 | } |
| 278 | assert(UseMap.empty() && "Expected all uses to be replaced"); |
| 279 | } |
| 280 | |
| 281 | void ReplaceableMetadataImpl::resolveAllUses(bool ResolveUsers) { |
| 282 | if (UseMap.empty()) |
| 283 | return; |
| 284 | |
| 285 | if (!ResolveUsers) { |
| 286 | UseMap.clear(); |
| 287 | return; |
| 288 | } |
| 289 | |
| 290 | // Copy out uses since UseMap could get touched below. |
Eugene Zelenko | de6cce2 | 2017-06-19 22:05:08 +0000 | [diff] [blame] | 291 | using UseTy = std::pair<void *, std::pair<OwnerTy, uint64_t>>; |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 292 | SmallVector<UseTy, 8> Uses(UseMap.begin(), UseMap.end()); |
| 293 | std::sort(Uses.begin(), Uses.end(), [](const UseTy &L, const UseTy &R) { |
| 294 | return L.second.second < R.second.second; |
| 295 | }); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 296 | UseMap.clear(); |
| 297 | for (const auto &Pair : Uses) { |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 298 | auto Owner = Pair.second.first; |
| 299 | if (!Owner) |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 300 | continue; |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 301 | if (Owner.is<MetadataAsValue *>()) |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 302 | continue; |
| 303 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 304 | // Resolve MDNodes that point at this. |
| 305 | auto *OwnerMD = dyn_cast<MDNode>(Owner.get<Metadata *>()); |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 306 | if (!OwnerMD) |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 307 | continue; |
Duncan P. N. Exon Smith | 21909e3 | 2014-12-09 21:12:56 +0000 | [diff] [blame] | 308 | if (OwnerMD->isResolved()) |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 309 | continue; |
Duncan P. N. Exon Smith | 34c3d10 | 2015-01-12 19:43:15 +0000 | [diff] [blame] | 310 | OwnerMD->decrementUnresolvedOperandCount(); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 311 | } |
| 312 | } |
| 313 | |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 314 | ReplaceableMetadataImpl *ReplaceableMetadataImpl::getOrCreate(Metadata &MD) { |
Chandler Carruth | a7dc087 | 2015-12-29 02:14:50 +0000 | [diff] [blame] | 315 | if (auto *N = dyn_cast<MDNode>(&MD)) |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 316 | return N->isResolved() ? nullptr : N->Context.getOrCreateReplaceableUses(); |
| 317 | return dyn_cast<ValueAsMetadata>(&MD); |
| 318 | } |
| 319 | |
| 320 | ReplaceableMetadataImpl *ReplaceableMetadataImpl::getIfExists(Metadata &MD) { |
| 321 | if (auto *N = dyn_cast<MDNode>(&MD)) |
| 322 | return N->isResolved() ? nullptr : N->Context.getReplaceableUses(); |
| 323 | return dyn_cast<ValueAsMetadata>(&MD); |
| 324 | } |
| 325 | |
| 326 | bool ReplaceableMetadataImpl::isReplaceable(const Metadata &MD) { |
| 327 | if (auto *N = dyn_cast<MDNode>(&MD)) |
| 328 | return !N->isResolved(); |
Chandler Carruth | a7dc087 | 2015-12-29 02:14:50 +0000 | [diff] [blame] | 329 | return dyn_cast<ValueAsMetadata>(&MD); |
| 330 | } |
| 331 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 332 | static Function *getLocalFunction(Value *V) { |
| 333 | assert(V && "Expected value"); |
| 334 | if (auto *A = dyn_cast<Argument>(V)) |
| 335 | return A->getParent(); |
| 336 | if (BasicBlock *BB = cast<Instruction>(V)->getParent()) |
| 337 | return BB->getParent(); |
| 338 | return nullptr; |
| 339 | } |
| 340 | |
| 341 | ValueAsMetadata *ValueAsMetadata::get(Value *V) { |
| 342 | assert(V && "Unexpected null Value"); |
| 343 | |
| 344 | auto &Context = V->getContext(); |
| 345 | auto *&Entry = Context.pImpl->ValuesAsMetadata[V]; |
| 346 | if (!Entry) { |
| 347 | assert((isa<Constant>(V) || isa<Argument>(V) || isa<Instruction>(V)) && |
| 348 | "Expected constant or function-local value"); |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 349 | assert(!V->IsUsedByMD && "Expected this to be the only metadata use"); |
Owen Anderson | 7349ab9 | 2015-06-01 22:24:01 +0000 | [diff] [blame] | 350 | V->IsUsedByMD = true; |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 351 | if (auto *C = dyn_cast<Constant>(V)) |
Duncan P. N. Exon Smith | 1c00c9f | 2015-01-05 20:41:25 +0000 | [diff] [blame] | 352 | Entry = new ConstantAsMetadata(C); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 353 | else |
Duncan P. N. Exon Smith | 1c00c9f | 2015-01-05 20:41:25 +0000 | [diff] [blame] | 354 | Entry = new LocalAsMetadata(V); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | return Entry; |
| 358 | } |
| 359 | |
| 360 | ValueAsMetadata *ValueAsMetadata::getIfExists(Value *V) { |
| 361 | assert(V && "Unexpected null Value"); |
| 362 | return V->getContext().pImpl->ValuesAsMetadata.lookup(V); |
| 363 | } |
| 364 | |
| 365 | void ValueAsMetadata::handleDeletion(Value *V) { |
| 366 | assert(V && "Expected valid value"); |
| 367 | |
| 368 | auto &Store = V->getType()->getContext().pImpl->ValuesAsMetadata; |
| 369 | auto I = Store.find(V); |
| 370 | if (I == Store.end()) |
| 371 | return; |
| 372 | |
| 373 | // Remove old entry from the map. |
| 374 | ValueAsMetadata *MD = I->second; |
| 375 | assert(MD && "Expected valid metadata"); |
| 376 | assert(MD->getValue() == V && "Expected valid mapping"); |
| 377 | Store.erase(I); |
| 378 | |
| 379 | // Delete the metadata. |
| 380 | MD->replaceAllUsesWith(nullptr); |
| 381 | delete MD; |
| 382 | } |
| 383 | |
| 384 | void ValueAsMetadata::handleRAUW(Value *From, Value *To) { |
| 385 | assert(From && "Expected valid value"); |
| 386 | assert(To && "Expected valid value"); |
| 387 | assert(From != To && "Expected changed value"); |
| 388 | assert(From->getType() == To->getType() && "Unexpected type change"); |
| 389 | |
| 390 | LLVMContext &Context = From->getType()->getContext(); |
| 391 | auto &Store = Context.pImpl->ValuesAsMetadata; |
| 392 | auto I = Store.find(From); |
| 393 | if (I == Store.end()) { |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 394 | assert(!From->IsUsedByMD && "Expected From not to be used by metadata"); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 395 | return; |
| 396 | } |
| 397 | |
| 398 | // Remove old entry from the map. |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 399 | assert(From->IsUsedByMD && "Expected From to be used by metadata"); |
Owen Anderson | 7349ab9 | 2015-06-01 22:24:01 +0000 | [diff] [blame] | 400 | From->IsUsedByMD = false; |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 401 | ValueAsMetadata *MD = I->second; |
| 402 | assert(MD && "Expected valid metadata"); |
| 403 | assert(MD->getValue() == From && "Expected valid mapping"); |
| 404 | Store.erase(I); |
| 405 | |
| 406 | if (isa<LocalAsMetadata>(MD)) { |
| 407 | if (auto *C = dyn_cast<Constant>(To)) { |
| 408 | // Local became a constant. |
| 409 | MD->replaceAllUsesWith(ConstantAsMetadata::get(C)); |
| 410 | delete MD; |
| 411 | return; |
| 412 | } |
| 413 | if (getLocalFunction(From) && getLocalFunction(To) && |
| 414 | getLocalFunction(From) != getLocalFunction(To)) { |
| 415 | // Function changed. |
| 416 | MD->replaceAllUsesWith(nullptr); |
| 417 | delete MD; |
| 418 | return; |
| 419 | } |
| 420 | } else if (!isa<Constant>(To)) { |
| 421 | // Changed to function-local value. |
| 422 | MD->replaceAllUsesWith(nullptr); |
| 423 | delete MD; |
| 424 | return; |
| 425 | } |
| 426 | |
| 427 | auto *&Entry = Store[To]; |
| 428 | if (Entry) { |
| 429 | // The target already exists. |
| 430 | MD->replaceAllUsesWith(Entry); |
| 431 | delete MD; |
| 432 | return; |
| 433 | } |
| 434 | |
| 435 | // Update MD in place (and update the map entry). |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 436 | assert(!To->IsUsedByMD && "Expected this to be the only metadata use"); |
Owen Anderson | 7349ab9 | 2015-06-01 22:24:01 +0000 | [diff] [blame] | 437 | To->IsUsedByMD = true; |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 438 | MD->V = To; |
| 439 | Entry = MD; |
| 440 | } |
Duncan P. N. Exon Smith | a69934f | 2014-11-14 18:42:09 +0000 | [diff] [blame] | 441 | |
Devang Patel | a4f43fb | 2009-07-28 21:49:47 +0000 | [diff] [blame] | 442 | //===----------------------------------------------------------------------===// |
Chris Lattner | b0c23e8 | 2009-10-19 07:10:59 +0000 | [diff] [blame] | 443 | // MDString implementation. |
Owen Anderson | 0087fe6 | 2009-07-31 21:35:40 +0000 | [diff] [blame] | 444 | // |
Chris Lattner | 5a409bd | 2009-12-28 08:30:43 +0000 | [diff] [blame] | 445 | |
Devang Patel | dcb99d3 | 2009-10-22 00:10:15 +0000 | [diff] [blame] | 446 | MDString *MDString::get(LLVMContext &Context, StringRef Str) { |
Duncan P. N. Exon Smith | f17e740 | 2014-11-14 01:17:09 +0000 | [diff] [blame] | 447 | auto &Store = Context.pImpl->MDStringCache; |
Benjamin Kramer | eab3d36 | 2016-07-21 13:37:48 +0000 | [diff] [blame] | 448 | auto I = Store.try_emplace(Str); |
Mehdi Amini | cb708b2 | 2016-03-25 05:58:04 +0000 | [diff] [blame] | 449 | auto &MapEntry = I.first->getValue(); |
| 450 | if (!I.second) |
| 451 | return &MapEntry; |
| 452 | MapEntry.Entry = &*I.first; |
| 453 | return &MapEntry; |
Duncan P. N. Exon Smith | f17e740 | 2014-11-14 01:17:09 +0000 | [diff] [blame] | 454 | } |
| 455 | |
| 456 | StringRef MDString::getString() const { |
Duncan P. N. Exon Smith | c1a664f | 2014-12-05 01:41:34 +0000 | [diff] [blame] | 457 | assert(Entry && "Expected to find string map entry"); |
| 458 | return Entry->first(); |
Owen Anderson | 0087fe6 | 2009-07-31 21:35:40 +0000 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | //===----------------------------------------------------------------------===// |
Chris Lattner | b0c23e8 | 2009-10-19 07:10:59 +0000 | [diff] [blame] | 462 | // MDNode implementation. |
Devang Patel | a4f43fb | 2009-07-28 21:49:47 +0000 | [diff] [blame] | 463 | // |
Chris Lattner | 74a6ad6 | 2009-12-28 07:41:54 +0000 | [diff] [blame] | 464 | |
James Y Knight | 8096d34 | 2015-06-17 01:21:20 +0000 | [diff] [blame] | 465 | // Assert that the MDNode types will not be unaligned by the objects |
| 466 | // prepended to them. |
| 467 | #define HANDLE_MDNODE_LEAF(CLASS) \ |
James Y Knight | f27e441 | 2015-06-17 13:53:12 +0000 | [diff] [blame] | 468 | static_assert( \ |
Benjamin Kramer | b250500 | 2016-10-20 15:02:18 +0000 | [diff] [blame] | 469 | alignof(uint64_t) >= alignof(CLASS), \ |
James Y Knight | f27e441 | 2015-06-17 13:53:12 +0000 | [diff] [blame] | 470 | "Alignment is insufficient after objects prepended to " #CLASS); |
James Y Knight | 8096d34 | 2015-06-17 01:21:20 +0000 | [diff] [blame] | 471 | #include "llvm/IR/Metadata.def" |
| 472 | |
Duncan P. N. Exon Smith | c23610b | 2014-11-18 01:56:14 +0000 | [diff] [blame] | 473 | void *MDNode::operator new(size_t Size, unsigned NumOps) { |
James Y Knight | 8096d34 | 2015-06-17 01:21:20 +0000 | [diff] [blame] | 474 | size_t OpSize = NumOps * sizeof(MDOperand); |
| 475 | // uint64_t is the most aligned type we need support (ensured by static_assert |
| 476 | // above) |
Benjamin Kramer | b250500 | 2016-10-20 15:02:18 +0000 | [diff] [blame] | 477 | OpSize = alignTo(OpSize, alignof(uint64_t)); |
James Y Knight | 8096d34 | 2015-06-17 01:21:20 +0000 | [diff] [blame] | 478 | void *Ptr = reinterpret_cast<char *>(::operator new(OpSize + Size)) + OpSize; |
Duncan P. N. Exon Smith | 22600ff | 2014-12-09 23:56:39 +0000 | [diff] [blame] | 479 | MDOperand *O = static_cast<MDOperand *>(Ptr); |
James Y Knight | 8096d34 | 2015-06-17 01:21:20 +0000 | [diff] [blame] | 480 | for (MDOperand *E = O - NumOps; O != E; --O) |
| 481 | (void)new (O - 1) MDOperand; |
| 482 | return Ptr; |
Duncan P. N. Exon Smith | c23610b | 2014-11-18 01:56:14 +0000 | [diff] [blame] | 483 | } |
| 484 | |
Naomi Musgrave | 21c1bc4 | 2015-08-31 21:06:08 +0000 | [diff] [blame] | 485 | void MDNode::operator delete(void *Mem) { |
Duncan P. N. Exon Smith | c23610b | 2014-11-18 01:56:14 +0000 | [diff] [blame] | 486 | MDNode *N = static_cast<MDNode *>(Mem); |
James Y Knight | 8096d34 | 2015-06-17 01:21:20 +0000 | [diff] [blame] | 487 | size_t OpSize = N->NumOperands * sizeof(MDOperand); |
Benjamin Kramer | b250500 | 2016-10-20 15:02:18 +0000 | [diff] [blame] | 488 | OpSize = alignTo(OpSize, alignof(uint64_t)); |
James Y Knight | 8096d34 | 2015-06-17 01:21:20 +0000 | [diff] [blame] | 489 | |
Duncan P. N. Exon Smith | 22600ff | 2014-12-09 23:56:39 +0000 | [diff] [blame] | 490 | MDOperand *O = static_cast<MDOperand *>(Mem); |
| 491 | for (MDOperand *E = O - N->NumOperands; O != E; --O) |
| 492 | (O - 1)->~MDOperand(); |
James Y Knight | 8096d34 | 2015-06-17 01:21:20 +0000 | [diff] [blame] | 493 | ::operator delete(reinterpret_cast<char *>(Mem) - OpSize); |
Duncan P. N. Exon Smith | c23610b | 2014-11-18 01:56:14 +0000 | [diff] [blame] | 494 | } |
| 495 | |
Duncan P. N. Exon Smith | f134045 | 2015-01-19 18:36:18 +0000 | [diff] [blame] | 496 | MDNode::MDNode(LLVMContext &Context, unsigned ID, StorageType Storage, |
Duncan P. N. Exon Smith | fed199a | 2015-01-20 00:01:43 +0000 | [diff] [blame] | 497 | ArrayRef<Metadata *> Ops1, ArrayRef<Metadata *> Ops2) |
| 498 | : Metadata(ID, Storage), NumOperands(Ops1.size() + Ops2.size()), |
| 499 | NumUnresolved(0), Context(Context) { |
| 500 | unsigned Op = 0; |
| 501 | for (Metadata *MD : Ops1) |
| 502 | setOperand(Op++, MD); |
| 503 | for (Metadata *MD : Ops2) |
| 504 | setOperand(Op++, MD); |
Duncan P. N. Exon Smith | 2711ca7 | 2015-01-19 19:02:06 +0000 | [diff] [blame] | 505 | |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 506 | if (!isUniqued()) |
Duncan P. N. Exon Smith | 5e5b850 | 2015-01-07 22:24:46 +0000 | [diff] [blame] | 507 | return; |
| 508 | |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 509 | // Count the unresolved operands. If there are any, RAUW support will be |
| 510 | // added lazily on first reference. |
| 511 | countUnresolvedOperands(); |
Devang Patel | a4f43fb | 2009-07-28 21:49:47 +0000 | [diff] [blame] | 512 | } |
| 513 | |
Duncan P. N. Exon Smith | 03e0583 | 2015-01-20 02:56:57 +0000 | [diff] [blame] | 514 | TempMDNode MDNode::clone() const { |
| 515 | switch (getMetadataID()) { |
| 516 | default: |
| 517 | llvm_unreachable("Invalid MDNode subclass"); |
| 518 | #define HANDLE_MDNODE_LEAF(CLASS) \ |
| 519 | case CLASS##Kind: \ |
| 520 | return cast<CLASS>(this)->cloneImpl(); |
| 521 | #include "llvm/IR/Metadata.def" |
| 522 | } |
| 523 | } |
| 524 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 525 | static bool isOperandUnresolved(Metadata *Op) { |
| 526 | if (auto *N = dyn_cast_or_null<MDNode>(Op)) |
| 527 | return !N->isResolved(); |
| 528 | return false; |
| 529 | } |
| 530 | |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 531 | void MDNode::countUnresolvedOperands() { |
Duncan P. N. Exon Smith | 909131b | 2015-01-19 23:18:34 +0000 | [diff] [blame] | 532 | assert(NumUnresolved == 0 && "Expected unresolved ops to be uncounted"); |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 533 | assert(isUniqued() && "Expected this to be uniqued"); |
Sanjoy Das | 39c226f | 2016-06-10 21:18:39 +0000 | [diff] [blame] | 534 | NumUnresolved = count_if(operands(), isOperandUnresolved); |
Duncan P. N. Exon Smith | c5a0e2e | 2015-01-19 22:18:29 +0000 | [diff] [blame] | 535 | } |
| 536 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 537 | void MDNode::makeUniqued() { |
Duncan P. N. Exon Smith | e335309 | 2015-01-19 22:24:52 +0000 | [diff] [blame] | 538 | assert(isTemporary() && "Expected this to be temporary"); |
| 539 | assert(!isResolved() && "Expected this to be unresolved"); |
| 540 | |
Duncan P. N. Exon Smith | cb33d6f | 2015-03-31 20:50:50 +0000 | [diff] [blame] | 541 | // Enable uniquing callbacks. |
| 542 | for (auto &Op : mutable_operands()) |
| 543 | Op.reset(Op.get(), this); |
| 544 | |
Duncan P. N. Exon Smith | e335309 | 2015-01-19 22:24:52 +0000 | [diff] [blame] | 545 | // Make this 'uniqued'. |
| 546 | Storage = Uniqued; |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 547 | countUnresolvedOperands(); |
| 548 | if (!NumUnresolved) { |
| 549 | dropReplaceableUses(); |
| 550 | assert(isResolved() && "Expected this to be resolved"); |
| 551 | } |
Duncan P. N. Exon Smith | e335309 | 2015-01-19 22:24:52 +0000 | [diff] [blame] | 552 | |
| 553 | assert(isUniqued() && "Expected this to be uniqued"); |
| 554 | } |
| 555 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 556 | void MDNode::makeDistinct() { |
Duncan P. N. Exon Smith | e335309 | 2015-01-19 22:24:52 +0000 | [diff] [blame] | 557 | assert(isTemporary() && "Expected this to be temporary"); |
| 558 | assert(!isResolved() && "Expected this to be unresolved"); |
| 559 | |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 560 | // Drop RAUW support and store as a distinct node. |
| 561 | dropReplaceableUses(); |
Duncan P. N. Exon Smith | e335309 | 2015-01-19 22:24:52 +0000 | [diff] [blame] | 562 | storeDistinctInContext(); |
| 563 | |
| 564 | assert(isDistinct() && "Expected this to be distinct"); |
| 565 | assert(isResolved() && "Expected this to be resolved"); |
| 566 | } |
| 567 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 568 | void MDNode::resolve() { |
Duncan P. N. Exon Smith | b8f7960 | 2015-01-19 19:26:24 +0000 | [diff] [blame] | 569 | assert(isUniqued() && "Expected this to be uniqued"); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 570 | assert(!isResolved() && "Expected this to be unresolved"); |
| 571 | |
Duncan P. N. Exon Smith | 909131b | 2015-01-19 23:18:34 +0000 | [diff] [blame] | 572 | NumUnresolved = 0; |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 573 | dropReplaceableUses(); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 574 | |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 575 | assert(isResolved() && "Expected this to be resolved"); |
| 576 | } |
| 577 | |
| 578 | void MDNode::dropReplaceableUses() { |
| 579 | assert(!NumUnresolved && "Unexpected unresolved operand"); |
| 580 | |
| 581 | // Drop any RAUW support. |
| 582 | if (Context.hasReplaceableUses()) |
| 583 | Context.takeReplaceableUses()->resolveAllUses(); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 584 | } |
| 585 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 586 | void MDNode::resolveAfterOperandChange(Metadata *Old, Metadata *New) { |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 587 | assert(isUniqued() && "Expected this to be uniqued"); |
Duncan P. N. Exon Smith | 909131b | 2015-01-19 23:18:34 +0000 | [diff] [blame] | 588 | assert(NumUnresolved != 0 && "Expected unresolved operands"); |
Duncan P. N. Exon Smith | 3a16d80 | 2015-01-12 19:14:15 +0000 | [diff] [blame] | 589 | |
Duncan P. N. Exon Smith | 0c87d77 | 2015-01-12 19:45:44 +0000 | [diff] [blame] | 590 | // Check if an operand was resolved. |
Duncan P. N. Exon Smith | 845755c4 | 2015-01-13 00:46:34 +0000 | [diff] [blame] | 591 | if (!isOperandUnresolved(Old)) { |
| 592 | if (isOperandUnresolved(New)) |
| 593 | // An operand was un-resolved! |
Duncan P. N. Exon Smith | 909131b | 2015-01-19 23:18:34 +0000 | [diff] [blame] | 594 | ++NumUnresolved; |
Duncan P. N. Exon Smith | 845755c4 | 2015-01-13 00:46:34 +0000 | [diff] [blame] | 595 | } else if (!isOperandUnresolved(New)) |
Duncan P. N. Exon Smith | 0c87d77 | 2015-01-12 19:45:44 +0000 | [diff] [blame] | 596 | decrementUnresolvedOperandCount(); |
Duncan P. N. Exon Smith | 3a16d80 | 2015-01-12 19:14:15 +0000 | [diff] [blame] | 597 | } |
| 598 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 599 | void MDNode::decrementUnresolvedOperandCount() { |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 600 | assert(!isResolved() && "Expected this to be unresolved"); |
| 601 | if (isTemporary()) |
| 602 | return; |
| 603 | |
| 604 | assert(isUniqued() && "Expected this to be uniqued"); |
| 605 | if (--NumUnresolved) |
| 606 | return; |
| 607 | |
| 608 | // Last unresolved operand has just been resolved. |
| 609 | dropReplaceableUses(); |
| 610 | assert(isResolved() && "Expected this to become resolved"); |
Duncan P. N. Exon Smith | 34c3d10 | 2015-01-12 19:43:15 +0000 | [diff] [blame] | 611 | } |
| 612 | |
Teresa Johnson | b703c77 | 2016-03-29 18:24:19 +0000 | [diff] [blame] | 613 | void MDNode::resolveCycles() { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 614 | if (isResolved()) |
| 615 | return; |
| 616 | |
| 617 | // Resolve this node immediately. |
| 618 | resolve(); |
| 619 | |
| 620 | // Resolve all operands. |
| 621 | for (const auto &Op : operands()) { |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 622 | auto *N = dyn_cast_or_null<MDNode>(Op); |
Duncan P. N. Exon Smith | 946fdcc | 2015-01-19 20:36:39 +0000 | [diff] [blame] | 623 | if (!N) |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 624 | continue; |
Duncan P. N. Exon Smith | 946fdcc | 2015-01-19 20:36:39 +0000 | [diff] [blame] | 625 | |
| 626 | assert(!N->isTemporary() && |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 627 | "Expected all forward declarations to be resolved"); |
Duncan P. N. Exon Smith | 946fdcc | 2015-01-19 20:36:39 +0000 | [diff] [blame] | 628 | if (!N->isResolved()) |
| 629 | N->resolveCycles(); |
Chris Lattner | 8cb6c34 | 2009-12-31 01:05:46 +0000 | [diff] [blame] | 630 | } |
Duncan P. N. Exon Smith | 50846f8 | 2014-11-18 00:37:17 +0000 | [diff] [blame] | 631 | } |
| 632 | |
Duncan P. N. Exon Smith | 4ee4a98 | 2015-02-10 19:13:46 +0000 | [diff] [blame] | 633 | static bool hasSelfReference(MDNode *N) { |
| 634 | for (Metadata *MD : N->operands()) |
| 635 | if (MD == N) |
| 636 | return true; |
| 637 | return false; |
| 638 | } |
| 639 | |
| 640 | MDNode *MDNode::replaceWithPermanentImpl() { |
Duncan P. N. Exon Smith | 55ca964 | 2015-08-03 17:26:41 +0000 | [diff] [blame] | 641 | switch (getMetadataID()) { |
| 642 | default: |
| 643 | // If this type isn't uniquable, replace with a distinct node. |
| 644 | return replaceWithDistinctImpl(); |
| 645 | |
| 646 | #define HANDLE_MDNODE_LEAF_UNIQUABLE(CLASS) \ |
| 647 | case CLASS##Kind: \ |
| 648 | break; |
| 649 | #include "llvm/IR/Metadata.def" |
| 650 | } |
| 651 | |
| 652 | // Even if this type is uniquable, self-references have to be distinct. |
Duncan P. N. Exon Smith | 4ee4a98 | 2015-02-10 19:13:46 +0000 | [diff] [blame] | 653 | if (hasSelfReference(this)) |
| 654 | return replaceWithDistinctImpl(); |
| 655 | return replaceWithUniquedImpl(); |
| 656 | } |
| 657 | |
Duncan P. N. Exon Smith | 8647529 | 2015-01-19 23:17:09 +0000 | [diff] [blame] | 658 | MDNode *MDNode::replaceWithUniquedImpl() { |
| 659 | // Try to uniquify in place. |
| 660 | MDNode *UniquedNode = uniquify(); |
Duncan P. N. Exon Smith | 4ee4a98 | 2015-02-10 19:13:46 +0000 | [diff] [blame] | 661 | |
Duncan P. N. Exon Smith | 8647529 | 2015-01-19 23:17:09 +0000 | [diff] [blame] | 662 | if (UniquedNode == this) { |
| 663 | makeUniqued(); |
| 664 | return this; |
| 665 | } |
| 666 | |
| 667 | // Collision, so RAUW instead. |
| 668 | replaceAllUsesWith(UniquedNode); |
| 669 | deleteAsSubclass(); |
| 670 | return UniquedNode; |
| 671 | } |
| 672 | |
| 673 | MDNode *MDNode::replaceWithDistinctImpl() { |
| 674 | makeDistinct(); |
| 675 | return this; |
| 676 | } |
| 677 | |
Duncan P. N. Exon Smith | 118632d | 2015-01-12 20:09:34 +0000 | [diff] [blame] | 678 | void MDTuple::recalculateHash() { |
Duncan P. N. Exon Smith | 93e983e | 2015-01-19 22:53:18 +0000 | [diff] [blame] | 679 | setHash(MDTupleInfo::KeyTy::calculateHash(this)); |
Duncan P. N. Exon Smith | 967629e | 2015-01-12 19:16:34 +0000 | [diff] [blame] | 680 | } |
| 681 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 682 | void MDNode::dropAllReferences() { |
| 683 | for (unsigned I = 0, E = NumOperands; I != E; ++I) |
| 684 | setOperand(I, nullptr); |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 685 | if (Context.hasReplaceableUses()) { |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 686 | Context.getReplaceableUses()->resolveAllUses(/* ResolveUsers */ false); |
| 687 | (void)Context.takeReplaceableUses(); |
| 688 | } |
Chris Lattner | 8cb6c34 | 2009-12-31 01:05:46 +0000 | [diff] [blame] | 689 | } |
| 690 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 691 | void MDNode::handleChangedOperand(void *Ref, Metadata *New) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 692 | unsigned Op = static_cast<MDOperand *>(Ref) - op_begin(); |
| 693 | assert(Op < getNumOperands() && "Expected valid operand"); |
| 694 | |
Duncan P. N. Exon Smith | 3d58056 | 2015-01-19 19:28:28 +0000 | [diff] [blame] | 695 | if (!isUniqued()) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 696 | // This node is not uniqued. Just set the operand and be done with it. |
| 697 | setOperand(Op, New); |
| 698 | return; |
Duncan Sands | c2928c6 | 2010-05-04 12:43:36 +0000 | [diff] [blame] | 699 | } |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 700 | |
Duncan P. N. Exon Smith | bf68e80 | 2015-01-12 20:56:33 +0000 | [diff] [blame] | 701 | // This node is uniqued. |
| 702 | eraseFromStore(); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 703 | |
| 704 | Metadata *Old = getOperand(Op); |
| 705 | setOperand(Op, New); |
| 706 | |
Duncan P. N. Exon Smith | 9cbc69d | 2016-08-03 18:19:43 +0000 | [diff] [blame] | 707 | // Drop uniquing for self-reference cycles and deleted constants. |
| 708 | if (New == this || (!New && Old && isa<ConstantAsMetadata>(Old))) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 709 | if (!isResolved()) |
| 710 | resolve(); |
Duncan P. N. Exon Smith | f08b8b4 | 2015-01-19 19:25:33 +0000 | [diff] [blame] | 711 | storeDistinctInContext(); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 712 | return; |
| 713 | } |
| 714 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 715 | // Re-unique the node. |
Duncan P. N. Exon Smith | bf68e80 | 2015-01-12 20:56:33 +0000 | [diff] [blame] | 716 | auto *Uniqued = uniquify(); |
| 717 | if (Uniqued == this) { |
Duncan P. N. Exon Smith | 3a16d80 | 2015-01-12 19:14:15 +0000 | [diff] [blame] | 718 | if (!isResolved()) |
| 719 | resolveAfterOperandChange(Old, New); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 720 | return; |
| 721 | } |
| 722 | |
| 723 | // Collision. |
| 724 | if (!isResolved()) { |
| 725 | // Still unresolved, so RAUW. |
Duncan P. N. Exon Smith | d9e6eb7 | 2015-01-12 19:36:35 +0000 | [diff] [blame] | 726 | // |
| 727 | // First, clear out all operands to prevent any recursion (similar to |
| 728 | // dropAllReferences(), but we still need the use-list). |
| 729 | for (unsigned O = 0, E = getNumOperands(); O != E; ++O) |
| 730 | setOperand(O, nullptr); |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 731 | if (Context.hasReplaceableUses()) |
| 732 | Context.getReplaceableUses()->replaceAllUsesWith(Uniqued); |
Duncan P. N. Exon Smith | bf68e80 | 2015-01-12 20:56:33 +0000 | [diff] [blame] | 733 | deleteAsSubclass(); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 734 | return; |
| 735 | } |
| 736 | |
Duncan P. N. Exon Smith | d9e6eb7 | 2015-01-12 19:36:35 +0000 | [diff] [blame] | 737 | // Store in non-uniqued form if RAUW isn't possible. |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 738 | storeDistinctInContext(); |
Victor Hernandez | e5f2af7 | 2010-01-20 04:45:57 +0000 | [diff] [blame] | 739 | } |
| 740 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 741 | void MDNode::deleteAsSubclass() { |
Duncan P. N. Exon Smith | bf68e80 | 2015-01-12 20:56:33 +0000 | [diff] [blame] | 742 | switch (getMetadataID()) { |
| 743 | default: |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 744 | llvm_unreachable("Invalid subclass of MDNode"); |
| 745 | #define HANDLE_MDNODE_LEAF(CLASS) \ |
Duncan P. N. Exon Smith | bf68e80 | 2015-01-12 20:56:33 +0000 | [diff] [blame] | 746 | case CLASS##Kind: \ |
| 747 | delete cast<CLASS>(this); \ |
| 748 | break; |
| 749 | #include "llvm/IR/Metadata.def" |
| 750 | } |
| 751 | } |
| 752 | |
Duncan P. N. Exon Smith | f9d1bc9 | 2015-01-19 22:52:07 +0000 | [diff] [blame] | 753 | template <class T, class InfoT> |
Duncan P. N. Exon Smith | f9d1bc9 | 2015-01-19 22:52:07 +0000 | [diff] [blame] | 754 | static T *uniquifyImpl(T *N, DenseSet<T *, InfoT> &Store) { |
| 755 | if (T *U = getUniqued(Store, N)) |
| 756 | return U; |
| 757 | |
| 758 | Store.insert(N); |
| 759 | return N; |
| 760 | } |
| 761 | |
Duncan P. N. Exon Smith | 0f52999 | 2015-01-20 00:57:33 +0000 | [diff] [blame] | 762 | template <class NodeTy> struct MDNode::HasCachedHash { |
Eugene Zelenko | de6cce2 | 2017-06-19 22:05:08 +0000 | [diff] [blame] | 763 | using Yes = char[1]; |
| 764 | using No = char[2]; |
Duncan P. N. Exon Smith | 0f52999 | 2015-01-20 00:57:33 +0000 | [diff] [blame] | 765 | template <class U, U Val> struct SFINAE {}; |
Duncan P. N. Exon Smith | f9d1bc9 | 2015-01-19 22:52:07 +0000 | [diff] [blame] | 766 | |
Duncan P. N. Exon Smith | 0f52999 | 2015-01-20 00:57:33 +0000 | [diff] [blame] | 767 | template <class U> |
| 768 | static Yes &check(SFINAE<void (U::*)(unsigned), &U::setHash> *); |
| 769 | template <class U> static No &check(...); |
| 770 | |
| 771 | static const bool value = sizeof(check<NodeTy>(nullptr)) == sizeof(Yes); |
| 772 | }; |
| 773 | |
| 774 | MDNode *MDNode::uniquify() { |
Duncan P. N. Exon Smith | 4ee4a98 | 2015-02-10 19:13:46 +0000 | [diff] [blame] | 775 | assert(!hasSelfReference(this) && "Cannot uniquify a self-referencing node"); |
| 776 | |
Duncan P. N. Exon Smith | f9d1bc9 | 2015-01-19 22:52:07 +0000 | [diff] [blame] | 777 | // Try to insert into uniquing store. |
Duncan P. N. Exon Smith | bf68e80 | 2015-01-12 20:56:33 +0000 | [diff] [blame] | 778 | switch (getMetadataID()) { |
| 779 | default: |
Duncan P. N. Exon Smith | 55ca964 | 2015-08-03 17:26:41 +0000 | [diff] [blame] | 780 | llvm_unreachable("Invalid or non-uniquable subclass of MDNode"); |
| 781 | #define HANDLE_MDNODE_LEAF_UNIQUABLE(CLASS) \ |
Duncan P. N. Exon Smith | 0f52999 | 2015-01-20 00:57:33 +0000 | [diff] [blame] | 782 | case CLASS##Kind: { \ |
| 783 | CLASS *SubclassThis = cast<CLASS>(this); \ |
| 784 | std::integral_constant<bool, HasCachedHash<CLASS>::value> \ |
| 785 | ShouldRecalculateHash; \ |
| 786 | dispatchRecalculateHash(SubclassThis, ShouldRecalculateHash); \ |
| 787 | return uniquifyImpl(SubclassThis, getContext().pImpl->CLASS##s); \ |
| 788 | } |
Duncan P. N. Exon Smith | bf68e80 | 2015-01-12 20:56:33 +0000 | [diff] [blame] | 789 | #include "llvm/IR/Metadata.def" |
| 790 | } |
| 791 | } |
| 792 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 793 | void MDNode::eraseFromStore() { |
Duncan P. N. Exon Smith | bf68e80 | 2015-01-12 20:56:33 +0000 | [diff] [blame] | 794 | switch (getMetadataID()) { |
| 795 | default: |
Duncan P. N. Exon Smith | 55ca964 | 2015-08-03 17:26:41 +0000 | [diff] [blame] | 796 | llvm_unreachable("Invalid or non-uniquable subclass of MDNode"); |
| 797 | #define HANDLE_MDNODE_LEAF_UNIQUABLE(CLASS) \ |
Duncan P. N. Exon Smith | bf68e80 | 2015-01-12 20:56:33 +0000 | [diff] [blame] | 798 | case CLASS##Kind: \ |
Duncan P. N. Exon Smith | 6cf10d2 | 2015-01-19 22:47:08 +0000 | [diff] [blame] | 799 | getContext().pImpl->CLASS##s.erase(cast<CLASS>(this)); \ |
Duncan P. N. Exon Smith | bf68e80 | 2015-01-12 20:56:33 +0000 | [diff] [blame] | 800 | break; |
| 801 | #include "llvm/IR/Metadata.def" |
| 802 | } |
| 803 | } |
| 804 | |
Duncan P. N. Exon Smith | ac3128d | 2015-01-12 20:13:56 +0000 | [diff] [blame] | 805 | MDTuple *MDTuple::getImpl(LLVMContext &Context, ArrayRef<Metadata *> MDs, |
Duncan P. N. Exon Smith | 1b0064d | 2015-01-19 20:14:15 +0000 | [diff] [blame] | 806 | StorageType Storage, bool ShouldCreate) { |
| 807 | unsigned Hash = 0; |
| 808 | if (Storage == Uniqued) { |
| 809 | MDTupleInfo::KeyTy Key(MDs); |
Duncan P. N. Exon Smith | b57f9e9 | 2015-01-19 20:16:50 +0000 | [diff] [blame] | 810 | if (auto *N = getUniqued(Context.pImpl->MDTuples, Key)) |
| 811 | return N; |
Duncan P. N. Exon Smith | 1b0064d | 2015-01-19 20:14:15 +0000 | [diff] [blame] | 812 | if (!ShouldCreate) |
| 813 | return nullptr; |
Duncan P. N. Exon Smith | 93e983e | 2015-01-19 22:53:18 +0000 | [diff] [blame] | 814 | Hash = Key.getHash(); |
Duncan P. N. Exon Smith | 1b0064d | 2015-01-19 20:14:15 +0000 | [diff] [blame] | 815 | } else { |
| 816 | assert(ShouldCreate && "Expected non-uniqued nodes to always be created"); |
| 817 | } |
Duncan Sands | 26a80f3 | 2012-03-31 08:20:11 +0000 | [diff] [blame] | 818 | |
Duncan P. N. Exon Smith | 5b8c440 | 2015-01-19 20:18:13 +0000 | [diff] [blame] | 819 | return storeImpl(new (MDs.size()) MDTuple(Context, Storage, Hash, MDs), |
| 820 | Storage, Context.pImpl->MDTuples); |
Duncan P. N. Exon Smith | 5e5b850 | 2015-01-07 22:24:46 +0000 | [diff] [blame] | 821 | } |
| 822 | |
Duncan P. N. Exon Smith | 946fdcc | 2015-01-19 20:36:39 +0000 | [diff] [blame] | 823 | void MDNode::deleteTemporary(MDNode *N) { |
| 824 | assert(N->isTemporary() && "Expected temporary node"); |
Duncan P. N. Exon Smith | 8d53697 | 2015-01-22 21:36:45 +0000 | [diff] [blame] | 825 | N->replaceAllUsesWith(nullptr); |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 826 | N->deleteAsSubclass(); |
Dan Gohman | 16a5d98 | 2010-08-20 22:02:26 +0000 | [diff] [blame] | 827 | } |
| 828 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 829 | void MDNode::storeDistinctInContext() { |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 830 | assert(!Context.hasReplaceableUses() && "Unexpected replaceable uses"); |
| 831 | assert(!NumUnresolved && "Unexpected unresolved nodes"); |
Duncan P. N. Exon Smith | f134045 | 2015-01-19 18:36:18 +0000 | [diff] [blame] | 832 | Storage = Distinct; |
Duncan P. N. Exon Smith | fef609f | 2016-04-03 21:23:52 +0000 | [diff] [blame] | 833 | assert(isResolved() && "Expected this to be resolved"); |
Duncan P. N. Exon Smith | 0f52999 | 2015-01-20 00:57:33 +0000 | [diff] [blame] | 834 | |
| 835 | // Reset the hash. |
| 836 | switch (getMetadataID()) { |
| 837 | default: |
| 838 | llvm_unreachable("Invalid subclass of MDNode"); |
| 839 | #define HANDLE_MDNODE_LEAF(CLASS) \ |
| 840 | case CLASS##Kind: { \ |
| 841 | std::integral_constant<bool, HasCachedHash<CLASS>::value> ShouldResetHash; \ |
| 842 | dispatchResetHash(cast<CLASS>(this), ShouldResetHash); \ |
| 843 | break; \ |
| 844 | } |
| 845 | #include "llvm/IR/Metadata.def" |
| 846 | } |
| 847 | |
Duncan P. N. Exon Smith | 3eef9d1 | 2016-04-19 23:59:13 +0000 | [diff] [blame] | 848 | getContext().pImpl->DistinctMDNodes.push_back(this); |
Devang Patel | 82ab3f8 | 2010-02-18 20:53:16 +0000 | [diff] [blame] | 849 | } |
Chris Lattner | f543eff | 2009-12-28 09:12:35 +0000 | [diff] [blame] | 850 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 851 | void MDNode::replaceOperandWith(unsigned I, Metadata *New) { |
| 852 | if (getOperand(I) == New) |
Devang Patel | f718832 | 2009-09-03 01:39:20 +0000 | [diff] [blame] | 853 | return; |
Devang Patel | f718832 | 2009-09-03 01:39:20 +0000 | [diff] [blame] | 854 | |
Duncan P. N. Exon Smith | de03a8b | 2015-01-19 18:45:35 +0000 | [diff] [blame] | 855 | if (!isUniqued()) { |
Duncan P. N. Exon Smith | daa335a | 2015-01-12 18:01:45 +0000 | [diff] [blame] | 856 | setOperand(I, New); |
Duncan P. N. Exon Smith | f39c3b8 | 2014-11-17 23:28:21 +0000 | [diff] [blame] | 857 | return; |
| 858 | } |
Mikhail Glushenkov | ed3bd13 | 2010-01-10 18:48:49 +0000 | [diff] [blame] | 859 | |
Duncan P. N. Exon Smith | 2bc00f4 | 2015-01-19 23:13:14 +0000 | [diff] [blame] | 860 | handleChangedOperand(mutable_begin() + I, New); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 861 | } |
Chris Lattner | c6d17e2 | 2009-12-28 09:24:53 +0000 | [diff] [blame] | 862 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 863 | void MDNode::setOperand(unsigned I, Metadata *New) { |
| 864 | assert(I < NumOperands); |
Duncan P. N. Exon Smith | efdf285 | 2015-01-19 19:29:25 +0000 | [diff] [blame] | 865 | mutable_begin()[I].reset(New, isUniqued() ? this : nullptr); |
Devang Patel | f718832 | 2009-09-03 01:39:20 +0000 | [diff] [blame] | 866 | } |
| 867 | |
Sanjay Patel | 9da9c76 | 2016-03-12 20:44:58 +0000 | [diff] [blame] | 868 | /// Get a node or a self-reference that looks like it. |
Duncan P. N. Exon Smith | 9c51b50 | 2014-12-07 20:32:11 +0000 | [diff] [blame] | 869 | /// |
| 870 | /// Special handling for finding self-references, for use by \a |
| 871 | /// MDNode::concatenate() and \a MDNode::intersect() to maintain behaviour from |
| 872 | /// when self-referencing nodes were still uniqued. If the first operand has |
| 873 | /// the same operands as \c Ops, return the first operand instead. |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 874 | static MDNode *getOrSelfReference(LLVMContext &Context, |
| 875 | ArrayRef<Metadata *> Ops) { |
Duncan P. N. Exon Smith | 9c51b50 | 2014-12-07 20:32:11 +0000 | [diff] [blame] | 876 | if (!Ops.empty()) |
| 877 | if (MDNode *N = dyn_cast_or_null<MDNode>(Ops[0])) |
| 878 | if (N->getNumOperands() == Ops.size() && N == N->getOperand(0)) { |
| 879 | for (unsigned I = 1, E = Ops.size(); I != E; ++I) |
| 880 | if (Ops[I] != N->getOperand(I)) |
| 881 | return MDNode::get(Context, Ops); |
| 882 | return N; |
| 883 | } |
| 884 | |
| 885 | return MDNode::get(Context, Ops); |
| 886 | } |
| 887 | |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 888 | MDNode *MDNode::concatenate(MDNode *A, MDNode *B) { |
| 889 | if (!A) |
| 890 | return B; |
| 891 | if (!B) |
| 892 | return A; |
| 893 | |
David Majnemer | fa0f1e6 | 2016-08-16 18:48:34 +0000 | [diff] [blame] | 894 | SmallSetVector<Metadata *, 4> MDs(A->op_begin(), A->op_end()); |
| 895 | MDs.insert(B->op_begin(), B->op_end()); |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 896 | |
Duncan P. N. Exon Smith | 9c51b50 | 2014-12-07 20:32:11 +0000 | [diff] [blame] | 897 | // FIXME: This preserves long-standing behaviour, but is it really the right |
| 898 | // behaviour? Or was that an unintended side-effect of node uniquing? |
David Majnemer | fa0f1e6 | 2016-08-16 18:48:34 +0000 | [diff] [blame] | 899 | return getOrSelfReference(A->getContext(), MDs.getArrayRef()); |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | MDNode *MDNode::intersect(MDNode *A, MDNode *B) { |
| 903 | if (!A || !B) |
| 904 | return nullptr; |
| 905 | |
David Majnemer | 00940fb | 2016-08-16 18:48:37 +0000 | [diff] [blame] | 906 | SmallSetVector<Metadata *, 4> MDs(A->op_begin(), A->op_end()); |
| 907 | SmallPtrSet<Metadata *, 4> BSet(B->op_begin(), B->op_end()); |
| 908 | MDs.remove_if([&](Metadata *MD) { return !is_contained(BSet, MD); }); |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 909 | |
Duncan P. N. Exon Smith | ac8ee28 | 2014-12-07 19:52:06 +0000 | [diff] [blame] | 910 | // FIXME: This preserves long-standing behaviour, but is it really the right |
| 911 | // behaviour? Or was that an unintended side-effect of node uniquing? |
David Majnemer | 00940fb | 2016-08-16 18:48:37 +0000 | [diff] [blame] | 912 | return getOrSelfReference(A->getContext(), MDs.getArrayRef()); |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 913 | } |
| 914 | |
Bjorn Steinbrink | 5ec7522 | 2015-02-08 17:07:14 +0000 | [diff] [blame] | 915 | MDNode *MDNode::getMostGenericAliasScope(MDNode *A, MDNode *B) { |
| 916 | if (!A || !B) |
| 917 | return nullptr; |
| 918 | |
David Majnemer | fa0f1e6 | 2016-08-16 18:48:34 +0000 | [diff] [blame] | 919 | return concatenate(A, B); |
Bjorn Steinbrink | 5ec7522 | 2015-02-08 17:07:14 +0000 | [diff] [blame] | 920 | } |
| 921 | |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 922 | MDNode *MDNode::getMostGenericFPMath(MDNode *A, MDNode *B) { |
| 923 | if (!A || !B) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 924 | return nullptr; |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 925 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 926 | APFloat AVal = mdconst::extract<ConstantFP>(A->getOperand(0))->getValueAPF(); |
| 927 | APFloat BVal = mdconst::extract<ConstantFP>(B->getOperand(0))->getValueAPF(); |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 928 | if (AVal.compare(BVal) == APFloat::cmpLessThan) |
| 929 | return A; |
| 930 | return B; |
| 931 | } |
| 932 | |
| 933 | static bool isContiguous(const ConstantRange &A, const ConstantRange &B) { |
| 934 | return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); |
| 935 | } |
| 936 | |
| 937 | static bool canBeMerged(const ConstantRange &A, const ConstantRange &B) { |
| 938 | return !A.intersectWith(B).isEmptySet() || isContiguous(A, B); |
| 939 | } |
| 940 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 941 | static bool tryMergeRange(SmallVectorImpl<ConstantInt *> &EndPoints, |
| 942 | ConstantInt *Low, ConstantInt *High) { |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 943 | ConstantRange NewRange(Low->getValue(), High->getValue()); |
| 944 | unsigned Size = EndPoints.size(); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 945 | APInt LB = EndPoints[Size - 2]->getValue(); |
| 946 | APInt LE = EndPoints[Size - 1]->getValue(); |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 947 | ConstantRange LastRange(LB, LE); |
| 948 | if (canBeMerged(NewRange, LastRange)) { |
| 949 | ConstantRange Union = LastRange.unionWith(NewRange); |
| 950 | Type *Ty = High->getType(); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 951 | EndPoints[Size - 2] = |
| 952 | cast<ConstantInt>(ConstantInt::get(Ty, Union.getLower())); |
| 953 | EndPoints[Size - 1] = |
| 954 | cast<ConstantInt>(ConstantInt::get(Ty, Union.getUpper())); |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 955 | return true; |
| 956 | } |
| 957 | return false; |
| 958 | } |
| 959 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 960 | static void addRange(SmallVectorImpl<ConstantInt *> &EndPoints, |
| 961 | ConstantInt *Low, ConstantInt *High) { |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 962 | if (!EndPoints.empty()) |
| 963 | if (tryMergeRange(EndPoints, Low, High)) |
| 964 | return; |
| 965 | |
| 966 | EndPoints.push_back(Low); |
| 967 | EndPoints.push_back(High); |
| 968 | } |
| 969 | |
| 970 | MDNode *MDNode::getMostGenericRange(MDNode *A, MDNode *B) { |
| 971 | // Given two ranges, we want to compute the union of the ranges. This |
Craig Topper | abd6b1d | 2017-04-27 05:48:29 +0000 | [diff] [blame] | 972 | // is slightly complicated by having to combine the intervals and merge |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 973 | // the ones that overlap. |
| 974 | |
| 975 | if (!A || !B) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 976 | return nullptr; |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 977 | |
| 978 | if (A == B) |
| 979 | return A; |
| 980 | |
Craig Topper | abd6b1d | 2017-04-27 05:48:29 +0000 | [diff] [blame] | 981 | // First, walk both lists in order of the lower boundary of each interval. |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 982 | // At each step, try to merge the new interval to the last one we adedd. |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 983 | SmallVector<ConstantInt *, 4> EndPoints; |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 984 | int AI = 0; |
| 985 | int BI = 0; |
| 986 | int AN = A->getNumOperands() / 2; |
| 987 | int BN = B->getNumOperands() / 2; |
| 988 | while (AI < AN && BI < BN) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 989 | ConstantInt *ALow = mdconst::extract<ConstantInt>(A->getOperand(2 * AI)); |
| 990 | ConstantInt *BLow = mdconst::extract<ConstantInt>(B->getOperand(2 * BI)); |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 991 | |
| 992 | if (ALow->getValue().slt(BLow->getValue())) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 993 | addRange(EndPoints, ALow, |
| 994 | mdconst::extract<ConstantInt>(A->getOperand(2 * AI + 1))); |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 995 | ++AI; |
| 996 | } else { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 997 | addRange(EndPoints, BLow, |
| 998 | mdconst::extract<ConstantInt>(B->getOperand(2 * BI + 1))); |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 999 | ++BI; |
| 1000 | } |
| 1001 | } |
| 1002 | while (AI < AN) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1003 | addRange(EndPoints, mdconst::extract<ConstantInt>(A->getOperand(2 * AI)), |
| 1004 | mdconst::extract<ConstantInt>(A->getOperand(2 * AI + 1))); |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 1005 | ++AI; |
| 1006 | } |
| 1007 | while (BI < BN) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1008 | addRange(EndPoints, mdconst::extract<ConstantInt>(B->getOperand(2 * BI)), |
| 1009 | mdconst::extract<ConstantInt>(B->getOperand(2 * BI + 1))); |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 1010 | ++BI; |
| 1011 | } |
| 1012 | |
| 1013 | // If we have more than 2 ranges (4 endpoints) we have to try to merge |
| 1014 | // the last and first ones. |
| 1015 | unsigned Size = EndPoints.size(); |
| 1016 | if (Size > 4) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1017 | ConstantInt *FB = EndPoints[0]; |
| 1018 | ConstantInt *FE = EndPoints[1]; |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 1019 | if (tryMergeRange(EndPoints, FB, FE)) { |
| 1020 | for (unsigned i = 0; i < Size - 2; ++i) { |
| 1021 | EndPoints[i] = EndPoints[i + 2]; |
| 1022 | } |
| 1023 | EndPoints.resize(Size - 2); |
| 1024 | } |
| 1025 | } |
| 1026 | |
| 1027 | // If in the end we have a single range, it is possible that it is now the |
| 1028 | // full range. Just drop the metadata in that case. |
| 1029 | if (EndPoints.size() == 2) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1030 | ConstantRange Range(EndPoints[0]->getValue(), EndPoints[1]->getValue()); |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 1031 | if (Range.isFullSet()) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 1032 | return nullptr; |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1035 | SmallVector<Metadata *, 4> MDs; |
| 1036 | MDs.reserve(EndPoints.size()); |
| 1037 | for (auto *I : EndPoints) |
| 1038 | MDs.push_back(ConstantAsMetadata::get(I)); |
| 1039 | return MDNode::get(A->getContext(), MDs); |
Hal Finkel | 16ddd4b | 2012-06-16 20:33:37 +0000 | [diff] [blame] | 1040 | } |
| 1041 | |
Artur Pilipenko | 5c5011d | 2015-11-02 17:53:51 +0000 | [diff] [blame] | 1042 | MDNode *MDNode::getMostGenericAlignmentOrDereferenceable(MDNode *A, MDNode *B) { |
| 1043 | if (!A || !B) |
| 1044 | return nullptr; |
| 1045 | |
| 1046 | ConstantInt *AVal = mdconst::extract<ConstantInt>(A->getOperand(0)); |
| 1047 | ConstantInt *BVal = mdconst::extract<ConstantInt>(B->getOperand(0)); |
| 1048 | if (AVal->getZExtValue() < BVal->getZExtValue()) |
| 1049 | return A; |
| 1050 | return B; |
| 1051 | } |
| 1052 | |
Devang Patel | 05a26fb | 2009-07-29 00:33:07 +0000 | [diff] [blame] | 1053 | //===----------------------------------------------------------------------===// |
Chris Lattner | b0c23e8 | 2009-10-19 07:10:59 +0000 | [diff] [blame] | 1054 | // NamedMDNode implementation. |
Devang Patel | 05a26fb | 2009-07-29 00:33:07 +0000 | [diff] [blame] | 1055 | // |
Devang Patel | 943ddf6 | 2010-01-12 18:34:06 +0000 | [diff] [blame] | 1056 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1057 | static SmallVector<TrackingMDRef, 4> &getNMDOps(void *Operands) { |
| 1058 | return *(SmallVector<TrackingMDRef, 4> *)Operands; |
Chris Lattner | 1bc810b | 2009-12-28 08:07:14 +0000 | [diff] [blame] | 1059 | } |
| 1060 | |
Dan Gohman | 2637cc1 | 2010-07-21 23:38:33 +0000 | [diff] [blame] | 1061 | NamedMDNode::NamedMDNode(const Twine &N) |
Eugene Zelenko | deaf695 | 2017-02-17 00:00:09 +0000 | [diff] [blame] | 1062 | : Name(N.str()), Operands(new SmallVector<TrackingMDRef, 4>()) {} |
Devang Patel | 5c310be | 2009-08-11 18:01:24 +0000 | [diff] [blame] | 1063 | |
Chris Lattner | 1bc810b | 2009-12-28 08:07:14 +0000 | [diff] [blame] | 1064 | NamedMDNode::~NamedMDNode() { |
| 1065 | dropAllReferences(); |
| 1066 | delete &getNMDOps(Operands); |
| 1067 | } |
| 1068 | |
Chris Lattner | 9b49302 | 2009-12-31 01:22:29 +0000 | [diff] [blame] | 1069 | unsigned NamedMDNode::getNumOperands() const { |
Chris Lattner | 1bc810b | 2009-12-28 08:07:14 +0000 | [diff] [blame] | 1070 | return (unsigned)getNMDOps(Operands).size(); |
| 1071 | } |
| 1072 | |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 1073 | MDNode *NamedMDNode::getOperand(unsigned i) const { |
Chris Lattner | 9b49302 | 2009-12-31 01:22:29 +0000 | [diff] [blame] | 1074 | assert(i < getNumOperands() && "Invalid Operand number!"); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1075 | auto *N = getNMDOps(Operands)[i].get(); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1076 | return cast_or_null<MDNode>(N); |
Chris Lattner | 1bc810b | 2009-12-28 08:07:14 +0000 | [diff] [blame] | 1077 | } |
| 1078 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1079 | void NamedMDNode::addOperand(MDNode *M) { getNMDOps(Operands).emplace_back(M); } |
Chris Lattner | 1bc810b | 2009-12-28 08:07:14 +0000 | [diff] [blame] | 1080 | |
Duncan P. N. Exon Smith | df55d8b | 2015-01-07 21:32:27 +0000 | [diff] [blame] | 1081 | void NamedMDNode::setOperand(unsigned I, MDNode *New) { |
| 1082 | assert(I < getNumOperands() && "Invalid operand number"); |
| 1083 | getNMDOps(Operands)[I].reset(New); |
| 1084 | } |
| 1085 | |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 1086 | void NamedMDNode::eraseFromParent() { getParent()->eraseNamedMetadata(this); } |
Devang Patel | 79238d7 | 2009-08-03 06:19:01 +0000 | [diff] [blame] | 1087 | |
Michael Ilseman | e542804 | 2016-10-25 18:44:13 +0000 | [diff] [blame] | 1088 | void NamedMDNode::clearOperands() { getNMDOps(Operands).clear(); } |
Devang Patel | 79238d7 | 2009-08-03 06:19:01 +0000 | [diff] [blame] | 1089 | |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 1090 | StringRef NamedMDNode::getName() const { return StringRef(Name); } |
Devang Patel | d5497a4b | 2009-09-16 18:09:00 +0000 | [diff] [blame] | 1091 | |
| 1092 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f2aa2b | 2009-12-28 23:41:32 +0000 | [diff] [blame] | 1093 | // Instruction Metadata method implementations. |
| 1094 | // |
Duncan P. N. Exon Smith | cbc28dc | 2015-04-24 20:36:25 +0000 | [diff] [blame] | 1095 | void MDAttachmentMap::set(unsigned ID, MDNode &MD) { |
| 1096 | for (auto &I : Attachments) |
| 1097 | if (I.first == ID) { |
| 1098 | I.second.reset(&MD); |
| 1099 | return; |
| 1100 | } |
| 1101 | Attachments.emplace_back(std::piecewise_construct, std::make_tuple(ID), |
| 1102 | std::make_tuple(&MD)); |
| 1103 | } |
| 1104 | |
| 1105 | void MDAttachmentMap::erase(unsigned ID) { |
| 1106 | if (empty()) |
| 1107 | return; |
| 1108 | |
| 1109 | // Common case is one/last value. |
| 1110 | if (Attachments.back().first == ID) { |
| 1111 | Attachments.pop_back(); |
| 1112 | return; |
| 1113 | } |
| 1114 | |
| 1115 | for (auto I = Attachments.begin(), E = std::prev(Attachments.end()); I != E; |
| 1116 | ++I) |
| 1117 | if (I->first == ID) { |
| 1118 | *I = std::move(Attachments.back()); |
| 1119 | Attachments.pop_back(); |
| 1120 | return; |
| 1121 | } |
| 1122 | } |
| 1123 | |
| 1124 | MDNode *MDAttachmentMap::lookup(unsigned ID) const { |
| 1125 | for (const auto &I : Attachments) |
| 1126 | if (I.first == ID) |
| 1127 | return I.second; |
| 1128 | return nullptr; |
| 1129 | } |
| 1130 | |
| 1131 | void MDAttachmentMap::getAll( |
| 1132 | SmallVectorImpl<std::pair<unsigned, MDNode *>> &Result) const { |
| 1133 | Result.append(Attachments.begin(), Attachments.end()); |
| 1134 | |
| 1135 | // Sort the resulting array so it is stable. |
| 1136 | if (Result.size() > 1) |
| 1137 | array_pod_sort(Result.begin(), Result.end()); |
| 1138 | } |
Chris Lattner | 2f2aa2b | 2009-12-28 23:41:32 +0000 | [diff] [blame] | 1139 | |
Peter Collingbourne | 382d81c | 2016-06-01 01:17:57 +0000 | [diff] [blame] | 1140 | void MDGlobalAttachmentMap::insert(unsigned ID, MDNode &MD) { |
| 1141 | Attachments.push_back({ID, TrackingMDNodeRef(&MD)}); |
| 1142 | } |
| 1143 | |
| 1144 | void MDGlobalAttachmentMap::get(unsigned ID, |
| 1145 | SmallVectorImpl<MDNode *> &Result) { |
| 1146 | for (auto A : Attachments) |
| 1147 | if (A.MDKind == ID) |
| 1148 | Result.push_back(A.Node); |
| 1149 | } |
| 1150 | |
| 1151 | void MDGlobalAttachmentMap::erase(unsigned ID) { |
| 1152 | auto Follower = Attachments.begin(); |
| 1153 | for (auto Leader = Attachments.begin(), E = Attachments.end(); Leader != E; |
| 1154 | ++Leader) { |
| 1155 | if (Leader->MDKind != ID) { |
| 1156 | if (Follower != Leader) |
| 1157 | *Follower = std::move(*Leader); |
| 1158 | ++Follower; |
| 1159 | } |
| 1160 | } |
| 1161 | Attachments.resize(Follower - Attachments.begin()); |
| 1162 | } |
| 1163 | |
| 1164 | void MDGlobalAttachmentMap::getAll( |
| 1165 | SmallVectorImpl<std::pair<unsigned, MDNode *>> &Result) const { |
| 1166 | for (auto &A : Attachments) |
| 1167 | Result.emplace_back(A.MDKind, A.Node); |
| 1168 | |
| 1169 | // Sort the resulting array so it is stable with respect to metadata IDs. We |
| 1170 | // need to preserve the original insertion order though. |
| 1171 | std::stable_sort( |
| 1172 | Result.begin(), Result.end(), |
| 1173 | [](const std::pair<unsigned, MDNode *> &A, |
| 1174 | const std::pair<unsigned, MDNode *> &B) { return A.first < B.first; }); |
| 1175 | } |
| 1176 | |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 1177 | void Instruction::setMetadata(StringRef Kind, MDNode *Node) { |
| 1178 | if (!Node && !hasMetadata()) |
| 1179 | return; |
| 1180 | setMetadata(getContext().getMDKindID(Kind), Node); |
Chris Lattner | 2f2aa2b | 2009-12-28 23:41:32 +0000 | [diff] [blame] | 1181 | } |
| 1182 | |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 1183 | MDNode *Instruction::getMetadataImpl(StringRef Kind) const { |
Chris Lattner | a056697 | 2009-12-29 09:01:33 +0000 | [diff] [blame] | 1184 | return getMetadataImpl(getContext().getMDKindID(Kind)); |
Chris Lattner | 2f2aa2b | 2009-12-28 23:41:32 +0000 | [diff] [blame] | 1185 | } |
| 1186 | |
Adrian Prantl | cbdfdb7 | 2015-08-20 22:00:30 +0000 | [diff] [blame] | 1187 | void Instruction::dropUnknownNonDebugMetadata(ArrayRef<unsigned> KnownIDs) { |
Rafael Espindola | ab73c49 | 2014-01-28 16:56:46 +0000 | [diff] [blame] | 1188 | if (!hasMetadataHashEntry()) |
| 1189 | return; // Nothing to remove! |
| 1190 | |
Duncan P. N. Exon Smith | 14a384b | 2015-04-24 20:19:13 +0000 | [diff] [blame] | 1191 | auto &InstructionMetadata = getContext().pImpl->InstructionMetadata; |
Rafael Espindola | ab73c49 | 2014-01-28 16:56:46 +0000 | [diff] [blame] | 1192 | |
Aditya Kumar | 0a48b37 | 2016-09-26 21:01:13 +0000 | [diff] [blame] | 1193 | SmallSet<unsigned, 4> KnownSet; |
| 1194 | KnownSet.insert(KnownIDs.begin(), KnownIDs.end()); |
Rafael Espindola | ab73c49 | 2014-01-28 16:56:46 +0000 | [diff] [blame] | 1195 | if (KnownSet.empty()) { |
| 1196 | // Just drop our entry at the store. |
Duncan P. N. Exon Smith | 391fc56 | 2015-04-24 20:16:42 +0000 | [diff] [blame] | 1197 | InstructionMetadata.erase(this); |
Rafael Espindola | ab73c49 | 2014-01-28 16:56:46 +0000 | [diff] [blame] | 1198 | setHasMetadataHashEntry(false); |
| 1199 | return; |
| 1200 | } |
| 1201 | |
Duncan P. N. Exon Smith | 14a384b | 2015-04-24 20:19:13 +0000 | [diff] [blame] | 1202 | auto &Info = InstructionMetadata[this]; |
Duncan P. N. Exon Smith | cbc28dc | 2015-04-24 20:36:25 +0000 | [diff] [blame] | 1203 | Info.remove_if([&KnownSet](const std::pair<unsigned, TrackingMDNodeRef> &I) { |
| 1204 | return !KnownSet.count(I.first); |
| 1205 | }); |
Rafael Espindola | ab73c49 | 2014-01-28 16:56:46 +0000 | [diff] [blame] | 1206 | |
Duncan P. N. Exon Smith | 75ef0c0 | 2015-04-24 20:23:44 +0000 | [diff] [blame] | 1207 | if (Info.empty()) { |
Rafael Espindola | ab73c49 | 2014-01-28 16:56:46 +0000 | [diff] [blame] | 1208 | // Drop our entry at the store. |
Duncan P. N. Exon Smith | 391fc56 | 2015-04-24 20:16:42 +0000 | [diff] [blame] | 1209 | InstructionMetadata.erase(this); |
Rafael Espindola | ab73c49 | 2014-01-28 16:56:46 +0000 | [diff] [blame] | 1210 | setHasMetadataHashEntry(false); |
| 1211 | } |
| 1212 | } |
| 1213 | |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 1214 | void Instruction::setMetadata(unsigned KindID, MDNode *Node) { |
| 1215 | if (!Node && !hasMetadata()) |
| 1216 | return; |
Mikhail Glushenkov | ed3bd13 | 2010-01-10 18:48:49 +0000 | [diff] [blame] | 1217 | |
Chris Lattner | c263b42 | 2010-03-30 23:03:27 +0000 | [diff] [blame] | 1218 | // Handle 'dbg' as a special case since it is not stored in the hash table. |
| 1219 | if (KindID == LLVMContext::MD_dbg) { |
Duncan P. N. Exon Smith | ab659fb3 | 2015-03-30 19:40:05 +0000 | [diff] [blame] | 1220 | DbgLoc = DebugLoc(Node); |
Chris Lattner | c263b42 | 2010-03-30 23:03:27 +0000 | [diff] [blame] | 1221 | return; |
| 1222 | } |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 1223 | |
Chris Lattner | a056697 | 2009-12-29 09:01:33 +0000 | [diff] [blame] | 1224 | // Handle the case when we're adding/updating metadata on an instruction. |
| 1225 | if (Node) { |
Duncan P. N. Exon Smith | 14a384b | 2015-04-24 20:19:13 +0000 | [diff] [blame] | 1226 | auto &Info = getContext().pImpl->InstructionMetadata[this]; |
Chris Lattner | c263b42 | 2010-03-30 23:03:27 +0000 | [diff] [blame] | 1227 | assert(!Info.empty() == hasMetadataHashEntry() && |
| 1228 | "HasMetadata bit is wonked"); |
Duncan P. N. Exon Smith | cbc28dc | 2015-04-24 20:36:25 +0000 | [diff] [blame] | 1229 | if (Info.empty()) |
Chris Lattner | c263b42 | 2010-03-30 23:03:27 +0000 | [diff] [blame] | 1230 | setHasMetadataHashEntry(true); |
Duncan P. N. Exon Smith | cbc28dc | 2015-04-24 20:36:25 +0000 | [diff] [blame] | 1231 | Info.set(KindID, *Node); |
Chris Lattner | a056697 | 2009-12-29 09:01:33 +0000 | [diff] [blame] | 1232 | return; |
| 1233 | } |
Mikhail Glushenkov | ed3bd13 | 2010-01-10 18:48:49 +0000 | [diff] [blame] | 1234 | |
Chris Lattner | a056697 | 2009-12-29 09:01:33 +0000 | [diff] [blame] | 1235 | // Otherwise, we're removing metadata from an instruction. |
Nick Lewycky | 4c13138 | 2011-12-27 01:17:40 +0000 | [diff] [blame] | 1236 | assert((hasMetadataHashEntry() == |
Duncan P. N. Exon Smith | 391fc56 | 2015-04-24 20:16:42 +0000 | [diff] [blame] | 1237 | (getContext().pImpl->InstructionMetadata.count(this) > 0)) && |
Chris Lattner | a056697 | 2009-12-29 09:01:33 +0000 | [diff] [blame] | 1238 | "HasMetadata bit out of date!"); |
Nick Lewycky | 4c13138 | 2011-12-27 01:17:40 +0000 | [diff] [blame] | 1239 | if (!hasMetadataHashEntry()) |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 1240 | return; // Nothing to remove! |
Duncan P. N. Exon Smith | 14a384b | 2015-04-24 20:19:13 +0000 | [diff] [blame] | 1241 | auto &Info = getContext().pImpl->InstructionMetadata[this]; |
Mikhail Glushenkov | ed3bd13 | 2010-01-10 18:48:49 +0000 | [diff] [blame] | 1242 | |
Chris Lattner | c263b42 | 2010-03-30 23:03:27 +0000 | [diff] [blame] | 1243 | // Handle removal of an existing value. |
Duncan P. N. Exon Smith | cbc28dc | 2015-04-24 20:36:25 +0000 | [diff] [blame] | 1244 | Info.erase(KindID); |
| 1245 | |
| 1246 | if (!Info.empty()) |
| 1247 | return; |
| 1248 | |
| 1249 | getContext().pImpl->InstructionMetadata.erase(this); |
| 1250 | setHasMetadataHashEntry(false); |
Chris Lattner | 2f2aa2b | 2009-12-28 23:41:32 +0000 | [diff] [blame] | 1251 | } |
| 1252 | |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 1253 | void Instruction::setAAMetadata(const AAMDNodes &N) { |
| 1254 | setMetadata(LLVMContext::MD_tbaa, N.TBAA); |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 1255 | setMetadata(LLVMContext::MD_alias_scope, N.Scope); |
| 1256 | setMetadata(LLVMContext::MD_noalias, N.NoAlias); |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 1257 | } |
| 1258 | |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 1259 | MDNode *Instruction::getMetadataImpl(unsigned KindID) const { |
Chris Lattner | c263b42 | 2010-03-30 23:03:27 +0000 | [diff] [blame] | 1260 | // Handle 'dbg' as a special case since it is not stored in the hash table. |
| 1261 | if (KindID == LLVMContext::MD_dbg) |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1262 | return DbgLoc.getAsMDNode(); |
| 1263 | |
Duncan P. N. Exon Smith | cbc28dc | 2015-04-24 20:36:25 +0000 | [diff] [blame] | 1264 | if (!hasMetadataHashEntry()) |
| 1265 | return nullptr; |
Duncan P. N. Exon Smith | 14a384b | 2015-04-24 20:19:13 +0000 | [diff] [blame] | 1266 | auto &Info = getContext().pImpl->InstructionMetadata[this]; |
Chris Lattner | c263b42 | 2010-03-30 23:03:27 +0000 | [diff] [blame] | 1267 | assert(!Info.empty() && "bit out of sync with hash table"); |
Mikhail Glushenkov | ed3bd13 | 2010-01-10 18:48:49 +0000 | [diff] [blame] | 1268 | |
Duncan P. N. Exon Smith | cbc28dc | 2015-04-24 20:36:25 +0000 | [diff] [blame] | 1269 | return Info.lookup(KindID); |
Chris Lattner | 2f2aa2b | 2009-12-28 23:41:32 +0000 | [diff] [blame] | 1270 | } |
| 1271 | |
Duncan P. N. Exon Smith | 4abd1a0 | 2014-11-01 00:26:42 +0000 | [diff] [blame] | 1272 | void Instruction::getAllMetadataImpl( |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 1273 | SmallVectorImpl<std::pair<unsigned, MDNode *>> &Result) const { |
Chris Lattner | c263b42 | 2010-03-30 23:03:27 +0000 | [diff] [blame] | 1274 | Result.clear(); |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 1275 | |
Chris Lattner | c263b42 | 2010-03-30 23:03:27 +0000 | [diff] [blame] | 1276 | // Handle 'dbg' as a special case since it is not stored in the hash table. |
Duncan P. N. Exon Smith | ab659fb3 | 2015-03-30 19:40:05 +0000 | [diff] [blame] | 1277 | if (DbgLoc) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1278 | Result.push_back( |
| 1279 | std::make_pair((unsigned)LLVMContext::MD_dbg, DbgLoc.getAsMDNode())); |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 1280 | if (!hasMetadataHashEntry()) |
| 1281 | return; |
Chris Lattner | c263b42 | 2010-03-30 23:03:27 +0000 | [diff] [blame] | 1282 | } |
Duncan P. N. Exon Smith | 391fc56 | 2015-04-24 20:16:42 +0000 | [diff] [blame] | 1283 | |
Chris Lattner | c263b42 | 2010-03-30 23:03:27 +0000 | [diff] [blame] | 1284 | assert(hasMetadataHashEntry() && |
Duncan P. N. Exon Smith | 391fc56 | 2015-04-24 20:16:42 +0000 | [diff] [blame] | 1285 | getContext().pImpl->InstructionMetadata.count(this) && |
Chris Lattner | a056697 | 2009-12-29 09:01:33 +0000 | [diff] [blame] | 1286 | "Shouldn't have called this"); |
Duncan P. N. Exon Smith | 14a384b | 2015-04-24 20:19:13 +0000 | [diff] [blame] | 1287 | const auto &Info = getContext().pImpl->InstructionMetadata.find(this)->second; |
Chris Lattner | a056697 | 2009-12-29 09:01:33 +0000 | [diff] [blame] | 1288 | assert(!Info.empty() && "Shouldn't have called this"); |
Duncan P. N. Exon Smith | cbc28dc | 2015-04-24 20:36:25 +0000 | [diff] [blame] | 1289 | Info.getAll(Result); |
Chris Lattner | 2f2aa2b | 2009-12-28 23:41:32 +0000 | [diff] [blame] | 1290 | } |
| 1291 | |
Duncan P. N. Exon Smith | 3d5a02f | 2014-11-03 18:13:57 +0000 | [diff] [blame] | 1292 | void Instruction::getAllMetadataOtherThanDebugLocImpl( |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 1293 | SmallVectorImpl<std::pair<unsigned, MDNode *>> &Result) const { |
Chris Lattner | c0f5ce3 | 2010-04-01 05:23:13 +0000 | [diff] [blame] | 1294 | Result.clear(); |
| 1295 | assert(hasMetadataHashEntry() && |
Duncan P. N. Exon Smith | 391fc56 | 2015-04-24 20:16:42 +0000 | [diff] [blame] | 1296 | getContext().pImpl->InstructionMetadata.count(this) && |
Chris Lattner | c0f5ce3 | 2010-04-01 05:23:13 +0000 | [diff] [blame] | 1297 | "Shouldn't have called this"); |
Duncan P. N. Exon Smith | 14a384b | 2015-04-24 20:19:13 +0000 | [diff] [blame] | 1298 | const auto &Info = getContext().pImpl->InstructionMetadata.find(this)->second; |
Chris Lattner | c0f5ce3 | 2010-04-01 05:23:13 +0000 | [diff] [blame] | 1299 | assert(!Info.empty() && "Shouldn't have called this"); |
Duncan P. N. Exon Smith | cbc28dc | 2015-04-24 20:36:25 +0000 | [diff] [blame] | 1300 | Info.getAll(Result); |
Chris Lattner | c0f5ce3 | 2010-04-01 05:23:13 +0000 | [diff] [blame] | 1301 | } |
| 1302 | |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 1303 | bool Instruction::extractProfMetadata(uint64_t &TrueVal, |
| 1304 | uint64_t &FalseVal) const { |
| 1305 | assert( |
| 1306 | (getOpcode() == Instruction::Br || getOpcode() == Instruction::Select) && |
| 1307 | "Looking for branch weights on something besides branch or select"); |
Sanjay Patel | d66607b | 2016-04-26 17:11:17 +0000 | [diff] [blame] | 1308 | |
| 1309 | auto *ProfileData = getMetadata(LLVMContext::MD_prof); |
| 1310 | if (!ProfileData || ProfileData->getNumOperands() != 3) |
| 1311 | return false; |
| 1312 | |
| 1313 | auto *ProfDataName = dyn_cast<MDString>(ProfileData->getOperand(0)); |
| 1314 | if (!ProfDataName || !ProfDataName->getString().equals("branch_weights")) |
| 1315 | return false; |
| 1316 | |
| 1317 | auto *CITrue = mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(1)); |
| 1318 | auto *CIFalse = mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(2)); |
| 1319 | if (!CITrue || !CIFalse) |
| 1320 | return false; |
| 1321 | |
| 1322 | TrueVal = CITrue->getValue().getZExtValue(); |
| 1323 | FalseVal = CIFalse->getValue().getZExtValue(); |
| 1324 | |
| 1325 | return true; |
| 1326 | } |
| 1327 | |
Dehao Chen | e0e0ed1 | 2016-09-16 18:27:20 +0000 | [diff] [blame] | 1328 | bool Instruction::extractProfTotalWeight(uint64_t &TotalVal) const { |
Dehao Chen | 9232f98 | 2016-07-11 16:48:54 +0000 | [diff] [blame] | 1329 | assert((getOpcode() == Instruction::Br || |
| 1330 | getOpcode() == Instruction::Select || |
Dehao Chen | 71021cd | 2016-07-11 17:36:02 +0000 | [diff] [blame] | 1331 | getOpcode() == Instruction::Call || |
Dehao Chen | e9d0752 | 2016-10-11 18:53:00 +0000 | [diff] [blame] | 1332 | getOpcode() == Instruction::Invoke || |
| 1333 | getOpcode() == Instruction::Switch) && |
Dehao Chen | 9232f98 | 2016-07-11 16:48:54 +0000 | [diff] [blame] | 1334 | "Looking for branch weights on something besides branch"); |
| 1335 | |
| 1336 | TotalVal = 0; |
| 1337 | auto *ProfileData = getMetadata(LLVMContext::MD_prof); |
| 1338 | if (!ProfileData) |
| 1339 | return false; |
| 1340 | |
| 1341 | auto *ProfDataName = dyn_cast<MDString>(ProfileData->getOperand(0)); |
Dehao Chen | fed890e | 2017-03-31 15:59:52 +0000 | [diff] [blame] | 1342 | if (!ProfDataName) |
Dehao Chen | 9232f98 | 2016-07-11 16:48:54 +0000 | [diff] [blame] | 1343 | return false; |
| 1344 | |
Dehao Chen | fed890e | 2017-03-31 15:59:52 +0000 | [diff] [blame] | 1345 | if (ProfDataName->getString().equals("branch_weights")) { |
| 1346 | TotalVal = 0; |
| 1347 | for (unsigned i = 1; i < ProfileData->getNumOperands(); i++) { |
| 1348 | auto *V = mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(i)); |
| 1349 | if (!V) |
| 1350 | return false; |
| 1351 | TotalVal += V->getValue().getZExtValue(); |
| 1352 | } |
| 1353 | return true; |
| 1354 | } else if (ProfDataName->getString().equals("VP") && |
| 1355 | ProfileData->getNumOperands() > 3) { |
| 1356 | TotalVal = mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(2)) |
| 1357 | ->getValue() |
| 1358 | .getZExtValue(); |
| 1359 | return true; |
Dehao Chen | 9232f98 | 2016-07-11 16:48:54 +0000 | [diff] [blame] | 1360 | } |
Dehao Chen | fed890e | 2017-03-31 15:59:52 +0000 | [diff] [blame] | 1361 | return false; |
Dehao Chen | 9232f98 | 2016-07-11 16:48:54 +0000 | [diff] [blame] | 1362 | } |
| 1363 | |
Dan Gohman | 48a995f | 2010-07-20 22:25:04 +0000 | [diff] [blame] | 1364 | void Instruction::clearMetadataHashEntries() { |
| 1365 | assert(hasMetadataHashEntry() && "Caller should check"); |
Duncan P. N. Exon Smith | 391fc56 | 2015-04-24 20:16:42 +0000 | [diff] [blame] | 1366 | getContext().pImpl->InstructionMetadata.erase(this); |
Dan Gohman | 48a995f | 2010-07-20 22:25:04 +0000 | [diff] [blame] | 1367 | setHasMetadataHashEntry(false); |
Chris Lattner | 6801780 | 2009-12-29 07:44:16 +0000 | [diff] [blame] | 1368 | } |
Duncan P. N. Exon Smith | e2510cd | 2015-04-24 21:51:02 +0000 | [diff] [blame] | 1369 | |
Peter Collingbourne | 382d81c | 2016-06-01 01:17:57 +0000 | [diff] [blame] | 1370 | void GlobalObject::getMetadata(unsigned KindID, |
| 1371 | SmallVectorImpl<MDNode *> &MDs) const { |
| 1372 | if (hasMetadata()) |
| 1373 | getContext().pImpl->GlobalObjectMetadata[this].get(KindID, MDs); |
Duncan P. N. Exon Smith | e2510cd | 2015-04-24 21:51:02 +0000 | [diff] [blame] | 1374 | } |
| 1375 | |
Peter Collingbourne | 382d81c | 2016-06-01 01:17:57 +0000 | [diff] [blame] | 1376 | void GlobalObject::getMetadata(StringRef Kind, |
| 1377 | SmallVectorImpl<MDNode *> &MDs) const { |
| 1378 | if (hasMetadata()) |
| 1379 | getMetadata(getContext().getMDKindID(Kind), MDs); |
Duncan P. N. Exon Smith | e2510cd | 2015-04-24 21:51:02 +0000 | [diff] [blame] | 1380 | } |
| 1381 | |
Peter Collingbourne | 382d81c | 2016-06-01 01:17:57 +0000 | [diff] [blame] | 1382 | void GlobalObject::addMetadata(unsigned KindID, MDNode &MD) { |
| 1383 | if (!hasMetadata()) |
| 1384 | setHasMetadataHashEntry(true); |
Duncan P. N. Exon Smith | e2510cd | 2015-04-24 21:51:02 +0000 | [diff] [blame] | 1385 | |
Peter Collingbourne | 382d81c | 2016-06-01 01:17:57 +0000 | [diff] [blame] | 1386 | getContext().pImpl->GlobalObjectMetadata[this].insert(KindID, MD); |
| 1387 | } |
Duncan P. N. Exon Smith | e2510cd | 2015-04-24 21:51:02 +0000 | [diff] [blame] | 1388 | |
Peter Collingbourne | 382d81c | 2016-06-01 01:17:57 +0000 | [diff] [blame] | 1389 | void GlobalObject::addMetadata(StringRef Kind, MDNode &MD) { |
| 1390 | addMetadata(getContext().getMDKindID(Kind), MD); |
| 1391 | } |
| 1392 | |
| 1393 | void GlobalObject::eraseMetadata(unsigned KindID) { |
Duncan P. N. Exon Smith | e2510cd | 2015-04-24 21:51:02 +0000 | [diff] [blame] | 1394 | // Nothing to unset. |
| 1395 | if (!hasMetadata()) |
| 1396 | return; |
| 1397 | |
Peter Collingbourne | cceae7f | 2016-05-31 23:01:54 +0000 | [diff] [blame] | 1398 | auto &Store = getContext().pImpl->GlobalObjectMetadata[this]; |
Duncan P. N. Exon Smith | e2510cd | 2015-04-24 21:51:02 +0000 | [diff] [blame] | 1399 | Store.erase(KindID); |
| 1400 | if (Store.empty()) |
| 1401 | clearMetadata(); |
| 1402 | } |
| 1403 | |
Peter Collingbourne | cceae7f | 2016-05-31 23:01:54 +0000 | [diff] [blame] | 1404 | void GlobalObject::getAllMetadata( |
Duncan P. N. Exon Smith | e2510cd | 2015-04-24 21:51:02 +0000 | [diff] [blame] | 1405 | SmallVectorImpl<std::pair<unsigned, MDNode *>> &MDs) const { |
| 1406 | MDs.clear(); |
| 1407 | |
| 1408 | if (!hasMetadata()) |
| 1409 | return; |
| 1410 | |
Peter Collingbourne | cceae7f | 2016-05-31 23:01:54 +0000 | [diff] [blame] | 1411 | getContext().pImpl->GlobalObjectMetadata[this].getAll(MDs); |
Duncan P. N. Exon Smith | e2510cd | 2015-04-24 21:51:02 +0000 | [diff] [blame] | 1412 | } |
| 1413 | |
Peter Collingbourne | cceae7f | 2016-05-31 23:01:54 +0000 | [diff] [blame] | 1414 | void GlobalObject::clearMetadata() { |
Duncan P. N. Exon Smith | e2510cd | 2015-04-24 21:51:02 +0000 | [diff] [blame] | 1415 | if (!hasMetadata()) |
| 1416 | return; |
Peter Collingbourne | cceae7f | 2016-05-31 23:01:54 +0000 | [diff] [blame] | 1417 | getContext().pImpl->GlobalObjectMetadata.erase(this); |
Duncan P. N. Exon Smith | e2510cd | 2015-04-24 21:51:02 +0000 | [diff] [blame] | 1418 | setHasMetadataHashEntry(false); |
| 1419 | } |
Duncan P. N. Exon Smith | b56b5af | 2015-08-28 21:55:35 +0000 | [diff] [blame] | 1420 | |
Peter Collingbourne | 382d81c | 2016-06-01 01:17:57 +0000 | [diff] [blame] | 1421 | void GlobalObject::setMetadata(unsigned KindID, MDNode *N) { |
| 1422 | eraseMetadata(KindID); |
| 1423 | if (N) |
| 1424 | addMetadata(KindID, *N); |
| 1425 | } |
| 1426 | |
| 1427 | void GlobalObject::setMetadata(StringRef Kind, MDNode *N) { |
| 1428 | setMetadata(getContext().getMDKindID(Kind), N); |
| 1429 | } |
| 1430 | |
| 1431 | MDNode *GlobalObject::getMetadata(unsigned KindID) const { |
| 1432 | SmallVector<MDNode *, 1> MDs; |
| 1433 | getMetadata(KindID, MDs); |
Peter Collingbourne | 382d81c | 2016-06-01 01:17:57 +0000 | [diff] [blame] | 1434 | if (MDs.empty()) |
| 1435 | return nullptr; |
| 1436 | return MDs[0]; |
| 1437 | } |
| 1438 | |
| 1439 | MDNode *GlobalObject::getMetadata(StringRef Kind) const { |
| 1440 | return getMetadata(getContext().getMDKindID(Kind)); |
| 1441 | } |
| 1442 | |
Peter Collingbourne | 7efd750 | 2016-06-24 21:21:32 +0000 | [diff] [blame] | 1443 | void GlobalObject::copyMetadata(const GlobalObject *Other, unsigned Offset) { |
Peter Collingbourne | 4f7c16d | 2016-06-24 17:42:21 +0000 | [diff] [blame] | 1444 | SmallVector<std::pair<unsigned, MDNode *>, 8> MDs; |
| 1445 | Other->getAllMetadata(MDs); |
Peter Collingbourne | 7efd750 | 2016-06-24 21:21:32 +0000 | [diff] [blame] | 1446 | for (auto &MD : MDs) { |
| 1447 | // We need to adjust the type metadata offset. |
| 1448 | if (Offset != 0 && MD.first == LLVMContext::MD_type) { |
| 1449 | auto *OffsetConst = cast<ConstantInt>( |
| 1450 | cast<ConstantAsMetadata>(MD.second->getOperand(0))->getValue()); |
| 1451 | Metadata *TypeId = MD.second->getOperand(1); |
| 1452 | auto *NewOffsetMD = ConstantAsMetadata::get(ConstantInt::get( |
| 1453 | OffsetConst->getType(), OffsetConst->getValue() + Offset)); |
| 1454 | addMetadata(LLVMContext::MD_type, |
| 1455 | *MDNode::get(getContext(), {NewOffsetMD, TypeId})); |
| 1456 | continue; |
| 1457 | } |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 1458 | // If an offset adjustment was specified we need to modify the DIExpression |
| 1459 | // to prepend the adjustment: |
| 1460 | // !DIExpression(DW_OP_plus, Offset, [original expr]) |
Adrian Prantl | bceaaa9 | 2016-12-20 02:09:43 +0000 | [diff] [blame] | 1461 | auto *Attachment = MD.second; |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 1462 | if (Offset != 0 && MD.first == LLVMContext::MD_dbg) { |
Adrian Prantl | bceaaa9 | 2016-12-20 02:09:43 +0000 | [diff] [blame] | 1463 | DIGlobalVariable *GV = dyn_cast<DIGlobalVariable>(Attachment); |
| 1464 | DIExpression *E = nullptr; |
| 1465 | if (!GV) { |
| 1466 | auto *GVE = cast<DIGlobalVariableExpression>(Attachment); |
| 1467 | GV = GVE->getVariable(); |
| 1468 | E = GVE->getExpression(); |
| 1469 | } |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 1470 | ArrayRef<uint64_t> OrigElements; |
| 1471 | if (E) |
| 1472 | OrigElements = E->getElements(); |
| 1473 | std::vector<uint64_t> Elements(OrigElements.size() + 2); |
Florian Hahn | ffc498d | 2017-06-14 13:14:38 +0000 | [diff] [blame] | 1474 | Elements[0] = dwarf::DW_OP_plus_uconst; |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 1475 | Elements[1] = Offset; |
| 1476 | std::copy(OrigElements.begin(), OrigElements.end(), Elements.begin() + 2); |
Adrian Prantl | bceaaa9 | 2016-12-20 02:09:43 +0000 | [diff] [blame] | 1477 | E = DIExpression::get(getContext(), Elements); |
| 1478 | Attachment = DIGlobalVariableExpression::get(getContext(), GV, E); |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 1479 | } |
Adrian Prantl | bceaaa9 | 2016-12-20 02:09:43 +0000 | [diff] [blame] | 1480 | addMetadata(MD.first, *Attachment); |
Peter Collingbourne | 7efd750 | 2016-06-24 21:21:32 +0000 | [diff] [blame] | 1481 | } |
| 1482 | } |
| 1483 | |
| 1484 | void GlobalObject::addTypeMetadata(unsigned Offset, Metadata *TypeID) { |
| 1485 | addMetadata( |
| 1486 | LLVMContext::MD_type, |
| 1487 | *MDTuple::get(getContext(), |
Eugene Zelenko | de6cce2 | 2017-06-19 22:05:08 +0000 | [diff] [blame] | 1488 | {ConstantAsMetadata::get(ConstantInt::get( |
Peter Collingbourne | 7efd750 | 2016-06-24 21:21:32 +0000 | [diff] [blame] | 1489 | Type::getInt64Ty(getContext()), Offset)), |
| 1490 | TypeID})); |
Peter Collingbourne | 4f7c16d | 2016-06-24 17:42:21 +0000 | [diff] [blame] | 1491 | } |
| 1492 | |
Duncan P. N. Exon Smith | b56b5af | 2015-08-28 21:55:35 +0000 | [diff] [blame] | 1493 | void Function::setSubprogram(DISubprogram *SP) { |
| 1494 | setMetadata(LLVMContext::MD_dbg, SP); |
| 1495 | } |
| 1496 | |
| 1497 | DISubprogram *Function::getSubprogram() const { |
| 1498 | return cast_or_null<DISubprogram>(getMetadata(LLVMContext::MD_dbg)); |
| 1499 | } |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 1500 | |
Dehao Chen | fb02f71 | 2017-02-10 21:09:07 +0000 | [diff] [blame] | 1501 | bool Function::isDebugInfoForProfiling() const { |
| 1502 | if (DISubprogram *SP = getSubprogram()) { |
| 1503 | if (DICompileUnit *CU = SP->getUnit()) { |
| 1504 | return CU->getDebugInfoForProfiling(); |
| 1505 | } |
| 1506 | } |
| 1507 | return false; |
| 1508 | } |
| 1509 | |
Adrian Prantl | bceaaa9 | 2016-12-20 02:09:43 +0000 | [diff] [blame] | 1510 | void GlobalVariable::addDebugInfo(DIGlobalVariableExpression *GV) { |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 1511 | addMetadata(LLVMContext::MD_dbg, *GV); |
| 1512 | } |
| 1513 | |
| 1514 | void GlobalVariable::getDebugInfo( |
Adrian Prantl | bceaaa9 | 2016-12-20 02:09:43 +0000 | [diff] [blame] | 1515 | SmallVectorImpl<DIGlobalVariableExpression *> &GVs) const { |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 1516 | SmallVector<MDNode *, 1> MDs; |
| 1517 | getMetadata(LLVMContext::MD_dbg, MDs); |
| 1518 | for (MDNode *MD : MDs) |
Adrian Prantl | bceaaa9 | 2016-12-20 02:09:43 +0000 | [diff] [blame] | 1519 | GVs.push_back(cast<DIGlobalVariableExpression>(MD)); |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 1520 | } |