blob: a019f1ee07b9d6b856034b122a47bf312497dd81 [file] [log] [blame]
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001//===- LLVMContextImpl.h - The LLVMContextImpl opaque class -----*- C++ -*-===//
Owen Anderson8e66e0b2009-06-30 00:48:55 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Owen Anderson8e66e0b2009-06-30 00:48:55 +00006//
7//===----------------------------------------------------------------------===//
Owen Anderson36f62e52009-06-30 17:06:46 +00008//
Fangrui Songf78650a2018-07-30 19:41:25 +00009// This file declares LLVMContextImpl, the opaque implementation
Owen Anderson36f62e52009-06-30 17:06:46 +000010// of LLVMContext.
11//
12//===----------------------------------------------------------------------===//
Owen Anderson8e66e0b2009-06-30 00:48:55 +000013
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_IR_LLVMCONTEXTIMPL_H
15#define LLVM_LIB_IR_LLVMCONTEXTIMPL_H
Owen Anderson8e66e0b2009-06-30 00:48:55 +000016
Bill Wendling4607f4b2012-12-20 01:36:59 +000017#include "AttributeImpl.h"
Owen Andersonafd0c4c2009-08-04 22:41:48 +000018#include "ConstantsContext.h"
Owen Andersonc277dc42009-07-16 19:05:41 +000019#include "llvm/ADT/APFloat.h"
Owen Anderson20b34ac2009-07-16 18:04:31 +000020#include "llvm/ADT/APInt.h"
Jay Foadc365eea2011-06-22 08:50:06 +000021#include "llvm/ADT/ArrayRef.h"
Owen Anderson20b34ac2009-07-16 18:04:31 +000022#include "llvm/ADT/DenseMap.h"
Eugene Zelenkode6cce22017-06-19 22:05:08 +000023#include "llvm/ADT/DenseMapInfo.h"
Duncan P. N. Exon Smithf39c3b82014-11-17 23:28:21 +000024#include "llvm/ADT/DenseSet.h"
Owen Anderson4118dde2009-07-16 23:44:30 +000025#include "llvm/ADT/FoldingSet.h"
Chandler Carruth802d7552012-12-04 07:12:27 +000026#include "llvm/ADT/Hashing.h"
Eugene Zelenkode6cce22017-06-19 22:05:08 +000027#include "llvm/ADT/Optional.h"
28#include "llvm/ADT/STLExtras.h"
Jeffrey Yasskin28f24482009-12-17 19:55:06 +000029#include "llvm/ADT/SmallPtrSet.h"
Eugene Zelenkode6cce22017-06-19 22:05:08 +000030#include "llvm/ADT/SmallVector.h"
Owen Anderson69ab4162009-07-16 22:11:26 +000031#include "llvm/ADT/StringMap.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000032#include "llvm/BinaryFormat/Dwarf.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/Constants.h"
Duncan P. N. Exon Smithd9901ff2015-02-02 18:53:21 +000034#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/DerivedTypes.h"
36#include "llvm/IR/LLVMContext.h"
Francis Visoiu Mistrih7531a502019-10-28 14:53:31 -070037#include "llvm/IR/LLVMRemarkStreamer.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000038#include "llvm/IR/Metadata.h"
Eugene Zelenkode6cce22017-06-19 22:05:08 +000039#include "llvm/IR/TrackingMDRef.h"
40#include "llvm/Support/Allocator.h"
41#include "llvm/Support/Casting.h"
Peter Collingbourne10c548c2019-05-29 03:28:51 +000042#include "llvm/Support/StringSaver.h"
Adam Nemeta62b7e12016-09-27 20:55:07 +000043#include "llvm/Support/YAMLTraits.h"
Eugene Zelenkode6cce22017-06-19 22:05:08 +000044#include <algorithm>
45#include <cassert>
46#include <cstddef>
47#include <cstdint>
48#include <memory>
49#include <string>
50#include <utility>
Duncan P. N. Exon Smith3eef9d12016-04-19 23:59:13 +000051#include <vector>
Owen Anderson39ede7b2009-07-21 20:13:12 +000052
Owen Anderson20b34ac2009-07-16 18:04:31 +000053namespace llvm {
Owen Andersonedb4a702009-07-24 23:12:02 +000054
Simon Pilgrim716a5872020-04-24 13:07:02 +010055class StringRef;
Owen Anderson20b34ac2009-07-16 18:04:31 +000056class Type;
Owen Anderson4118dde2009-07-16 23:44:30 +000057class Value;
Eugene Zelenkode6cce22017-06-19 22:05:08 +000058class ValueHandleBase;
Owen Anderson20b34ac2009-07-16 18:04:31 +000059
Benjamin Kramer079b96e2013-09-11 18:05:11 +000060struct DenseMapAPIntKeyInfo {
Benjamin Kramer8e5dc532014-12-06 13:12:56 +000061 static inline APInt getEmptyKey() {
62 APInt V(nullptr, 0);
Craig Topperb339c6d2017-05-03 15:46:24 +000063 V.U.VAL = 0;
Benjamin Kramer8e5dc532014-12-06 13:12:56 +000064 return V;
65 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +000066
Benjamin Kramer8e5dc532014-12-06 13:12:56 +000067 static inline APInt getTombstoneKey() {
68 APInt V(nullptr, 0);
Craig Topperb339c6d2017-05-03 15:46:24 +000069 V.U.VAL = 1;
Benjamin Kramer8e5dc532014-12-06 13:12:56 +000070 return V;
71 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +000072
Benjamin Kramer8e5dc532014-12-06 13:12:56 +000073 static unsigned getHashValue(const APInt &Key) {
Chandler Carruth71bd7d12012-03-04 12:02:57 +000074 return static_cast<unsigned>(hash_value(Key));
Owen Anderson20b34ac2009-07-16 18:04:31 +000075 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +000076
Benjamin Kramer8e5dc532014-12-06 13:12:56 +000077 static bool isEqual(const APInt &LHS, const APInt &RHS) {
78 return LHS.getBitWidth() == RHS.getBitWidth() && LHS == RHS;
79 }
Owen Anderson20b34ac2009-07-16 18:04:31 +000080};
81
Benjamin Kramer079b96e2013-09-11 18:05:11 +000082struct DenseMapAPFloatKeyInfo {
Stephan Bergmann17c7f702016-12-14 11:57:17 +000083 static inline APFloat getEmptyKey() { return APFloat(APFloat::Bogus(), 1); }
84 static inline APFloat getTombstoneKey() { return APFloat(APFloat::Bogus(), 2); }
Eugene Zelenkode6cce22017-06-19 22:05:08 +000085
Benjamin Kramer8e5dc532014-12-06 13:12:56 +000086 static unsigned getHashValue(const APFloat &Key) {
Chandler Carruth71bd7d12012-03-04 12:02:57 +000087 return static_cast<unsigned>(hash_value(Key));
Owen Andersonc277dc42009-07-16 19:05:41 +000088 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +000089
Benjamin Kramer8e5dc532014-12-06 13:12:56 +000090 static bool isEqual(const APFloat &LHS, const APFloat &RHS) {
91 return LHS.bitwiseIsEqual(RHS);
92 }
Owen Andersonc277dc42009-07-16 19:05:41 +000093};
94
Benjamin Kramer079b96e2013-09-11 18:05:11 +000095struct AnonStructTypeKeyInfo {
Jay Foad529776c2012-02-23 09:17:40 +000096 struct KeyTy {
97 ArrayRef<Type*> ETypes;
98 bool isPacked;
Eugene Zelenkode6cce22017-06-19 22:05:08 +000099
Jay Foad529776c2012-02-23 09:17:40 +0000100 KeyTy(const ArrayRef<Type*>& E, bool P) :
101 ETypes(E), isPacked(P) {}
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000102
Rafael Espindola334b73f2014-11-21 18:53:05 +0000103 KeyTy(const StructType *ST)
104 : ETypes(ST->elements()), isPacked(ST->isPacked()) {}
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000105
Jay Foad529776c2012-02-23 09:17:40 +0000106 bool operator==(const KeyTy& that) const {
107 if (isPacked != that.isPacked)
108 return false;
109 if (ETypes != that.ETypes)
110 return false;
111 return true;
112 }
113 bool operator!=(const KeyTy& that) const {
114 return !this->operator==(that);
115 }
116 };
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000117
Jay Foad529776c2012-02-23 09:17:40 +0000118 static inline StructType* getEmptyKey() {
119 return DenseMapInfo<StructType*>::getEmptyKey();
120 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000121
Jay Foad529776c2012-02-23 09:17:40 +0000122 static inline StructType* getTombstoneKey() {
123 return DenseMapInfo<StructType*>::getTombstoneKey();
124 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000125
Jay Foad529776c2012-02-23 09:17:40 +0000126 static unsigned getHashValue(const KeyTy& Key) {
Chandler Carruth1d03a3b2012-03-01 18:55:25 +0000127 return hash_combine(hash_combine_range(Key.ETypes.begin(),
128 Key.ETypes.end()),
129 Key.isPacked);
Jay Foad529776c2012-02-23 09:17:40 +0000130 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000131
Jay Foad529776c2012-02-23 09:17:40 +0000132 static unsigned getHashValue(const StructType *ST) {
133 return getHashValue(KeyTy(ST));
134 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000135
Jay Foad529776c2012-02-23 09:17:40 +0000136 static bool isEqual(const KeyTy& LHS, const StructType *RHS) {
137 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
138 return false;
139 return LHS == KeyTy(RHS);
140 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000141
Jay Foad529776c2012-02-23 09:17:40 +0000142 static bool isEqual(const StructType *LHS, const StructType *RHS) {
143 return LHS == RHS;
144 }
145};
146
Benjamin Kramer079b96e2013-09-11 18:05:11 +0000147struct FunctionTypeKeyInfo {
Jay Foad529776c2012-02-23 09:17:40 +0000148 struct KeyTy {
149 const Type *ReturnType;
150 ArrayRef<Type*> Params;
151 bool isVarArg;
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000152
Jay Foad529776c2012-02-23 09:17:40 +0000153 KeyTy(const Type* R, const ArrayRef<Type*>& P, bool V) :
154 ReturnType(R), Params(P), isVarArg(V) {}
Rafael Espindolae973fd42014-11-21 19:03:35 +0000155 KeyTy(const FunctionType *FT)
156 : ReturnType(FT->getReturnType()), Params(FT->params()),
157 isVarArg(FT->isVarArg()) {}
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000158
Jay Foad529776c2012-02-23 09:17:40 +0000159 bool operator==(const KeyTy& that) const {
160 if (ReturnType != that.ReturnType)
161 return false;
162 if (isVarArg != that.isVarArg)
163 return false;
164 if (Params != that.Params)
165 return false;
166 return true;
167 }
168 bool operator!=(const KeyTy& that) const {
169 return !this->operator==(that);
170 }
171 };
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000172
Jay Foad529776c2012-02-23 09:17:40 +0000173 static inline FunctionType* getEmptyKey() {
174 return DenseMapInfo<FunctionType*>::getEmptyKey();
175 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000176
Jay Foad529776c2012-02-23 09:17:40 +0000177 static inline FunctionType* getTombstoneKey() {
178 return DenseMapInfo<FunctionType*>::getTombstoneKey();
179 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000180
Jay Foad529776c2012-02-23 09:17:40 +0000181 static unsigned getHashValue(const KeyTy& Key) {
Chandler Carruth1d03a3b2012-03-01 18:55:25 +0000182 return hash_combine(Key.ReturnType,
183 hash_combine_range(Key.Params.begin(),
184 Key.Params.end()),
185 Key.isVarArg);
Jay Foad529776c2012-02-23 09:17:40 +0000186 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000187
Jay Foad529776c2012-02-23 09:17:40 +0000188 static unsigned getHashValue(const FunctionType *FT) {
189 return getHashValue(KeyTy(FT));
190 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000191
Jay Foad529776c2012-02-23 09:17:40 +0000192 static bool isEqual(const KeyTy& LHS, const FunctionType *RHS) {
193 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
194 return false;
195 return LHS == KeyTy(RHS);
196 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000197
Jay Foad529776c2012-02-23 09:17:40 +0000198 static bool isEqual(const FunctionType *LHS, const FunctionType *RHS) {
199 return LHS == RHS;
200 }
201};
202
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000203/// Structure for hashing arbitrary MDNode operands.
Duncan P. N. Exon Smith93e983e2015-01-19 22:53:18 +0000204class MDNodeOpsKey {
205 ArrayRef<Metadata *> RawOps;
206 ArrayRef<MDOperand> Ops;
Duncan P. N. Exon Smith93e983e2015-01-19 22:53:18 +0000207 unsigned Hash;
208
209protected:
210 MDNodeOpsKey(ArrayRef<Metadata *> Ops)
211 : RawOps(Ops), Hash(calculateHash(Ops)) {}
212
213 template <class NodeTy>
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000214 MDNodeOpsKey(const NodeTy *N, unsigned Offset = 0)
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000215 : Ops(N->op_begin() + Offset, N->op_end()), Hash(N->getHash()) {}
Duncan P. N. Exon Smith93e983e2015-01-19 22:53:18 +0000216
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000217 template <class NodeTy>
218 bool compareOps(const NodeTy *RHS, unsigned Offset = 0) const {
Duncan P. N. Exon Smith93e983e2015-01-19 22:53:18 +0000219 if (getHash() != RHS->getHash())
220 return false;
221
222 assert((RawOps.empty() || Ops.empty()) && "Two sets of operands?");
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000223 return RawOps.empty() ? compareOps(Ops, RHS, Offset)
224 : compareOps(RawOps, RHS, Offset);
Duncan P. N. Exon Smith93e983e2015-01-19 22:53:18 +0000225 }
226
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000227 static unsigned calculateHash(MDNode *N, unsigned Offset = 0);
Duncan P. N. Exon Smith93e983e2015-01-19 22:53:18 +0000228
229private:
230 template <class T>
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000231 static bool compareOps(ArrayRef<T> Ops, const MDNode *RHS, unsigned Offset) {
232 if (Ops.size() != RHS->getNumOperands() - Offset)
Duncan P. N. Exon Smith93e983e2015-01-19 22:53:18 +0000233 return false;
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000234 return std::equal(Ops.begin(), Ops.end(), RHS->op_begin() + Offset);
Duncan P. N. Exon Smith93e983e2015-01-19 22:53:18 +0000235 }
236
237 static unsigned calculateHash(ArrayRef<Metadata *> Ops);
238
239public:
240 unsigned getHash() const { return Hash; }
241};
242
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000243template <class NodeTy> struct MDNodeKeyImpl;
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000244
Duncan P. N. Exon Smithf2291272016-04-16 23:42:04 +0000245/// Configuration point for MDNodeInfo::isEqual().
246template <class NodeTy> struct MDNodeSubsetEqualImpl {
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000247 using KeyTy = MDNodeKeyImpl<NodeTy>;
248
Duncan P. N. Exon Smithf2291272016-04-16 23:42:04 +0000249 static bool isSubsetEqual(const KeyTy &LHS, const NodeTy *RHS) {
250 return false;
251 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000252
Duncan P. N. Exon Smithf2291272016-04-16 23:42:04 +0000253 static bool isSubsetEqual(const NodeTy *LHS, const NodeTy *RHS) {
254 return false;
255 }
256};
257
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000258/// DenseMapInfo for MDTuple.
Duncan P. N. Exon Smithf39c3b82014-11-17 23:28:21 +0000259///
260/// Note that we don't need the is-function-local bit, since that's implicit in
261/// the operands.
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000262template <> struct MDNodeKeyImpl<MDTuple> : MDNodeOpsKey {
263 MDNodeKeyImpl(ArrayRef<Metadata *> Ops) : MDNodeOpsKey(Ops) {}
264 MDNodeKeyImpl(const MDTuple *N) : MDNodeOpsKey(N) {}
Duncan P. N. Exon Smithf39c3b82014-11-17 23:28:21 +0000265
Duncan P. N. Exon Smith9c26d802015-02-05 00:51:35 +0000266 bool isKeyOf(const MDTuple *RHS) const { return compareOps(RHS); }
Duncan P. N. Exon Smith93e983e2015-01-19 22:53:18 +0000267
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000268 unsigned getHashValue() const { return getHash(); }
269
270 static unsigned calculateHash(MDTuple *N) {
271 return MDNodeOpsKey::calculateHash(N);
Benjamin Kramer2335a5c2012-04-11 14:06:54 +0000272 }
273};
274
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000275/// DenseMapInfo for DILocation.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000276template <> struct MDNodeKeyImpl<DILocation> {
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000277 unsigned Line;
278 unsigned Column;
279 Metadata *Scope;
280 Metadata *InlinedAt;
Calixte Denizeteb7f6022018-09-20 08:53:06 +0000281 bool ImplicitCode;
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000282
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000283 MDNodeKeyImpl(unsigned Line, unsigned Column, Metadata *Scope,
Calixte Denizeteb7f6022018-09-20 08:53:06 +0000284 Metadata *InlinedAt, bool ImplicitCode)
285 : Line(Line), Column(Column), Scope(Scope), InlinedAt(InlinedAt),
286 ImplicitCode(ImplicitCode) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000287 MDNodeKeyImpl(const DILocation *L)
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +0000288 : Line(L->getLine()), Column(L->getColumn()), Scope(L->getRawScope()),
Calixte Denizeteb7f6022018-09-20 08:53:06 +0000289 InlinedAt(L->getRawInlinedAt()), ImplicitCode(L->isImplicitCode()) {}
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000290
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000291 bool isKeyOf(const DILocation *RHS) const {
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000292 return Line == RHS->getLine() && Column == RHS->getColumn() &&
Calixte Denizeteb7f6022018-09-20 08:53:06 +0000293 Scope == RHS->getRawScope() && InlinedAt == RHS->getRawInlinedAt() &&
294 ImplicitCode == RHS->isImplicitCode();
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000295 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000296
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000297 unsigned getHashValue() const {
Calixte Denizeteb7f6022018-09-20 08:53:06 +0000298 return hash_combine(Line, Column, Scope, InlinedAt, ImplicitCode);
Duncan P. N. Exon Smithde03ff52015-01-13 20:44:56 +0000299 }
300};
301
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000302/// DenseMapInfo for GenericDINode.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000303template <> struct MDNodeKeyImpl<GenericDINode> : MDNodeOpsKey {
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000304 unsigned Tag;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000305 MDString *Header;
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000306
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000307 MDNodeKeyImpl(unsigned Tag, MDString *Header, ArrayRef<Metadata *> DwarfOps)
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000308 : MDNodeOpsKey(DwarfOps), Tag(Tag), Header(Header) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000309 MDNodeKeyImpl(const GenericDINode *N)
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000310 : MDNodeOpsKey(N, 1), Tag(N->getTag()), Header(N->getRawHeader()) {}
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000311
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000312 bool isKeyOf(const GenericDINode *RHS) const {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000313 return Tag == RHS->getTag() && Header == RHS->getRawHeader() &&
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000314 compareOps(RHS, 1);
315 }
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000316
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000317 unsigned getHashValue() const { return hash_combine(getHash(), Tag, Header); }
318
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000319 static unsigned calculateHash(GenericDINode *N) {
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000320 return MDNodeOpsKey::calculateHash(N, 1);
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +0000321 }
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +0000322};
323
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000324template <> struct MDNodeKeyImpl<DISubrange> {
Sander de Smalenfdf40912018-01-24 09:56:07 +0000325 Metadata *CountNode;
Duncan P. N. Exon Smith5dcf6212015-04-07 00:39:59 +0000326 int64_t LowerBound;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000327
Sander de Smalenfdf40912018-01-24 09:56:07 +0000328 MDNodeKeyImpl(Metadata *CountNode, int64_t LowerBound)
329 : CountNode(CountNode), LowerBound(LowerBound) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000330 MDNodeKeyImpl(const DISubrange *N)
Sander de Smalenfdf40912018-01-24 09:56:07 +0000331 : CountNode(N->getRawCountNode()),
332 LowerBound(N->getLowerBound()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000333
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000334 bool isKeyOf(const DISubrange *RHS) const {
Sander de Smalenfdf40912018-01-24 09:56:07 +0000335 if (LowerBound != RHS->getLowerBound())
336 return false;
337
338 if (auto *RHSCount = RHS->getCount().dyn_cast<ConstantInt*>())
339 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode))
340 if (RHSCount->getSExtValue() ==
341 cast<ConstantInt>(MD->getValue())->getSExtValue())
342 return true;
343
344 return CountNode == RHS->getRawCountNode();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000345 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000346
Sander de Smalenfdf40912018-01-24 09:56:07 +0000347 unsigned getHashValue() const {
348 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode))
349 return hash_combine(cast<ConstantInt>(MD->getValue())->getSExtValue(),
350 LowerBound);
351 return hash_combine(CountNode, LowerBound);
352 }
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000353};
354
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000355template <> struct MDNodeKeyImpl<DIEnumerator> {
LemonBoyaad3d572020-04-18 11:31:38 -0700356 APInt Value;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000357 MDString *Name;
Momchil Velikov08dc66e2018-02-12 16:10:09 +0000358 bool IsUnsigned;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000359
LemonBoyaad3d572020-04-18 11:31:38 -0700360 MDNodeKeyImpl(APInt Value, bool IsUnsigned, MDString *Name)
Momchil Velikov08dc66e2018-02-12 16:10:09 +0000361 : Value(Value), Name(Name), IsUnsigned(IsUnsigned) {}
LemonBoyaad3d572020-04-18 11:31:38 -0700362 MDNodeKeyImpl(int64_t Value, bool IsUnsigned, MDString *Name)
363 : Value(APInt(64, Value, !IsUnsigned)), Name(Name),
364 IsUnsigned(IsUnsigned) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000365 MDNodeKeyImpl(const DIEnumerator *N)
Momchil Velikov08dc66e2018-02-12 16:10:09 +0000366 : Value(N->getValue()), Name(N->getRawName()),
367 IsUnsigned(N->isUnsigned()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000368
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000369 bool isKeyOf(const DIEnumerator *RHS) const {
LemonBoyaad3d572020-04-18 11:31:38 -0700370 return APInt::isSameValue(Value, RHS->getValue()) &&
371 IsUnsigned == RHS->isUnsigned() && Name == RHS->getRawName();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000372 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000373
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000374 unsigned getHashValue() const { return hash_combine(Value, Name); }
375};
376
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000377template <> struct MDNodeKeyImpl<DIBasicType> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000378 unsigned Tag;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000379 MDString *Name;
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +0000380 uint64_t SizeInBits;
Victor Leschuk197aa312016-10-18 14:31:22 +0000381 uint32_t AlignInBits;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000382 unsigned Encoding;
Adrian Prantl55f42622018-08-14 19:35:34 +0000383 unsigned Flags;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000384
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000385 MDNodeKeyImpl(unsigned Tag, MDString *Name, uint64_t SizeInBits,
Adrian Prantl55f42622018-08-14 19:35:34 +0000386 uint32_t AlignInBits, unsigned Encoding, unsigned Flags)
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000387 : Tag(Tag), Name(Name), SizeInBits(SizeInBits), AlignInBits(AlignInBits),
Adrian Prantl55f42622018-08-14 19:35:34 +0000388 Encoding(Encoding), Flags(Flags) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000389 MDNodeKeyImpl(const DIBasicType *N)
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000390 : Tag(N->getTag()), Name(N->getRawName()), SizeInBits(N->getSizeInBits()),
Adrian Prantl55f42622018-08-14 19:35:34 +0000391 AlignInBits(N->getAlignInBits()), Encoding(N->getEncoding()), Flags(N->getFlags()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000392
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000393 bool isKeyOf(const DIBasicType *RHS) const {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000394 return Tag == RHS->getTag() && Name == RHS->getRawName() &&
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000395 SizeInBits == RHS->getSizeInBits() &&
396 AlignInBits == RHS->getAlignInBits() &&
Adrian Prantl55f42622018-08-14 19:35:34 +0000397 Encoding == RHS->getEncoding() &&
398 Flags == RHS->getFlags();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000399 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000400
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000401 unsigned getHashValue() const {
402 return hash_combine(Tag, Name, SizeInBits, AlignInBits, Encoding);
403 }
404};
405
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000406template <> struct MDNodeKeyImpl<DIDerivedType> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000407 unsigned Tag;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000408 MDString *Name;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000409 Metadata *File;
410 unsigned Line;
411 Metadata *Scope;
412 Metadata *BaseType;
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +0000413 uint64_t SizeInBits;
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +0000414 uint64_t OffsetInBits;
Victor Leschuk197aa312016-10-18 14:31:22 +0000415 uint32_t AlignInBits;
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +0000416 Optional<unsigned> DWARFAddressSpace;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000417 unsigned Flags;
418 Metadata *ExtraData;
419
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000420 MDNodeKeyImpl(unsigned Tag, MDString *Name, Metadata *File, unsigned Line,
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +0000421 Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits,
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +0000422 uint32_t AlignInBits, uint64_t OffsetInBits,
423 Optional<unsigned> DWARFAddressSpace, unsigned Flags,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000424 Metadata *ExtraData)
425 : Tag(Tag), Name(Name), File(File), Line(Line), Scope(Scope),
Victor Leschuk197aa312016-10-18 14:31:22 +0000426 BaseType(BaseType), SizeInBits(SizeInBits), OffsetInBits(OffsetInBits),
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +0000427 AlignInBits(AlignInBits), DWARFAddressSpace(DWARFAddressSpace),
428 Flags(Flags), ExtraData(ExtraData) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000429 MDNodeKeyImpl(const DIDerivedType *N)
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000430 : Tag(N->getTag()), Name(N->getRawName()), File(N->getRawFile()),
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +0000431 Line(N->getLine()), Scope(N->getRawScope()),
432 BaseType(N->getRawBaseType()), SizeInBits(N->getSizeInBits()),
Victor Leschuk197aa312016-10-18 14:31:22 +0000433 OffsetInBits(N->getOffsetInBits()), AlignInBits(N->getAlignInBits()),
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +0000434 DWARFAddressSpace(N->getDWARFAddressSpace()), Flags(N->getFlags()),
435 ExtraData(N->getRawExtraData()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000436
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000437 bool isKeyOf(const DIDerivedType *RHS) const {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000438 return Tag == RHS->getTag() && Name == RHS->getRawName() &&
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +0000439 File == RHS->getRawFile() && Line == RHS->getLine() &&
440 Scope == RHS->getRawScope() && BaseType == RHS->getRawBaseType() &&
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000441 SizeInBits == RHS->getSizeInBits() &&
442 AlignInBits == RHS->getAlignInBits() &&
Konstantin Zhuravlyovd5561e02017-03-08 23:55:44 +0000443 OffsetInBits == RHS->getOffsetInBits() &&
444 DWARFAddressSpace == RHS->getDWARFAddressSpace() &&
445 Flags == RHS->getFlags() &&
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +0000446 ExtraData == RHS->getRawExtraData();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000447 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000448
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000449 unsigned getHashValue() const {
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000450 // If this is a member inside an ODR type, only hash the type and the name.
451 // Otherwise the hash will be stronger than
452 // MDNodeSubsetEqualImpl::isODRMember().
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000453 if (Tag == dwarf::DW_TAG_member && Name)
454 if (auto *CT = dyn_cast_or_null<DICompositeType>(Scope))
455 if (CT->getRawIdentifier())
456 return hash_combine(Name, Scope);
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000457
Mehdi Amini9bc362a2016-03-19 01:06:24 +0000458 // Intentionally computes the hash on a subset of the operands for
459 // performance reason. The subset has to be significant enough to avoid
460 // collision "most of the time". There is no correctness issue in case of
461 // collision because of the full check above.
Mehdi Amini53fc3892016-03-19 00:59:26 +0000462 return hash_combine(Tag, Name, File, Line, Scope, BaseType, Flags);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000463 }
464};
465
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000466template <> struct MDNodeSubsetEqualImpl<DIDerivedType> {
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000467 using KeyTy = MDNodeKeyImpl<DIDerivedType>;
468
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000469 static bool isSubsetEqual(const KeyTy &LHS, const DIDerivedType *RHS) {
470 return isODRMember(LHS.Tag, LHS.Scope, LHS.Name, RHS);
471 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000472
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000473 static bool isSubsetEqual(const DIDerivedType *LHS, const DIDerivedType *RHS) {
474 return isODRMember(LHS->getTag(), LHS->getRawScope(), LHS->getRawName(),
475 RHS);
476 }
477
478 /// Subprograms compare equal if they declare the same function in an ODR
479 /// type.
480 static bool isODRMember(unsigned Tag, const Metadata *Scope,
481 const MDString *Name, const DIDerivedType *RHS) {
482 // Check whether the LHS is eligible.
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000483 if (Tag != dwarf::DW_TAG_member || !Name)
484 return false;
485
486 auto *CT = dyn_cast_or_null<DICompositeType>(Scope);
487 if (!CT || !CT->getRawIdentifier())
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000488 return false;
489
490 // Compare to the RHS.
491 return Tag == RHS->getTag() && Name == RHS->getRawName() &&
492 Scope == RHS->getRawScope();
493 }
494};
495
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000496template <> struct MDNodeKeyImpl<DICompositeType> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000497 unsigned Tag;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000498 MDString *Name;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000499 Metadata *File;
500 unsigned Line;
501 Metadata *Scope;
502 Metadata *BaseType;
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +0000503 uint64_t SizeInBits;
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +0000504 uint64_t OffsetInBits;
Victor Leschuk197aa312016-10-18 14:31:22 +0000505 uint32_t AlignInBits;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000506 unsigned Flags;
507 Metadata *Elements;
508 unsigned RuntimeLang;
509 Metadata *VTableHolder;
510 Metadata *TemplateParams;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000511 MDString *Identifier;
Adrian Prantl8c599212018-02-06 23:45:59 +0000512 Metadata *Discriminator;
Alok Kumar Sharma4042ada2020-05-15 11:24:27 +0530513 Metadata *DataLocation;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000514
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000515 MDNodeKeyImpl(unsigned Tag, MDString *Name, Metadata *File, unsigned Line,
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +0000516 Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits,
Victor Leschuk197aa312016-10-18 14:31:22 +0000517 uint32_t AlignInBits, uint64_t OffsetInBits, unsigned Flags,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000518 Metadata *Elements, unsigned RuntimeLang,
519 Metadata *VTableHolder, Metadata *TemplateParams,
Alok Kumar Sharma4042ada2020-05-15 11:24:27 +0530520 MDString *Identifier, Metadata *Discriminator,
521 Metadata *DataLocation)
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000522 : Tag(Tag), Name(Name), File(File), Line(Line), Scope(Scope),
Victor Leschuk197aa312016-10-18 14:31:22 +0000523 BaseType(BaseType), SizeInBits(SizeInBits), OffsetInBits(OffsetInBits),
524 AlignInBits(AlignInBits), Flags(Flags), Elements(Elements),
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000525 RuntimeLang(RuntimeLang), VTableHolder(VTableHolder),
Adrian Prantl8c599212018-02-06 23:45:59 +0000526 TemplateParams(TemplateParams), Identifier(Identifier),
Alok Kumar Sharma4042ada2020-05-15 11:24:27 +0530527 Discriminator(Discriminator), DataLocation(DataLocation) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000528 MDNodeKeyImpl(const DICompositeType *N)
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000529 : Tag(N->getTag()), Name(N->getRawName()), File(N->getRawFile()),
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +0000530 Line(N->getLine()), Scope(N->getRawScope()),
531 BaseType(N->getRawBaseType()), SizeInBits(N->getSizeInBits()),
Victor Leschuk197aa312016-10-18 14:31:22 +0000532 OffsetInBits(N->getOffsetInBits()), AlignInBits(N->getAlignInBits()),
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +0000533 Flags(N->getFlags()), Elements(N->getRawElements()),
534 RuntimeLang(N->getRuntimeLang()), VTableHolder(N->getRawVTableHolder()),
535 TemplateParams(N->getRawTemplateParams()),
Adrian Prantl8c599212018-02-06 23:45:59 +0000536 Identifier(N->getRawIdentifier()),
Alok Kumar Sharma4042ada2020-05-15 11:24:27 +0530537 Discriminator(N->getRawDiscriminator()),
538 DataLocation(N->getRawDataLocation()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000539
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000540 bool isKeyOf(const DICompositeType *RHS) const {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000541 return Tag == RHS->getTag() && Name == RHS->getRawName() &&
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +0000542 File == RHS->getRawFile() && Line == RHS->getLine() &&
543 Scope == RHS->getRawScope() && BaseType == RHS->getRawBaseType() &&
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000544 SizeInBits == RHS->getSizeInBits() &&
545 AlignInBits == RHS->getAlignInBits() &&
546 OffsetInBits == RHS->getOffsetInBits() && Flags == RHS->getFlags() &&
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +0000547 Elements == RHS->getRawElements() &&
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000548 RuntimeLang == RHS->getRuntimeLang() &&
Duncan P. N. Exon Smith53855f02015-03-27 23:05:04 +0000549 VTableHolder == RHS->getRawVTableHolder() &&
550 TemplateParams == RHS->getRawTemplateParams() &&
Adrian Prantl8c599212018-02-06 23:45:59 +0000551 Identifier == RHS->getRawIdentifier() &&
Alok Kumar Sharma4042ada2020-05-15 11:24:27 +0530552 Discriminator == RHS->getRawDiscriminator() &&
553 DataLocation == RHS->getRawDataLocation();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000554 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000555
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000556 unsigned getHashValue() const {
Mehdi Amini9bc362a2016-03-19 01:06:24 +0000557 // Intentionally computes the hash on a subset of the operands for
558 // performance reason. The subset has to be significant enough to avoid
559 // collision "most of the time". There is no correctness issue in case of
560 // collision because of the full check above.
Mehdi Amini53fc3892016-03-19 00:59:26 +0000561 return hash_combine(Name, File, Line, BaseType, Scope, Elements,
562 TemplateParams);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000563 }
564};
565
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000566template <> struct MDNodeKeyImpl<DISubroutineType> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000567 unsigned Flags;
Reid Klecknerde3d8b52016-06-08 20:34:29 +0000568 uint8_t CC;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000569 Metadata *TypeArray;
570
Reid Klecknerde3d8b52016-06-08 20:34:29 +0000571 MDNodeKeyImpl(unsigned Flags, uint8_t CC, Metadata *TypeArray)
572 : Flags(Flags), CC(CC), TypeArray(TypeArray) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000573 MDNodeKeyImpl(const DISubroutineType *N)
Reid Klecknerde3d8b52016-06-08 20:34:29 +0000574 : Flags(N->getFlags()), CC(N->getCC()), TypeArray(N->getRawTypeArray()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000575
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000576 bool isKeyOf(const DISubroutineType *RHS) const {
Reid Klecknerde3d8b52016-06-08 20:34:29 +0000577 return Flags == RHS->getFlags() && CC == RHS->getCC() &&
578 TypeArray == RHS->getRawTypeArray();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000579 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000580
Reid Klecknerde3d8b52016-06-08 20:34:29 +0000581 unsigned getHashValue() const { return hash_combine(Flags, CC, TypeArray); }
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000582};
583
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000584template <> struct MDNodeKeyImpl<DIFile> {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000585 MDString *Filename;
586 MDString *Directory;
Scott Linder71603842018-02-12 19:45:54 +0000587 Optional<DIFile::ChecksumInfo<MDString *>> Checksum;
Scott Linder16c7bda2018-02-23 23:01:06 +0000588 Optional<MDString *> Source;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000589
Amjad Aboud7faeecc2016-12-25 10:12:09 +0000590 MDNodeKeyImpl(MDString *Filename, MDString *Directory,
Scott Linder16c7bda2018-02-23 23:01:06 +0000591 Optional<DIFile::ChecksumInfo<MDString *>> Checksum,
592 Optional<MDString *> Source)
593 : Filename(Filename), Directory(Directory), Checksum(Checksum),
594 Source(Source) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000595 MDNodeKeyImpl(const DIFile *N)
Amjad Aboud7faeecc2016-12-25 10:12:09 +0000596 : Filename(N->getRawFilename()), Directory(N->getRawDirectory()),
Scott Linder16c7bda2018-02-23 23:01:06 +0000597 Checksum(N->getRawChecksum()), Source(N->getRawSource()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000598
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000599 bool isKeyOf(const DIFile *RHS) const {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000600 return Filename == RHS->getRawFilename() &&
Amjad Aboud7faeecc2016-12-25 10:12:09 +0000601 Directory == RHS->getRawDirectory() &&
Scott Linder16c7bda2018-02-23 23:01:06 +0000602 Checksum == RHS->getRawChecksum() &&
603 Source == RHS->getRawSource();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000604 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000605
Amjad Aboud7faeecc2016-12-25 10:12:09 +0000606 unsigned getHashValue() const {
Scott Linder16c7bda2018-02-23 23:01:06 +0000607 return hash_combine(
608 Filename, Directory, Checksum ? Checksum->Kind : 0,
609 Checksum ? Checksum->Value : nullptr, Source.getValueOr(nullptr));
Amjad Aboud7faeecc2016-12-25 10:12:09 +0000610 }
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000611};
612
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000613template <> struct MDNodeKeyImpl<DISubprogram> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000614 Metadata *Scope;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000615 MDString *Name;
616 MDString *LinkageName;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000617 Metadata *File;
618 unsigned Line;
619 Metadata *Type;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000620 unsigned ScopeLine;
621 Metadata *ContainingType;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000622 unsigned VirtualIndex;
Reid Klecknerb5af11d2016-07-01 02:41:21 +0000623 int ThisAdjustment;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000624 unsigned Flags;
Paul Robinsoncda54212018-11-19 18:29:28 +0000625 unsigned SPFlags;
Adrian Prantl75819ae2016-04-15 15:57:41 +0000626 Metadata *Unit;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000627 Metadata *TemplateParams;
628 Metadata *Declaration;
Shiva Chen2c864552018-05-09 02:40:45 +0000629 Metadata *RetainedNodes;
Adrian Prantl1d12b882017-04-26 22:56:44 +0000630 Metadata *ThrownTypes;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000631
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000632 MDNodeKeyImpl(Metadata *Scope, MDString *Name, MDString *LinkageName,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000633 Metadata *File, unsigned Line, Metadata *Type,
Paul Robinsoncda54212018-11-19 18:29:28 +0000634 unsigned ScopeLine, Metadata *ContainingType,
Reid Klecknerb5af11d2016-07-01 02:41:21 +0000635 unsigned VirtualIndex, int ThisAdjustment, unsigned Flags,
Paul Robinsoncda54212018-11-19 18:29:28 +0000636 unsigned SPFlags, Metadata *Unit, Metadata *TemplateParams,
Shiva Chen2c864552018-05-09 02:40:45 +0000637 Metadata *Declaration, Metadata *RetainedNodes,
Adrian Prantl1d12b882017-04-26 22:56:44 +0000638 Metadata *ThrownTypes)
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000639 : Scope(Scope), Name(Name), LinkageName(LinkageName), File(File),
Paul Robinsoncda54212018-11-19 18:29:28 +0000640 Line(Line), Type(Type), ScopeLine(ScopeLine),
641 ContainingType(ContainingType), VirtualIndex(VirtualIndex),
642 ThisAdjustment(ThisAdjustment), Flags(Flags), SPFlags(SPFlags),
643 Unit(Unit), TemplateParams(TemplateParams), Declaration(Declaration),
Shiva Chen2c864552018-05-09 02:40:45 +0000644 RetainedNodes(RetainedNodes), ThrownTypes(ThrownTypes) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000645 MDNodeKeyImpl(const DISubprogram *N)
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000646 : Scope(N->getRawScope()), Name(N->getRawName()),
647 LinkageName(N->getRawLinkageName()), File(N->getRawFile()),
Paul Robinsoncda54212018-11-19 18:29:28 +0000648 Line(N->getLine()), Type(N->getRawType()), ScopeLine(N->getScopeLine()),
649 ContainingType(N->getRawContainingType()),
650 VirtualIndex(N->getVirtualIndex()),
Reid Klecknerb5af11d2016-07-01 02:41:21 +0000651 ThisAdjustment(N->getThisAdjustment()), Flags(N->getFlags()),
Paul Robinsoncda54212018-11-19 18:29:28 +0000652 SPFlags(N->getSPFlags()), Unit(N->getRawUnit()),
Reid Klecknerb5af11d2016-07-01 02:41:21 +0000653 TemplateParams(N->getRawTemplateParams()),
Paul Robinsoncda54212018-11-19 18:29:28 +0000654 Declaration(N->getRawDeclaration()),
655 RetainedNodes(N->getRawRetainedNodes()),
Adrian Prantl1d12b882017-04-26 22:56:44 +0000656 ThrownTypes(N->getRawThrownTypes()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000657
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000658 bool isKeyOf(const DISubprogram *RHS) const {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000659 return Scope == RHS->getRawScope() && Name == RHS->getRawName() &&
660 LinkageName == RHS->getRawLinkageName() &&
661 File == RHS->getRawFile() && Line == RHS->getLine() &&
Paul Robinsoncda54212018-11-19 18:29:28 +0000662 Type == RHS->getRawType() && ScopeLine == RHS->getScopeLine() &&
Duncan P. N. Exon Smith869db502015-03-30 16:19:15 +0000663 ContainingType == RHS->getRawContainingType() &&
Reid Klecknerb5af11d2016-07-01 02:41:21 +0000664 VirtualIndex == RHS->getVirtualIndex() &&
665 ThisAdjustment == RHS->getThisAdjustment() &&
Paul Robinsoncda54212018-11-19 18:29:28 +0000666 Flags == RHS->getFlags() && SPFlags == RHS->getSPFlags() &&
Reid Klecknerb5af11d2016-07-01 02:41:21 +0000667 Unit == RHS->getUnit() &&
Duncan P. N. Exon Smith869db502015-03-30 16:19:15 +0000668 TemplateParams == RHS->getRawTemplateParams() &&
669 Declaration == RHS->getRawDeclaration() &&
Shiva Chen2c864552018-05-09 02:40:45 +0000670 RetainedNodes == RHS->getRawRetainedNodes() &&
Adrian Prantl1d12b882017-04-26 22:56:44 +0000671 ThrownTypes == RHS->getRawThrownTypes();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000672 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000673
Paul Robinsoncda54212018-11-19 18:29:28 +0000674 bool isDefinition() const { return SPFlags & DISubprogram::SPFlagDefinition; }
675
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000676 unsigned getHashValue() const {
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000677 // If this is a declaration inside an ODR type, only hash the type and the
678 // name. Otherwise the hash will be stronger than
679 // MDNodeSubsetEqualImpl::isDeclarationOfODRMember().
Paul Robinsoncda54212018-11-19 18:29:28 +0000680 if (!isDefinition() && LinkageName)
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000681 if (auto *CT = dyn_cast_or_null<DICompositeType>(Scope))
682 if (CT->getRawIdentifier())
683 return hash_combine(LinkageName, Scope);
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000684
Mehdi Amini9bc362a2016-03-19 01:06:24 +0000685 // Intentionally computes the hash on a subset of the operands for
686 // performance reason. The subset has to be significant enough to avoid
687 // collision "most of the time". There is no correctness issue in case of
688 // collision because of the full check above.
Mehdi Amini53fc3892016-03-19 00:59:26 +0000689 return hash_combine(Name, Scope, File, Type, Line);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000690 }
691};
692
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000693template <> struct MDNodeSubsetEqualImpl<DISubprogram> {
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000694 using KeyTy = MDNodeKeyImpl<DISubprogram>;
695
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000696 static bool isSubsetEqual(const KeyTy &LHS, const DISubprogram *RHS) {
Paul Robinsoncda54212018-11-19 18:29:28 +0000697 return isDeclarationOfODRMember(LHS.isDefinition(), LHS.Scope,
Peter Collingbournee69e73c2017-02-06 21:23:03 +0000698 LHS.LinkageName, LHS.TemplateParams, RHS);
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000699 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000700
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000701 static bool isSubsetEqual(const DISubprogram *LHS, const DISubprogram *RHS) {
702 return isDeclarationOfODRMember(LHS->isDefinition(), LHS->getRawScope(),
Peter Collingbournee69e73c2017-02-06 21:23:03 +0000703 LHS->getRawLinkageName(),
704 LHS->getRawTemplateParams(), RHS);
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000705 }
706
707 /// Subprograms compare equal if they declare the same function in an ODR
708 /// type.
709 static bool isDeclarationOfODRMember(bool IsDefinition, const Metadata *Scope,
710 const MDString *LinkageName,
Peter Collingbournee69e73c2017-02-06 21:23:03 +0000711 const Metadata *TemplateParams,
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000712 const DISubprogram *RHS) {
713 // Check whether the LHS is eligible.
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000714 if (IsDefinition || !Scope || !LinkageName)
715 return false;
716
717 auto *CT = dyn_cast_or_null<DICompositeType>(Scope);
718 if (!CT || !CT->getRawIdentifier())
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000719 return false;
720
721 // Compare to the RHS.
Peter Collingbournee69e73c2017-02-06 21:23:03 +0000722 // FIXME: We need to compare template parameters here to avoid incorrect
723 // collisions in mapMetadata when RF_MoveDistinctMDs and a ODR-DISubprogram
724 // has a non-ODR template parameter (i.e., a DICompositeType that does not
725 // have an identifier). Eventually we should decouple ODR logic from
726 // uniquing logic.
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000727 return IsDefinition == RHS->isDefinition() && Scope == RHS->getRawScope() &&
Peter Collingbournee69e73c2017-02-06 21:23:03 +0000728 LinkageName == RHS->getRawLinkageName() &&
729 TemplateParams == RHS->getRawTemplateParams();
Duncan P. N. Exon Smith05ebfd02016-04-17 02:30:20 +0000730 }
731};
732
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000733template <> struct MDNodeKeyImpl<DILexicalBlock> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000734 Metadata *Scope;
735 Metadata *File;
736 unsigned Line;
737 unsigned Column;
738
739 MDNodeKeyImpl(Metadata *Scope, Metadata *File, unsigned Line, unsigned Column)
740 : Scope(Scope), File(File), Line(Line), Column(Column) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000741 MDNodeKeyImpl(const DILexicalBlock *N)
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +0000742 : Scope(N->getRawScope()), File(N->getRawFile()), Line(N->getLine()),
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000743 Column(N->getColumn()) {}
744
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000745 bool isKeyOf(const DILexicalBlock *RHS) const {
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +0000746 return Scope == RHS->getRawScope() && File == RHS->getRawFile() &&
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000747 Line == RHS->getLine() && Column == RHS->getColumn();
748 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000749
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000750 unsigned getHashValue() const {
751 return hash_combine(Scope, File, Line, Column);
752 }
753};
754
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000755template <> struct MDNodeKeyImpl<DILexicalBlockFile> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000756 Metadata *Scope;
757 Metadata *File;
758 unsigned Discriminator;
759
760 MDNodeKeyImpl(Metadata *Scope, Metadata *File, unsigned Discriminator)
761 : Scope(Scope), File(File), Discriminator(Discriminator) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000762 MDNodeKeyImpl(const DILexicalBlockFile *N)
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +0000763 : Scope(N->getRawScope()), File(N->getRawFile()),
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000764 Discriminator(N->getDiscriminator()) {}
765
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000766 bool isKeyOf(const DILexicalBlockFile *RHS) const {
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +0000767 return Scope == RHS->getRawScope() && File == RHS->getRawFile() &&
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000768 Discriminator == RHS->getDiscriminator();
769 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000770
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000771 unsigned getHashValue() const {
772 return hash_combine(Scope, File, Discriminator);
773 }
774};
775
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000776template <> struct MDNodeKeyImpl<DINamespace> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000777 Metadata *Scope;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000778 MDString *Name;
Adrian Prantldbfda632016-11-03 19:42:02 +0000779 bool ExportSymbols;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000780
Adrian Prantlfed4f392017-04-28 22:25:46 +0000781 MDNodeKeyImpl(Metadata *Scope, MDString *Name, bool ExportSymbols)
782 : Scope(Scope), Name(Name), ExportSymbols(ExportSymbols) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000783 MDNodeKeyImpl(const DINamespace *N)
Adrian Prantlfed4f392017-04-28 22:25:46 +0000784 : Scope(N->getRawScope()), Name(N->getRawName()),
785 ExportSymbols(N->getExportSymbols()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000786
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000787 bool isKeyOf(const DINamespace *RHS) const {
Adrian Prantlfed4f392017-04-28 22:25:46 +0000788 return Scope == RHS->getRawScope() && Name == RHS->getRawName() &&
Adrian Prantldbfda632016-11-03 19:42:02 +0000789 ExportSymbols == RHS->getExportSymbols();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000790 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000791
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000792 unsigned getHashValue() const {
Adrian Prantlfed4f392017-04-28 22:25:46 +0000793 return hash_combine(Scope, Name);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000794 }
795};
796
Adrian Prantl6ed57062019-04-08 19:13:55 +0000797template <> struct MDNodeKeyImpl<DICommonBlock> {
798 Metadata *Scope;
799 Metadata *Decl;
800 MDString *Name;
801 Metadata *File;
802 unsigned LineNo;
803
804 MDNodeKeyImpl(Metadata *Scope, Metadata *Decl, MDString *Name,
805 Metadata *File, unsigned LineNo)
806 : Scope(Scope), Decl(Decl), Name(Name), File(File), LineNo(LineNo) {}
807 MDNodeKeyImpl(const DICommonBlock *N)
808 : Scope(N->getRawScope()), Decl(N->getRawDecl()), Name(N->getRawName()),
809 File(N->getRawFile()), LineNo(N->getLineNo()) {}
810
811 bool isKeyOf(const DICommonBlock *RHS) const {
812 return Scope == RHS->getRawScope() && Decl == RHS->getRawDecl() &&
813 Name == RHS->getRawName() && File == RHS->getRawFile() &&
814 LineNo == RHS->getLineNo();
815 }
816
817 unsigned getHashValue() const {
818 return hash_combine(Scope, Decl, Name, File, LineNo);
819 }
820};
821
Adrian Prantlab1243f2015-06-29 23:03:47 +0000822template <> struct MDNodeKeyImpl<DIModule> {
Sourabh Singh Tomare59744f2020-05-08 11:31:41 +0530823 Metadata *File;
Adrian Prantlab1243f2015-06-29 23:03:47 +0000824 Metadata *Scope;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000825 MDString *Name;
826 MDString *ConfigurationMacros;
827 MDString *IncludePath;
Adrian Prantld5180ea2020-03-03 16:05:23 -0800828 MDString *APINotesFile;
Sourabh Singh Tomare59744f2020-05-08 11:31:41 +0530829 unsigned LineNo;
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000830
Sourabh Singh Tomare59744f2020-05-08 11:31:41 +0530831 MDNodeKeyImpl(Metadata *File, Metadata *Scope, MDString *Name,
832 MDString *ConfigurationMacros, MDString *IncludePath,
833 MDString *APINotesFile, unsigned LineNo)
834 : File(File), Scope(Scope), Name(Name),
835 ConfigurationMacros(ConfigurationMacros), IncludePath(IncludePath),
836 APINotesFile(APINotesFile), LineNo(LineNo) {}
Adrian Prantlab1243f2015-06-29 23:03:47 +0000837 MDNodeKeyImpl(const DIModule *N)
Sourabh Singh Tomare59744f2020-05-08 11:31:41 +0530838 : File(N->getRawFile()), Scope(N->getRawScope()), Name(N->getRawName()),
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000839 ConfigurationMacros(N->getRawConfigurationMacros()),
Adrian Prantld5180ea2020-03-03 16:05:23 -0800840 IncludePath(N->getRawIncludePath()),
Sourabh Singh Tomare59744f2020-05-08 11:31:41 +0530841 APINotesFile(N->getRawAPINotesFile()), LineNo(N->getLineNo()) {}
Adrian Prantlab1243f2015-06-29 23:03:47 +0000842
843 bool isKeyOf(const DIModule *RHS) const {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000844 return Scope == RHS->getRawScope() && Name == RHS->getRawName() &&
845 ConfigurationMacros == RHS->getRawConfigurationMacros() &&
Adrian Prantld5180ea2020-03-03 16:05:23 -0800846 IncludePath == RHS->getRawIncludePath() &&
Sourabh Singh Tomare59744f2020-05-08 11:31:41 +0530847 APINotesFile == RHS->getRawAPINotesFile() &&
848 File == RHS->getRawFile() && LineNo == RHS->getLineNo();
Adrian Prantlab1243f2015-06-29 23:03:47 +0000849 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000850
Adrian Prantlab1243f2015-06-29 23:03:47 +0000851 unsigned getHashValue() const {
Adrian Prantl7b303702020-01-14 13:37:04 -0800852 return hash_combine(Scope, Name, ConfigurationMacros, IncludePath);
Adrian Prantlab1243f2015-06-29 23:03:47 +0000853 }
854};
855
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000856template <> struct MDNodeKeyImpl<DITemplateTypeParameter> {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000857 MDString *Name;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000858 Metadata *Type;
Awanish Pandey7a42bab2020-03-02 10:52:12 +0530859 bool IsDefault;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000860
Awanish Pandey7a42bab2020-03-02 10:52:12 +0530861 MDNodeKeyImpl(MDString *Name, Metadata *Type, bool IsDefault)
862 : Name(Name), Type(Type), IsDefault(IsDefault) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000863 MDNodeKeyImpl(const DITemplateTypeParameter *N)
Awanish Pandey7a42bab2020-03-02 10:52:12 +0530864 : Name(N->getRawName()), Type(N->getRawType()),
865 IsDefault(N->isDefault()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000866
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000867 bool isKeyOf(const DITemplateTypeParameter *RHS) const {
Awanish Pandey7a42bab2020-03-02 10:52:12 +0530868 return Name == RHS->getRawName() && Type == RHS->getRawType() &&
869 IsDefault == RHS->isDefault();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000870 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000871
Awanish Pandey7a42bab2020-03-02 10:52:12 +0530872 unsigned getHashValue() const { return hash_combine(Name, Type, IsDefault); }
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000873};
874
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000875template <> struct MDNodeKeyImpl<DITemplateValueParameter> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000876 unsigned Tag;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000877 MDString *Name;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000878 Metadata *Type;
Awanish Pandey7a42bab2020-03-02 10:52:12 +0530879 bool IsDefault;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000880 Metadata *Value;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000881
Awanish Pandey7a42bab2020-03-02 10:52:12 +0530882 MDNodeKeyImpl(unsigned Tag, MDString *Name, Metadata *Type, bool IsDefault,
883 Metadata *Value)
884 : Tag(Tag), Name(Name), Type(Type), IsDefault(IsDefault), Value(Value) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000885 MDNodeKeyImpl(const DITemplateValueParameter *N)
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000886 : Tag(N->getTag()), Name(N->getRawName()), Type(N->getRawType()),
Awanish Pandey7a42bab2020-03-02 10:52:12 +0530887 IsDefault(N->isDefault()), Value(N->getValue()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000888
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000889 bool isKeyOf(const DITemplateValueParameter *RHS) const {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000890 return Tag == RHS->getTag() && Name == RHS->getRawName() &&
Awanish Pandey7a42bab2020-03-02 10:52:12 +0530891 Type == RHS->getRawType() && IsDefault == RHS->isDefault() &&
892 Value == RHS->getValue();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000893 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000894
Awanish Pandey7a42bab2020-03-02 10:52:12 +0530895 unsigned getHashValue() const {
896 return hash_combine(Tag, Name, Type, IsDefault, Value);
897 }
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000898};
899
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000900template <> struct MDNodeKeyImpl<DIGlobalVariable> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000901 Metadata *Scope;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000902 MDString *Name;
903 MDString *LinkageName;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000904 Metadata *File;
905 unsigned Line;
906 Metadata *Type;
907 bool IsLocalToUnit;
908 bool IsDefinition;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000909 Metadata *StaticDataMemberDeclaration;
Matthew Vossf8ab35a2018-10-03 18:44:53 +0000910 Metadata *TemplateParams;
Victor Leschuka37660c2016-10-26 21:32:29 +0000911 uint32_t AlignInBits;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000912
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000913 MDNodeKeyImpl(Metadata *Scope, MDString *Name, MDString *LinkageName,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000914 Metadata *File, unsigned Line, Metadata *Type,
Victor Leschuk2ede1262016-10-20 00:13:12 +0000915 bool IsLocalToUnit, bool IsDefinition,
Matthew Vossf8ab35a2018-10-03 18:44:53 +0000916 Metadata *StaticDataMemberDeclaration, Metadata *TemplateParams,
917 uint32_t AlignInBits)
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000918 : Scope(Scope), Name(Name), LinkageName(LinkageName), File(File),
919 Line(Line), Type(Type), IsLocalToUnit(IsLocalToUnit),
Adrian Prantlbceaaa92016-12-20 02:09:43 +0000920 IsDefinition(IsDefinition),
Victor Leschuk2ede1262016-10-20 00:13:12 +0000921 StaticDataMemberDeclaration(StaticDataMemberDeclaration),
Matthew Vossf8ab35a2018-10-03 18:44:53 +0000922 TemplateParams(TemplateParams), AlignInBits(AlignInBits) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000923 MDNodeKeyImpl(const DIGlobalVariable *N)
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000924 : Scope(N->getRawScope()), Name(N->getRawName()),
925 LinkageName(N->getRawLinkageName()), File(N->getRawFile()),
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +0000926 Line(N->getLine()), Type(N->getRawType()),
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000927 IsLocalToUnit(N->isLocalToUnit()), IsDefinition(N->isDefinition()),
Victor Leschuk2ede1262016-10-20 00:13:12 +0000928 StaticDataMemberDeclaration(N->getRawStaticDataMemberDeclaration()),
Matthew Vossf8ab35a2018-10-03 18:44:53 +0000929 TemplateParams(N->getRawTemplateParams()),
Victor Leschuk2ede1262016-10-20 00:13:12 +0000930 AlignInBits(N->getAlignInBits()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000931
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000932 bool isKeyOf(const DIGlobalVariable *RHS) const {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000933 return Scope == RHS->getRawScope() && Name == RHS->getRawName() &&
934 LinkageName == RHS->getRawLinkageName() &&
935 File == RHS->getRawFile() && Line == RHS->getLine() &&
936 Type == RHS->getRawType() && IsLocalToUnit == RHS->isLocalToUnit() &&
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000937 IsDefinition == RHS->isDefinition() &&
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +0000938 StaticDataMemberDeclaration ==
Victor Leschuk2ede1262016-10-20 00:13:12 +0000939 RHS->getRawStaticDataMemberDeclaration() &&
Matthew Vossf8ab35a2018-10-03 18:44:53 +0000940 TemplateParams == RHS->getRawTemplateParams() &&
Victor Leschuk2ede1262016-10-20 00:13:12 +0000941 AlignInBits == RHS->getAlignInBits();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000942 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000943
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000944 unsigned getHashValue() const {
Victor Leschuk2ede1262016-10-20 00:13:12 +0000945 // We do not use AlignInBits in hashing function here on purpose:
946 // in most cases this param for local variable is zero (for function param
947 // it is always zero). This leads to lots of hash collisions and errors on
948 // cases with lots of similar variables.
949 // clang/test/CodeGen/debug-info-257-args.c is an example of this problem,
950 // generated IR is random for each run and test fails with Align included.
951 // TODO: make hashing work fine with such situations
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000952 return hash_combine(Scope, Name, LinkageName, File, Line, Type,
Adrian Prantlbceaaa92016-12-20 02:09:43 +0000953 IsLocalToUnit, IsDefinition, /* AlignInBits, */
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000954 StaticDataMemberDeclaration);
955 }
956};
957
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000958template <> struct MDNodeKeyImpl<DILocalVariable> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000959 Metadata *Scope;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000960 MDString *Name;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000961 Metadata *File;
962 unsigned Line;
963 Metadata *Type;
964 unsigned Arg;
965 unsigned Flags;
Victor Leschuka37660c2016-10-26 21:32:29 +0000966 uint32_t AlignInBits;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000967
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000968 MDNodeKeyImpl(Metadata *Scope, MDString *Name, Metadata *File, unsigned Line,
Victor Leschuk2ede1262016-10-20 00:13:12 +0000969 Metadata *Type, unsigned Arg, unsigned Flags,
Victor Leschuka37660c2016-10-26 21:32:29 +0000970 uint32_t AlignInBits)
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +0000971 : Scope(Scope), Name(Name), File(File), Line(Line), Type(Type), Arg(Arg),
Victor Leschuk2ede1262016-10-20 00:13:12 +0000972 Flags(Flags), AlignInBits(AlignInBits) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000973 MDNodeKeyImpl(const DILocalVariable *N)
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000974 : Scope(N->getRawScope()), Name(N->getRawName()), File(N->getRawFile()),
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +0000975 Line(N->getLine()), Type(N->getRawType()), Arg(N->getArg()),
Victor Leschuk2ede1262016-10-20 00:13:12 +0000976 Flags(N->getFlags()), AlignInBits(N->getAlignInBits()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000977
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000978 bool isKeyOf(const DILocalVariable *RHS) const {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +0000979 return Scope == RHS->getRawScope() && Name == RHS->getRawName() &&
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +0000980 File == RHS->getRawFile() && Line == RHS->getLine() &&
981 Type == RHS->getRawType() && Arg == RHS->getArg() &&
Victor Leschuk2ede1262016-10-20 00:13:12 +0000982 Flags == RHS->getFlags() && AlignInBits == RHS->getAlignInBits();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000983 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +0000984
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000985 unsigned getHashValue() const {
Victor Leschuk2ede1262016-10-20 00:13:12 +0000986 // We do not use AlignInBits in hashing function here on purpose:
987 // in most cases this param for local variable is zero (for function param
988 // it is always zero). This leads to lots of hash collisions and errors on
989 // cases with lots of similar variables.
990 // clang/test/CodeGen/debug-info-257-args.c is an example of this problem,
991 // generated IR is random for each run and test fails with Align included.
992 // TODO: make hashing work fine with such situations
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +0000993 return hash_combine(Scope, Name, File, Line, Type, Arg, Flags);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +0000994 }
995};
996
Shiva Chen2c864552018-05-09 02:40:45 +0000997template <> struct MDNodeKeyImpl<DILabel> {
998 Metadata *Scope;
999 MDString *Name;
1000 Metadata *File;
1001 unsigned Line;
1002
1003 MDNodeKeyImpl(Metadata *Scope, MDString *Name, Metadata *File, unsigned Line)
1004 : Scope(Scope), Name(Name), File(File), Line(Line) {}
1005 MDNodeKeyImpl(const DILabel *N)
1006 : Scope(N->getRawScope()), Name(N->getRawName()), File(N->getRawFile()),
1007 Line(N->getLine()) {}
1008
1009 bool isKeyOf(const DILabel *RHS) const {
1010 return Scope == RHS->getRawScope() && Name == RHS->getRawName() &&
1011 File == RHS->getRawFile() && Line == RHS->getLine();
1012 }
1013
1014 /// Using name and line to get hash value. It should already be mostly unique.
1015 unsigned getHashValue() const {
1016 return hash_combine(Scope, Name, Line);
1017 }
1018};
1019
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001020template <> struct MDNodeKeyImpl<DIExpression> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001021 ArrayRef<uint64_t> Elements;
1022
1023 MDNodeKeyImpl(ArrayRef<uint64_t> Elements) : Elements(Elements) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001024 MDNodeKeyImpl(const DIExpression *N) : Elements(N->getElements()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001025
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001026 bool isKeyOf(const DIExpression *RHS) const {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001027 return Elements == RHS->getElements();
1028 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001029
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001030 unsigned getHashValue() const {
1031 return hash_combine_range(Elements.begin(), Elements.end());
1032 }
1033};
1034
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001035template <> struct MDNodeKeyImpl<DIGlobalVariableExpression> {
1036 Metadata *Variable;
1037 Metadata *Expression;
1038
1039 MDNodeKeyImpl(Metadata *Variable, Metadata *Expression)
1040 : Variable(Variable), Expression(Expression) {}
1041 MDNodeKeyImpl(const DIGlobalVariableExpression *N)
1042 : Variable(N->getRawVariable()), Expression(N->getRawExpression()) {}
1043
1044 bool isKeyOf(const DIGlobalVariableExpression *RHS) const {
1045 return Variable == RHS->getRawVariable() &&
1046 Expression == RHS->getRawExpression();
1047 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001048
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001049 unsigned getHashValue() const { return hash_combine(Variable, Expression); }
1050};
1051
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001052template <> struct MDNodeKeyImpl<DIObjCProperty> {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +00001053 MDString *Name;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001054 Metadata *File;
1055 unsigned Line;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +00001056 MDString *GetterName;
1057 MDString *SetterName;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001058 unsigned Attributes;
1059 Metadata *Type;
1060
Mehdi Amini5d99c4e2016-03-19 01:02:34 +00001061 MDNodeKeyImpl(MDString *Name, Metadata *File, unsigned Line,
1062 MDString *GetterName, MDString *SetterName, unsigned Attributes,
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001063 Metadata *Type)
1064 : Name(Name), File(File), Line(Line), GetterName(GetterName),
1065 SetterName(SetterName), Attributes(Attributes), Type(Type) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001066 MDNodeKeyImpl(const DIObjCProperty *N)
Mehdi Amini5d99c4e2016-03-19 01:02:34 +00001067 : Name(N->getRawName()), File(N->getRawFile()), Line(N->getLine()),
1068 GetterName(N->getRawGetterName()), SetterName(N->getRawSetterName()),
Duncan P. N. Exon Smithf9b47752015-03-30 17:21:38 +00001069 Attributes(N->getAttributes()), Type(N->getRawType()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001070
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001071 bool isKeyOf(const DIObjCProperty *RHS) const {
Mehdi Amini5d99c4e2016-03-19 01:02:34 +00001072 return Name == RHS->getRawName() && File == RHS->getRawFile() &&
1073 Line == RHS->getLine() && GetterName == RHS->getRawGetterName() &&
1074 SetterName == RHS->getRawSetterName() &&
Duncan P. N. Exon Smithf9b47752015-03-30 17:21:38 +00001075 Attributes == RHS->getAttributes() && Type == RHS->getRawType();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001076 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001077
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001078 unsigned getHashValue() const {
1079 return hash_combine(Name, File, Line, GetterName, SetterName, Attributes,
1080 Type);
1081 }
1082};
1083
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001084template <> struct MDNodeKeyImpl<DIImportedEntity> {
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001085 unsigned Tag;
1086 Metadata *Scope;
1087 Metadata *Entity;
Adrian Prantld63bfd22017-07-19 00:09:54 +00001088 Metadata *File;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001089 unsigned Line;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +00001090 MDString *Name;
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001091
Adrian Prantld63bfd22017-07-19 00:09:54 +00001092 MDNodeKeyImpl(unsigned Tag, Metadata *Scope, Metadata *Entity, Metadata *File,
1093 unsigned Line, MDString *Name)
1094 : Tag(Tag), Scope(Scope), Entity(Entity), File(File), Line(Line),
1095 Name(Name) {}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001096 MDNodeKeyImpl(const DIImportedEntity *N)
Duncan P. N. Exon Smithf9b47752015-03-30 17:21:38 +00001097 : Tag(N->getTag()), Scope(N->getRawScope()), Entity(N->getRawEntity()),
Adrian Prantld63bfd22017-07-19 00:09:54 +00001098 File(N->getRawFile()), Line(N->getLine()), Name(N->getRawName()) {}
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001099
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001100 bool isKeyOf(const DIImportedEntity *RHS) const {
Duncan P. N. Exon Smithf9b47752015-03-30 17:21:38 +00001101 return Tag == RHS->getTag() && Scope == RHS->getRawScope() &&
Adrian Prantld63bfd22017-07-19 00:09:54 +00001102 Entity == RHS->getRawEntity() && File == RHS->getFile() &&
1103 Line == RHS->getLine() && Name == RHS->getRawName();
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001104 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001105
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001106 unsigned getHashValue() const {
Adrian Prantld63bfd22017-07-19 00:09:54 +00001107 return hash_combine(Tag, Scope, Entity, File, Line, Name);
Duncan P. N. Exon Smith01fc1762015-02-10 00:52:32 +00001108 }
1109};
1110
Amjad Abouda9bcf162015-12-10 12:56:35 +00001111template <> struct MDNodeKeyImpl<DIMacro> {
1112 unsigned MIType;
1113 unsigned Line;
Mehdi Amini5d99c4e2016-03-19 01:02:34 +00001114 MDString *Name;
1115 MDString *Value;
Amjad Abouda9bcf162015-12-10 12:56:35 +00001116
Mehdi Amini5d99c4e2016-03-19 01:02:34 +00001117 MDNodeKeyImpl(unsigned MIType, unsigned Line, MDString *Name, MDString *Value)
Amjad Abouda9bcf162015-12-10 12:56:35 +00001118 : MIType(MIType), Line(Line), Name(Name), Value(Value) {}
1119 MDNodeKeyImpl(const DIMacro *N)
Mehdi Amini5d99c4e2016-03-19 01:02:34 +00001120 : MIType(N->getMacinfoType()), Line(N->getLine()), Name(N->getRawName()),
1121 Value(N->getRawValue()) {}
Amjad Abouda9bcf162015-12-10 12:56:35 +00001122
1123 bool isKeyOf(const DIMacro *RHS) const {
1124 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() &&
Mehdi Amini5d99c4e2016-03-19 01:02:34 +00001125 Name == RHS->getRawName() && Value == RHS->getRawValue();
Amjad Abouda9bcf162015-12-10 12:56:35 +00001126 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001127
Amjad Abouda9bcf162015-12-10 12:56:35 +00001128 unsigned getHashValue() const {
1129 return hash_combine(MIType, Line, Name, Value);
1130 }
1131};
1132
1133template <> struct MDNodeKeyImpl<DIMacroFile> {
1134 unsigned MIType;
1135 unsigned Line;
1136 Metadata *File;
1137 Metadata *Elements;
1138
1139 MDNodeKeyImpl(unsigned MIType, unsigned Line, Metadata *File,
1140 Metadata *Elements)
1141 : MIType(MIType), Line(Line), File(File), Elements(Elements) {}
1142 MDNodeKeyImpl(const DIMacroFile *N)
1143 : MIType(N->getMacinfoType()), Line(N->getLine()), File(N->getRawFile()),
1144 Elements(N->getRawElements()) {}
1145
1146 bool isKeyOf(const DIMacroFile *RHS) const {
1147 return MIType == RHS->getMacinfoType() && Line == RHS->getLine() &&
Amjad Aboud580498d2016-07-31 14:41:50 +00001148 File == RHS->getRawFile() && Elements == RHS->getRawElements();
Amjad Abouda9bcf162015-12-10 12:56:35 +00001149 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001150
Amjad Abouda9bcf162015-12-10 12:56:35 +00001151 unsigned getHashValue() const {
1152 return hash_combine(MIType, Line, File, Elements);
1153 }
1154};
1155
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001156/// DenseMapInfo for MDNode subclasses.
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +00001157template <class NodeTy> struct MDNodeInfo {
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001158 using KeyTy = MDNodeKeyImpl<NodeTy>;
1159 using SubsetEqualTy = MDNodeSubsetEqualImpl<NodeTy>;
1160
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +00001161 static inline NodeTy *getEmptyKey() {
1162 return DenseMapInfo<NodeTy *>::getEmptyKey();
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +00001163 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001164
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +00001165 static inline NodeTy *getTombstoneKey() {
1166 return DenseMapInfo<NodeTy *>::getTombstoneKey();
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +00001167 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001168
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +00001169 static unsigned getHashValue(const KeyTy &Key) { return Key.getHashValue(); }
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001170
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +00001171 static unsigned getHashValue(const NodeTy *N) {
1172 return KeyTy(N).getHashValue();
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +00001173 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001174
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +00001175 static bool isEqual(const KeyTy &LHS, const NodeTy *RHS) {
1176 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
1177 return false;
Duncan P. N. Exon Smithf2291272016-04-16 23:42:04 +00001178 return SubsetEqualTy::isSubsetEqual(LHS, RHS) || LHS.isKeyOf(RHS);
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +00001179 }
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001180
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +00001181 static bool isEqual(const NodeTy *LHS, const NodeTy *RHS) {
Duncan P. N. Exon Smithf2291272016-04-16 23:42:04 +00001182 if (LHS == RHS)
1183 return true;
1184 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
1185 return false;
1186 return SubsetEqualTy::isSubsetEqual(LHS, RHS);
Duncan P. N. Exon Smithfed199a2015-01-20 00:01:43 +00001187 }
1188};
1189
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001190#define HANDLE_MDNODE_LEAF(CLASS) using CLASS##Info = MDNodeInfo<CLASS>;
Duncan P. N. Exon Smith8af6cfc2015-02-04 22:08:30 +00001191#include "llvm/IR/Metadata.def"
1192
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001193/// Map-like storage for metadata attachments.
Duncan P. N. Exon Smithcbc28dc2015-04-24 20:36:25 +00001194class MDAttachmentMap {
1195 SmallVector<std::pair<unsigned, TrackingMDNodeRef>, 2> Attachments;
1196
1197public:
1198 bool empty() const { return Attachments.empty(); }
1199 size_t size() const { return Attachments.size(); }
1200
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001201 /// Get a particular attachment (if any).
Duncan P. N. Exon Smithcbc28dc2015-04-24 20:36:25 +00001202 MDNode *lookup(unsigned ID) const;
1203
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001204 /// Set an attachment to a particular node.
Duncan P. N. Exon Smithcbc28dc2015-04-24 20:36:25 +00001205 ///
1206 /// Set the \c ID attachment to \c MD, replacing the current attachment at \c
1207 /// ID (if anyway).
1208 void set(unsigned ID, MDNode &MD);
1209
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001210 /// Remove an attachment.
Duncan P. N. Exon Smithcbc28dc2015-04-24 20:36:25 +00001211 ///
1212 /// Remove the attachment at \c ID, if any.
Benjamin Kramer0deb9a92018-05-31 13:29:58 +00001213 bool erase(unsigned ID);
Duncan P. N. Exon Smithcbc28dc2015-04-24 20:36:25 +00001214
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001215 /// Copy out all the attachments.
Duncan P. N. Exon Smithcbc28dc2015-04-24 20:36:25 +00001216 ///
1217 /// Copies all the current attachments into \c Result, sorting by attachment
1218 /// ID. This function does \em not clear \c Result.
1219 void getAll(SmallVectorImpl<std::pair<unsigned, MDNode *>> &Result) const;
1220
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001221 /// Erase matching attachments.
Duncan P. N. Exon Smithcbc28dc2015-04-24 20:36:25 +00001222 ///
1223 /// Erases all attachments matching the \c shouldRemove predicate.
1224 template <class PredTy> void remove_if(PredTy shouldRemove) {
David Majnemer2d006e72016-08-12 04:32:42 +00001225 Attachments.erase(llvm::remove_if(Attachments, shouldRemove),
1226 Attachments.end());
Duncan P. N. Exon Smithcbc28dc2015-04-24 20:36:25 +00001227 }
1228};
1229
Peter Collingbourne382d81c2016-06-01 01:17:57 +00001230/// Multimap-like storage for metadata attachments for globals. This differs
1231/// from MDAttachmentMap in that it allows multiple attachments per metadata
1232/// kind.
1233class MDGlobalAttachmentMap {
1234 struct Attachment {
1235 unsigned MDKind;
1236 TrackingMDNodeRef Node;
1237 };
1238 SmallVector<Attachment, 1> Attachments;
1239
1240public:
1241 bool empty() const { return Attachments.empty(); }
1242
1243 /// Appends all attachments with the given ID to \c Result in insertion order.
1244 /// If the global has no attachments with the given ID, or if ID is invalid,
1245 /// leaves Result unchanged.
Benjamin Kramer0deb9a92018-05-31 13:29:58 +00001246 void get(unsigned ID, SmallVectorImpl<MDNode *> &Result) const;
1247
1248 /// Returns the first attachment with the given ID or nullptr if no such
1249 /// attachment exists.
1250 MDNode *lookup(unsigned ID) const;
Peter Collingbourne382d81c2016-06-01 01:17:57 +00001251
1252 void insert(unsigned ID, MDNode &MD);
Benjamin Kramer0deb9a92018-05-31 13:29:58 +00001253 bool erase(unsigned ID);
Peter Collingbourne382d81c2016-06-01 01:17:57 +00001254
1255 /// Appends all attachments for the global to \c Result, sorting by attachment
1256 /// ID. Attachments with the same ID appear in insertion order. This function
1257 /// does \em not clear \c Result.
1258 void getAll(SmallVectorImpl<std::pair<unsigned, MDNode *>> &Result) const;
1259};
1260
Benjamin Kramer079b96e2013-09-11 18:05:11 +00001261class LLVMContextImpl {
Benjamin Kramer78c3bcb2009-08-11 17:45:13 +00001262public:
Owen Anderson8e89e412010-09-08 18:03:32 +00001263 /// OwnedModules - The set of modules instantiated in this context, and which
1264 /// will be automatically deleted if this context is deleted.
1265 SmallPtrSet<Module*, 4> OwnedModules;
Fangrui Songf78650a2018-07-30 19:41:25 +00001266
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001267 LLVMContext::InlineAsmDiagHandlerTy InlineAsmDiagHandler = nullptr;
1268 void *InlineAsmDiagContext = nullptr;
Quentin Colombetb4c44d22013-12-17 17:47:22 +00001269
Francis Visoiu Mistrih7531a502019-10-28 14:53:31 -07001270 /// The main remark streamer used by all the other streamers (e.g. IR, MIR,
1271 /// frontends, etc.). This should only be used by the specific streamers, and
1272 /// never directly.
1273 std::unique_ptr<remarks::RemarkStreamer> MainRemarkStreamer;
1274
Vivek Pandyab5ab8952017-09-15 20:10:09 +00001275 std::unique_ptr<DiagnosticHandler> DiagHandler;
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001276 bool RespectDiagnosticFilters = false;
Brian Gesiak44e5f6c2017-06-30 18:13:59 +00001277 bool DiagnosticsHotnessRequested = false;
Brian Gesiak4ef3daa2017-06-30 23:14:53 +00001278 uint64_t DiagnosticsHotnessThreshold = 0;
Francis Visoiu Mistrih7531a502019-10-28 14:53:31 -07001279 /// The specialized remark streamer used by LLVM's OptimizationRemarkEmitter.
Francis Visoiu Mistrih31258872020-02-04 17:42:47 -08001280 std::unique_ptr<LLVMRemarkStreamer> LLVMRS;
Quentin Colombetb4c44d22013-12-17 17:47:22 +00001281
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001282 LLVMContext::YieldCallbackTy YieldCallback = nullptr;
1283 void *YieldOpaqueHandle = nullptr;
Juergen Ributzka34390c72014-05-16 02:33:15 +00001284
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001285 using IntMapTy =
1286 DenseMap<APInt, std::unique_ptr<ConstantInt>, DenseMapAPIntKeyInfo>;
Owen Anderson20b34ac2009-07-16 18:04:31 +00001287 IntMapTy IntConstants;
NAKAMURA Takumifc3062f2014-12-06 05:57:06 +00001288
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001289 using FPMapTy =
1290 DenseMap<APFloat, std::unique_ptr<ConstantFP>, DenseMapAPFloatKeyInfo>;
Owen Andersonc277dc42009-07-16 19:05:41 +00001291 FPMapTy FPConstants;
Bill Wendlinge38b8042012-09-26 21:07:29 +00001292
Bill Wendling4607f4b2012-12-20 01:36:59 +00001293 FoldingSet<AttributeImpl> AttrsSet;
Reid Klecknerb5180542017-03-21 16:57:19 +00001294 FoldingSet<AttributeListImpl> AttrsLists;
Bill Wendlingd2e493b2013-01-24 00:06:56 +00001295 FoldingSet<AttributeSetNode> AttrsSetNodes;
Bill Wendlingf86efb92012-11-20 05:09:20 +00001296
Duncan P. N. Exon Smith3e0430e2016-04-06 06:41:54 +00001297 StringMap<MDString, BumpPtrAllocator> MDStringCache;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001298 DenseMap<Value *, ValueAsMetadata *> ValuesAsMetadata;
1299 DenseMap<Metadata *, MetadataAsValue *> MetadataAsValues;
Bill Wendlinge38b8042012-09-26 21:07:29 +00001300
Owen Anderson7349ab92015-06-01 22:24:01 +00001301 DenseMap<const Value*, ValueName*> ValueNames;
1302
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00001303#define HANDLE_MDNODE_LEAF_UNIQUABLE(CLASS) \
1304 DenseSet<CLASS *, CLASS##Info> CLASS##s;
Duncan P. N. Exon Smith104e4022015-02-04 21:46:12 +00001305#include "llvm/IR/Metadata.def"
Bill Wendlinge38b8042012-09-26 21:07:29 +00001306
Duncan P. N. Exon Smith5ab2be02016-04-17 03:58:21 +00001307 // Optional map for looking up composite types by identifier.
Duncan P. N. Exon Smithe8b555c2016-04-19 16:06:50 +00001308 Optional<DenseMap<const MDString *, DICompositeType *>> DITypeMap;
Duncan P. N. Exon Smith5ab2be02016-04-17 03:58:21 +00001309
Jeffrey Yasskin2cc24762010-03-13 01:26:15 +00001310 // MDNodes may be uniqued or not uniqued. When they're not uniqued, they
1311 // aren't in the MDNodeSet, but they're still shared between objects, so no
Duncan P. N. Exon Smith3eef9d12016-04-19 23:59:13 +00001312 // one object can destroy them. Keep track of them here so we can delete
1313 // them on context teardown.
1314 std::vector<MDNode *> DistinctMDNodes;
Duncan P. N. Exon Smith50846f82014-11-18 00:37:17 +00001315
Justin Lebar611c5c22016-10-10 16:26:13 +00001316 DenseMap<Type *, std::unique_ptr<ConstantAggregateZero>> CAZConstants;
Owen Anderson13234f82009-08-10 18:16:08 +00001317
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001318 using ArrayConstantsTy = ConstantUniqueMap<ConstantArray>;
Owen Andersonedb4a702009-07-24 23:12:02 +00001319 ArrayConstantsTy ArrayConstants;
Fangrui Songf78650a2018-07-30 19:41:25 +00001320
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001321 using StructConstantsTy = ConstantUniqueMap<ConstantStruct>;
Owen Andersonedb4a702009-07-24 23:12:02 +00001322 StructConstantsTy StructConstants;
Fangrui Songf78650a2018-07-30 19:41:25 +00001323
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001324 using VectorConstantsTy = ConstantUniqueMap<ConstantVector>;
Owen Andersonedb4a702009-07-24 23:12:02 +00001325 VectorConstantsTy VectorConstants;
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001326
Justin Lebar611c5c22016-10-10 16:26:13 +00001327 DenseMap<PointerType *, std::unique_ptr<ConstantPointerNull>> CPNConstants;
1328
1329 DenseMap<Type *, std::unique_ptr<UndefValue>> UVConstants;
1330
Chris Lattner3756b912012-01-23 22:57:10 +00001331 StringMap<ConstantDataSequential*> CDSConstants;
1332
Chandler Carruth6a936922014-01-19 02:13:50 +00001333 DenseMap<std::pair<const Function *, const BasicBlock *>, BlockAddress *>
1334 BlockAddresses;
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001335 ConstantUniqueMap<ConstantExpr> ExprConstants;
Jeffrey Yasskinade270e2010-03-21 20:37:19 +00001336
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001337 ConstantUniqueMap<InlineAsm> InlineAsms;
1338
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001339 ConstantInt *TheTrueVal = nullptr;
1340 ConstantInt *TheFalseVal = nullptr;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001341
David Majnemer2dd41c52015-11-16 20:55:57 +00001342 std::unique_ptr<ConstantTokenNone> TheNoneToken;
David Majnemerf0f224d2015-11-11 21:57:16 +00001343
Dan Gohman97d2cb82009-08-25 16:00:35 +00001344 // Basic type instances.
David Majnemerb611e3f2015-08-14 05:09:07 +00001345 Type VoidTy, LabelTy, HalfTy, FloatTy, DoubleTy, MetadataTy, TokenTy;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001346 Type X86_FP80Ty, FP128Ty, PPC_FP128Ty, X86_MMXTy;
Kit Barton72918022015-04-17 15:32:15 +00001347 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty, Int128Ty;
Fangrui Songf78650a2018-07-30 19:41:25 +00001348
Peter Collingbourne10c548c2019-05-29 03:28:51 +00001349 BumpPtrAllocator Alloc;
1350 UniqueStringSaver Saver{Alloc};
Fangrui Songf78650a2018-07-30 19:41:25 +00001351
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001352 DenseMap<unsigned, IntegerType*> IntegerTypes;
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001353
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001354 using FunctionTypeSet = DenseSet<FunctionType *, FunctionTypeKeyInfo>;
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001355 FunctionTypeSet FunctionTypes;
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001356 using StructTypeSet = DenseSet<StructType *, AnonStructTypeKeyInfo>;
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001357 StructTypeSet AnonStructTypes;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001358 StringMap<StructType*> NamedStructTypes;
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001359 unsigned NamedStructTypesUniqueID = 0;
Fangrui Songf78650a2018-07-30 19:41:25 +00001360
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001361 DenseMap<std::pair<Type *, uint64_t>, ArrayType*> ArrayTypes;
Graham Hunter957c40d2019-07-05 12:48:16 +00001362 DenseMap<std::pair<Type *, ElementCount>, VectorType*> VectorTypes;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001363 DenseMap<Type*, PointerType*> PointerTypes; // Pointers in AddrSpace = 0
1364 DenseMap<std::pair<Type*, unsigned>, PointerType*> ASPointerTypes;
Jeffrey Yasskinc660b232010-02-11 06:41:30 +00001365
Owen Andersone8f21852009-08-18 18:28:58 +00001366 /// ValueHandles - This map keeps track of all of the value handles that are
1367 /// watching a Value*. The Value::HasValueHandle bit is used to know
Michael Ilseman516d7032013-03-01 18:48:54 +00001368 /// whether or not a value has an entry in this map.
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001369 using ValueHandlesTy = DenseMap<Value *, ValueHandleBase *>;
Owen Andersone8f21852009-08-18 18:28:58 +00001370 ValueHandlesTy ValueHandles;
Fangrui Songf78650a2018-07-30 19:41:25 +00001371
Chris Lattnera0566972009-12-29 09:01:33 +00001372 /// CustomMDKindNames - Map to hold the metadata string to ID mapping.
1373 StringMap<unsigned> CustomMDKindNames;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001374
Duncan P. N. Exon Smith391fc562015-04-24 20:16:42 +00001375 /// Collection of per-instruction metadata used in this context.
Duncan P. N. Exon Smithcbc28dc2015-04-24 20:36:25 +00001376 DenseMap<const Instruction *, MDAttachmentMap> InstructionMetadata;
Duncan P. N. Exon Smith391fc562015-04-24 20:16:42 +00001377
Peter Collingbournecceae7f2016-05-31 23:01:54 +00001378 /// Collection of per-GlobalObject metadata used in this context.
Peter Collingbourne382d81c2016-06-01 01:17:57 +00001379 DenseMap<const GlobalObject *, MDGlobalAttachmentMap> GlobalObjectMetadata;
Duncan P. N. Exon Smithe2510cd2015-04-24 21:51:02 +00001380
Reid Kleckner443423e2017-01-10 23:23:58 +00001381 /// Collection of per-GlobalObject sections used in this context.
1382 DenseMap<const GlobalObject *, StringRef> GlobalObjectSections;
1383
Peter Collingbourne31fda092019-05-29 03:29:01 +00001384 /// Collection of per-GlobalValue partitions used in this context.
1385 DenseMap<const GlobalValue *, StringRef> GlobalValuePartitions;
1386
Diego Novillof5041ce2014-03-03 20:06:11 +00001387 /// DiscriminatorTable - This table maps file:line locations to an
1388 /// integer representing the next DWARF path discriminator to assign to
1389 /// instructions in different blocks at the same location.
1390 DenseMap<std::pair<const char *, unsigned>, unsigned> DiscriminatorTable;
1391
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001392 /// A set of interned tags for operand bundles. The StringMap maps
Sanjoy Das9303c242015-09-24 19:14:18 +00001393 /// bundle tags to their IDs.
1394 ///
1395 /// \see LLVMContext::getOperandBundleTagID
1396 StringMap<uint32_t> BundleTagCache;
1397
1398 StringMapEntry<uint32_t> *getOrInsertBundleTag(StringRef Tag);
1399 void getOperandBundleTags(SmallVectorImpl<StringRef> &Tags) const;
1400 uint32_t getOperandBundleTagID(StringRef Tag) const;
1401
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00001402 /// A set of interned synchronization scopes. The StringMap maps
1403 /// synchronization scope names to their respective synchronization scope IDs.
1404 StringMap<SyncScope::ID> SSC;
1405
1406 /// getOrInsertSyncScopeID - Maps synchronization scope name to
1407 /// synchronization scope ID. Every synchronization scope registered with
1408 /// LLVMContext has unique ID except pre-defined ones.
1409 SyncScope::ID getOrInsertSyncScopeID(StringRef SSN);
1410
1411 /// getSyncScopeNames - Populates client supplied SmallVector with
1412 /// synchronization scope names registered with LLVMContext. Synchronization
1413 /// scope names are ordered by increasing synchronization scope IDs.
1414 void getSyncScopeNames(SmallVectorImpl<StringRef> &SSNs) const;
1415
Mehdi Amini599ebf22016-01-08 02:28:20 +00001416 /// Maintain the GC name for each function.
1417 ///
1418 /// This saves allocating an additional word in Function for programs which
1419 /// do not use GC (i.e., most programs) at the cost of increased overhead for
1420 /// clients which do use GC.
1421 DenseMap<const Function*, std::string> GCNames;
1422
Mehdi Amini09b4a8d2016-03-10 01:28:54 +00001423 /// Flag to indicate if Value (other than GlobalValue) retains their name or
1424 /// not.
1425 bool DiscardValueNames = false;
1426
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +00001427 LLVMContextImpl(LLVMContext &C);
1428 ~LLVMContextImpl();
Manman Rendab999d2015-01-20 19:24:59 +00001429
1430 /// Destroy the ConstantArrays if they are not used.
1431 void dropTriviallyDeadConstantArrays();
Andrew Kayloraa641a52016-04-22 22:06:11 +00001432
Fedor Sergeevd29884c2018-04-05 10:29:37 +00001433 mutable OptPassGate *OPG = nullptr;
1434
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001435 /// Access the object which can disable optional passes and individual
Fedor Sergeevd29884c2018-04-05 10:29:37 +00001436 /// optimizations at compile time.
1437 OptPassGate &getOptPassGate() const;
1438
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001439 /// Set the object which can disable optional passes and individual
Fedor Sergeevd29884c2018-04-05 10:29:37 +00001440 /// optimizations at compile time.
1441 ///
1442 /// The lifetime of the object must be guaranteed to extend as long as the
1443 /// LLVMContext is used by compilation.
1444 void setOptPassGate(OptPassGate&);
Owen Anderson8e66e0b2009-06-30 00:48:55 +00001445};
1446
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001447} // end namespace llvm
Owen Anderson8e66e0b2009-06-30 00:48:55 +00001448
Eugene Zelenkode6cce22017-06-19 22:05:08 +00001449#endif // LLVM_LIB_IR_LLVMCONTEXTIMPL_H