LLParser: Require non-null scope for MDLocation and MDLocalVariable
[oota-llvm.git] / lib / IR / DebugInfoMetadata.cpp
1 //===- DebugInfoMetadata.cpp - Implement debug info metadata --------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the debug info Metadata classes.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/IR/DebugInfoMetadata.h"
15 #include "LLVMContextImpl.h"
16 #include "MetadataImpl.h"
17 #include "llvm/IR/Function.h"
18
19 using namespace llvm;
20
21 MDLocation::MDLocation(LLVMContext &C, StorageType Storage, unsigned Line,
22                        unsigned Column, ArrayRef<Metadata *> MDs)
23     : MDNode(C, MDLocationKind, Storage, MDs) {
24   assert((MDs.size() == 1 || MDs.size() == 2) &&
25          "Expected a scope and optional inlined-at");
26
27   // Set line and column.
28   assert(Column < (1u << 16) && "Expected 16-bit column");
29
30   SubclassData32 = Line;
31   SubclassData16 = Column;
32 }
33
34 static void adjustColumn(unsigned &Column) {
35   // Set to unknown on overflow.  We only have 16 bits to play with here.
36   if (Column >= (1u << 16))
37     Column = 0;
38 }
39
40 MDLocation *MDLocation::getImpl(LLVMContext &Context, unsigned Line,
41                                 unsigned Column, Metadata *Scope,
42                                 Metadata *InlinedAt, StorageType Storage,
43                                 bool ShouldCreate) {
44   // Fixup column.
45   adjustColumn(Column);
46
47   assert(Scope && "Expected scope");
48   if (Storage == Uniqued) {
49     if (auto *N =
50             getUniqued(Context.pImpl->MDLocations,
51                        MDLocationInfo::KeyTy(Line, Column, Scope, InlinedAt)))
52       return N;
53     if (!ShouldCreate)
54       return nullptr;
55   } else {
56     assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
57   }
58
59   SmallVector<Metadata *, 2> Ops;
60   Ops.push_back(Scope);
61   if (InlinedAt)
62     Ops.push_back(InlinedAt);
63   return storeImpl(new (Ops.size())
64                        MDLocation(Context, Storage, Line, Column, Ops),
65                    Storage, Context.pImpl->MDLocations);
66 }
67
68 static StringRef getString(const MDString *S) {
69   if (S)
70     return S->getString();
71   return StringRef();
72 }
73
74 #ifndef NDEBUG
75 static bool isCanonical(const MDString *S) {
76   return !S || !S->getString().empty();
77 }
78 #endif
79
80 GenericDebugNode *GenericDebugNode::getImpl(LLVMContext &Context, unsigned Tag,
81                                             MDString *Header,
82                                             ArrayRef<Metadata *> DwarfOps,
83                                             StorageType Storage,
84                                             bool ShouldCreate) {
85   unsigned Hash = 0;
86   if (Storage == Uniqued) {
87     GenericDebugNodeInfo::KeyTy Key(Tag, getString(Header), DwarfOps);
88     if (auto *N = getUniqued(Context.pImpl->GenericDebugNodes, Key))
89       return N;
90     if (!ShouldCreate)
91       return nullptr;
92     Hash = Key.getHash();
93   } else {
94     assert(ShouldCreate && "Expected non-uniqued nodes to always be created");
95   }
96
97   // Use a nullptr for empty headers.
98   assert(isCanonical(Header) && "Expected canonical MDString");
99   Metadata *PreOps[] = {Header};
100   return storeImpl(new (DwarfOps.size() + 1) GenericDebugNode(
101                        Context, Storage, Hash, Tag, PreOps, DwarfOps),
102                    Storage, Context.pImpl->GenericDebugNodes);
103 }
104
105 void GenericDebugNode::recalculateHash() {
106   setHash(GenericDebugNodeInfo::KeyTy::calculateHash(this));
107 }
108
109 #define UNWRAP_ARGS_IMPL(...) __VA_ARGS__
110 #define UNWRAP_ARGS(ARGS) UNWRAP_ARGS_IMPL ARGS
111 #define DEFINE_GETIMPL_LOOKUP(CLASS, ARGS)                                     \
112   do {                                                                         \
113     if (Storage == Uniqued) {                                                  \
114       if (auto *N = getUniqued(Context.pImpl->CLASS##s,                        \
115                                CLASS##Info::KeyTy(UNWRAP_ARGS(ARGS))))         \
116         return N;                                                              \
117       if (!ShouldCreate)                                                       \
118         return nullptr;                                                        \
119     } else {                                                                   \
120       assert(ShouldCreate &&                                                   \
121              "Expected non-uniqued nodes to always be created");               \
122     }                                                                          \
123   } while (false)
124 #define DEFINE_GETIMPL_STORE(CLASS, ARGS, OPS)                                 \
125   return storeImpl(new (ArrayRef<Metadata *>(OPS).size())                      \
126                        CLASS(Context, Storage, UNWRAP_ARGS(ARGS), OPS),        \
127                    Storage, Context.pImpl->CLASS##s)
128 #define DEFINE_GETIMPL_STORE_NO_OPS(CLASS, ARGS)                               \
129   return storeImpl(new (0u) CLASS(Context, Storage, UNWRAP_ARGS(ARGS)),        \
130                    Storage, Context.pImpl->CLASS##s)
131 #define DEFINE_GETIMPL_STORE_NO_CONSTRUCTOR_ARGS(CLASS, OPS)                   \
132   return storeImpl(new (ArrayRef<Metadata *>(OPS).size())                      \
133                        CLASS(Context, Storage, OPS),                           \
134                    Storage, Context.pImpl->CLASS##s)
135
136 MDSubrange *MDSubrange::getImpl(LLVMContext &Context, int64_t Count, int64_t Lo,
137                                 StorageType Storage, bool ShouldCreate) {
138   DEFINE_GETIMPL_LOOKUP(MDSubrange, (Count, Lo));
139   DEFINE_GETIMPL_STORE_NO_OPS(MDSubrange, (Count, Lo));
140 }
141
142 MDEnumerator *MDEnumerator::getImpl(LLVMContext &Context, int64_t Value,
143                                     MDString *Name, StorageType Storage,
144                                     bool ShouldCreate) {
145   assert(isCanonical(Name) && "Expected canonical MDString");
146   DEFINE_GETIMPL_LOOKUP(MDEnumerator, (Value, getString(Name)));
147   Metadata *Ops[] = {Name};
148   DEFINE_GETIMPL_STORE(MDEnumerator, (Value), Ops);
149 }
150
151 MDBasicType *MDBasicType::getImpl(LLVMContext &Context, unsigned Tag,
152                                   MDString *Name, uint64_t SizeInBits,
153                                   uint64_t AlignInBits, unsigned Encoding,
154                                   StorageType Storage, bool ShouldCreate) {
155   assert(isCanonical(Name) && "Expected canonical MDString");
156   DEFINE_GETIMPL_LOOKUP(
157       MDBasicType, (Tag, getString(Name), SizeInBits, AlignInBits, Encoding));
158   Metadata *Ops[] = {nullptr, nullptr, Name};
159   DEFINE_GETIMPL_STORE(MDBasicType, (Tag, SizeInBits, AlignInBits, Encoding),
160                        Ops);
161 }
162
163 MDDerivedType *MDDerivedType::getImpl(
164     LLVMContext &Context, unsigned Tag, MDString *Name, Metadata *File,
165     unsigned Line, Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits,
166     uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags,
167     Metadata *ExtraData, StorageType Storage, bool ShouldCreate) {
168   assert(isCanonical(Name) && "Expected canonical MDString");
169   DEFINE_GETIMPL_LOOKUP(MDDerivedType, (Tag, getString(Name), File, Line, Scope,
170                                         BaseType, SizeInBits, AlignInBits,
171                                         OffsetInBits, Flags, ExtraData));
172   Metadata *Ops[] = {File, Scope, Name, BaseType, ExtraData};
173   DEFINE_GETIMPL_STORE(
174       MDDerivedType, (Tag, Line, SizeInBits, AlignInBits, OffsetInBits, Flags),
175       Ops);
176 }
177
178 MDCompositeType *MDCompositeType::getImpl(
179     LLVMContext &Context, unsigned Tag, MDString *Name, Metadata *File,
180     unsigned Line, Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits,
181     uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags,
182     Metadata *Elements, unsigned RuntimeLang, Metadata *VTableHolder,
183     Metadata *TemplateParams, MDString *Identifier, StorageType Storage,
184     bool ShouldCreate) {
185   assert(isCanonical(Name) && "Expected canonical MDString");
186   DEFINE_GETIMPL_LOOKUP(MDCompositeType,
187                         (Tag, getString(Name), File, Line, Scope, BaseType,
188                          SizeInBits, AlignInBits, OffsetInBits, Flags, Elements,
189                          RuntimeLang, VTableHolder, TemplateParams,
190                          getString(Identifier)));
191   Metadata *Ops[] = {File,     Scope,        Name,           BaseType,
192                      Elements, VTableHolder, TemplateParams, Identifier};
193   DEFINE_GETIMPL_STORE(MDCompositeType, (Tag, Line, RuntimeLang, SizeInBits,
194                                          AlignInBits, OffsetInBits, Flags),
195                        Ops);
196 }
197
198 MDSubroutineType *MDSubroutineType::getImpl(LLVMContext &Context,
199                                             unsigned Flags, Metadata *TypeArray,
200                                             StorageType Storage,
201                                             bool ShouldCreate) {
202   DEFINE_GETIMPL_LOOKUP(MDSubroutineType, (Flags, TypeArray));
203   Metadata *Ops[] = {nullptr,   nullptr, nullptr, nullptr,
204                      TypeArray, nullptr, nullptr, nullptr};
205   DEFINE_GETIMPL_STORE(MDSubroutineType, (Flags), Ops);
206 }
207
208 MDFile *MDFile::getImpl(LLVMContext &Context, MDString *Filename,
209                         MDString *Directory, StorageType Storage,
210                         bool ShouldCreate) {
211   assert(isCanonical(Filename) && "Expected canonical MDString");
212   assert(isCanonical(Directory) && "Expected canonical MDString");
213   DEFINE_GETIMPL_LOOKUP(MDFile, (getString(Filename), getString(Directory)));
214   Metadata *Ops[] = {Filename, Directory};
215   DEFINE_GETIMPL_STORE_NO_CONSTRUCTOR_ARGS(MDFile, Ops);
216 }
217
218 MDCompileUnit *MDCompileUnit::getImpl(
219     LLVMContext &Context, unsigned SourceLanguage, Metadata *File,
220     MDString *Producer, bool IsOptimized, MDString *Flags,
221     unsigned RuntimeVersion, MDString *SplitDebugFilename,
222     unsigned EmissionKind, Metadata *EnumTypes, Metadata *RetainedTypes,
223     Metadata *Subprograms, Metadata *GlobalVariables,
224     Metadata *ImportedEntities, StorageType Storage, bool ShouldCreate) {
225   assert(isCanonical(Producer) && "Expected canonical MDString");
226   assert(isCanonical(Flags) && "Expected canonical MDString");
227   assert(isCanonical(SplitDebugFilename) && "Expected canonical MDString");
228   DEFINE_GETIMPL_LOOKUP(
229       MDCompileUnit,
230       (SourceLanguage, File, getString(Producer), IsOptimized, getString(Flags),
231        RuntimeVersion, getString(SplitDebugFilename), EmissionKind, EnumTypes,
232        RetainedTypes, Subprograms, GlobalVariables, ImportedEntities));
233   Metadata *Ops[] = {File, Producer, Flags, SplitDebugFilename, EnumTypes,
234                      RetainedTypes, Subprograms, GlobalVariables,
235                      ImportedEntities};
236   DEFINE_GETIMPL_STORE(
237       MDCompileUnit,
238       (SourceLanguage, IsOptimized, RuntimeVersion, EmissionKind), Ops);
239 }
240
241 MDSubprogram *MDSubprogram::getImpl(
242     LLVMContext &Context, Metadata *Scope, MDString *Name,
243     MDString *LinkageName, Metadata *File, unsigned Line, Metadata *Type,
244     bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine,
245     Metadata *ContainingType, unsigned Virtuality, unsigned VirtualIndex,
246     unsigned Flags, bool IsOptimized, Metadata *Function,
247     Metadata *TemplateParams, Metadata *Declaration, Metadata *Variables,
248     StorageType Storage, bool ShouldCreate) {
249   assert(isCanonical(Name) && "Expected canonical MDString");
250   assert(isCanonical(LinkageName) && "Expected canonical MDString");
251   DEFINE_GETIMPL_LOOKUP(MDSubprogram,
252                         (Scope, getString(Name), getString(LinkageName), File,
253                          Line, Type, IsLocalToUnit, IsDefinition, ScopeLine,
254                          ContainingType, Virtuality, VirtualIndex, Flags,
255                          IsOptimized, Function, TemplateParams, Declaration,
256                          Variables));
257   Metadata *Ops[] = {File,           Scope,       Name,           Name,
258                      LinkageName,    Type,        ContainingType, Function,
259                      TemplateParams, Declaration, Variables};
260   DEFINE_GETIMPL_STORE(MDSubprogram,
261                        (Line, ScopeLine, Virtuality, VirtualIndex, Flags,
262                         IsLocalToUnit, IsDefinition, IsOptimized),
263                        Ops);
264 }
265
266 void MDSubprogram::replaceFunction(Function *F) {
267   replaceFunction(F ? ConstantAsMetadata::get(F)
268                     : static_cast<ConstantAsMetadata *>(nullptr));
269 }
270
271 MDLexicalBlock *MDLexicalBlock::getImpl(LLVMContext &Context, Metadata *Scope,
272                                         Metadata *File, unsigned Line,
273                                         unsigned Column, StorageType Storage,
274                                         bool ShouldCreate) {
275   DEFINE_GETIMPL_LOOKUP(MDLexicalBlock, (Scope, File, Line, Column));
276   Metadata *Ops[] = {File, Scope};
277   DEFINE_GETIMPL_STORE(MDLexicalBlock, (Line, Column), Ops);
278 }
279
280 MDLexicalBlockFile *MDLexicalBlockFile::getImpl(LLVMContext &Context,
281                                                 Metadata *Scope, Metadata *File,
282                                                 unsigned Discriminator,
283                                                 StorageType Storage,
284                                                 bool ShouldCreate) {
285   DEFINE_GETIMPL_LOOKUP(MDLexicalBlockFile, (Scope, File, Discriminator));
286   Metadata *Ops[] = {File, Scope};
287   DEFINE_GETIMPL_STORE(MDLexicalBlockFile, (Discriminator), Ops);
288 }
289
290 MDNamespace *MDNamespace::getImpl(LLVMContext &Context, Metadata *Scope,
291                                   Metadata *File, MDString *Name, unsigned Line,
292                                   StorageType Storage, bool ShouldCreate) {
293   assert(isCanonical(Name) && "Expected canonical MDString");
294   DEFINE_GETIMPL_LOOKUP(MDNamespace, (Scope, File, getString(Name), Line));
295   Metadata *Ops[] = {File, Scope, Name};
296   DEFINE_GETIMPL_STORE(MDNamespace, (Line), Ops);
297 }
298
299 MDTemplateTypeParameter *MDTemplateTypeParameter::getImpl(LLVMContext &Context,
300                                                           MDString *Name,
301                                                           Metadata *Type,
302                                                           StorageType Storage,
303                                                           bool ShouldCreate) {
304   assert(isCanonical(Name) && "Expected canonical MDString");
305   DEFINE_GETIMPL_LOOKUP(MDTemplateTypeParameter, (getString(Name), Type));
306   Metadata *Ops[] = {Name, Type};
307   DEFINE_GETIMPL_STORE_NO_CONSTRUCTOR_ARGS(MDTemplateTypeParameter, Ops);
308 }
309
310 MDTemplateValueParameter *MDTemplateValueParameter::getImpl(
311     LLVMContext &Context, unsigned Tag, MDString *Name, Metadata *Type,
312     Metadata *Value, StorageType Storage, bool ShouldCreate) {
313   assert(isCanonical(Name) && "Expected canonical MDString");
314   DEFINE_GETIMPL_LOOKUP(MDTemplateValueParameter,
315                         (Tag, getString(Name), Type, Value));
316   Metadata *Ops[] = {Name, Type, Value};
317   DEFINE_GETIMPL_STORE(MDTemplateValueParameter, (Tag), Ops);
318 }
319
320 MDGlobalVariable *
321 MDGlobalVariable::getImpl(LLVMContext &Context, Metadata *Scope, MDString *Name,
322                           MDString *LinkageName, Metadata *File, unsigned Line,
323                           Metadata *Type, bool IsLocalToUnit, bool IsDefinition,
324                           Metadata *Variable,
325                           Metadata *StaticDataMemberDeclaration,
326                           StorageType Storage, bool ShouldCreate) {
327   assert(isCanonical(Name) && "Expected canonical MDString");
328   assert(isCanonical(LinkageName) && "Expected canonical MDString");
329   DEFINE_GETIMPL_LOOKUP(MDGlobalVariable,
330                         (Scope, getString(Name), getString(LinkageName), File,
331                          Line, Type, IsLocalToUnit, IsDefinition, Variable,
332                          StaticDataMemberDeclaration));
333   Metadata *Ops[] = {Scope, Name,        File,     Type,
334                      Name,  LinkageName, Variable, StaticDataMemberDeclaration};
335   DEFINE_GETIMPL_STORE(MDGlobalVariable, (Line, IsLocalToUnit, IsDefinition),
336                        Ops);
337 }
338
339 MDLocalVariable *MDLocalVariable::getImpl(
340     LLVMContext &Context, unsigned Tag, Metadata *Scope, MDString *Name,
341     Metadata *File, unsigned Line, Metadata *Type, unsigned Arg, unsigned Flags,
342     Metadata *InlinedAt, StorageType Storage, bool ShouldCreate) {
343   // Truncate Arg to 8 bits.
344   //
345   // FIXME: This is gross (and should be changed to an assert or removed), but
346   // it matches historical behaviour for now.
347   Arg &= (1u << 8) - 1;
348
349   assert(Scope && "Expected scope");
350   assert(isCanonical(Name) && "Expected canonical MDString");
351   DEFINE_GETIMPL_LOOKUP(MDLocalVariable, (Tag, Scope, getString(Name), File,
352                                           Line, Type, Arg, Flags, InlinedAt));
353   Metadata *Ops[] = {Scope, Name, File, Type, InlinedAt};
354   DEFINE_GETIMPL_STORE(MDLocalVariable, (Tag, Line, Arg, Flags), Ops);
355 }
356
357 MDExpression *MDExpression::getImpl(LLVMContext &Context,
358                                     ArrayRef<uint64_t> Elements,
359                                     StorageType Storage, bool ShouldCreate) {
360   DEFINE_GETIMPL_LOOKUP(MDExpression, (Elements));
361   DEFINE_GETIMPL_STORE_NO_OPS(MDExpression, (Elements));
362 }
363
364 unsigned MDExpression::ExprOperand::getSize() const {
365   switch (getOp()) {
366   case dwarf::DW_OP_bit_piece:
367     return 3;
368   case dwarf::DW_OP_plus:
369     return 2;
370   default:
371     return 1;
372   }
373 }
374
375 bool MDExpression::isValid() const {
376   for (auto I = expr_op_begin(), E = expr_op_end(); I != E; ++I) {
377     // Check that there's space for the operand.
378     if (I->get() + I->getSize() > E->get())
379       return false;
380
381     // Check that the operand is valid.
382     switch (I->getOp()) {
383     default:
384       return false;
385     case dwarf::DW_OP_bit_piece:
386       // Piece expressions must be at the end.
387       return I->get() + I->getSize() == E->get();
388     case dwarf::DW_OP_plus:
389     case dwarf::DW_OP_deref:
390       break;
391     }
392   }
393   return true;
394 }
395
396 MDObjCProperty *MDObjCProperty::getImpl(
397     LLVMContext &Context, MDString *Name, Metadata *File, unsigned Line,
398     MDString *GetterName, MDString *SetterName, unsigned Attributes,
399     Metadata *Type, StorageType Storage, bool ShouldCreate) {
400   assert(isCanonical(Name) && "Expected canonical MDString");
401   assert(isCanonical(GetterName) && "Expected canonical MDString");
402   assert(isCanonical(SetterName) && "Expected canonical MDString");
403   DEFINE_GETIMPL_LOOKUP(MDObjCProperty,
404                         (getString(Name), File, Line, getString(GetterName),
405                          getString(SetterName), Attributes, Type));
406   Metadata *Ops[] = {Name, File, GetterName, SetterName, Type};
407   DEFINE_GETIMPL_STORE(MDObjCProperty, (Line, Attributes), Ops);
408 }
409
410 MDImportedEntity *MDImportedEntity::getImpl(LLVMContext &Context, unsigned Tag,
411                                             Metadata *Scope, Metadata *Entity,
412                                             unsigned Line, MDString *Name,
413                                             StorageType Storage,
414                                             bool ShouldCreate) {
415   assert(isCanonical(Name) && "Expected canonical MDString");
416   DEFINE_GETIMPL_LOOKUP(MDImportedEntity,
417                         (Tag, Scope, Entity, Line, getString(Name)));
418   Metadata *Ops[] = {Scope, Entity, Name};
419   DEFINE_GETIMPL_STORE(MDImportedEntity, (Tag, Line), Ops);
420 }