Lines Matching defs:MDie
1161 if (DIE *MDie = getDIE(M))
1162 return MDie;
1163 DIE &MDie = createAndAddDIE(dwarf::DW_TAG_module, *ContextDIE, M);
1166 addString(MDie, dwarf::DW_AT_name, M->getName());
1167 addGlobalName(M->getName(), MDie, M->getScope());
1170 addString(MDie, dwarf::DW_AT_LLVM_config_macros,
1173 addString(MDie, dwarf::DW_AT_LLVM_include_path, M->getIncludePath());
1175 addString(MDie, dwarf::DW_AT_LLVM_apinotes, M->getAPINotesFile());
1177 addUInt(MDie, dwarf::DW_AT_decl_file, std::nullopt,
1180 addUInt(MDie, dwarf::DW_AT_decl_line, std::nullopt, M->getLineNo());
1182 addFlag(MDie, dwarf::DW_AT_declaration);
1184 return &MDie;