mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 20:36:06 +00:00

This patch adds support for parsing the proposed non-instruction debug info ("RemoveDIs") from textual IR, and adds a test for the parser as well as a set of verifier tests that are dependent on parsing to fire. An important detail of this patch is the fact that although we can now parse in the RemoveDIs (new) and Intrinsic (old) debug info formats, we will always convert back to the old format at the end of parsing - this is done for two reasons: firstly to ensure that every tool is able to process IR printed in the new format, regardless of whether that tool has had RemoveDIs support added, and secondly to maintain the effect of the existing flags: for the tools where support for the new format has been added, we will run LLVM passes in the new format iff `--try-experimental-debuginfo-iterators=true`, and we will print in the new format iff `--write-experimental-debuginfo-iterators=true`; the format of the textual IR input should have no effect on either of these features.
37 lines
1.6 KiB
LLVM
37 lines
1.6 KiB
LLVM
;; Test that we get a parser error when we have a debug assign record with an
|
|
;; incorrect number of arguments.
|
|
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
|
|
; ModuleID = '<stdin>'
|
|
source_filename = "<stdin>"
|
|
|
|
define dso_local i32 @f(i32 %a) !dbg !7 {
|
|
entry:
|
|
; CHECK: <stdin>:[[@LINE+1]]:50: error: Expected ',' here
|
|
#dbg_assign(i32 %a, !12, !DIExpression(), !14)
|
|
ret i32 %a, !dbg !18
|
|
}
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!3, !4, !5}
|
|
!llvm.ident = !{!6}
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 18.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None)
|
|
!1 = !DIFile(filename: "print.c", directory: "/tmp")
|
|
!2 = !{}
|
|
!3 = !{i32 2, !"Dwarf Version", i32 5}
|
|
!4 = !{i32 2, !"Debug Info Version", i32 3}
|
|
!5 = !{i32 1, !"wchar_size", i32 4}
|
|
!6 = !{!"clang version 18.0.0"}
|
|
!7 = distinct !DISubprogram(name: "f", scope: !1, file: !1, line: 3, type: !8, scopeLine: 3, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !11)
|
|
!8 = !DISubroutineType(types: !9)
|
|
!9 = !{!10, !10}
|
|
!10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
|
|
!11 = !{!12, !13}
|
|
!12 = !DILocalVariable(name: "a", arg: 1, scope: !7, file: !1, line: 3, type: !10)
|
|
!13 = !DILocalVariable(name: "b", scope: !7, file: !1, line: 3, type: !10)
|
|
!14 = !DILocation(line: 3, column: 15, scope: !7)
|
|
!15 = distinct !DIAssignID()
|
|
!16 = !DILocation(line: 3, column: 20, scope: !7)
|
|
!17 = !DILocation(line: 3, column: 25, scope: !7)
|
|
!18 = !DILocation(line: 3, column: 30, scope: !7)
|