14 #include "llvm/ADT/STLExtras.h"
15 #include "llvm/ADT/TypeSwitch.h"
16 #include "llvm/BinaryFormat/Dwarf.h"
17 #include "llvm/IR/Constants.h"
18 #include "llvm/IR/DebugInfoMetadata.h"
19 #include "llvm/IR/Metadata.h"
26 bool dropDICompositeTypeElements)
27 : cache([&](
llvm::DINode *node) {
return createRecSelf(node); }),
28 context(mlirModule.getContext()), mlirModule(mlirModule),
29 dropDICompositeTypeElements(dropDICompositeTypeElements) {}
32 llvm::DISubprogram *subprogram = func->getSubprogram();
38 StringAttr fileName =
StringAttr::get(context, subprogram->getFilename());
49 DIBasicTypeAttr DebugImporter::translateImpl(llvm::DIBasicType *node) {
51 node->getSizeInBits(), node->getEncoding());
54 DICompileUnitAttr DebugImporter::translateImpl(llvm::DICompileUnit *node) {
55 std::optional<DIEmissionKind> emissionKind =
56 symbolizeDIEmissionKind(node->getEmissionKind());
57 std::optional<DINameTableKind> nameTableKind = symbolizeDINameTableKind(
59 std::underlying_type_t<llvm::DICompileUnit::DebugNameTableKind>
>(
60 node->getNameTableKind()));
62 context, getOrCreateDistinctID(node), node->getSourceLanguage(),
63 translate(node->getFile()), getStringAttrOrNull(node->getRawProducer()),
64 node->isOptimized(), emissionKind.value(), nameTableKind.value());
67 DICompositeTypeAttr DebugImporter::translateImpl(llvm::DICompositeType *node) {
68 std::optional<DIFlags> flags = symbolizeDIFlags(node->getFlags());
72 bool isVectorType = flags && bitEnumContainsAll(*flags, DIFlags::Vector);
73 if (isVectorType || !dropDICompositeTypeElements) {
74 for (llvm::DINode *element : node->getElements()) {
75 assert(element &&
"expected a non-null element type");
80 if (llvm::is_contained(elements,
nullptr))
85 if (node->getTag() == llvm::dwarf::DW_TAG_array_type && !baseType)
88 context, node->getTag(), getStringAttrOrNull(node->getRawName()),
90 baseType, flags.value_or(DIFlags::Zero), node->getSizeInBits(),
91 node->getAlignInBits(), elements,
98 DIDerivedTypeAttr DebugImporter::translateImpl(llvm::DIDerivedType *node) {
101 if (node->getBaseType() && !baseType)
104 translate(dyn_cast_or_null<llvm::DINode>(node->getExtraData()));
106 context, node->getTag(), getStringAttrOrNull(node->getRawName()),
107 baseType, node->getSizeInBits(), node->getAlignInBits(),
108 node->getOffsetInBits(), node->getDWARFAddressSpace(), extraData);
111 DIStringTypeAttr DebugImporter::translateImpl(llvm::DIStringType *node) {
113 context, node->getTag(), getStringAttrOrNull(node->getRawName()),
114 node->getSizeInBits(), node->getAlignInBits(),
120 DIFileAttr DebugImporter::translateImpl(llvm::DIFile *node) {
121 return DIFileAttr::get(context, node->getFilename(), node->getDirectory());
124 DILabelAttr DebugImporter::translateImpl(llvm::DILabel *node) {
127 if (node->getScope() && !scope)
130 getStringAttrOrNull(node->getRawName()),
131 translate(node->getFile()), node->getLine());
134 DILexicalBlockAttr DebugImporter::translateImpl(llvm::DILexicalBlock *node) {
137 if (node->getScope() && !scope)
140 node->getLine(), node->getColumn());
143 DILexicalBlockFileAttr
144 DebugImporter::translateImpl(llvm::DILexicalBlockFile *node) {
147 if (node->getScope() && !scope)
150 node->getDiscriminator());
154 DebugImporter::translateImpl(llvm::DIGlobalVariable *node) {
157 auto convertToStringAttr = [&](StringRef name) -> StringAttr {
164 convertToStringAttr(node->getName()),
165 convertToStringAttr(node->getLinkageName()),
translate(node->getFile()),
166 node->getLine(),
translate(node->getType()), node->isLocalToUnit(),
167 node->isDefinition(), node->getAlignInBits());
170 DILocalVariableAttr DebugImporter::translateImpl(llvm::DILocalVariable *node) {
173 if (node->getScope() && !scope)
176 context, scope, getStringAttrOrNull(node->getRawName()),
177 translate(node->getFile()), node->getLine(), node->getArg(),
178 node->getAlignInBits(),
translate(node->getType()),
179 symbolizeDIFlags(node->getFlags()).value_or(DIFlags::Zero));
182 DIVariableAttr DebugImporter::translateImpl(llvm::DIVariable *node) {
183 return cast<DIVariableAttr>(
translate(
static_cast<llvm::DINode *
>(node)));
186 DIScopeAttr DebugImporter::translateImpl(llvm::DIScope *node) {
187 return cast<DIScopeAttr>(
translate(
static_cast<llvm::DINode *
>(node)));
190 DIModuleAttr DebugImporter::translateImpl(llvm::DIModule *node) {
193 getStringAttrOrNull(node->getRawName()),
194 getStringAttrOrNull(node->getRawConfigurationMacros()),
195 getStringAttrOrNull(node->getRawIncludePath()),
196 getStringAttrOrNull(node->getRawAPINotesFile()), node->getLineNo(),
200 DINamespaceAttr DebugImporter::translateImpl(llvm::DINamespace *node) {
203 node->getExportSymbols());
207 DebugImporter::translateImpl(llvm::DIImportedEntity *node) {
209 for (llvm::DINode *element : node->getElements()) {
210 assert(element &&
"expected a non-null element type");
215 context, node->getTag(),
translate(node->getScope()),
217 getStringAttrOrNull(node->getRawName()), elements);
220 DISubprogramAttr DebugImporter::translateImpl(llvm::DISubprogram *node) {
223 if (node->isDistinct())
224 id = getOrCreateDistinctID(node);
228 if (node->getScope() && !scope)
230 std::optional<DISubprogramFlags> subprogramFlags =
231 symbolizeDISubprogramFlags(node->getSubprogram()->getSPFlags());
232 assert(subprogramFlags &&
"expected valid subprogram flags");
233 DISubroutineTypeAttr type =
translate(node->getType());
234 if (node->getType() && !type)
239 for (llvm::DINode *retainedNode : node->getRetainedNodes())
240 retainedNodes.push_back(
translate(retainedNode));
241 if (llvm::is_contained(retainedNodes,
nullptr))
242 retainedNodes.clear();
248 if (llvm::DINodeArray rawAnns = node->getAnnotations(); rawAnns) {
249 for (
size_t i = 0, e = rawAnns->getNumOperands(); i < e; ++i) {
250 const llvm::MDTuple *tuple = cast<llvm::MDTuple>(rawAnns->getOperand(i));
251 if (tuple->getNumOperands() != 2)
253 const llvm::MDString *name = cast<llvm::MDString>(tuple->getOperand(0));
254 const llvm::MDString *value =
255 dyn_cast<llvm::MDString>(tuple->getOperand(1));
265 getStringAttrOrNull(node->getRawName()),
266 getStringAttrOrNull(node->getRawLinkageName()),
267 translate(node->getFile()), node->getLine(),
268 node->getScopeLine(), *subprogramFlags, type,
269 retainedNodes, annotations);
272 DISubrangeAttr DebugImporter::translateImpl(llvm::DISubrange *node) {
276 if (
auto *constInt = dyn_cast<llvm::ConstantInt *>(data))
278 constInt->getSExtValue());
279 if (
auto *expr = dyn_cast<llvm::DIExpression *>(data))
281 if (
auto *var = dyn_cast<llvm::DIVariable *>(data)) {
282 if (
auto *local = dyn_cast<llvm::DILocalVariable>(var))
284 if (
auto *global = dyn_cast<llvm::DIGlobalVariable>(var))
290 Attribute count = getAttrOrNull(node->getCount());
291 Attribute upperBound = getAttrOrNull(node->getUpperBound());
294 if (!count && !upperBound)
297 getAttrOrNull(node->getLowerBound()), upperBound,
298 getAttrOrNull(node->getStride()));
301 DICommonBlockAttr DebugImporter::translateImpl(llvm::DICommonBlock *node) {
304 getStringAttrOrNull(node->getRawName()),
305 translate(node->getFile()), node->getLineNo());
308 DIGenericSubrangeAttr
309 DebugImporter::translateImpl(llvm::DIGenericSubrange *node) {
314 if (
auto *expr = dyn_cast<llvm::DIExpression *>(data))
316 if (
auto *var = dyn_cast<llvm::DIVariable *>(data)) {
317 if (
auto *local = dyn_cast<llvm::DILocalVariable>(var))
319 if (
auto *global = dyn_cast<llvm::DIGlobalVariable>(var))
325 Attribute count = getAttrOrNull(node->getCount());
326 Attribute upperBound = getAttrOrNull(node->getUpperBound());
327 Attribute lowerBound = getAttrOrNull(node->getLowerBound());
328 Attribute stride = getAttrOrNull(node->getStride());
331 if (!count && !upperBound)
338 DebugImporter::translateImpl(llvm::DISubroutineType *node) {
340 for (llvm::DIType *type : node->getTypeArray()) {
352 if (llvm::is_contained(types,
nullptr))
357 DITypeAttr DebugImporter::translateImpl(llvm::DIType *node) {
358 return cast<DITypeAttr>(
translate(
static_cast<llvm::DINode *
>(node)));
366 auto cacheEntry = cache.lookupOrInit(node);
367 if (std::optional<DINodeAttr> result = cacheEntry.get())
371 auto translateNode = [
this](llvm::DINode *node) ->
DINodeAttr {
372 if (
auto *casted = dyn_cast<llvm::DIBasicType>(node))
373 return translateImpl(casted);
374 if (
auto *casted = dyn_cast<llvm::DICommonBlock>(node))
375 return translateImpl(casted);
376 if (
auto *casted = dyn_cast<llvm::DICompileUnit>(node))
377 return translateImpl(casted);
378 if (
auto *casted = dyn_cast<llvm::DICompositeType>(node))
379 return translateImpl(casted);
380 if (
auto *casted = dyn_cast<llvm::DIDerivedType>(node))
381 return translateImpl(casted);
382 if (
auto *casted = dyn_cast<llvm::DIStringType>(node))
383 return translateImpl(casted);
384 if (
auto *casted = dyn_cast<llvm::DIFile>(node))
385 return translateImpl(casted);
386 if (
auto *casted = dyn_cast<llvm::DIGlobalVariable>(node))
387 return translateImpl(casted);
388 if (
auto *casted = dyn_cast<llvm::DIImportedEntity>(node))
389 return translateImpl(casted);
390 if (
auto *casted = dyn_cast<llvm::DILabel>(node))
391 return translateImpl(casted);
392 if (
auto *casted = dyn_cast<llvm::DILexicalBlock>(node))
393 return translateImpl(casted);
394 if (
auto *casted = dyn_cast<llvm::DILexicalBlockFile>(node))
395 return translateImpl(casted);
396 if (
auto *casted = dyn_cast<llvm::DILocalVariable>(node))
397 return translateImpl(casted);
398 if (
auto *casted = dyn_cast<llvm::DIModule>(node))
399 return translateImpl(casted);
400 if (
auto *casted = dyn_cast<llvm::DINamespace>(node))
401 return translateImpl(casted);
402 if (
auto *casted = dyn_cast<llvm::DISubprogram>(node))
403 return translateImpl(casted);
404 if (
auto *casted = dyn_cast<llvm::DISubrange>(node))
405 return translateImpl(casted);
406 if (
auto *casted = dyn_cast<llvm::DIGenericSubrange>(node))
407 return translateImpl(casted);
408 if (
auto *casted = dyn_cast<llvm::DISubroutineType>(node))
409 return translateImpl(casted);
415 if (cacheEntry.wasRepeated()) {
417 auto recType = cast<DIRecursiveTypeAttrInterface>(attr);
418 attr = cast<DINodeAttr>(recType.withRecId(recId));
420 cacheEntry.resolve(attr);
423 cacheEntry.resolve(
nullptr);
433 .Case([&](llvm::DICompositeType *) {
434 return CtorType(DICompositeTypeAttr::getRecSelf);
436 .Case([&](llvm::DISubprogram *) {
437 return CtorType(DISubprogramAttr::getRecSelf);
439 .Default(CtorType());
442 std::optional<DINodeAttr> DebugImporter::createRecSelf(llvm::DINode *node) {
452 nodeToRecId[node] = recId;
454 DIRecursiveTypeAttrInterface recSelf = recSelfCtor(recId);
455 return cast<DINodeAttr>(recSelf);
468 loc->getLine(), loc->getColumn());
471 assert(loc->getScope() &&
"expected non-null scope");
476 if (llvm::DILocation *inlinedAt = loc->getInlinedAt())
489 for (
const llvm::DIExpression::ExprOperand &op : node->expr_ops()) {
491 operands.reserve(op.getNumArgs());
492 for (
const auto &i : llvm::seq(op.getNumArgs()))
493 operands.push_back(op.getArg(i));
501 llvm::DIGlobalVariableExpression *node) {
507 StringAttr DebugImporter::getStringAttrOrNull(llvm::MDString *stringNode) {
513 DistinctAttr DebugImporter::getOrCreateDistinctID(llvm::DINode *node) {
static function_ref< DIRecursiveTypeAttrInterface(DistinctAttr)> getRecSelfConstructor(llvm::DINode *node)
Get the getRecSelf constructor for the translated type of node if its translated DITypeAttr supports ...
Attributes are known-constant values of operations.
An attribute that associates a referenced attribute with a unique identifier.
static DistinctAttr create(Attribute referencedAttr)
Creates a distinct attribute that associates a referenced attribute with a unique identifier.
static FileLineColLoc get(StringAttr filename, unsigned line, unsigned column)
This class represents the base attribute for all debug info attributes.
This class represents a LLVM attribute that describes a debug info scope.
This class represents a LLVM attribute that describes a debug info type.
This class represents a LLVM attribute that describes a debug info variable.
DINodeAttr translate(llvm::DINode *node)
Translates the given LLVM debug metadata to MLIR.
DIExpressionAttr translateExpression(llvm::DIExpression *node)
Translates the LLVM DWARF expression metadata to MLIR.
DIGlobalVariableExpressionAttr translateGlobalVariableExpression(llvm::DIGlobalVariableExpression *node)
Translates the LLVM DWARF global variable expression metadata to MLIR.
Location translateLoc(llvm::DILocation *loc)
Translates the given LLVM debug location to an MLIR location.
Location translateFuncLocation(llvm::Function *func)
Translates the debug information for the given function into a Location.
DebugImporter(ModuleOp mlirModule, bool dropDICompositeTypeElements)
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
The OpAsmOpInterface, see OpAsmInterface.td for more details.
BoundType
The type of bound: equal, lower bound or upper bound.
Include the generated interface declarations.
auto get(MLIRContext *context, Ts &&...params)
Helper method that injects context only if needed, this helps unify some of the attribute constructio...