blob: a9d91214a802030bd99cc0fa3a5807d9b9b33e4c [file] [log] [blame]
Eugene Zelenkof53a7b42017-05-05 22:30:37 +00001//===- DebugInfo.cpp - Debug Information Helper Classes -------------------===//
Bill Wendling523bea82013-11-08 08:13:15 +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
Bill Wendling523bea82013-11-08 08:13:15 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the helper classes used to build and interpret debug
10// information in LLVM IR form.
11//
12//===----------------------------------------------------------------------===//
13
whitequark789164d2017-11-01 22:18:52 +000014#include "llvm-c/DebugInfo.h"
Eugene Zelenkof53a7b42017-05-05 22:30:37 +000015#include "llvm/ADT/DenseMap.h"
16#include "llvm/ADT/DenseSet.h"
17#include "llvm/ADT/None.h"
whitequark789164d2017-11-01 22:18:52 +000018#include "llvm/ADT/STLExtras.h"
Bill Wendling523bea82013-11-08 08:13:15 +000019#include "llvm/ADT/SmallPtrSet.h"
Eugene Zelenkof53a7b42017-05-05 22:30:37 +000020#include "llvm/ADT/SmallVector.h"
21#include "llvm/ADT/StringRef.h"
22#include "llvm/IR/BasicBlock.h"
Bill Wendling523bea82013-11-08 08:13:15 +000023#include "llvm/IR/Constants.h"
Eugene Zelenkof53a7b42017-05-05 22:30:37 +000024#include "llvm/IR/DebugInfoMetadata.h"
25#include "llvm/IR/DebugLoc.h"
whitequark789164d2017-11-01 22:18:52 +000026#include "llvm/IR/DebugInfo.h"
27#include "llvm/IR/DIBuilder.h"
Eugene Zelenkof53a7b42017-05-05 22:30:37 +000028#include "llvm/IR/Function.h"
Mehdi Aminib550cb12016-04-18 09:17:29 +000029#include "llvm/IR/GVMaterializer.h"
Eugene Zelenkof53a7b42017-05-05 22:30:37 +000030#include "llvm/IR/Instruction.h"
Bill Wendling523bea82013-11-08 08:13:15 +000031#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenkof53a7b42017-05-05 22:30:37 +000032#include "llvm/IR/LLVMContext.h"
33#include "llvm/IR/Metadata.h"
Bill Wendling523bea82013-11-08 08:13:15 +000034#include "llvm/IR/Module.h"
Eugene Zelenkof53a7b42017-05-05 22:30:37 +000035#include "llvm/Support/Casting.h"
36#include <algorithm>
37#include <cassert>
38#include <utility>
39
Bill Wendling523bea82013-11-08 08:13:15 +000040using namespace llvm;
41using namespace llvm::dwarf;
42
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000043DISubprogram *llvm::getDISubprogram(const MDNode *Scope) {
44 if (auto *LocalScope = dyn_cast_or_null<DILocalScope>(Scope))
Duncan P. N. Exon Smithdd77af82015-03-31 02:06:28 +000045 return LocalScope->getSubprogram();
46 return nullptr;
Bill Wendling523bea82013-11-08 08:13:15 +000047}
48
Bill Wendling523bea82013-11-08 08:13:15 +000049//===----------------------------------------------------------------------===//
50// DebugInfoFinder implementations.
51//===----------------------------------------------------------------------===//
52
53void DebugInfoFinder::reset() {
54 CUs.clear();
55 SPs.clear();
56 GVs.clear();
57 TYs.clear();
58 Scopes.clear();
59 NodesSeen.clear();
Bill Wendling523bea82013-11-08 08:13:15 +000060}
61
Bill Wendling523bea82013-11-08 08:13:15 +000062void DebugInfoFinder::processModule(const Module &M) {
Roman Tereshindab10b52018-04-13 21:23:11 +000063 for (auto *CU : M.debug_compile_units())
64 processCompileUnit(CU);
Keno Fischer30779772017-04-11 13:32:11 +000065 for (auto &F : M.functions()) {
Adrian Prantl75819ae2016-04-15 15:57:41 +000066 if (auto *SP = cast_or_null<DISubprogram>(F.getSubprogram()))
67 processSubprogram(SP);
Keno Fischer30779772017-04-11 13:32:11 +000068 // There could be subprograms from inlined functions referenced from
69 // instructions only. Walk the function to find them.
Roman Tereshindab10b52018-04-13 21:23:11 +000070 for (const BasicBlock &BB : F)
71 for (const Instruction &I : BB)
72 processInstruction(M, I);
Keno Fischer30779772017-04-11 13:32:11 +000073 }
Bill Wendling523bea82013-11-08 08:13:15 +000074}
75
Roman Tereshind769eb32018-04-13 21:22:24 +000076void DebugInfoFinder::processCompileUnit(DICompileUnit *CU) {
77 if (!addCompileUnit(CU))
78 return;
79 for (auto DIG : CU->getGlobalVariables()) {
80 if (!addGlobalVariable(DIG))
81 continue;
82 auto *GV = DIG->getVariable();
83 processScope(GV->getScope());
84 processType(GV->getType().resolve());
85 }
86 for (auto *ET : CU->getEnumTypes())
87 processType(ET);
88 for (auto *RT : CU->getRetainedTypes())
89 if (auto *T = dyn_cast<DIType>(RT))
90 processType(T);
91 else
92 processSubprogram(cast<DISubprogram>(RT));
93 for (auto *Import : CU->getImportedEntities()) {
94 auto *Entity = Import->getEntity().resolve();
95 if (auto *T = dyn_cast<DIType>(Entity))
96 processType(T);
97 else if (auto *SP = dyn_cast<DISubprogram>(Entity))
98 processSubprogram(SP);
99 else if (auto *NS = dyn_cast<DINamespace>(Entity))
100 processScope(NS->getScope());
101 else if (auto *M = dyn_cast<DIModule>(Entity))
102 processScope(M->getScope());
Roman Tereshind769eb32018-04-13 21:22:24 +0000103 }
104}
105
Roman Tereshindab10b52018-04-13 21:23:11 +0000106void DebugInfoFinder::processInstruction(const Module &M,
107 const Instruction &I) {
108 if (auto *DDI = dyn_cast<DbgDeclareInst>(&I))
109 processDeclare(M, DDI);
110 else if (auto *DVI = dyn_cast<DbgValueInst>(&I))
111 processValue(M, DVI);
112
113 if (auto DbgLoc = I.getDebugLoc())
114 processLocation(M, DbgLoc.get());
115}
116
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000117void DebugInfoFinder::processLocation(const Module &M, const DILocation *Loc) {
Bill Wendling523bea82013-11-08 08:13:15 +0000118 if (!Loc)
119 return;
Duncan P. N. Exon Smithb7e221b2015-04-14 01:35:55 +0000120 processScope(Loc->getScope());
121 processLocation(M, Loc->getInlinedAt());
Bill Wendling523bea82013-11-08 08:13:15 +0000122}
123
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000124void DebugInfoFinder::processType(DIType *DT) {
Bill Wendling523bea82013-11-08 08:13:15 +0000125 if (!addType(DT))
126 return;
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000127 processScope(DT->getScope().resolve());
Duncan P. N. Exon Smith260fa8a2015-07-24 20:56:10 +0000128 if (auto *ST = dyn_cast<DISubroutineType>(DT)) {
129 for (DITypeRef Ref : ST->getTypeArray())
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000130 processType(Ref.resolve());
Duncan P. N. Exon Smith260fa8a2015-07-24 20:56:10 +0000131 return;
132 }
133 if (auto *DCT = dyn_cast<DICompositeType>(DT)) {
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000134 processType(DCT->getBaseType().resolve());
Anders Waldenborg1433fd42015-04-14 09:18:17 +0000135 for (Metadata *D : DCT->getElements()) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000136 if (auto *T = dyn_cast<DIType>(D))
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000137 processType(T);
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000138 else if (auto *SP = dyn_cast<DISubprogram>(D))
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000139 processSubprogram(SP);
Bill Wendling523bea82013-11-08 08:13:15 +0000140 }
Duncan P. N. Exon Smith260fa8a2015-07-24 20:56:10 +0000141 return;
142 }
143 if (auto *DDT = dyn_cast<DIDerivedType>(DT)) {
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000144 processType(DDT->getBaseType().resolve());
Bill Wendling523bea82013-11-08 08:13:15 +0000145 }
146}
147
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000148void DebugInfoFinder::processScope(DIScope *Scope) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000149 if (!Scope)
150 return;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000151 if (auto *Ty = dyn_cast<DIType>(Scope)) {
Bill Wendling523bea82013-11-08 08:13:15 +0000152 processType(Ty);
153 return;
154 }
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000155 if (auto *CU = dyn_cast<DICompileUnit>(Scope)) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000156 addCompileUnit(CU);
Bill Wendling523bea82013-11-08 08:13:15 +0000157 return;
158 }
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000159 if (auto *SP = dyn_cast<DISubprogram>(Scope)) {
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000160 processSubprogram(SP);
Bill Wendling523bea82013-11-08 08:13:15 +0000161 return;
162 }
163 if (!addScope(Scope))
164 return;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000165 if (auto *LB = dyn_cast<DILexicalBlockBase>(Scope)) {
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000166 processScope(LB->getScope());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000167 } else if (auto *NS = dyn_cast<DINamespace>(Scope)) {
Duncan P. N. Exon Smith20caafb2015-04-14 03:01:27 +0000168 processScope(NS->getScope());
Adrian Prantlab1243f2015-06-29 23:03:47 +0000169 } else if (auto *M = dyn_cast<DIModule>(Scope)) {
170 processScope(M->getScope());
Bill Wendling523bea82013-11-08 08:13:15 +0000171 }
172}
173
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000174void DebugInfoFinder::processSubprogram(DISubprogram *SP) {
Bill Wendling523bea82013-11-08 08:13:15 +0000175 if (!addSubprogram(SP))
176 return;
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000177 processScope(SP->getScope().resolve());
Roman Tereshind769eb32018-04-13 21:22:24 +0000178 // Some of the users, e.g. CloneFunctionInto / CloneModule, need to set up a
179 // ValueMap containing identity mappings for all of the DICompileUnit's, not
180 // just DISubprogram's, referenced from anywhere within the Function being
181 // cloned prior to calling MapMetadata / RemapInstruction to avoid their
182 // duplication later as DICompileUnit's are also directly referenced by
183 // llvm.dbg.cu list. Thefore we need to collect DICompileUnit's here as well.
184 // Also, DICompileUnit's may reference DISubprogram's too and therefore need
185 // to be at least looked through.
186 processCompileUnit(SP->getUnit());
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +0000187 processType(SP->getType());
188 for (auto *Element : SP->getTemplateParams()) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000189 if (auto *TType = dyn_cast<DITemplateTypeParameter>(Element)) {
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000190 processType(TType->getType().resolve());
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000191 } else if (auto *TVal = dyn_cast<DITemplateValueParameter>(Element)) {
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000192 processType(TVal->getType().resolve());
Bill Wendling523bea82013-11-08 08:13:15 +0000193 }
194 }
195}
196
Manman Ren2085ccc2013-11-17 18:42:37 +0000197void DebugInfoFinder::processDeclare(const Module &M,
198 const DbgDeclareInst *DDI) {
Duncan P. N. Exon Smithed557b52015-04-17 23:20:10 +0000199 auto *N = dyn_cast<MDNode>(DDI->getVariable());
Bill Wendling523bea82013-11-08 08:13:15 +0000200 if (!N)
201 return;
202
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000203 auto *DV = dyn_cast<DILocalVariable>(N);
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000204 if (!DV)
Bill Wendling523bea82013-11-08 08:13:15 +0000205 return;
206
David Blaikie70573dc2014-11-19 07:49:26 +0000207 if (!NodesSeen.insert(DV).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000208 return;
Duncan P. N. Exon Smith7348dda2015-04-14 02:22:36 +0000209 processScope(DV->getScope());
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000210 processType(DV->getType().resolve());
Bill Wendling523bea82013-11-08 08:13:15 +0000211}
212
Manman Ren2085ccc2013-11-17 18:42:37 +0000213void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) {
Duncan P. N. Exon Smithed557b52015-04-17 23:20:10 +0000214 auto *N = dyn_cast<MDNode>(DVI->getVariable());
Bill Wendling523bea82013-11-08 08:13:15 +0000215 if (!N)
216 return;
217
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000218 auto *DV = dyn_cast<DILocalVariable>(N);
Duncan P. N. Exon Smith9d1cf4c2015-04-06 23:18:49 +0000219 if (!DV)
Bill Wendling523bea82013-11-08 08:13:15 +0000220 return;
221
David Blaikie70573dc2014-11-19 07:49:26 +0000222 if (!NodesSeen.insert(DV).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000223 return;
Duncan P. N. Exon Smith7348dda2015-04-14 02:22:36 +0000224 processScope(DV->getScope());
Duncan P. N. Exon Smitha59d3e52016-04-23 21:08:00 +0000225 processType(DV->getType().resolve());
Bill Wendling523bea82013-11-08 08:13:15 +0000226}
227
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000228bool DebugInfoFinder::addType(DIType *DT) {
Bill Wendling523bea82013-11-08 08:13:15 +0000229 if (!DT)
230 return false;
231
David Blaikie70573dc2014-11-19 07:49:26 +0000232 if (!NodesSeen.insert(DT).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000233 return false;
234
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000235 TYs.push_back(const_cast<DIType *>(DT));
Bill Wendling523bea82013-11-08 08:13:15 +0000236 return true;
237}
238
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000239bool DebugInfoFinder::addCompileUnit(DICompileUnit *CU) {
Bill Wendling523bea82013-11-08 08:13:15 +0000240 if (!CU)
241 return false;
David Blaikie70573dc2014-11-19 07:49:26 +0000242 if (!NodesSeen.insert(CU).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000243 return false;
244
245 CUs.push_back(CU);
246 return true;
247}
248
Adrian Prantlbceaaa92016-12-20 02:09:43 +0000249bool DebugInfoFinder::addGlobalVariable(DIGlobalVariableExpression *DIG) {
David Blaikie70573dc2014-11-19 07:49:26 +0000250 if (!NodesSeen.insert(DIG).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000251 return false;
252
253 GVs.push_back(DIG);
254 return true;
255}
256
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000257bool DebugInfoFinder::addSubprogram(DISubprogram *SP) {
Bill Wendling523bea82013-11-08 08:13:15 +0000258 if (!SP)
259 return false;
260
David Blaikie70573dc2014-11-19 07:49:26 +0000261 if (!NodesSeen.insert(SP).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000262 return false;
263
264 SPs.push_back(SP);
265 return true;
266}
267
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000268bool DebugInfoFinder::addScope(DIScope *Scope) {
Bill Wendling523bea82013-11-08 08:13:15 +0000269 if (!Scope)
270 return false;
271 // FIXME: Ocaml binding generates a scope with no content, we treat it
272 // as null for now.
273 if (Scope->getNumOperands() == 0)
274 return false;
David Blaikie70573dc2014-11-19 07:49:26 +0000275 if (!NodesSeen.insert(Scope).second)
Bill Wendling523bea82013-11-08 08:13:15 +0000276 return false;
277 Scopes.push_back(Scope);
278 return true;
279}
280
Eugene Zelenkof53a7b42017-05-05 22:30:37 +0000281static MDNode *stripDebugLocFromLoopID(MDNode *N) {
Matthias Braun9fd397b2018-10-31 00:23:23 +0000282 assert(!empty(N->operands()) && "Missing self reference?");
Daniel Sandersb96a9452017-01-28 11:22:05 +0000283
Teresa Johnson9b4b8c82017-03-19 13:54:57 +0000284 // if there is no debug location, we do not have to rewrite this MDNode.
285 if (std::none_of(N->op_begin() + 1, N->op_end(), [](const MDOperand &Op) {
286 return isa<DILocation>(Op.get());
287 }))
Daniel Sandersb96a9452017-01-28 11:22:05 +0000288 return N;
289
Teresa Johnson9b4b8c82017-03-19 13:54:57 +0000290 // If there is only the debug location without any actual loop metadata, we
Daniel Sandersb96a9452017-01-28 11:22:05 +0000291 // can remove the metadata.
Teresa Johnson9b4b8c82017-03-19 13:54:57 +0000292 if (std::none_of(N->op_begin() + 1, N->op_end(), [](const MDOperand &Op) {
293 return !isa<DILocation>(Op.get());
294 }))
Daniel Sandersb96a9452017-01-28 11:22:05 +0000295 return nullptr;
296
297 SmallVector<Metadata *, 4> Args;
298 // Reserve operand 0 for loop id self reference.
299 auto TempNode = MDNode::getTemporary(N->getContext(), None);
300 Args.push_back(TempNode.get());
Teresa Johnson9b4b8c82017-03-19 13:54:57 +0000301 // Add all non-debug location operands back.
302 for (auto Op = N->op_begin() + 1; Op != N->op_end(); Op++) {
303 if (!isa<DILocation>(*Op))
304 Args.push_back(*Op);
305 }
Daniel Sandersb96a9452017-01-28 11:22:05 +0000306
307 // Set the first operand to itself.
308 MDNode *LoopID = MDNode::get(N->getContext(), Args);
309 LoopID->replaceOperandWith(0, LoopID);
310 return LoopID;
311}
312
Rafael Espindola0d68b4c2015-03-30 21:36:43 +0000313bool llvm::stripDebugInfo(Function &F) {
314 bool Changed = false;
Benjamin Kramer0deb9a92018-05-31 13:29:58 +0000315 if (F.hasMetadata(LLVMContext::MD_dbg)) {
Peter Collingbourned4bff302015-11-05 22:03:56 +0000316 Changed = true;
317 F.setSubprogram(nullptr);
318 }
Mehdi Amini581f0e12016-05-07 04:10:52 +0000319
Eugene Zelenkof53a7b42017-05-05 22:30:37 +0000320 DenseMap<MDNode*, MDNode*> LoopIDsMap;
Rafael Espindola0d68b4c2015-03-30 21:36:43 +0000321 for (BasicBlock &BB : F) {
Mehdi Amini581f0e12016-05-07 04:10:52 +0000322 for (auto II = BB.begin(), End = BB.end(); II != End;) {
323 Instruction &I = *II++; // We may delete the instruction, increment now.
Mehdi Aminidb8dd552016-05-14 04:58:35 +0000324 if (isa<DbgInfoIntrinsic>(&I)) {
325 I.eraseFromParent();
Mehdi Amini581f0e12016-05-07 04:10:52 +0000326 Changed = true;
Mehdi Aminibbedb142016-05-07 05:07:47 +0000327 continue;
Mehdi Amini581f0e12016-05-07 04:10:52 +0000328 }
Rafael Espindola0d68b4c2015-03-30 21:36:43 +0000329 if (I.getDebugLoc()) {
330 Changed = true;
331 I.setDebugLoc(DebugLoc());
332 }
333 }
Daniel Sandersb96a9452017-01-28 11:22:05 +0000334
335 auto *TermInst = BB.getTerminator();
Justin Bognerb29bebe2017-08-18 21:38:03 +0000336 if (!TermInst)
337 // This is invalid IR, but we may not have run the verifier yet
338 continue;
Daniel Sandersb96a9452017-01-28 11:22:05 +0000339 if (auto *LoopID = TermInst->getMetadata(LLVMContext::MD_loop)) {
340 auto *NewLoopID = LoopIDsMap.lookup(LoopID);
341 if (!NewLoopID)
342 NewLoopID = LoopIDsMap[LoopID] = stripDebugLocFromLoopID(LoopID);
343 if (NewLoopID != LoopID)
344 TermInst->setMetadata(LLVMContext::MD_loop, NewLoopID);
345 }
Rafael Espindola0d68b4c2015-03-30 21:36:43 +0000346 }
347 return Changed;
348}
349
Manman Rencb14bbc2013-11-22 22:06:31 +0000350bool llvm::StripDebugInfo(Module &M) {
Manman Rencb14bbc2013-11-22 22:06:31 +0000351 bool Changed = false;
352
Manman Rencb14bbc2013-11-22 22:06:31 +0000353 for (Module::named_metadata_iterator NMI = M.named_metadata_begin(),
354 NME = M.named_metadata_end(); NMI != NME;) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +0000355 NamedMDNode *NMD = &*NMI;
Manman Rencb14bbc2013-11-22 22:06:31 +0000356 ++NMI;
Davide Italiano84bd58e2016-10-17 20:05:35 +0000357
358 // We're stripping debug info, and without them, coverage information
359 // doesn't quite make sense.
360 if (NMD->getName().startswith("llvm.dbg.") ||
361 NMD->getName() == "llvm.gcov") {
Manman Rencb14bbc2013-11-22 22:06:31 +0000362 NMD->eraseFromParent();
363 Changed = true;
364 }
365 }
366
Rafael Espindola0d68b4c2015-03-30 21:36:43 +0000367 for (Function &F : M)
368 Changed |= stripDebugInfo(F);
369
Adrian Prantl3bfe1092016-10-10 17:53:33 +0000370 for (auto &GV : M.globals()) {
Benjamin Kramer0deb9a92018-05-31 13:29:58 +0000371 Changed |= GV.eraseMetadata(LLVMContext::MD_dbg);
Adrian Prantl3bfe1092016-10-10 17:53:33 +0000372 }
373
Rafael Espindola468b8682015-04-01 14:44:59 +0000374 if (GVMaterializer *Materializer = M.getMaterializer())
Rafael Espindola0d68b4c2015-03-30 21:36:43 +0000375 Materializer->setStripDebugInfo();
Manman Rencb14bbc2013-11-22 22:06:31 +0000376
377 return Changed;
378}
Manman Ren8b4306c2013-12-02 21:29:56 +0000379
Michael Ilsemane5428042016-10-25 18:44:13 +0000380namespace {
381
382/// Helper class to downgrade -g metadata to -gline-tables-only metadata.
383class DebugTypeInfoRemoval {
384 DenseMap<Metadata *, Metadata *> Replacements;
385
386public:
387 /// The (void)() type.
388 MDNode *EmptySubroutineType;
389
390private:
391 /// Remember what linkage name we originally had before stripping. If we end
392 /// up making two subprograms identical who originally had different linkage
393 /// names, then we need to make one of them distinct, to avoid them getting
394 /// uniqued. Maps the new node to the old linkage name.
395 DenseMap<DISubprogram *, StringRef> NewToLinkageName;
396
397 // TODO: Remember the distinct subprogram we created for a given linkage name,
398 // so that we can continue to unique whenever possible. Map <newly created
399 // node, old linkage name> to the first (possibly distinct) mdsubprogram
400 // created for that combination. This is not strictly needed for correctness,
401 // but can cut down on the number of MDNodes and let us diff cleanly with the
402 // output of -gline-tables-only.
403
404public:
405 DebugTypeInfoRemoval(LLVMContext &C)
406 : EmptySubroutineType(DISubroutineType::get(C, DINode::FlagZero, 0,
407 MDNode::get(C, {}))) {}
408
409 Metadata *map(Metadata *M) {
410 if (!M)
411 return nullptr;
412 auto Replacement = Replacements.find(M);
413 if (Replacement != Replacements.end())
414 return Replacement->second;
415
416 return M;
417 }
418 MDNode *mapNode(Metadata *N) { return dyn_cast_or_null<MDNode>(map(N)); }
419
420 /// Recursively remap N and all its referenced children. Does a DF post-order
421 /// traversal, so as to remap bottoms up.
422 void traverseAndRemap(MDNode *N) { traverse(N); }
423
424private:
425 // Create a new DISubprogram, to replace the one given.
426 DISubprogram *getReplacementSubprogram(DISubprogram *MDS) {
427 auto *FileAndScope = cast_or_null<DIFile>(map(MDS->getFile()));
428 StringRef LinkageName = MDS->getName().empty() ? MDS->getLinkageName() : "";
429 DISubprogram *Declaration = nullptr;
430 auto *Type = cast_or_null<DISubroutineType>(map(MDS->getType()));
431 DITypeRef ContainingType(map(MDS->getContainingType()));
432 auto *Unit = cast_or_null<DICompileUnit>(map(MDS->getUnit()));
433 auto Variables = nullptr;
434 auto TemplateParams = nullptr;
435
436 // Make a distinct DISubprogram, for situations that warrent it.
437 auto distinctMDSubprogram = [&]() {
438 return DISubprogram::getDistinct(
439 MDS->getContext(), FileAndScope, MDS->getName(), LinkageName,
Paul Robinsoncda54212018-11-19 18:29:28 +0000440 FileAndScope, MDS->getLine(), Type, MDS->getScopeLine(),
441 ContainingType, MDS->getVirtualIndex(), MDS->getThisAdjustment(),
442 MDS->getFlags(), MDS->getSPFlags(), Unit, TemplateParams, Declaration,
443 Variables);
Michael Ilsemane5428042016-10-25 18:44:13 +0000444 };
445
446 if (MDS->isDistinct())
447 return distinctMDSubprogram();
448
449 auto *NewMDS = DISubprogram::get(
450 MDS->getContext(), FileAndScope, MDS->getName(), LinkageName,
Paul Robinsoncda54212018-11-19 18:29:28 +0000451 FileAndScope, MDS->getLine(), Type, MDS->getScopeLine(), ContainingType,
452 MDS->getVirtualIndex(), MDS->getThisAdjustment(), MDS->getFlags(),
453 MDS->getSPFlags(), Unit, TemplateParams, Declaration, Variables);
Michael Ilsemane5428042016-10-25 18:44:13 +0000454
455 StringRef OldLinkageName = MDS->getLinkageName();
456
457 // See if we need to make a distinct one.
458 auto OrigLinkage = NewToLinkageName.find(NewMDS);
459 if (OrigLinkage != NewToLinkageName.end()) {
460 if (OrigLinkage->second == OldLinkageName)
461 // We're good.
462 return NewMDS;
463
464 // Otherwise, need to make a distinct one.
465 // TODO: Query the map to see if we already have one.
466 return distinctMDSubprogram();
467 }
468
469 NewToLinkageName.insert({NewMDS, MDS->getLinkageName()});
470 return NewMDS;
471 }
472
473 /// Create a new compile unit, to replace the one given
474 DICompileUnit *getReplacementCU(DICompileUnit *CU) {
475 // Drop skeleton CUs.
476 if (CU->getDWOId())
477 return nullptr;
478
479 auto *File = cast_or_null<DIFile>(map(CU->getFile()));
480 MDTuple *EnumTypes = nullptr;
481 MDTuple *RetainedTypes = nullptr;
482 MDTuple *GlobalVariables = nullptr;
483 MDTuple *ImportedEntities = nullptr;
484 return DICompileUnit::getDistinct(
485 CU->getContext(), CU->getSourceLanguage(), File, CU->getProducer(),
486 CU->isOptimized(), CU->getFlags(), CU->getRuntimeVersion(),
487 CU->getSplitDebugFilename(), DICompileUnit::LineTablesOnly, EnumTypes,
488 RetainedTypes, GlobalVariables, ImportedEntities, CU->getMacros(),
Dehao Chen0944a8c2017-02-01 22:45:09 +0000489 CU->getDWOId(), CU->getSplitDebugInlining(),
David Blaikiebb279112018-11-13 20:08:10 +0000490 CU->getDebugInfoForProfiling(), CU->getNameTableKind(),
491 CU->getRangesBaseAddress());
Michael Ilsemane5428042016-10-25 18:44:13 +0000492 }
493
494 DILocation *getReplacementMDLocation(DILocation *MLD) {
495 auto *Scope = map(MLD->getScope());
496 auto *InlinedAt = map(MLD->getInlinedAt());
497 if (MLD->isDistinct())
498 return DILocation::getDistinct(MLD->getContext(), MLD->getLine(),
499 MLD->getColumn(), Scope, InlinedAt);
500 return DILocation::get(MLD->getContext(), MLD->getLine(), MLD->getColumn(),
501 Scope, InlinedAt);
502 }
503
504 /// Create a new generic MDNode, to replace the one given
505 MDNode *getReplacementMDNode(MDNode *N) {
506 SmallVector<Metadata *, 8> Ops;
507 Ops.reserve(N->getNumOperands());
508 for (auto &I : N->operands())
509 if (I)
510 Ops.push_back(map(I));
511 auto *Ret = MDNode::get(N->getContext(), Ops);
512 return Ret;
513 }
514
515 /// Attempt to re-map N to a newly created node.
516 void remap(MDNode *N) {
517 if (Replacements.count(N))
518 return;
519
520 auto doRemap = [&](MDNode *N) -> MDNode * {
521 if (!N)
522 return nullptr;
523 if (auto *MDSub = dyn_cast<DISubprogram>(N)) {
524 remap(MDSub->getUnit());
525 return getReplacementSubprogram(MDSub);
526 }
527 if (isa<DISubroutineType>(N))
528 return EmptySubroutineType;
529 if (auto *CU = dyn_cast<DICompileUnit>(N))
530 return getReplacementCU(CU);
531 if (isa<DIFile>(N))
532 return N;
533 if (auto *MDLB = dyn_cast<DILexicalBlockBase>(N))
534 // Remap to our referenced scope (recursively).
535 return mapNode(MDLB->getScope());
536 if (auto *MLD = dyn_cast<DILocation>(N))
537 return getReplacementMDLocation(MLD);
538
539 // Otherwise, if we see these, just drop them now. Not strictly necessary,
540 // but this speeds things up a little.
541 if (isa<DINode>(N))
542 return nullptr;
543
544 return getReplacementMDNode(N);
545 };
546 Replacements[N] = doRemap(N);
547 }
548
549 /// Do the remapping traversal.
550 void traverse(MDNode *);
551};
552
Eugene Zelenkof53a7b42017-05-05 22:30:37 +0000553} // end anonymous namespace
Michael Ilsemane5428042016-10-25 18:44:13 +0000554
555void DebugTypeInfoRemoval::traverse(MDNode *N) {
556 if (!N || Replacements.count(N))
557 return;
558
559 // To avoid cycles, as well as for efficiency sake, we will sometimes prune
560 // parts of the graph.
561 auto prune = [](MDNode *Parent, MDNode *Child) {
562 if (auto *MDS = dyn_cast<DISubprogram>(Parent))
Shiva Chen2c864552018-05-09 02:40:45 +0000563 return Child == MDS->getRetainedNodes().get();
Michael Ilsemane5428042016-10-25 18:44:13 +0000564 return false;
565 };
566
567 SmallVector<MDNode *, 16> ToVisit;
568 DenseSet<MDNode *> Opened;
569
570 // Visit each node starting at N in post order, and map them.
571 ToVisit.push_back(N);
572 while (!ToVisit.empty()) {
573 auto *N = ToVisit.back();
574 if (!Opened.insert(N).second) {
575 // Close it.
576 remap(N);
577 ToVisit.pop_back();
578 continue;
579 }
580 for (auto &I : N->operands())
581 if (auto *MDN = dyn_cast_or_null<MDNode>(I))
582 if (!Opened.count(MDN) && !Replacements.count(MDN) && !prune(N, MDN) &&
583 !isa<DICompileUnit>(MDN))
584 ToVisit.push_back(MDN);
585 }
586}
587
588bool llvm::stripNonLineTableDebugInfo(Module &M) {
589 bool Changed = false;
590
591 // First off, delete the debug intrinsics.
592 auto RemoveUses = [&](StringRef Name) {
593 if (auto *DbgVal = M.getFunction(Name)) {
594 while (!DbgVal->use_empty())
595 cast<Instruction>(DbgVal->user_back())->eraseFromParent();
596 DbgVal->eraseFromParent();
597 Changed = true;
598 }
599 };
600 RemoveUses("llvm.dbg.declare");
601 RemoveUses("llvm.dbg.value");
602
603 // Delete non-CU debug info named metadata nodes.
604 for (auto NMI = M.named_metadata_begin(), NME = M.named_metadata_end();
605 NMI != NME;) {
606 NamedMDNode *NMD = &*NMI;
607 ++NMI;
608 // Specifically keep dbg.cu around.
609 if (NMD->getName() == "llvm.dbg.cu")
610 continue;
611 }
612
613 // Drop all dbg attachments from global variables.
614 for (auto &GV : M.globals())
615 GV.eraseMetadata(LLVMContext::MD_dbg);
616
617 DebugTypeInfoRemoval Mapper(M.getContext());
Eugene Zelenkof53a7b42017-05-05 22:30:37 +0000618 auto remap = [&](MDNode *Node) -> MDNode * {
Michael Ilsemane5428042016-10-25 18:44:13 +0000619 if (!Node)
620 return nullptr;
621 Mapper.traverseAndRemap(Node);
622 auto *NewNode = Mapper.mapNode(Node);
623 Changed |= Node != NewNode;
624 Node = NewNode;
625 return NewNode;
626 };
627
628 // Rewrite the DebugLocs to be equivalent to what
629 // -gline-tables-only would have created.
630 for (auto &F : M) {
631 if (auto *SP = F.getSubprogram()) {
632 Mapper.traverseAndRemap(SP);
633 auto *NewSP = cast<DISubprogram>(Mapper.mapNode(SP));
634 Changed |= SP != NewSP;
635 F.setSubprogram(NewSP);
636 }
637 for (auto &BB : F) {
638 for (auto &I : BB) {
Adrian Prantl346dcaf2017-03-30 20:10:56 +0000639 auto remapDebugLoc = [&](DebugLoc DL) -> DebugLoc {
640 auto *Scope = DL.getScope();
641 MDNode *InlinedAt = DL.getInlinedAt();
642 Scope = remap(Scope);
643 InlinedAt = remap(InlinedAt);
644 return DebugLoc::get(DL.getLine(), DL.getCol(), Scope, InlinedAt);
645 };
Michael Ilsemane5428042016-10-25 18:44:13 +0000646
Adrian Prantl346dcaf2017-03-30 20:10:56 +0000647 if (I.getDebugLoc() != DebugLoc())
648 I.setDebugLoc(remapDebugLoc(I.getDebugLoc()));
649
650 // Remap DILocations in untyped MDNodes (e.g., llvm.loop).
651 SmallVector<std::pair<unsigned, MDNode *>, 2> MDs;
652 I.getAllMetadata(MDs);
653 for (auto Attachment : MDs)
654 if (auto *T = dyn_cast_or_null<MDTuple>(Attachment.second))
655 for (unsigned N = 0; N < T->getNumOperands(); ++N)
656 if (auto *Loc = dyn_cast_or_null<DILocation>(T->getOperand(N)))
657 if (Loc != DebugLoc())
658 T->replaceOperandWith(N, remapDebugLoc(Loc));
Michael Ilsemane5428042016-10-25 18:44:13 +0000659 }
660 }
661 }
662
663 // Create a new llvm.dbg.cu, which is equivalent to the one
664 // -gline-tables-only would have created.
665 for (auto &NMD : M.getNamedMDList()) {
666 SmallVector<MDNode *, 8> Ops;
667 for (MDNode *Op : NMD.operands())
668 Ops.push_back(remap(Op));
Bjorn Petterssonaa025802018-07-03 12:39:52 +0000669
Michael Ilsemane5428042016-10-25 18:44:13 +0000670 if (!Changed)
671 continue;
Bjorn Petterssonaa025802018-07-03 12:39:52 +0000672
Michael Ilsemane5428042016-10-25 18:44:13 +0000673 NMD.clearOperands();
674 for (auto *Op : Ops)
675 if (Op)
676 NMD.addOperand(Op);
677 }
678 return Changed;
679}
680
Manman Renbd4daf82013-12-03 00:12:14 +0000681unsigned llvm::getDebugMetadataVersionFromModule(const Module &M) {
David Majnemere7a9cdb2015-02-16 06:04:53 +0000682 if (auto *Val = mdconst::dyn_extract_or_null<ConstantInt>(
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000683 M.getModuleFlag("Debug Info Version")))
684 return Val->getZExtValue();
685 return 0;
Manman Ren8b4306c2013-12-02 21:29:56 +0000686}
Dehao Chenf4646272017-10-02 18:13:14 +0000687
688void Instruction::applyMergedLocation(const DILocation *LocA,
689 const DILocation *LocB) {
David Blaikie2a813ef2018-08-23 22:35:58 +0000690 setDebugLoc(DILocation::getMergedLocation(LocA, LocB));
Dehao Chenf4646272017-10-02 18:13:14 +0000691}
whitequark789164d2017-11-01 22:18:52 +0000692
693//===----------------------------------------------------------------------===//
694// LLVM C API implementations.
695//===----------------------------------------------------------------------===//
696
697static unsigned map_from_llvmDWARFsourcelanguage(LLVMDWARFSourceLanguage lang) {
698 switch (lang) {
David Blaikieac69af72018-12-19 19:34:24 +0000699#define HANDLE_DW_LANG(ID, NAME, LOWER_BOUND, VERSION, VENDOR) \
700 case LLVMDWARFSourceLanguage##NAME: \
701 return ID;
whitequark789164d2017-11-01 22:18:52 +0000702#include "llvm/BinaryFormat/Dwarf.def"
703#undef HANDLE_DW_LANG
704 }
705 llvm_unreachable("Unhandled Tag");
706}
707
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000708template <typename DIT> DIT *unwrapDI(LLVMMetadataRef Ref) {
709 return (DIT *)(Ref ? unwrap<MDNode>(Ref) : nullptr);
710}
711
712static DINode::DIFlags map_from_llvmDIFlags(LLVMDIFlags Flags) {
713 return static_cast<DINode::DIFlags>(Flags);
714}
715
Robert Widmann260b5812018-05-10 18:23:55 +0000716static LLVMDIFlags map_to_llvmDIFlags(DINode::DIFlags Flags) {
717 return static_cast<LLVMDIFlags>(Flags);
718}
719
Paul Robinsoncda54212018-11-19 18:29:28 +0000720static DISubprogram::DISPFlags
721pack_into_DISPFlags(bool IsLocalToUnit, bool IsDefinition, bool IsOptimized) {
722 return DISubprogram::toSPFlags(IsLocalToUnit, IsDefinition, IsOptimized);
723}
724
whitequark789164d2017-11-01 22:18:52 +0000725unsigned LLVMDebugMetadataVersion() {
726 return DEBUG_METADATA_VERSION;
727}
728
729LLVMDIBuilderRef LLVMCreateDIBuilderDisallowUnresolved(LLVMModuleRef M) {
730 return wrap(new DIBuilder(*unwrap(M), false));
731}
732
733LLVMDIBuilderRef LLVMCreateDIBuilder(LLVMModuleRef M) {
734 return wrap(new DIBuilder(*unwrap(M)));
735}
736
737unsigned LLVMGetModuleDebugMetadataVersion(LLVMModuleRef M) {
738 return getDebugMetadataVersionFromModule(*unwrap(M));
739}
740
741LLVMBool LLVMStripModuleDebugInfo(LLVMModuleRef M) {
742 return StripDebugInfo(*unwrap(M));
743}
744
745void LLVMDisposeDIBuilder(LLVMDIBuilderRef Builder) {
746 delete unwrap(Builder);
747}
748
749void LLVMDIBuilderFinalize(LLVMDIBuilderRef Builder) {
750 unwrap(Builder)->finalize();
751}
752
753LLVMMetadataRef LLVMDIBuilderCreateCompileUnit(
754 LLVMDIBuilderRef Builder, LLVMDWARFSourceLanguage Lang,
755 LLVMMetadataRef FileRef, const char *Producer, size_t ProducerLen,
756 LLVMBool isOptimized, const char *Flags, size_t FlagsLen,
757 unsigned RuntimeVer, const char *SplitName, size_t SplitNameLen,
758 LLVMDWARFEmissionKind Kind, unsigned DWOId, LLVMBool SplitDebugInlining,
759 LLVMBool DebugInfoForProfiling) {
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000760 auto File = unwrapDI<DIFile>(FileRef);
whitequark789164d2017-11-01 22:18:52 +0000761
762 return wrap(unwrap(Builder)->createCompileUnit(
763 map_from_llvmDWARFsourcelanguage(Lang), File,
764 StringRef(Producer, ProducerLen), isOptimized,
765 StringRef(Flags, FlagsLen), RuntimeVer,
766 StringRef(SplitName, SplitNameLen),
767 static_cast<DICompileUnit::DebugEmissionKind>(Kind), DWOId,
768 SplitDebugInlining, DebugInfoForProfiling));
769}
770
771LLVMMetadataRef
772LLVMDIBuilderCreateFile(LLVMDIBuilderRef Builder, const char *Filename,
773 size_t FilenameLen, const char *Directory,
774 size_t DirectoryLen) {
775 return wrap(unwrap(Builder)->createFile(StringRef(Filename, FilenameLen),
776 StringRef(Directory, DirectoryLen)));
777}
778
Robert Widmannb02fe642018-04-23 13:51:43 +0000779LLVMMetadataRef
780LLVMDIBuilderCreateModule(LLVMDIBuilderRef Builder, LLVMMetadataRef ParentScope,
781 const char *Name, size_t NameLen,
782 const char *ConfigMacros, size_t ConfigMacrosLen,
783 const char *IncludePath, size_t IncludePathLen,
784 const char *ISysRoot, size_t ISysRootLen) {
785 return wrap(unwrap(Builder)->createModule(
786 unwrapDI<DIScope>(ParentScope), StringRef(Name, NameLen),
787 StringRef(ConfigMacros, ConfigMacrosLen),
788 StringRef(IncludePath, IncludePathLen),
789 StringRef(ISysRoot, ISysRootLen)));
790}
791
792LLVMMetadataRef LLVMDIBuilderCreateNameSpace(LLVMDIBuilderRef Builder,
793 LLVMMetadataRef ParentScope,
794 const char *Name, size_t NameLen,
795 LLVMBool ExportSymbols) {
796 return wrap(unwrap(Builder)->createNameSpace(
797 unwrapDI<DIScope>(ParentScope), StringRef(Name, NameLen), ExportSymbols));
798}
799
Robert Widmannf53050f2018-04-07 06:07:55 +0000800LLVMMetadataRef LLVMDIBuilderCreateFunction(
801 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name,
802 size_t NameLen, const char *LinkageName, size_t LinkageNameLen,
803 LLVMMetadataRef File, unsigned LineNo, LLVMMetadataRef Ty,
804 LLVMBool IsLocalToUnit, LLVMBool IsDefinition,
805 unsigned ScopeLine, LLVMDIFlags Flags, LLVMBool IsOptimized) {
806 return wrap(unwrap(Builder)->createFunction(
807 unwrapDI<DIScope>(Scope), {Name, NameLen}, {LinkageName, LinkageNameLen},
Paul Robinsoncda54212018-11-19 18:29:28 +0000808 unwrapDI<DIFile>(File), LineNo, unwrapDI<DISubroutineType>(Ty), ScopeLine,
809 map_from_llvmDIFlags(Flags),
810 pack_into_DISPFlags(IsLocalToUnit, IsDefinition, IsOptimized), nullptr,
811 nullptr, nullptr));
Robert Widmannf53050f2018-04-07 06:07:55 +0000812}
813
814
815LLVMMetadataRef LLVMDIBuilderCreateLexicalBlock(
816 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope,
817 LLVMMetadataRef File, unsigned Line, unsigned Col) {
818 return wrap(unwrap(Builder)->createLexicalBlock(unwrapDI<DIScope>(Scope),
819 unwrapDI<DIFile>(File),
820 Line, Col));
821}
822
823LLVMMetadataRef
824LLVMDIBuilderCreateLexicalBlockFile(LLVMDIBuilderRef Builder,
825 LLVMMetadataRef Scope,
826 LLVMMetadataRef File,
827 unsigned Discriminator) {
828 return wrap(unwrap(Builder)->createLexicalBlockFile(unwrapDI<DIScope>(Scope),
829 unwrapDI<DIFile>(File),
830 Discriminator));
831}
832
whitequark789164d2017-11-01 22:18:52 +0000833LLVMMetadataRef
Robert Widmannaec494f32018-04-28 22:32:07 +0000834LLVMDIBuilderCreateImportedModuleFromNamespace(LLVMDIBuilderRef Builder,
835 LLVMMetadataRef Scope,
836 LLVMMetadataRef NS,
837 LLVMMetadataRef File,
838 unsigned Line) {
839 return wrap(unwrap(Builder)->createImportedModule(unwrapDI<DIScope>(Scope),
840 unwrapDI<DINamespace>(NS),
841 unwrapDI<DIFile>(File),
842 Line));
843}
844
845LLVMMetadataRef
846LLVMDIBuilderCreateImportedModuleFromAlias(LLVMDIBuilderRef Builder,
847 LLVMMetadataRef Scope,
848 LLVMMetadataRef ImportedEntity,
849 LLVMMetadataRef File,
850 unsigned Line) {
851 return wrap(unwrap(Builder)->createImportedModule(
852 unwrapDI<DIScope>(Scope),
853 unwrapDI<DIImportedEntity>(ImportedEntity),
854 unwrapDI<DIFile>(File), Line));
855}
856
857LLVMMetadataRef
858LLVMDIBuilderCreateImportedModuleFromModule(LLVMDIBuilderRef Builder,
859 LLVMMetadataRef Scope,
860 LLVMMetadataRef M,
861 LLVMMetadataRef File,
862 unsigned Line) {
863 return wrap(unwrap(Builder)->createImportedModule(unwrapDI<DIScope>(Scope),
864 unwrapDI<DIModule>(M),
865 unwrapDI<DIFile>(File),
866 Line));
867}
868
869LLVMMetadataRef
870LLVMDIBuilderCreateImportedDeclaration(LLVMDIBuilderRef Builder,
871 LLVMMetadataRef Scope,
872 LLVMMetadataRef Decl,
873 LLVMMetadataRef File,
874 unsigned Line,
875 const char *Name, size_t NameLen) {
876 return wrap(unwrap(Builder)->createImportedDeclaration(
877 unwrapDI<DIScope>(Scope),
878 unwrapDI<DINode>(Decl),
879 unwrapDI<DIFile>(File), Line, {Name, NameLen}));
880}
881
882LLVMMetadataRef
whitequark789164d2017-11-01 22:18:52 +0000883LLVMDIBuilderCreateDebugLocation(LLVMContextRef Ctx, unsigned Line,
884 unsigned Column, LLVMMetadataRef Scope,
885 LLVMMetadataRef InlinedAt) {
886 return wrap(DILocation::get(*unwrap(Ctx), Line, Column, unwrap(Scope),
887 unwrap(InlinedAt)));
888}
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000889
Robert Widmann260b5812018-05-10 18:23:55 +0000890unsigned LLVMDILocationGetLine(LLVMMetadataRef Location) {
891 return unwrapDI<DILocation>(Location)->getLine();
892}
893
894unsigned LLVMDILocationGetColumn(LLVMMetadataRef Location) {
895 return unwrapDI<DILocation>(Location)->getColumn();
896}
897
898LLVMMetadataRef LLVMDILocationGetScope(LLVMMetadataRef Location) {
899 return wrap(unwrapDI<DILocation>(Location)->getScope());
900}
901
Robert Widmanna82b6132019-02-17 21:25:47 +0000902LLVMMetadataRef LLVMDIBuilderCreateEnumerator(LLVMDIBuilderRef Builder,
903 const char *Name, size_t NameLen,
904 int64_t Value,
905 LLVMBool IsUnsigned) {
906 return wrap(unwrap(Builder)->createEnumerator({Name, NameLen}, Value,
907 IsUnsigned != 0));
908}
909
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000910LLVMMetadataRef LLVMDIBuilderCreateEnumerationType(
911 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name,
912 size_t NameLen, LLVMMetadataRef File, unsigned LineNumber,
Robert Widmann2d2698c2018-04-28 18:13:39 +0000913 uint64_t SizeInBits, uint32_t AlignInBits, LLVMMetadataRef *Elements,
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000914 unsigned NumElements, LLVMMetadataRef ClassTy) {
915auto Elts = unwrap(Builder)->getOrCreateArray({unwrap(Elements),
916 NumElements});
917return wrap(unwrap(Builder)->createEnumerationType(
918 unwrapDI<DIScope>(Scope), {Name, NameLen}, unwrapDI<DIFile>(File),
919 LineNumber, SizeInBits, AlignInBits, Elts, unwrapDI<DIType>(ClassTy)));
920}
921
922LLVMMetadataRef LLVMDIBuilderCreateUnionType(
923 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name,
924 size_t NameLen, LLVMMetadataRef File, unsigned LineNumber,
Robert Widmann2d2698c2018-04-28 18:13:39 +0000925 uint64_t SizeInBits, uint32_t AlignInBits, LLVMDIFlags Flags,
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000926 LLVMMetadataRef *Elements, unsigned NumElements, unsigned RunTimeLang,
927 const char *UniqueId, size_t UniqueIdLen) {
928 auto Elts = unwrap(Builder)->getOrCreateArray({unwrap(Elements),
929 NumElements});
930 return wrap(unwrap(Builder)->createUnionType(
931 unwrapDI<DIScope>(Scope), {Name, NameLen}, unwrapDI<DIFile>(File),
932 LineNumber, SizeInBits, AlignInBits, map_from_llvmDIFlags(Flags),
933 Elts, RunTimeLang, {UniqueId, UniqueIdLen}));
934}
935
936
937LLVMMetadataRef
Robert Widmann2d2698c2018-04-28 18:13:39 +0000938LLVMDIBuilderCreateArrayType(LLVMDIBuilderRef Builder, uint64_t Size,
939 uint32_t AlignInBits, LLVMMetadataRef Ty,
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000940 LLVMMetadataRef *Subscripts,
941 unsigned NumSubscripts) {
942 auto Subs = unwrap(Builder)->getOrCreateArray({unwrap(Subscripts),
943 NumSubscripts});
944 return wrap(unwrap(Builder)->createArrayType(Size, AlignInBits,
945 unwrapDI<DIType>(Ty), Subs));
946}
947
948LLVMMetadataRef
Robert Widmann2d2698c2018-04-28 18:13:39 +0000949LLVMDIBuilderCreateVectorType(LLVMDIBuilderRef Builder, uint64_t Size,
950 uint32_t AlignInBits, LLVMMetadataRef Ty,
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000951 LLVMMetadataRef *Subscripts,
952 unsigned NumSubscripts) {
953 auto Subs = unwrap(Builder)->getOrCreateArray({unwrap(Subscripts),
954 NumSubscripts});
955 return wrap(unwrap(Builder)->createVectorType(Size, AlignInBits,
956 unwrapDI<DIType>(Ty), Subs));
957}
958
959LLVMMetadataRef
960LLVMDIBuilderCreateBasicType(LLVMDIBuilderRef Builder, const char *Name,
Robert Widmann2d2698c2018-04-28 18:13:39 +0000961 size_t NameLen, uint64_t SizeInBits,
whitequarkb56a4d32018-08-19 23:39:47 +0000962 LLVMDWARFTypeEncoding Encoding,
963 LLVMDIFlags Flags) {
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000964 return wrap(unwrap(Builder)->createBasicType({Name, NameLen},
whitequarkb56a4d32018-08-19 23:39:47 +0000965 SizeInBits, Encoding,
966 map_from_llvmDIFlags(Flags)));
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000967}
968
969LLVMMetadataRef LLVMDIBuilderCreatePointerType(
970 LLVMDIBuilderRef Builder, LLVMMetadataRef PointeeTy,
Robert Widmann2d2698c2018-04-28 18:13:39 +0000971 uint64_t SizeInBits, uint32_t AlignInBits, unsigned AddressSpace,
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000972 const char *Name, size_t NameLen) {
973 return wrap(unwrap(Builder)->createPointerType(unwrapDI<DIType>(PointeeTy),
974 SizeInBits, AlignInBits,
975 AddressSpace, {Name, NameLen}));
976}
977
978LLVMMetadataRef LLVMDIBuilderCreateStructType(
979 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name,
980 size_t NameLen, LLVMMetadataRef File, unsigned LineNumber,
Robert Widmann2d2698c2018-04-28 18:13:39 +0000981 uint64_t SizeInBits, uint32_t AlignInBits, LLVMDIFlags Flags,
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000982 LLVMMetadataRef DerivedFrom, LLVMMetadataRef *Elements,
983 unsigned NumElements, unsigned RunTimeLang, LLVMMetadataRef VTableHolder,
984 const char *UniqueId, size_t UniqueIdLen) {
985 auto Elts = unwrap(Builder)->getOrCreateArray({unwrap(Elements),
986 NumElements});
987 return wrap(unwrap(Builder)->createStructType(
988 unwrapDI<DIScope>(Scope), {Name, NameLen}, unwrapDI<DIFile>(File),
989 LineNumber, SizeInBits, AlignInBits, map_from_llvmDIFlags(Flags),
990 unwrapDI<DIType>(DerivedFrom), Elts, RunTimeLang,
991 unwrapDI<DIType>(VTableHolder), {UniqueId, UniqueIdLen}));
992}
993
994LLVMMetadataRef LLVMDIBuilderCreateMemberType(
995 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name,
Robert Widmann2d2698c2018-04-28 18:13:39 +0000996 size_t NameLen, LLVMMetadataRef File, unsigned LineNo, uint64_t SizeInBits,
997 uint32_t AlignInBits, uint64_t OffsetInBits, LLVMDIFlags Flags,
Harlan Haskinsb7881bb2018-04-02 00:17:40 +0000998 LLVMMetadataRef Ty) {
999 return wrap(unwrap(Builder)->createMemberType(unwrapDI<DIScope>(Scope),
1000 {Name, NameLen}, unwrapDI<DIFile>(File), LineNo, SizeInBits, AlignInBits,
1001 OffsetInBits, map_from_llvmDIFlags(Flags), unwrapDI<DIType>(Ty)));
1002}
1003
1004LLVMMetadataRef
1005LLVMDIBuilderCreateUnspecifiedType(LLVMDIBuilderRef Builder, const char *Name,
1006 size_t NameLen) {
1007 return wrap(unwrap(Builder)->createUnspecifiedType({Name, NameLen}));
1008}
1009
1010LLVMMetadataRef
1011LLVMDIBuilderCreateStaticMemberType(
1012 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name,
1013 size_t NameLen, LLVMMetadataRef File, unsigned LineNumber,
1014 LLVMMetadataRef Type, LLVMDIFlags Flags, LLVMValueRef ConstantVal,
Robert Widmann2d2698c2018-04-28 18:13:39 +00001015 uint32_t AlignInBits) {
Harlan Haskinsb7881bb2018-04-02 00:17:40 +00001016 return wrap(unwrap(Builder)->createStaticMemberType(
1017 unwrapDI<DIScope>(Scope), {Name, NameLen},
1018 unwrapDI<DIFile>(File), LineNumber, unwrapDI<DIType>(Type),
1019 map_from_llvmDIFlags(Flags), unwrap<Constant>(ConstantVal),
1020 AlignInBits));
1021}
1022
1023LLVMMetadataRef
Robert Widmann38fa7502018-05-21 16:27:35 +00001024LLVMDIBuilderCreateObjCIVar(LLVMDIBuilderRef Builder,
1025 const char *Name, size_t NameLen,
1026 LLVMMetadataRef File, unsigned LineNo,
1027 uint64_t SizeInBits, uint32_t AlignInBits,
1028 uint64_t OffsetInBits, LLVMDIFlags Flags,
1029 LLVMMetadataRef Ty, LLVMMetadataRef PropertyNode) {
1030 return wrap(unwrap(Builder)->createObjCIVar(
1031 {Name, NameLen}, unwrapDI<DIFile>(File), LineNo,
1032 SizeInBits, AlignInBits, OffsetInBits,
1033 map_from_llvmDIFlags(Flags), unwrapDI<DIType>(Ty),
1034 unwrapDI<MDNode>(PropertyNode)));
1035}
1036
1037LLVMMetadataRef
1038LLVMDIBuilderCreateObjCProperty(LLVMDIBuilderRef Builder,
1039 const char *Name, size_t NameLen,
1040 LLVMMetadataRef File, unsigned LineNo,
1041 const char *GetterName, size_t GetterNameLen,
1042 const char *SetterName, size_t SetterNameLen,
1043 unsigned PropertyAttributes,
1044 LLVMMetadataRef Ty) {
1045 return wrap(unwrap(Builder)->createObjCProperty(
1046 {Name, NameLen}, unwrapDI<DIFile>(File), LineNo,
1047 {GetterName, GetterNameLen}, {SetterName, SetterNameLen},
1048 PropertyAttributes, unwrapDI<DIType>(Ty)));
1049}
1050
1051LLVMMetadataRef
Harlan Haskinsb7881bb2018-04-02 00:17:40 +00001052LLVMDIBuilderCreateObjectPointerType(LLVMDIBuilderRef Builder,
1053 LLVMMetadataRef Type) {
1054 return wrap(unwrap(Builder)->createObjectPointerType(unwrapDI<DIType>(Type)));
1055}
1056
1057LLVMMetadataRef
Robert Widmann4b0084b2018-05-10 21:10:06 +00001058LLVMDIBuilderCreateTypedef(LLVMDIBuilderRef Builder, LLVMMetadataRef Type,
1059 const char *Name, size_t NameLen,
1060 LLVMMetadataRef File, unsigned LineNo,
1061 LLVMMetadataRef Scope) {
1062 return wrap(unwrap(Builder)->createTypedef(
1063 unwrapDI<DIType>(Type), {Name, NameLen},
1064 unwrapDI<DIFile>(File), LineNo,
1065 unwrapDI<DIScope>(Scope)));
1066}
1067
1068LLVMMetadataRef
Robert Widmann38fa7502018-05-21 16:27:35 +00001069LLVMDIBuilderCreateInheritance(LLVMDIBuilderRef Builder,
1070 LLVMMetadataRef Ty, LLVMMetadataRef BaseTy,
1071 uint64_t BaseOffset, uint32_t VBPtrOffset,
1072 LLVMDIFlags Flags) {
1073 return wrap(unwrap(Builder)->createInheritance(
1074 unwrapDI<DIType>(Ty), unwrapDI<DIType>(BaseTy),
1075 BaseOffset, VBPtrOffset, map_from_llvmDIFlags(Flags)));
1076}
1077
1078LLVMMetadataRef
Robert Widmannb02fe642018-04-23 13:51:43 +00001079LLVMDIBuilderCreateForwardDecl(
1080 LLVMDIBuilderRef Builder, unsigned Tag, const char *Name,
1081 size_t NameLen, LLVMMetadataRef Scope, LLVMMetadataRef File, unsigned Line,
Robert Widmann2d2698c2018-04-28 18:13:39 +00001082 unsigned RuntimeLang, uint64_t SizeInBits, uint32_t AlignInBits,
Robert Widmannb02fe642018-04-23 13:51:43 +00001083 const char *UniqueIdentifier, size_t UniqueIdentifierLen) {
1084 return wrap(unwrap(Builder)->createForwardDecl(
1085 Tag, {Name, NameLen}, unwrapDI<DIScope>(Scope),
1086 unwrapDI<DIFile>(File), Line, RuntimeLang, SizeInBits,
1087 AlignInBits, {UniqueIdentifier, UniqueIdentifierLen}));
1088}
1089
1090LLVMMetadataRef
Harlan Haskinsb7881bb2018-04-02 00:17:40 +00001091LLVMDIBuilderCreateReplaceableCompositeType(
Harlan Haskinsbee4b582018-04-02 19:11:44 +00001092 LLVMDIBuilderRef Builder, unsigned Tag, const char *Name,
1093 size_t NameLen, LLVMMetadataRef Scope, LLVMMetadataRef File, unsigned Line,
Robert Widmann2d2698c2018-04-28 18:13:39 +00001094 unsigned RuntimeLang, uint64_t SizeInBits, uint32_t AlignInBits,
Harlan Haskinsb7881bb2018-04-02 00:17:40 +00001095 LLVMDIFlags Flags, const char *UniqueIdentifier,
Harlan Haskinsbee4b582018-04-02 19:11:44 +00001096 size_t UniqueIdentifierLen) {
Harlan Haskinsb7881bb2018-04-02 00:17:40 +00001097 return wrap(unwrap(Builder)->createReplaceableCompositeType(
1098 Tag, {Name, NameLen}, unwrapDI<DIScope>(Scope),
1099 unwrapDI<DIFile>(File), Line, RuntimeLang, SizeInBits,
1100 AlignInBits, map_from_llvmDIFlags(Flags),
1101 {UniqueIdentifier, UniqueIdentifierLen}));
1102}
1103
1104LLVMMetadataRef
1105LLVMDIBuilderCreateQualifiedType(LLVMDIBuilderRef Builder, unsigned Tag,
1106 LLVMMetadataRef Type) {
1107 return wrap(unwrap(Builder)->createQualifiedType(Tag,
1108 unwrapDI<DIType>(Type)));
1109}
1110
1111LLVMMetadataRef
1112LLVMDIBuilderCreateReferenceType(LLVMDIBuilderRef Builder, unsigned Tag,
1113 LLVMMetadataRef Type) {
1114 return wrap(unwrap(Builder)->createReferenceType(Tag,
1115 unwrapDI<DIType>(Type)));
1116}
1117
1118LLVMMetadataRef
1119LLVMDIBuilderCreateNullPtrType(LLVMDIBuilderRef Builder) {
1120 return wrap(unwrap(Builder)->createNullPtrType());
1121}
1122
1123LLVMMetadataRef
1124LLVMDIBuilderCreateMemberPointerType(LLVMDIBuilderRef Builder,
1125 LLVMMetadataRef PointeeType,
1126 LLVMMetadataRef ClassType,
Robert Widmann2d2698c2018-04-28 18:13:39 +00001127 uint64_t SizeInBits,
1128 uint32_t AlignInBits,
Harlan Haskinsb7881bb2018-04-02 00:17:40 +00001129 LLVMDIFlags Flags) {
1130 return wrap(unwrap(Builder)->createMemberPointerType(
1131 unwrapDI<DIType>(PointeeType),
1132 unwrapDI<DIType>(ClassType), AlignInBits, SizeInBits,
1133 map_from_llvmDIFlags(Flags)));
1134}
1135
1136LLVMMetadataRef
Robert Widmann2d2698c2018-04-28 18:13:39 +00001137LLVMDIBuilderCreateBitFieldMemberType(LLVMDIBuilderRef Builder,
1138 LLVMMetadataRef Scope,
1139 const char *Name, size_t NameLen,
1140 LLVMMetadataRef File, unsigned LineNumber,
1141 uint64_t SizeInBits,
1142 uint64_t OffsetInBits,
1143 uint64_t StorageOffsetInBits,
1144 LLVMDIFlags Flags, LLVMMetadataRef Type) {
1145 return wrap(unwrap(Builder)->createBitFieldMemberType(
1146 unwrapDI<DIScope>(Scope), {Name, NameLen},
1147 unwrapDI<DIFile>(File), LineNumber,
1148 SizeInBits, OffsetInBits, StorageOffsetInBits,
1149 map_from_llvmDIFlags(Flags), unwrapDI<DIType>(Type)));
1150}
1151
1152LLVMMetadataRef LLVMDIBuilderCreateClassType(LLVMDIBuilderRef Builder,
1153 LLVMMetadataRef Scope, const char *Name, size_t NameLen,
1154 LLVMMetadataRef File, unsigned LineNumber, uint64_t SizeInBits,
1155 uint32_t AlignInBits, uint64_t OffsetInBits, LLVMDIFlags Flags,
1156 LLVMMetadataRef DerivedFrom,
1157 LLVMMetadataRef *Elements, unsigned NumElements,
1158 LLVMMetadataRef VTableHolder, LLVMMetadataRef TemplateParamsNode,
1159 const char *UniqueIdentifier, size_t UniqueIdentifierLen) {
1160 auto Elts = unwrap(Builder)->getOrCreateArray({unwrap(Elements),
1161 NumElements});
1162 return wrap(unwrap(Builder)->createClassType(
1163 unwrapDI<DIScope>(Scope), {Name, NameLen},
1164 unwrapDI<DIFile>(File), LineNumber,
1165 SizeInBits, AlignInBits, OffsetInBits,
1166 map_from_llvmDIFlags(Flags), unwrapDI<DIType>(DerivedFrom),
1167 Elts, unwrapDI<DIType>(VTableHolder),
1168 unwrapDI<MDNode>(TemplateParamsNode),
1169 {UniqueIdentifier, UniqueIdentifierLen}));
1170}
1171
1172LLVMMetadataRef
Harlan Haskinsb7881bb2018-04-02 00:17:40 +00001173LLVMDIBuilderCreateArtificialType(LLVMDIBuilderRef Builder,
1174 LLVMMetadataRef Type) {
1175 return wrap(unwrap(Builder)->createArtificialType(unwrapDI<DIType>(Type)));
1176}
1177
Robert Widmann260b5812018-05-10 18:23:55 +00001178const char *LLVMDITypeGetName(LLVMMetadataRef DType, size_t *Length) {
1179 StringRef Str = unwrap<DIType>(DType)->getName();
1180 *Length = Str.size();
1181 return Str.data();
1182}
1183
1184uint64_t LLVMDITypeGetSizeInBits(LLVMMetadataRef DType) {
1185 return unwrapDI<DIType>(DType)->getSizeInBits();
1186}
1187
1188uint64_t LLVMDITypeGetOffsetInBits(LLVMMetadataRef DType) {
1189 return unwrapDI<DIType>(DType)->getOffsetInBits();
1190}
1191
1192uint32_t LLVMDITypeGetAlignInBits(LLVMMetadataRef DType) {
1193 return unwrapDI<DIType>(DType)->getAlignInBits();
1194}
1195
1196unsigned LLVMDITypeGetLine(LLVMMetadataRef DType) {
1197 return unwrapDI<DIType>(DType)->getLine();
1198}
1199
1200LLVMDIFlags LLVMDITypeGetFlags(LLVMMetadataRef DType) {
1201 return map_to_llvmDIFlags(unwrapDI<DIType>(DType)->getFlags());
1202}
1203
Robert Widmann6978db72018-04-23 14:29:33 +00001204LLVMMetadataRef LLVMDIBuilderGetOrCreateTypeArray(LLVMDIBuilderRef Builder,
1205 LLVMMetadataRef *Types,
1206 size_t Length) {
1207 return wrap(
1208 unwrap(Builder)->getOrCreateTypeArray({unwrap(Types), Length}).get());
1209}
1210
Harlan Haskinsb7881bb2018-04-02 00:17:40 +00001211LLVMMetadataRef
1212LLVMDIBuilderCreateSubroutineType(LLVMDIBuilderRef Builder,
1213 LLVMMetadataRef File,
1214 LLVMMetadataRef *ParameterTypes,
1215 unsigned NumParameterTypes,
1216 LLVMDIFlags Flags) {
1217 auto Elts = unwrap(Builder)->getOrCreateTypeArray({unwrap(ParameterTypes),
1218 NumParameterTypes});
1219 return wrap(unwrap(Builder)->createSubroutineType(
1220 Elts, map_from_llvmDIFlags(Flags)));
1221}
Robert Widmannf53050f2018-04-07 06:07:55 +00001222
Robert Widmann12e367b2018-04-22 19:24:44 +00001223LLVMMetadataRef LLVMDIBuilderCreateExpression(LLVMDIBuilderRef Builder,
1224 int64_t *Addr, size_t Length) {
1225 return wrap(unwrap(Builder)->createExpression(ArrayRef<int64_t>(Addr,
1226 Length)));
1227}
1228
Robert Widmann21fc15d2018-04-23 22:31:49 +00001229LLVMMetadataRef
1230LLVMDIBuilderCreateConstantValueExpression(LLVMDIBuilderRef Builder,
1231 int64_t Value) {
1232 return wrap(unwrap(Builder)->createConstantValueExpression(Value));
1233}
1234
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001235LLVMMetadataRef LLVMDIBuilderCreateGlobalVariableExpression(
1236 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name,
1237 size_t NameLen, const char *Linkage, size_t LinkLen, LLVMMetadataRef File,
1238 unsigned LineNo, LLVMMetadataRef Ty, LLVMBool LocalToUnit,
1239 LLVMMetadataRef Expr, LLVMMetadataRef Decl, uint32_t AlignInBits) {
Robert Widmann21fc15d2018-04-23 22:31:49 +00001240 return wrap(unwrap(Builder)->createGlobalVariableExpression(
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001241 unwrapDI<DIScope>(Scope), {Name, NameLen}, {Linkage, LinkLen},
1242 unwrapDI<DIFile>(File), LineNo, unwrapDI<DIType>(Ty), LocalToUnit,
1243 unwrap<DIExpression>(Expr), unwrapDI<MDNode>(Decl),
1244 nullptr, AlignInBits));
Robert Widmann21fc15d2018-04-23 22:31:49 +00001245}
1246
Robert Widmanna428eba2018-05-10 18:09:53 +00001247LLVMMetadataRef LLVMTemporaryMDNode(LLVMContextRef Ctx, LLVMMetadataRef *Data,
1248 size_t Count) {
1249 return wrap(
1250 MDTuple::getTemporary(*unwrap(Ctx), {unwrap(Data), Count}).release());
1251}
1252
1253void LLVMDisposeTemporaryMDNode(LLVMMetadataRef TempNode) {
1254 MDNode::deleteTemporary(unwrapDI<MDNode>(TempNode));
1255}
1256
1257void LLVMMetadataReplaceAllUsesWith(LLVMMetadataRef TargetMetadata,
1258 LLVMMetadataRef Replacement) {
1259 auto *Node = unwrapDI<MDNode>(TargetMetadata);
1260 Node->replaceAllUsesWith(unwrap<Metadata>(Replacement));
1261 MDNode::deleteTemporary(Node);
1262}
1263
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001264LLVMMetadataRef LLVMDIBuilderCreateTempGlobalVariableFwdDecl(
1265 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name,
1266 size_t NameLen, const char *Linkage, size_t LnkLen, LLVMMetadataRef File,
1267 unsigned LineNo, LLVMMetadataRef Ty, LLVMBool LocalToUnit,
1268 LLVMMetadataRef Decl, uint32_t AlignInBits) {
Robert Widmann21fc15d2018-04-23 22:31:49 +00001269 return wrap(unwrap(Builder)->createTempGlobalVariableFwdDecl(
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001270 unwrapDI<DIScope>(Scope), {Name, NameLen}, {Linkage, LnkLen},
1271 unwrapDI<DIFile>(File), LineNo, unwrapDI<DIType>(Ty), LocalToUnit,
1272 unwrapDI<MDNode>(Decl), nullptr, AlignInBits));
Robert Widmann21fc15d2018-04-23 22:31:49 +00001273}
1274
Matthew Vossf8ab35a2018-10-03 18:44:53 +00001275LLVMValueRef
1276LLVMDIBuilderInsertDeclareBefore(LLVMDIBuilderRef Builder, LLVMValueRef Storage,
1277 LLVMMetadataRef VarInfo, LLVMMetadataRef Expr,
1278 LLVMMetadataRef DL, LLVMValueRef Instr) {
Robert Widmann12e367b2018-04-22 19:24:44 +00001279 return wrap(unwrap(Builder)->insertDeclare(
1280 unwrap(Storage), unwrap<DILocalVariable>(VarInfo),
1281 unwrap<DIExpression>(Expr), unwrap<DILocation>(DL),
1282 unwrap<Instruction>(Instr)));
1283}
1284
1285LLVMValueRef LLVMDIBuilderInsertDeclareAtEnd(
1286 LLVMDIBuilderRef Builder, LLVMValueRef Storage, LLVMMetadataRef VarInfo,
1287 LLVMMetadataRef Expr, LLVMMetadataRef DL, LLVMBasicBlockRef Block) {
1288 return wrap(unwrap(Builder)->insertDeclare(
1289 unwrap(Storage), unwrap<DILocalVariable>(VarInfo),
1290 unwrap<DIExpression>(Expr), unwrap<DILocation>(DL),
1291 unwrap(Block)));
1292}
1293
Robert Widmann21fc15d2018-04-23 22:31:49 +00001294LLVMValueRef LLVMDIBuilderInsertDbgValueBefore(LLVMDIBuilderRef Builder,
1295 LLVMValueRef Val,
1296 LLVMMetadataRef VarInfo,
1297 LLVMMetadataRef Expr,
1298 LLVMMetadataRef DebugLoc,
1299 LLVMValueRef Instr) {
1300 return wrap(unwrap(Builder)->insertDbgValueIntrinsic(
1301 unwrap(Val), unwrap<DILocalVariable>(VarInfo),
1302 unwrap<DIExpression>(Expr), unwrap<DILocation>(DebugLoc),
1303 unwrap<Instruction>(Instr)));
1304}
1305
1306LLVMValueRef LLVMDIBuilderInsertDbgValueAtEnd(LLVMDIBuilderRef Builder,
1307 LLVMValueRef Val,
1308 LLVMMetadataRef VarInfo,
1309 LLVMMetadataRef Expr,
1310 LLVMMetadataRef DebugLoc,
1311 LLVMBasicBlockRef Block) {
1312 return wrap(unwrap(Builder)->insertDbgValueIntrinsic(
1313 unwrap(Val), unwrap<DILocalVariable>(VarInfo),
1314 unwrap<DIExpression>(Expr), unwrap<DILocation>(DebugLoc),
1315 unwrap(Block)));
1316}
1317
Robert Widmann12e367b2018-04-22 19:24:44 +00001318LLVMMetadataRef LLVMDIBuilderCreateAutoVariable(
1319 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name,
1320 size_t NameLen, LLVMMetadataRef File, unsigned LineNo, LLVMMetadataRef Ty,
1321 LLVMBool AlwaysPreserve, LLVMDIFlags Flags, uint32_t AlignInBits) {
1322 return wrap(unwrap(Builder)->createAutoVariable(
1323 unwrap<DIScope>(Scope), {Name, NameLen}, unwrap<DIFile>(File),
1324 LineNo, unwrap<DIType>(Ty), AlwaysPreserve,
1325 map_from_llvmDIFlags(Flags), AlignInBits));
1326}
1327
1328LLVMMetadataRef LLVMDIBuilderCreateParameterVariable(
1329 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name,
1330 size_t NameLen, unsigned ArgNo, LLVMMetadataRef File, unsigned LineNo,
1331 LLVMMetadataRef Ty, LLVMBool AlwaysPreserve, LLVMDIFlags Flags) {
1332 return wrap(unwrap(Builder)->createParameterVariable(
Robert Widmann106eab02018-08-25 19:54:39 +00001333 unwrap<DIScope>(Scope), {Name, NameLen}, ArgNo, unwrap<DIFile>(File),
Robert Widmann12e367b2018-04-22 19:24:44 +00001334 LineNo, unwrap<DIType>(Ty), AlwaysPreserve,
1335 map_from_llvmDIFlags(Flags)));
1336}
1337
Robert Widmann6978db72018-04-23 14:29:33 +00001338LLVMMetadataRef LLVMDIBuilderGetOrCreateSubrange(LLVMDIBuilderRef Builder,
1339 int64_t Lo, int64_t Count) {
1340 return wrap(unwrap(Builder)->getOrCreateSubrange(Lo, Count));
1341}
1342
1343LLVMMetadataRef LLVMDIBuilderGetOrCreateArray(LLVMDIBuilderRef Builder,
1344 LLVMMetadataRef *Data,
1345 size_t Length) {
1346 Metadata **DataValue = unwrap(Data);
1347 return wrap(unwrap(Builder)->getOrCreateArray({DataValue, Length}).get());
1348}
1349
Robert Widmannf53050f2018-04-07 06:07:55 +00001350LLVMMetadataRef LLVMGetSubprogram(LLVMValueRef Func) {
1351 return wrap(unwrap<Function>(Func)->getSubprogram());
1352}
1353
1354void LLVMSetSubprogram(LLVMValueRef Func, LLVMMetadataRef SP) {
1355 unwrap<Function>(Func)->setSubprogram(unwrap<DISubprogram>(SP));
1356}
Robert Widmannabda7ee2018-10-01 13:15:09 +00001357
1358LLVMMetadataKind LLVMGetMetadataKind(LLVMMetadataRef Metadata) {
1359 switch(unwrap(Metadata)->getMetadataID()) {
1360#define HANDLE_METADATA_LEAF(CLASS) \
1361 case Metadata::CLASS##Kind: \
1362 return (LLVMMetadataKind)LLVM##CLASS##MetadataKind;
1363#include "llvm/IR/Metadata.def"
1364 default:
1365 return (LLVMMetadataKind)LLVMGenericDINodeMetadataKind;
1366 }
1367}