IR: Simplify code, NFC
[oota-llvm.git] / lib / IR / Metadata.cpp
1 //===-- Metadata.cpp - Implement Metadata classes -------------------------===//
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
14 #include "llvm/IR/Metadata.h"
15 #include "LLVMContextImpl.h"
16 #include "SymbolTableListTraitsImpl.h"
17 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/ADT/STLExtras.h"
19 #include "llvm/ADT/SmallSet.h"
20 #include "llvm/ADT/SmallString.h"
21 #include "llvm/ADT/StringMap.h"
22 #include "llvm/IR/ConstantRange.h"
23 #include "llvm/IR/Instruction.h"
24 #include "llvm/IR/LLVMContext.h"
25 #include "llvm/IR/Module.h"
26 #include "llvm/IR/ValueHandle.h"
27
28 using namespace llvm;
29
30 MetadataAsValue::MetadataAsValue(Type *Ty, Metadata *MD)
31     : Value(Ty, MetadataAsValueVal), MD(MD) {
32   track();
33 }
34
35 MetadataAsValue::~MetadataAsValue() {
36   getType()->getContext().pImpl->MetadataAsValues.erase(MD);
37   untrack();
38 }
39
40 /// \brief Canonicalize metadata arguments to intrinsics.
41 ///
42 /// To support bitcode upgrades (and assembly semantic sugar) for \a
43 /// MetadataAsValue, we need to canonicalize certain metadata.
44 ///
45 ///   - nullptr is replaced by an empty MDNode.
46 ///   - An MDNode with a single null operand is replaced by an empty MDNode.
47 ///   - An MDNode whose only operand is a \a ConstantAsMetadata gets skipped.
48 ///
49 /// This maintains readability of bitcode from when metadata was a type of
50 /// value, and these bridges were unnecessary.
51 static Metadata *canonicalizeMetadataForValue(LLVMContext &Context,
52                                               Metadata *MD) {
53   if (!MD)
54     // !{}
55     return MDNode::get(Context, None);
56
57   // Return early if this isn't a single-operand MDNode.
58   auto *N = dyn_cast<MDNode>(MD);
59   if (!N || N->getNumOperands() != 1)
60     return MD;
61
62   if (!N->getOperand(0))
63     // !{}
64     return MDNode::get(Context, None);
65
66   if (auto *C = dyn_cast<ConstantAsMetadata>(N->getOperand(0)))
67     // Look through the MDNode.
68     return C;
69
70   return MD;
71 }
72
73 MetadataAsValue *MetadataAsValue::get(LLVMContext &Context, Metadata *MD) {
74   MD = canonicalizeMetadataForValue(Context, MD);
75   auto *&Entry = Context.pImpl->MetadataAsValues[MD];
76   if (!Entry)
77     Entry = new MetadataAsValue(Type::getMetadataTy(Context), MD);
78   return Entry;
79 }
80
81 MetadataAsValue *MetadataAsValue::getIfExists(LLVMContext &Context,
82                                               Metadata *MD) {
83   MD = canonicalizeMetadataForValue(Context, MD);
84   auto &Store = Context.pImpl->MetadataAsValues;
85   auto I = Store.find(MD);
86   return I == Store.end() ? nullptr : I->second;
87 }
88
89 void MetadataAsValue::handleChangedMetadata(Metadata *MD) {
90   LLVMContext &Context = getContext();
91   MD = canonicalizeMetadataForValue(Context, MD);
92   auto &Store = Context.pImpl->MetadataAsValues;
93
94   // Stop tracking the old metadata.
95   Store.erase(this->MD);
96   untrack();
97   this->MD = nullptr;
98
99   // Start tracking MD, or RAUW if necessary.
100   auto *&Entry = Store[MD];
101   if (Entry) {
102     replaceAllUsesWith(Entry);
103     delete this;
104     return;
105   }
106
107   this->MD = MD;
108   track();
109   Entry = this;
110 }
111
112 void MetadataAsValue::track() {
113   if (MD)
114     MetadataTracking::track(&MD, *MD, *this);
115 }
116
117 void MetadataAsValue::untrack() {
118   if (MD)
119     MetadataTracking::untrack(MD);
120 }
121
122 void ReplaceableMetadataImpl::addRef(void *Ref, OwnerTy Owner) {
123   bool WasInserted =
124       UseMap.insert(std::make_pair(Ref, std::make_pair(Owner, NextIndex)))
125           .second;
126   (void)WasInserted;
127   assert(WasInserted && "Expected to add a reference");
128
129   ++NextIndex;
130   assert(NextIndex != 0 && "Unexpected overflow");
131 }
132
133 void ReplaceableMetadataImpl::dropRef(void *Ref) {
134   bool WasErased = UseMap.erase(Ref);
135   (void)WasErased;
136   assert(WasErased && "Expected to drop a reference");
137 }
138
139 void ReplaceableMetadataImpl::moveRef(void *Ref, void *New,
140                                       const Metadata &MD) {
141   auto I = UseMap.find(Ref);
142   assert(I != UseMap.end() && "Expected to move a reference");
143   auto OwnerAndIndex = I->second;
144   UseMap.erase(I);
145   bool WasInserted = UseMap.insert(std::make_pair(New, OwnerAndIndex)).second;
146   (void)WasInserted;
147   assert(WasInserted && "Expected to add a reference");
148
149   // Check that the references are direct if there's no owner.
150   (void)MD;
151   assert((OwnerAndIndex.first || *static_cast<Metadata **>(Ref) == &MD) &&
152          "Reference without owner must be direct");
153   assert((OwnerAndIndex.first || *static_cast<Metadata **>(New) == &MD) &&
154          "Reference without owner must be direct");
155 }
156
157 void ReplaceableMetadataImpl::replaceAllUsesWith(Metadata *MD) {
158   assert(!(MD && isa<MDNodeFwdDecl>(MD)) && "Expected non-temp node");
159
160   if (UseMap.empty())
161     return;
162
163   // Copy out uses since UseMap will get touched below.
164   typedef std::pair<void *, std::pair<OwnerTy, uint64_t>> UseTy;
165   SmallVector<UseTy, 8> Uses(UseMap.begin(), UseMap.end());
166   std::sort(Uses.begin(), Uses.end(), [](const UseTy &L, const UseTy &R) {
167     return L.second.second < R.second.second;
168   });
169   for (const auto &Pair : Uses) {
170     OwnerTy Owner = Pair.second.first;
171     if (!Owner) {
172       // Update unowned tracking references directly.
173       Metadata *&Ref = *static_cast<Metadata **>(Pair.first);
174       Ref = MD;
175       if (MD)
176         MetadataTracking::track(Ref);
177       UseMap.erase(Pair.first);
178       continue;
179     }
180
181     // Check for MetadataAsValue.
182     if (Owner.is<MetadataAsValue *>()) {
183       Owner.get<MetadataAsValue *>()->handleChangedMetadata(MD);
184       continue;
185     }
186
187     // There's a Metadata owner -- dispatch.
188     Metadata *OwnerMD = Owner.get<Metadata *>();
189     switch (OwnerMD->getMetadataID()) {
190 #define HANDLE_METADATA_LEAF(CLASS)                                            \
191   case Metadata::CLASS##Kind:                                                  \
192     cast<CLASS>(OwnerMD)->handleChangedOperand(Pair.first, MD);                \
193     continue;
194 #include "llvm/IR/Metadata.def"
195     default:
196       llvm_unreachable("Invalid metadata subclass");
197     }
198   }
199   assert(UseMap.empty() && "Expected all uses to be replaced");
200 }
201
202 void ReplaceableMetadataImpl::resolveAllUses(bool ResolveUsers) {
203   if (UseMap.empty())
204     return;
205
206   if (!ResolveUsers) {
207     UseMap.clear();
208     return;
209   }
210
211   // Copy out uses since UseMap could get touched below.
212   typedef std::pair<void *, std::pair<OwnerTy, uint64_t>> UseTy;
213   SmallVector<UseTy, 8> Uses(UseMap.begin(), UseMap.end());
214   std::sort(Uses.begin(), Uses.end(), [](const UseTy &L, const UseTy &R) {
215     return L.second.second < R.second.second;
216   });
217   UseMap.clear();
218   for (const auto &Pair : Uses) {
219     auto Owner = Pair.second.first;
220     if (!Owner)
221       continue;
222     if (Owner.is<MetadataAsValue *>())
223       continue;
224
225     // Resolve GenericMDNodes that point at this.
226     auto *OwnerMD = dyn_cast<GenericMDNode>(Owner.get<Metadata *>());
227     if (!OwnerMD)
228       continue;
229     if (OwnerMD->isResolved())
230       continue;
231     OwnerMD->decrementUnresolvedOperands();
232     if (!OwnerMD->hasUnresolvedOperands())
233       OwnerMD->resolve();
234   }
235 }
236
237 static Function *getLocalFunction(Value *V) {
238   assert(V && "Expected value");
239   if (auto *A = dyn_cast<Argument>(V))
240     return A->getParent();
241   if (BasicBlock *BB = cast<Instruction>(V)->getParent())
242     return BB->getParent();
243   return nullptr;
244 }
245
246 ValueAsMetadata *ValueAsMetadata::get(Value *V) {
247   assert(V && "Unexpected null Value");
248
249   auto &Context = V->getContext();
250   auto *&Entry = Context.pImpl->ValuesAsMetadata[V];
251   if (!Entry) {
252     assert((isa<Constant>(V) || isa<Argument>(V) || isa<Instruction>(V)) &&
253            "Expected constant or function-local value");
254     assert(!V->NameAndIsUsedByMD.getInt() &&
255            "Expected this to be the only metadata use");
256     V->NameAndIsUsedByMD.setInt(true);
257     if (auto *C = dyn_cast<Constant>(V))
258       Entry = new ConstantAsMetadata(C);
259     else
260       Entry = new LocalAsMetadata(V);
261   }
262
263   return Entry;
264 }
265
266 ValueAsMetadata *ValueAsMetadata::getIfExists(Value *V) {
267   assert(V && "Unexpected null Value");
268   return V->getContext().pImpl->ValuesAsMetadata.lookup(V);
269 }
270
271 void ValueAsMetadata::handleDeletion(Value *V) {
272   assert(V && "Expected valid value");
273
274   auto &Store = V->getType()->getContext().pImpl->ValuesAsMetadata;
275   auto I = Store.find(V);
276   if (I == Store.end())
277     return;
278
279   // Remove old entry from the map.
280   ValueAsMetadata *MD = I->second;
281   assert(MD && "Expected valid metadata");
282   assert(MD->getValue() == V && "Expected valid mapping");
283   Store.erase(I);
284
285   // Delete the metadata.
286   MD->replaceAllUsesWith(nullptr);
287   delete MD;
288 }
289
290 void ValueAsMetadata::handleRAUW(Value *From, Value *To) {
291   assert(From && "Expected valid value");
292   assert(To && "Expected valid value");
293   assert(From != To && "Expected changed value");
294   assert(From->getType() == To->getType() && "Unexpected type change");
295
296   LLVMContext &Context = From->getType()->getContext();
297   auto &Store = Context.pImpl->ValuesAsMetadata;
298   auto I = Store.find(From);
299   if (I == Store.end()) {
300     assert(!From->NameAndIsUsedByMD.getInt() &&
301            "Expected From not to be used by metadata");
302     return;
303   }
304
305   // Remove old entry from the map.
306   assert(From->NameAndIsUsedByMD.getInt() &&
307          "Expected From to be used by metadata");
308   From->NameAndIsUsedByMD.setInt(false);
309   ValueAsMetadata *MD = I->second;
310   assert(MD && "Expected valid metadata");
311   assert(MD->getValue() == From && "Expected valid mapping");
312   Store.erase(I);
313
314   if (isa<LocalAsMetadata>(MD)) {
315     if (auto *C = dyn_cast<Constant>(To)) {
316       // Local became a constant.
317       MD->replaceAllUsesWith(ConstantAsMetadata::get(C));
318       delete MD;
319       return;
320     }
321     if (getLocalFunction(From) && getLocalFunction(To) &&
322         getLocalFunction(From) != getLocalFunction(To)) {
323       // Function changed.
324       MD->replaceAllUsesWith(nullptr);
325       delete MD;
326       return;
327     }
328   } else if (!isa<Constant>(To)) {
329     // Changed to function-local value.
330     MD->replaceAllUsesWith(nullptr);
331     delete MD;
332     return;
333   }
334
335   auto *&Entry = Store[To];
336   if (Entry) {
337     // The target already exists.
338     MD->replaceAllUsesWith(Entry);
339     delete MD;
340     return;
341   }
342
343   // Update MD in place (and update the map entry).
344   assert(!To->NameAndIsUsedByMD.getInt() &&
345          "Expected this to be the only metadata use");
346   To->NameAndIsUsedByMD.setInt(true);
347   MD->V = To;
348   Entry = MD;
349 }
350
351 //===----------------------------------------------------------------------===//
352 // MDString implementation.
353 //
354
355 MDString *MDString::get(LLVMContext &Context, StringRef Str) {
356   auto &Store = Context.pImpl->MDStringCache;
357   auto I = Store.find(Str);
358   if (I != Store.end())
359     return &I->second;
360
361   auto *Entry =
362       StringMapEntry<MDString>::Create(Str, Store.getAllocator(), MDString());
363   bool WasInserted = Store.insert(Entry);
364   (void)WasInserted;
365   assert(WasInserted && "Expected entry to be inserted");
366   Entry->second.Entry = Entry;
367   return &Entry->second;
368 }
369
370 StringRef MDString::getString() const {
371   assert(Entry && "Expected to find string map entry");
372   return Entry->first();
373 }
374
375 //===----------------------------------------------------------------------===//
376 // MDNode implementation.
377 //
378
379 void *MDNode::operator new(size_t Size, unsigned NumOps) {
380   void *Ptr = ::operator new(Size + NumOps * sizeof(MDOperand));
381   MDOperand *O = static_cast<MDOperand *>(Ptr);
382   for (MDOperand *E = O + NumOps; O != E; ++O)
383     (void)new (O) MDOperand;
384   return O;
385 }
386
387 void MDNode::operator delete(void *Mem) {
388   MDNode *N = static_cast<MDNode *>(Mem);
389   MDOperand *O = static_cast<MDOperand *>(Mem);
390   for (MDOperand *E = O - N->NumOperands; O != E; --O)
391     (O - 1)->~MDOperand();
392   ::operator delete(O);
393 }
394
395 MDNode::MDNode(LLVMContext &Context, unsigned ID, ArrayRef<Metadata *> MDs)
396     : Metadata(ID), Context(Context), NumOperands(MDs.size()),
397       MDNodeSubclassData(0) {
398   for (unsigned I = 0, E = MDs.size(); I != E; ++I)
399     setOperand(I, MDs[I]);
400 }
401
402 bool MDNode::isResolved() const {
403   if (isa<MDNodeFwdDecl>(this))
404     return false;
405   return cast<GenericMDNode>(this)->isResolved();
406 }
407
408 static bool isOperandUnresolved(Metadata *Op) {
409   if (auto *N = dyn_cast_or_null<MDNode>(Op))
410     return !N->isResolved();
411   return false;
412 }
413
414 GenericMDNode::GenericMDNode(LLVMContext &C, ArrayRef<Metadata *> Vals,
415                              bool AllowRAUW)
416     : MDNode(C, GenericMDNodeKind, Vals) {
417   if (!AllowRAUW)
418     return;
419
420   // Check whether any operands are unresolved, requiring re-uniquing.
421   for (const auto &Op : operands())
422     if (isOperandUnresolved(Op))
423       incrementUnresolvedOperands();
424
425   if (hasUnresolvedOperands())
426     ReplaceableUses.reset(new ReplaceableMetadataImpl);
427 }
428
429 GenericMDNode::~GenericMDNode() {
430   LLVMContextImpl *pImpl = getContext().pImpl;
431   if (isStoredDistinctInContext())
432     pImpl->NonUniquedMDNodes.erase(this);
433   else
434     pImpl->MDNodeSet.erase(this);
435   dropAllReferences();
436 }
437
438 void GenericMDNode::resolve() {
439   assert(!isResolved() && "Expected this to be unresolved");
440
441   // Move the map, so that this immediately looks resolved.
442   auto Uses = std::move(ReplaceableUses);
443   SubclassData32 = 0;
444   assert(isResolved() && "Expected this to be resolved");
445
446   // Drop RAUW support.
447   Uses->resolveAllUses();
448 }
449
450 void GenericMDNode::resolveCycles() {
451   if (isResolved())
452     return;
453
454   // Resolve this node immediately.
455   resolve();
456
457   // Resolve all operands.
458   for (const auto &Op : operands()) {
459     if (!Op)
460       continue;
461     assert(!isa<MDNodeFwdDecl>(Op) &&
462            "Expected all forward declarations to be resolved");
463     if (auto *N = dyn_cast<GenericMDNode>(Op))
464       if (!N->isResolved())
465         N->resolveCycles();
466   }
467 }
468
469 void MDNode::dropAllReferences() {
470   for (unsigned I = 0, E = NumOperands; I != E; ++I)
471     setOperand(I, nullptr);
472   if (auto *G = dyn_cast<GenericMDNode>(this))
473     if (!G->isResolved()) {
474       G->ReplaceableUses->resolveAllUses(/* ResolveUsers */ false);
475       G->ReplaceableUses.reset();
476     }
477 }
478
479 namespace llvm {
480 /// \brief Make MDOperand transparent for hashing.
481 ///
482 /// This overload of an implementation detail of the hashing library makes
483 /// MDOperand hash to the same value as a \a Metadata pointer.
484 ///
485 /// Note that overloading \a hash_value() as follows:
486 ///
487 /// \code
488 ///     size_t hash_value(const MDOperand &X) { return hash_value(X.get()); }
489 /// \endcode
490 ///
491 /// does not cause MDOperand to be transparent.  In particular, a bare pointer
492 /// doesn't get hashed before it's combined, whereas \a MDOperand would.
493 static const Metadata *get_hashable_data(const MDOperand &X) { return X.get(); }
494 }
495
496 void GenericMDNode::handleChangedOperand(void *Ref, Metadata *New) {
497   unsigned Op = static_cast<MDOperand *>(Ref) - op_begin();
498   assert(Op < getNumOperands() && "Expected valid operand");
499
500   if (isStoredDistinctInContext()) {
501     assert(isResolved() && "Expected distinct node to be resolved");
502
503     // This node is not uniqued.  Just set the operand and be done with it.
504     setOperand(Op, New);
505     return;
506   }
507   if (InRAUW) {
508     // We just hit a recursion due to RAUW.  Set the operand and move on, since
509     // we're about to be deleted.
510     //
511     // FIXME: Can this cycle really happen?
512     setOperand(Op, New);
513     return;
514   }
515
516   auto &Store = getContext().pImpl->MDNodeSet;
517   Store.erase(this);
518
519   Metadata *Old = getOperand(Op);
520   setOperand(Op, New);
521
522   // Drop uniquing for self-reference cycles.
523   if (New == this) {
524     storeDistinctInContext();
525     if (!isResolved())
526       resolve();
527     return;
528   }
529
530   // Re-calculate the hash.
531   setHash(hash_combine_range(op_begin(), op_end()));
532 #ifndef NDEBUG
533   {
534     SmallVector<Metadata *, 8> MDs(op_begin(), op_end());
535     unsigned RawHash = hash_combine_range(MDs.begin(), MDs.end());
536     assert(getHash() == RawHash &&
537            "Expected hash of MDOperand to equal hash of Metadata*");
538   }
539 #endif
540
541   // Re-unique the node.
542   GenericMDNodeInfo::KeyTy Key(this);
543   auto I = Store.find_as(Key);
544   if (I == Store.end()) {
545     Store.insert(this);
546
547     if (!isResolved()) {
548       // Check if the last unresolved operand has just been resolved; if so,
549       // resolve this as well.
550       if (isOperandUnresolved(Old))
551         decrementUnresolvedOperands();
552       if (isOperandUnresolved(New))
553         incrementUnresolvedOperands();
554       if (!hasUnresolvedOperands())
555         resolve();
556     }
557
558     return;
559   }
560
561   // Collision.
562   if (!isResolved()) {
563     // Still unresolved, so RAUW.
564     InRAUW = true;
565     ReplaceableUses->replaceAllUsesWith(*I);
566     delete this;
567     return;
568   }
569
570   // Store in non-uniqued form if this node has already been resolved.
571   storeDistinctInContext();
572 }
573
574 MDNode *MDNode::getMDNode(LLVMContext &Context, ArrayRef<Metadata *> MDs,
575                           bool Insert) {
576   auto &Store = Context.pImpl->MDNodeSet;
577
578   GenericMDNodeInfo::KeyTy Key(MDs);
579   auto I = Store.find_as(Key);
580   if (I != Store.end())
581     return *I;
582   if (!Insert)
583     return nullptr;
584
585   // Coallocate space for the node and Operands together, then placement new.
586   auto *N = new (MDs.size()) GenericMDNode(Context, MDs, /* AllowRAUW */ true);
587   N->setHash(Key.Hash);
588   Store.insert(N);
589   return N;
590 }
591
592 MDNode *MDNode::getDistinct(LLVMContext &Context, ArrayRef<Metadata *> MDs) {
593   auto *N = new (MDs.size()) GenericMDNode(Context, MDs, /* AllowRAUW */ false);
594   N->storeDistinctInContext();
595   return N;
596 }
597
598 MDNodeFwdDecl *MDNode::getTemporary(LLVMContext &Context,
599                                     ArrayRef<Metadata *> MDs) {
600   MDNodeFwdDecl *N = new (MDs.size()) MDNodeFwdDecl(Context, MDs);
601   return N;
602 }
603
604 void MDNode::deleteTemporary(MDNode *N) {
605   assert(isa<MDNodeFwdDecl>(N) && "Expected forward declaration");
606   delete cast<MDNodeFwdDecl>(N);
607 }
608
609 void MDNode::storeDistinctInContext() {
610   assert(!IsDistinctInContext && "Expected newly distinct metadata");
611   IsDistinctInContext = true;
612   auto *G = cast<GenericMDNode>(this);
613   G->setHash(0);
614   getContext().pImpl->NonUniquedMDNodes.insert(G);
615 }
616
617 // Replace value from this node's operand list.
618 void MDNode::replaceOperandWith(unsigned I, Metadata *New) {
619   if (getOperand(I) == New)
620     return;
621
622   if (isDistinct()) {
623     setOperand(I, New);
624     return;
625   }
626
627   cast<GenericMDNode>(this)->handleChangedOperand(mutable_begin() + I, New);
628 }
629
630 void MDNode::setOperand(unsigned I, Metadata *New) {
631   assert(I < NumOperands);
632   if (isStoredDistinctInContext() || isa<MDNodeFwdDecl>(this))
633     // No need for a callback, this isn't uniqued.
634     mutable_begin()[I].reset(New, nullptr);
635   else
636     mutable_begin()[I].reset(New, this);
637 }
638
639 /// \brief Get a node, or a self-reference that looks like it.
640 ///
641 /// Special handling for finding self-references, for use by \a
642 /// MDNode::concatenate() and \a MDNode::intersect() to maintain behaviour from
643 /// when self-referencing nodes were still uniqued.  If the first operand has
644 /// the same operands as \c Ops, return the first operand instead.
645 static MDNode *getOrSelfReference(LLVMContext &Context,
646                                   ArrayRef<Metadata *> Ops) {
647   if (!Ops.empty())
648     if (MDNode *N = dyn_cast_or_null<MDNode>(Ops[0]))
649       if (N->getNumOperands() == Ops.size() && N == N->getOperand(0)) {
650         for (unsigned I = 1, E = Ops.size(); I != E; ++I)
651           if (Ops[I] != N->getOperand(I))
652             return MDNode::get(Context, Ops);
653         return N;
654       }
655
656   return MDNode::get(Context, Ops);
657 }
658
659 MDNode *MDNode::concatenate(MDNode *A, MDNode *B) {
660   if (!A)
661     return B;
662   if (!B)
663     return A;
664
665   SmallVector<Metadata *, 4> MDs(A->getNumOperands() + B->getNumOperands());
666
667   unsigned j = 0;
668   for (unsigned i = 0, ie = A->getNumOperands(); i != ie; ++i)
669     MDs[j++] = A->getOperand(i);
670   for (unsigned i = 0, ie = B->getNumOperands(); i != ie; ++i)
671     MDs[j++] = B->getOperand(i);
672
673   // FIXME: This preserves long-standing behaviour, but is it really the right
674   // behaviour?  Or was that an unintended side-effect of node uniquing?
675   return getOrSelfReference(A->getContext(), MDs);
676 }
677
678 MDNode *MDNode::intersect(MDNode *A, MDNode *B) {
679   if (!A || !B)
680     return nullptr;
681
682   SmallVector<Metadata *, 4> MDs;
683   for (unsigned i = 0, ie = A->getNumOperands(); i != ie; ++i) {
684     Metadata *MD = A->getOperand(i);
685     for (unsigned j = 0, je = B->getNumOperands(); j != je; ++j)
686       if (MD == B->getOperand(j)) {
687         MDs.push_back(MD);
688         break;
689       }
690   }
691
692   // FIXME: This preserves long-standing behaviour, but is it really the right
693   // behaviour?  Or was that an unintended side-effect of node uniquing?
694   return getOrSelfReference(A->getContext(), MDs);
695 }
696
697 MDNode *MDNode::getMostGenericFPMath(MDNode *A, MDNode *B) {
698   if (!A || !B)
699     return nullptr;
700
701   APFloat AVal = mdconst::extract<ConstantFP>(A->getOperand(0))->getValueAPF();
702   APFloat BVal = mdconst::extract<ConstantFP>(B->getOperand(0))->getValueAPF();
703   if (AVal.compare(BVal) == APFloat::cmpLessThan)
704     return A;
705   return B;
706 }
707
708 static bool isContiguous(const ConstantRange &A, const ConstantRange &B) {
709   return A.getUpper() == B.getLower() || A.getLower() == B.getUpper();
710 }
711
712 static bool canBeMerged(const ConstantRange &A, const ConstantRange &B) {
713   return !A.intersectWith(B).isEmptySet() || isContiguous(A, B);
714 }
715
716 static bool tryMergeRange(SmallVectorImpl<ConstantInt *> &EndPoints,
717                           ConstantInt *Low, ConstantInt *High) {
718   ConstantRange NewRange(Low->getValue(), High->getValue());
719   unsigned Size = EndPoints.size();
720   APInt LB = EndPoints[Size - 2]->getValue();
721   APInt LE = EndPoints[Size - 1]->getValue();
722   ConstantRange LastRange(LB, LE);
723   if (canBeMerged(NewRange, LastRange)) {
724     ConstantRange Union = LastRange.unionWith(NewRange);
725     Type *Ty = High->getType();
726     EndPoints[Size - 2] =
727         cast<ConstantInt>(ConstantInt::get(Ty, Union.getLower()));
728     EndPoints[Size - 1] =
729         cast<ConstantInt>(ConstantInt::get(Ty, Union.getUpper()));
730     return true;
731   }
732   return false;
733 }
734
735 static void addRange(SmallVectorImpl<ConstantInt *> &EndPoints,
736                      ConstantInt *Low, ConstantInt *High) {
737   if (!EndPoints.empty())
738     if (tryMergeRange(EndPoints, Low, High))
739       return;
740
741   EndPoints.push_back(Low);
742   EndPoints.push_back(High);
743 }
744
745 MDNode *MDNode::getMostGenericRange(MDNode *A, MDNode *B) {
746   // Given two ranges, we want to compute the union of the ranges. This
747   // is slightly complitade by having to combine the intervals and merge
748   // the ones that overlap.
749
750   if (!A || !B)
751     return nullptr;
752
753   if (A == B)
754     return A;
755
756   // First, walk both lists in older of the lower boundary of each interval.
757   // At each step, try to merge the new interval to the last one we adedd.
758   SmallVector<ConstantInt *, 4> EndPoints;
759   int AI = 0;
760   int BI = 0;
761   int AN = A->getNumOperands() / 2;
762   int BN = B->getNumOperands() / 2;
763   while (AI < AN && BI < BN) {
764     ConstantInt *ALow = mdconst::extract<ConstantInt>(A->getOperand(2 * AI));
765     ConstantInt *BLow = mdconst::extract<ConstantInt>(B->getOperand(2 * BI));
766
767     if (ALow->getValue().slt(BLow->getValue())) {
768       addRange(EndPoints, ALow,
769                mdconst::extract<ConstantInt>(A->getOperand(2 * AI + 1)));
770       ++AI;
771     } else {
772       addRange(EndPoints, BLow,
773                mdconst::extract<ConstantInt>(B->getOperand(2 * BI + 1)));
774       ++BI;
775     }
776   }
777   while (AI < AN) {
778     addRange(EndPoints, mdconst::extract<ConstantInt>(A->getOperand(2 * AI)),
779              mdconst::extract<ConstantInt>(A->getOperand(2 * AI + 1)));
780     ++AI;
781   }
782   while (BI < BN) {
783     addRange(EndPoints, mdconst::extract<ConstantInt>(B->getOperand(2 * BI)),
784              mdconst::extract<ConstantInt>(B->getOperand(2 * BI + 1)));
785     ++BI;
786   }
787
788   // If we have more than 2 ranges (4 endpoints) we have to try to merge
789   // the last and first ones.
790   unsigned Size = EndPoints.size();
791   if (Size > 4) {
792     ConstantInt *FB = EndPoints[0];
793     ConstantInt *FE = EndPoints[1];
794     if (tryMergeRange(EndPoints, FB, FE)) {
795       for (unsigned i = 0; i < Size - 2; ++i) {
796         EndPoints[i] = EndPoints[i + 2];
797       }
798       EndPoints.resize(Size - 2);
799     }
800   }
801
802   // If in the end we have a single range, it is possible that it is now the
803   // full range. Just drop the metadata in that case.
804   if (EndPoints.size() == 2) {
805     ConstantRange Range(EndPoints[0]->getValue(), EndPoints[1]->getValue());
806     if (Range.isFullSet())
807       return nullptr;
808   }
809
810   SmallVector<Metadata *, 4> MDs;
811   MDs.reserve(EndPoints.size());
812   for (auto *I : EndPoints)
813     MDs.push_back(ConstantAsMetadata::get(I));
814   return MDNode::get(A->getContext(), MDs);
815 }
816
817 //===----------------------------------------------------------------------===//
818 // NamedMDNode implementation.
819 //
820
821 static SmallVector<TrackingMDRef, 4> &getNMDOps(void *Operands) {
822   return *(SmallVector<TrackingMDRef, 4> *)Operands;
823 }
824
825 NamedMDNode::NamedMDNode(const Twine &N)
826     : Name(N.str()), Parent(nullptr),
827       Operands(new SmallVector<TrackingMDRef, 4>()) {}
828
829 NamedMDNode::~NamedMDNode() {
830   dropAllReferences();
831   delete &getNMDOps(Operands);
832 }
833
834 unsigned NamedMDNode::getNumOperands() const {
835   return (unsigned)getNMDOps(Operands).size();
836 }
837
838 MDNode *NamedMDNode::getOperand(unsigned i) const {
839   assert(i < getNumOperands() && "Invalid Operand number!");
840   auto *N = getNMDOps(Operands)[i].get();
841   return cast_or_null<MDNode>(N);
842 }
843
844 void NamedMDNode::addOperand(MDNode *M) { getNMDOps(Operands).emplace_back(M); }
845
846 void NamedMDNode::setOperand(unsigned I, MDNode *New) {
847   assert(I < getNumOperands() && "Invalid operand number");
848   getNMDOps(Operands)[I].reset(New);
849 }
850
851 void NamedMDNode::eraseFromParent() {
852   getParent()->eraseNamedMetadata(this);
853 }
854
855 void NamedMDNode::dropAllReferences() {
856   getNMDOps(Operands).clear();
857 }
858
859 StringRef NamedMDNode::getName() const {
860   return StringRef(Name);
861 }
862
863 //===----------------------------------------------------------------------===//
864 // Instruction Metadata method implementations.
865 //
866
867 void Instruction::setMetadata(StringRef Kind, MDNode *Node) {
868   if (!Node && !hasMetadata())
869     return;
870   setMetadata(getContext().getMDKindID(Kind), Node);
871 }
872
873 MDNode *Instruction::getMetadataImpl(StringRef Kind) const {
874   return getMetadataImpl(getContext().getMDKindID(Kind));
875 }
876
877 void Instruction::dropUnknownMetadata(ArrayRef<unsigned> KnownIDs) {
878   SmallSet<unsigned, 5> KnownSet;
879   KnownSet.insert(KnownIDs.begin(), KnownIDs.end());
880
881   // Drop debug if needed
882   if (KnownSet.erase(LLVMContext::MD_dbg))
883     DbgLoc = DebugLoc();
884
885   if (!hasMetadataHashEntry())
886     return; // Nothing to remove!
887
888   DenseMap<const Instruction *, LLVMContextImpl::MDMapTy> &MetadataStore =
889       getContext().pImpl->MetadataStore;
890
891   if (KnownSet.empty()) {
892     // Just drop our entry at the store.
893     MetadataStore.erase(this);
894     setHasMetadataHashEntry(false);
895     return;
896   }
897
898   LLVMContextImpl::MDMapTy &Info = MetadataStore[this];
899   unsigned I;
900   unsigned E;
901   // Walk the array and drop any metadata we don't know.
902   for (I = 0, E = Info.size(); I != E;) {
903     if (KnownSet.count(Info[I].first)) {
904       ++I;
905       continue;
906     }
907
908     Info[I] = std::move(Info.back());
909     Info.pop_back();
910     --E;
911   }
912   assert(E == Info.size());
913
914   if (E == 0) {
915     // Drop our entry at the store.
916     MetadataStore.erase(this);
917     setHasMetadataHashEntry(false);
918   }
919 }
920
921 /// setMetadata - Set the metadata of of the specified kind to the specified
922 /// node.  This updates/replaces metadata if already present, or removes it if
923 /// Node is null.
924 void Instruction::setMetadata(unsigned KindID, MDNode *Node) {
925   if (!Node && !hasMetadata())
926     return;
927
928   // Handle 'dbg' as a special case since it is not stored in the hash table.
929   if (KindID == LLVMContext::MD_dbg) {
930     DbgLoc = DebugLoc::getFromDILocation(Node);
931     return;
932   }
933   
934   // Handle the case when we're adding/updating metadata on an instruction.
935   if (Node) {
936     LLVMContextImpl::MDMapTy &Info = getContext().pImpl->MetadataStore[this];
937     assert(!Info.empty() == hasMetadataHashEntry() &&
938            "HasMetadata bit is wonked");
939     if (Info.empty()) {
940       setHasMetadataHashEntry(true);
941     } else {
942       // Handle replacement of an existing value.
943       for (auto &P : Info)
944         if (P.first == KindID) {
945           P.second.reset(Node);
946           return;
947         }
948     }
949
950     // No replacement, just add it to the list.
951     Info.emplace_back(std::piecewise_construct, std::make_tuple(KindID),
952                       std::make_tuple(Node));
953     return;
954   }
955
956   // Otherwise, we're removing metadata from an instruction.
957   assert((hasMetadataHashEntry() ==
958           (getContext().pImpl->MetadataStore.count(this) > 0)) &&
959          "HasMetadata bit out of date!");
960   if (!hasMetadataHashEntry())
961     return;  // Nothing to remove!
962   LLVMContextImpl::MDMapTy &Info = getContext().pImpl->MetadataStore[this];
963
964   // Common case is removing the only entry.
965   if (Info.size() == 1 && Info[0].first == KindID) {
966     getContext().pImpl->MetadataStore.erase(this);
967     setHasMetadataHashEntry(false);
968     return;
969   }
970
971   // Handle removal of an existing value.
972   for (unsigned i = 0, e = Info.size(); i != e; ++i)
973     if (Info[i].first == KindID) {
974       Info[i] = std::move(Info.back());
975       Info.pop_back();
976       assert(!Info.empty() && "Removing last entry should be handled above");
977       return;
978     }
979   // Otherwise, removing an entry that doesn't exist on the instruction.
980 }
981
982 void Instruction::setAAMetadata(const AAMDNodes &N) {
983   setMetadata(LLVMContext::MD_tbaa, N.TBAA);
984   setMetadata(LLVMContext::MD_alias_scope, N.Scope);
985   setMetadata(LLVMContext::MD_noalias, N.NoAlias);
986 }
987
988 MDNode *Instruction::getMetadataImpl(unsigned KindID) const {
989   // Handle 'dbg' as a special case since it is not stored in the hash table.
990   if (KindID == LLVMContext::MD_dbg)
991     return DbgLoc.getAsMDNode();
992
993   if (!hasMetadataHashEntry()) return nullptr;
994   
995   LLVMContextImpl::MDMapTy &Info = getContext().pImpl->MetadataStore[this];
996   assert(!Info.empty() && "bit out of sync with hash table");
997
998   for (const auto &I : Info)
999     if (I.first == KindID)
1000       return I.second;
1001   return nullptr;
1002 }
1003
1004 void Instruction::getAllMetadataImpl(
1005     SmallVectorImpl<std::pair<unsigned, MDNode *>> &Result) const {
1006   Result.clear();
1007   
1008   // Handle 'dbg' as a special case since it is not stored in the hash table.
1009   if (!DbgLoc.isUnknown()) {
1010     Result.push_back(
1011         std::make_pair((unsigned)LLVMContext::MD_dbg, DbgLoc.getAsMDNode()));
1012     if (!hasMetadataHashEntry()) return;
1013   }
1014   
1015   assert(hasMetadataHashEntry() &&
1016          getContext().pImpl->MetadataStore.count(this) &&
1017          "Shouldn't have called this");
1018   const LLVMContextImpl::MDMapTy &Info =
1019     getContext().pImpl->MetadataStore.find(this)->second;
1020   assert(!Info.empty() && "Shouldn't have called this");
1021
1022   Result.reserve(Result.size() + Info.size());
1023   for (auto &I : Info)
1024     Result.push_back(std::make_pair(I.first, cast<MDNode>(I.second.get())));
1025
1026   // Sort the resulting array so it is stable.
1027   if (Result.size() > 1)
1028     array_pod_sort(Result.begin(), Result.end());
1029 }
1030
1031 void Instruction::getAllMetadataOtherThanDebugLocImpl(
1032     SmallVectorImpl<std::pair<unsigned, MDNode *>> &Result) const {
1033   Result.clear();
1034   assert(hasMetadataHashEntry() &&
1035          getContext().pImpl->MetadataStore.count(this) &&
1036          "Shouldn't have called this");
1037   const LLVMContextImpl::MDMapTy &Info =
1038     getContext().pImpl->MetadataStore.find(this)->second;
1039   assert(!Info.empty() && "Shouldn't have called this");
1040   Result.reserve(Result.size() + Info.size());
1041   for (auto &I : Info)
1042     Result.push_back(std::make_pair(I.first, cast<MDNode>(I.second.get())));
1043
1044   // Sort the resulting array so it is stable.
1045   if (Result.size() > 1)
1046     array_pod_sort(Result.begin(), Result.end());
1047 }
1048
1049 /// clearMetadataHashEntries - Clear all hashtable-based metadata from
1050 /// this instruction.
1051 void Instruction::clearMetadataHashEntries() {
1052   assert(hasMetadataHashEntry() && "Caller should check");
1053   getContext().pImpl->MetadataStore.erase(this);
1054   setHasMetadataHashEntry(false);
1055 }