-
Notifications
You must be signed in to change notification settings - Fork 13.4k
[llvm][DebugInfo] DWARFv5: static data members declarations are DW_TAG_variable #72234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Michael137
merged 2 commits into
llvm:main
from
Michael137:dwarf/tag-variable-static-members/PR/1-llvm
Nov 15, 2023
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1315,17 +1315,15 @@ LLVMDIBuilderCreateUnspecifiedType(LLVMDIBuilderRef Builder, const char *Name, | |
return wrap(unwrap(Builder)->createUnspecifiedType({Name, NameLen})); | ||
} | ||
|
||
LLVMMetadataRef | ||
LLVMDIBuilderCreateStaticMemberType( | ||
LLVMMetadataRef LLVMDIBuilderCreateStaticMemberType( | ||
LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, | ||
size_t NameLen, LLVMMetadataRef File, unsigned LineNumber, | ||
LLVMMetadataRef Type, LLVMDIFlags Flags, LLVMValueRef ConstantVal, | ||
uint32_t AlignInBits) { | ||
unsigned Tag, uint32_t AlignInBits) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Somebody might complain if we change the C API, but I don't think we guarantee compatibility. |
||
return wrap(unwrap(Builder)->createStaticMemberType( | ||
unwrapDI<DIScope>(Scope), {Name, NameLen}, | ||
unwrapDI<DIFile>(File), LineNumber, unwrapDI<DIType>(Type), | ||
map_from_llvmDIFlags(Flags), unwrap<Constant>(ConstantVal), | ||
AlignInBits)); | ||
unwrapDI<DIScope>(Scope), {Name, NameLen}, unwrapDI<DIFile>(File), | ||
LineNumber, unwrapDI<DIType>(Type), map_from_llvmDIFlags(Flags), | ||
unwrap<Constant>(ConstantVal), Tag, AlignInBits)); | ||
} | ||
|
||
LLVMMetadataRef | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
109 changes: 109 additions & 0 deletions
109
llvm/test/DebugInfo/Generic/dwarf5-debug-info-static-member.ll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
; RUN: %llc_dwarf -filetype=obj -o %t.o < %s | ||
; RUN: llvm-dwarfdump -v -debug-info %t.o | FileCheck %s -check-prefix=CHECK | ||
|
||
; LLVM IR generated using: clang -emit-llvm -S -g -gdwarf-5 | ||
; | ||
; struct C | ||
; { | ||
; static int a; | ||
; const static bool b = true; | ||
; static constexpr int c = 15; | ||
; }; | ||
; | ||
; int C::a = 10; | ||
; | ||
; int main() | ||
; { | ||
; C instance_C; | ||
; return C::a + (int)C::b + C::c; | ||
; } | ||
|
||
source_filename = "llvm/test/DebugInfo/X86/dwarf5-debug-info-static-member.ll" | ||
|
||
%struct.C = type { i8 } | ||
|
||
@_ZN1C1aE = global i32 10, align 4, !dbg !0 | ||
|
||
; Function Attrs: mustprogress noinline norecurse nounwind optnone ssp uwtable(sync) | ||
define noundef i32 @main() #0 !dbg !26 { | ||
entry: | ||
%retval = alloca i32, align 4 | ||
%instance_C = alloca %struct.C, align 1 | ||
store i32 0, ptr %retval, align 4 | ||
call void @llvm.dbg.declare(metadata ptr %instance_C, metadata !30, metadata !DIExpression()), !dbg !31 | ||
%0 = load i32, ptr @_ZN1C1aE, align 4, !dbg !32 | ||
%add = add nsw i32 %0, 1, !dbg !33 | ||
%add1 = add nsw i32 %add, 15, !dbg !34 | ||
ret i32 %add1, !dbg !35 | ||
} | ||
|
||
; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) | ||
declare void @llvm.dbg.declare(metadata, metadata, metadata) #1 | ||
|
||
attributes #0 = { nounwind uwtable } | ||
attributes #1 = { nounwind readnone } | ||
|
||
!llvm.dbg.cu = !{!2} | ||
!llvm.module.flags = !{!19, !20, !21, !22, !23, !24} | ||
!llvm.ident = !{!25} | ||
|
||
!0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression()) | ||
!1 = distinct !DIGlobalVariable(name: "a", linkageName: "_ZN1C1aE", scope: !2, file: !3, line: 8, type: !5, isLocal: false, isDefinition: true, declaration: !8) | ||
!2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus_14, file: !3, producer: "clang version 18.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, retainedTypes: !4, globals: !14, splitDebugInlining: false, nameTableKind: Apple, sysroot: "/") | ||
!3 = !DIFile(filename: "main.cpp", directory: "/tmp", checksumkind: CSK_MD5, checksum: "b2547f7df8f54777c012dbfbd626f155") | ||
!4 = !{!5, !6} | ||
!5 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed) | ||
!6 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "C", file: !3, line: 1, size: 8, flags: DIFlagTypePassByValue, elements: !7, identifier: "_ZTS1C") | ||
!7 = !{!8, !9, !12} | ||
!8 = !DIDerivedType(tag: DW_TAG_variable, name: "a", scope: !6, file: !3, line: 3, baseType: !5, flags: DIFlagStaticMember) | ||
!9 = !DIDerivedType(tag: DW_TAG_variable, name: "b", scope: !6, file: !3, line: 4, baseType: !10, flags: DIFlagStaticMember) | ||
!10 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !11) | ||
!11 = !DIBasicType(name: "bool", size: 8, encoding: DW_ATE_boolean) | ||
!12 = !DIDerivedType(tag: DW_TAG_variable, name: "c", scope: !6, file: !3, line: 5, baseType: !13, flags: DIFlagStaticMember) | ||
!13 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !5) | ||
!14 = !{!0, !15, !17} | ||
!15 = !DIGlobalVariableExpression(var: !16, expr: !DIExpression(DW_OP_constu, 1, DW_OP_stack_value)) | ||
!16 = distinct !DIGlobalVariable(name: "b", scope: !2, file: !3, line: 4, type: !10, isLocal: true, isDefinition: true, declaration: !9) | ||
!17 = !DIGlobalVariableExpression(var: !18, expr: !DIExpression(DW_OP_constu, 15, DW_OP_stack_value)) | ||
!18 = distinct !DIGlobalVariable(name: "c", scope: !2, file: !3, line: 5, type: !13, isLocal: true, isDefinition: true, declaration: !12) | ||
!19 = !{i32 7, !"Dwarf Version", i32 5} | ||
!20 = !{i32 2, !"Debug Info Version", i32 3} | ||
!21 = !{i32 1, !"wchar_size", i32 4} | ||
!22 = !{i32 8, !"PIC Level", i32 2} | ||
!23 = !{i32 7, !"uwtable", i32 1} | ||
!24 = !{i32 7, !"frame-pointer", i32 1} | ||
!25 = !{!"clang version 18.0.0"} | ||
!26 = distinct !DISubprogram(name: "main", scope: !3, file: !3, line: 10, type: !27, scopeLine: 11, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !29) | ||
!27 = !DISubroutineType(types: !28) | ||
!28 = !{!5} | ||
!29 = !{} | ||
!30 = !DILocalVariable(name: "instance_C", scope: !26, file: !3, line: 12, type: !6) | ||
!31 = !DILocation(line: 12, column: 5, scope: !26) | ||
!32 = !DILocation(line: 13, column: 10, scope: !26) | ||
!33 = !DILocation(line: 13, column: 15, scope: !26) | ||
!34 = !DILocation(line: 13, column: 27, scope: !26) | ||
!35 = !DILocation(line: 13, column: 3, scope: !26) | ||
|
||
; CHECK: .debug_info contents: | ||
; CHECK: DW_TAG_variable | ||
; CHECK-NEXT: DW_AT_specification {{.*}} "a" | ||
; CHECK: DW_TAG_structure_type | ||
; CHECK: DW_AT_name {{.*}} "C" | ||
; CHECK: DW_TAG_variable | ||
; CHECK-NEXT: DW_AT_name {{.*}} "a" | ||
; CHECK: DW_AT_external | ||
; CHECK: DW_AT_declaration | ||
; CHECK: DW_TAG_variable | ||
; CHECK-NEXT: DW_AT_name {{.*}} "b" | ||
; CHECK: DW_AT_external | ||
; CHECK: DW_AT_declaration | ||
; CHECK: DW_TAG_variable | ||
; CHECK-NEXT: DW_AT_name {{.*}} "c" | ||
; CHECK: DW_AT_external | ||
; CHECK: DW_AT_declaration | ||
; CHECK: NULL | ||
; CHECK: DW_TAG_variable | ||
; CHECK-NEXT: DW_AT_specification {{.*}} "b" | ||
; CHECK-NEXT: DW_AT_const_value | ||
; CHECK: DW_TAG_variable | ||
; CHECK-NEXT: DW_AT_specification {{.*}} "c" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Assuming this changes the IR.