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();
34 return UnknownLoc::get(context);
37 StringAttr fileName = StringAttr::get(context, subprogram->getFilename());
47DIBasicTypeAttr DebugImporter::translateImpl(llvm::DIBasicType *node) {
48 return DIBasicTypeAttr::get(context, node->getTag(), node->getName(),
49 node->getSizeInBits(), node->getEncoding());
52DICompileUnitAttr DebugImporter::translateImpl(llvm::DICompileUnit *node) {
53 std::optional<DIEmissionKind> emissionKind =
54 symbolizeDIEmissionKind(node->getEmissionKind());
55 std::optional<DINameTableKind> nameTableKind = symbolizeDINameTableKind(
57 std::underlying_type_t<llvm::DICompileUnit::DebugNameTableKind>
>(
58 node->getNameTableKind()));
59 return DICompileUnitAttr::get(
60 context, getOrCreateDistinctID(node),
61 node->getSourceLanguage().getUnversionedName(),
62 translate(node->getFile()), getStringAttrOrNull(node->getRawProducer()),
63 node->isOptimized(), emissionKind.value(), nameTableKind.value(),
64 getStringAttrOrNull(node->getRawSplitDebugFilename()));
67DICompositeTypeAttr 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))
82 DITypeAttr baseType =
translate(node->getBaseType());
85 if (node->getTag() == llvm::dwarf::DW_TAG_array_type && !baseType)
87 return DICompositeTypeAttr::get(
88 context, node->getTag(), getStringAttrOrNull(node->getRawName()),
90 baseType, flags.value_or(DIFlags::Zero), node->getSizeInBits(),
97DIDerivedTypeAttr DebugImporter::translateImpl(llvm::DIDerivedType *node) {
99 DITypeAttr baseType =
translate(node->getBaseType());
100 if (node->getBaseType() && !baseType)
102 DINodeAttr extraData =
103 translate(dyn_cast_or_null<llvm::DINode>(node->getExtraData()));
104 return DIDerivedTypeAttr::get(
105 context, node->getTag(), getStringAttrOrNull(node->getRawName()),
106 baseType, node->getSizeInBits(), node->getAlignInBits(),
107 node->getOffsetInBits(), node->getDWARFAddressSpace(), extraData);
110DIStringTypeAttr DebugImporter::translateImpl(llvm::DIStringType *node) {
111 return DIStringTypeAttr::get(
112 context, node->getTag(), getStringAttrOrNull(node->getRawName()),
113 node->getSizeInBits(), node->getAlignInBits(),
119DIFileAttr DebugImporter::translateImpl(llvm::DIFile *node) {
120 return DIFileAttr::get(context, node->getFilename(), node->getDirectory());
123DILabelAttr DebugImporter::translateImpl(llvm::DILabel *node) {
125 DIScopeAttr scope =
translate(node->getScope());
126 if (node->getScope() && !scope)
128 return DILabelAttr::get(context, scope,
129 getStringAttrOrNull(node->getRawName()),
130 translate(node->getFile()), node->getLine());
133DILexicalBlockAttr DebugImporter::translateImpl(llvm::DILexicalBlock *node) {
135 DIScopeAttr scope =
translate(node->getScope());
136 if (node->getScope() && !scope)
138 return DILexicalBlockAttr::get(context, scope,
translate(node->getFile()),
139 node->getLine(), node->getColumn());
142DILexicalBlockFileAttr
143DebugImporter::translateImpl(llvm::DILexicalBlockFile *node) {
145 DIScopeAttr scope =
translate(node->getScope());
146 if (node->getScope() && !scope)
148 return DILexicalBlockFileAttr::get(context, scope,
translate(node->getFile()),
149 node->getDiscriminator());
153DebugImporter::translateImpl(llvm::DIGlobalVariable *node) {
156 auto convertToStringAttr = [&](StringRef name) -> StringAttr {
159 return StringAttr::get(context, node->getName());
161 return DIGlobalVariableAttr::get(
163 convertToStringAttr(node->getName()),
164 convertToStringAttr(node->getLinkageName()),
translate(node->getFile()),
165 node->getLine(),
translate(node->getType()), node->isLocalToUnit(),
166 node->isDefinition(), node->getAlignInBits());
169DILocalVariableAttr DebugImporter::translateImpl(llvm::DILocalVariable *node) {
171 DIScopeAttr scope =
translate(node->getScope());
172 if (node->getScope() && !scope)
174 return DILocalVariableAttr::get(
175 context, scope, getStringAttrOrNull(node->getRawName()),
176 translate(node->getFile()), node->getLine(), node->getArg(),
177 node->getAlignInBits(),
translate(node->getType()),
178 symbolizeDIFlags(node->getFlags()).value_or(DIFlags::Zero));
181DIVariableAttr DebugImporter::translateImpl(llvm::DIVariable *node) {
182 return cast<DIVariableAttr>(
translate(
static_cast<llvm::DINode *
>(node)));
185DIScopeAttr DebugImporter::translateImpl(llvm::DIScope *node) {
186 return cast<DIScopeAttr>(
translate(
static_cast<llvm::DINode *
>(node)));
189DIModuleAttr DebugImporter::translateImpl(llvm::DIModule *node) {
190 return DIModuleAttr::get(
192 getStringAttrOrNull(node->getRawName()),
193 getStringAttrOrNull(node->getRawConfigurationMacros()),
194 getStringAttrOrNull(node->getRawIncludePath()),
195 getStringAttrOrNull(node->getRawAPINotesFile()), node->getLineNo(),
199DINamespaceAttr DebugImporter::translateImpl(llvm::DINamespace *node) {
200 return DINamespaceAttr::get(context, getStringAttrOrNull(node->getRawName()),
202 node->getExportSymbols());
206DebugImporter::translateImpl(llvm::DIImportedEntity *node) {
207 SmallVector<DINodeAttr> elements;
208 for (llvm::DINode *element : node->getElements()) {
209 assert(element &&
"expected a non-null element type");
213 return DIImportedEntityAttr::get(
214 context, node->getTag(),
translate(node->getScope()),
216 getStringAttrOrNull(node->getRawName()), elements);
219DISubprogramAttr DebugImporter::translateImpl(llvm::DISubprogram *node) {
221 mlir::DistinctAttr id;
222 if (node->isDistinct())
223 id = getOrCreateDistinctID(node);
226 DIScopeAttr scope =
translate(node->getScope());
227 if (node->getScope() && !scope)
229 std::optional<DISubprogramFlags> subprogramFlags =
230 symbolizeDISubprogramFlags(node->getSubprogram()->getSPFlags());
231 assert(subprogramFlags &&
"expected valid subprogram flags");
232 DISubroutineTypeAttr type =
translate(node->getType());
233 if (node->getType() && !type)
237 SmallVector<DINodeAttr> retainedNodes;
238 for (llvm::DINode *retainedNode : node->getRetainedNodes())
239 retainedNodes.push_back(
translate(retainedNode));
240 if (llvm::is_contained(retainedNodes,
nullptr))
241 retainedNodes.clear();
243 SmallVector<DINodeAttr> annotations;
247 if (llvm::DINodeArray rawAnns = node->getAnnotations(); rawAnns) {
248 for (
size_t i = 0, e = rawAnns->getNumOperands(); i < e; ++i) {
249 const llvm::MDTuple *tuple = cast<llvm::MDTuple>(rawAnns->getOperand(i));
250 if (tuple->getNumOperands() != 2)
252 const llvm::MDString *name = cast<llvm::MDString>(tuple->getOperand(0));
253 const llvm::MDString *value =
254 dyn_cast<llvm::MDString>(tuple->getOperand(1));
256 annotations.push_back(DIAnnotationAttr::get(
257 context, StringAttr::get(context, name->getString()),
258 StringAttr::get(context, value->getString())));
263 return DISubprogramAttr::get(context,
id,
translate(node->getUnit()), scope,
264 getStringAttrOrNull(node->getRawName()),
265 getStringAttrOrNull(node->getRawLinkageName()),
266 translate(node->getFile()), node->getLine(),
267 node->getScopeLine(), *subprogramFlags, type,
268 retainedNodes, annotations);
271DISubrangeAttr DebugImporter::translateImpl(llvm::DISubrange *node) {
272 auto getAttrOrNull = [&](llvm::DISubrange::BoundType data) -> Attribute {
275 if (
auto *constInt = dyn_cast<llvm::ConstantInt *>(data))
276 return IntegerAttr::get(IntegerType::get(context, 64),
277 constInt->getSExtValue());
278 if (
auto *expr = dyn_cast<llvm::DIExpression *>(data))
280 if (
auto *var = dyn_cast<llvm::DIVariable *>(data)) {
281 if (
auto *local = dyn_cast<llvm::DILocalVariable>(var))
283 if (
auto *global = dyn_cast<llvm::DIGlobalVariable>(var))
289 Attribute count = getAttrOrNull(node->getCount());
290 Attribute upperBound = getAttrOrNull(node->getUpperBound());
293 if (!count && !upperBound)
295 return DISubrangeAttr::get(context, count,
296 getAttrOrNull(node->getLowerBound()), upperBound,
297 getAttrOrNull(node->getStride()));
300DICommonBlockAttr DebugImporter::translateImpl(llvm::DICommonBlock *node) {
301 return DICommonBlockAttr::get(context,
translate(node->getScope()),
303 getStringAttrOrNull(node->getRawName()),
304 translate(node->getFile()), node->getLineNo());
308DebugImporter::translateImpl(llvm::DIGenericSubrange *node) {
310 [&](llvm::DIGenericSubrange::BoundType data) -> Attribute {
313 if (
auto *expr = dyn_cast<llvm::DIExpression *>(data))
315 if (
auto *var = dyn_cast<llvm::DIVariable *>(data)) {
316 if (
auto *local = dyn_cast<llvm::DILocalVariable>(var))
318 if (
auto *global = dyn_cast<llvm::DIGlobalVariable>(var))
324 Attribute count = getAttrOrNull(node->getCount());
325 Attribute upperBound = getAttrOrNull(node->getUpperBound());
326 Attribute lowerBound = getAttrOrNull(node->getLowerBound());
327 Attribute stride = getAttrOrNull(node->getStride());
330 if (!count && !upperBound)
332 return DIGenericSubrangeAttr::get(context, count, lowerBound, upperBound,
337DebugImporter::translateImpl(llvm::DISubroutineType *node) {
338 SmallVector<DITypeAttr> types;
339 for (llvm::DIType *type : node->getTypeArray()) {
345 types.push_back(DINullTypeAttr::get(context));
351 if (llvm::is_contained(types,
nullptr))
353 return DISubroutineTypeAttr::get(context, node->getCC(), types);
356DITypeAttr DebugImporter::translateImpl(llvm::DIType *node) {
357 return cast<DITypeAttr>(
translate(
static_cast<llvm::DINode *
>(node)));
365 auto cacheEntry = cache.lookupOrInit(node);
366 if (std::optional<DINodeAttr>
result = cacheEntry.get())
370 auto translateNode = [
this](llvm::DINode *node) ->
DINodeAttr {
371 if (
auto *casted = dyn_cast<llvm::DIBasicType>(node))
372 return translateImpl(casted);
373 if (
auto *casted = dyn_cast<llvm::DICommonBlock>(node))
374 return translateImpl(casted);
375 if (
auto *casted = dyn_cast<llvm::DICompileUnit>(node))
376 return translateImpl(casted);
377 if (
auto *casted = dyn_cast<llvm::DICompositeType>(node))
378 return translateImpl(casted);
379 if (
auto *casted = dyn_cast<llvm::DIDerivedType>(node))
380 return translateImpl(casted);
381 if (
auto *casted = dyn_cast<llvm::DIStringType>(node))
382 return translateImpl(casted);
383 if (
auto *casted = dyn_cast<llvm::DIFile>(node))
384 return translateImpl(casted);
385 if (
auto *casted = dyn_cast<llvm::DIGlobalVariable>(node))
386 return translateImpl(casted);
387 if (
auto *casted = dyn_cast<llvm::DIImportedEntity>(node))
388 return translateImpl(casted);
389 if (
auto *casted = dyn_cast<llvm::DILabel>(node))
390 return translateImpl(casted);
391 if (
auto *casted = dyn_cast<llvm::DILexicalBlock>(node))
392 return translateImpl(casted);
393 if (
auto *casted = dyn_cast<llvm::DILexicalBlockFile>(node))
394 return translateImpl(casted);
395 if (
auto *casted = dyn_cast<llvm::DILocalVariable>(node))
396 return translateImpl(casted);
397 if (
auto *casted = dyn_cast<llvm::DIModule>(node))
398 return translateImpl(casted);
399 if (
auto *casted = dyn_cast<llvm::DINamespace>(node))
400 return translateImpl(casted);
401 if (
auto *casted = dyn_cast<llvm::DISubprogram>(node))
402 return translateImpl(casted);
403 if (
auto *casted = dyn_cast<llvm::DISubrange>(node))
404 return translateImpl(casted);
405 if (
auto *casted = dyn_cast<llvm::DIGenericSubrange>(node))
406 return translateImpl(casted);
407 if (
auto *casted = dyn_cast<llvm::DISubroutineType>(node))
408 return translateImpl(casted);
414 if (cacheEntry.wasRepeated()) {
416 auto recType = cast<DIRecursiveTypeAttrInterface>(attr);
417 attr = cast<DINodeAttr>(recType.withRecId(recId));
419 cacheEntry.resolve(attr);
422 cacheEntry.resolve(
nullptr);
432 .Case([&](llvm::DICompositeType *) {
433 return CtorType(DICompositeTypeAttr::getRecSelf);
435 .Case([&](llvm::DISubprogram *) {
436 return CtorType(DISubprogramAttr::getRecSelf);
438 .Default(CtorType());
441std::optional<DINodeAttr> DebugImporter::createRecSelf(llvm::DINode *node) {
448 DistinctAttr recId = nodeToRecId.lookup(node);
451 nodeToRecId[node] = recId;
453 DIRecursiveTypeAttrInterface recSelf = recSelfCtor(recId);
454 return cast<DINodeAttr>(recSelf);
463 return UnknownLoc::get(context);
467 loc->getLine(), loc->getColumn());
470 assert(loc->getScope() &&
"expected non-null scope");
475 if (llvm::DILocation *inlinedAt = loc->getInlinedAt())
488 for (
const llvm::DIExpression::ExprOperand &op : node->expr_ops()) {
490 operands.reserve(op.getNumArgs());
491 for (
const auto &i : llvm::seq(op.getNumArgs()))
492 operands.push_back(op.getArg(i));
493 const auto attr = DIExpressionElemAttr::get(context, op.getOp(), operands);
496 return DIExpressionAttr::get(context, ops);
500 llvm::DIGlobalVariableExpression *node) {
501 return DIGlobalVariableExpressionAttr::get(
506StringAttr DebugImporter::getStringAttrOrNull(llvm::MDString *stringNode) {
509 return StringAttr::get(context, stringNode->getString());
512DistinctAttr 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 ...
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 a fused location whose metadata is known to be an instance of the given type.
This class represents the base attribute for all debug info attributes.
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.
Include the generated interface declarations.
llvm::TypeSwitch< T, ResultT > TypeSwitch
llvm::function_ref< Fn > function_ref