mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
b056aa798d
Move the specialized metadata nodes for the new debug info hierarchy into place, finishing off PR22464. I've done bootstraps (and all that) and I'm confident this commit is NFC as far as DWARF output is concerned. Let me know if I'm wrong :). The code changes are fairly mechanical: - Bumped the "Debug Info Version". - `DIBuilder` now creates the appropriate subclass of `MDNode`. - Subclasses of DIDescriptor now expect to hold their "MD" counterparts (e.g., `DIBasicType` expects `MDBasicType`). - Deleted a ton of dead code in `AsmWriter.cpp` and `DebugInfo.cpp` for printing comments. - Big update to LangRef to describe the nodes in the new hierarchy. Feel free to make it better. Testcase changes are enormous. There's an accompanying clang commit on its way. If you have out-of-tree debug info testcases, I just broke your build. - `upgrade-specialized-nodes.sh` is attached to PR22564. I used it to update all the IR testcases. - Unfortunately I failed to find way to script the updates to CHECK lines, so I updated all of these by hand. This was fairly painful, since the old CHECKs are difficult to reason about. That's one of the benefits of the new hierarchy. This work isn't quite finished, BTW. The `DIDescriptor` subclasses are almost empty wrappers, but not quite: they still have loose casting checks (see the `RETURN_FROM_RAW()` macro). Once they're completely gutted, I'll rename the "MD" classes to "DI" and kill the wrappers. I also expect to make a few schema changes now that it's easier to reason about everything. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231082 91177308-0d34-0410-b5e6-96231b3b80d8
80 lines
4.0 KiB
LLVM
80 lines
4.0 KiB
LLVM
; This file is used by 2011-08-04-DebugLoc.ll, so it doesn't actually do anything itself
|
|
;
|
|
; RUN: true
|
|
|
|
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-apple-macosx10.9.0"
|
|
|
|
define void @test(i32 %argc, i8** %argv) uwtable ssp {
|
|
entry:
|
|
%argc.addr = alloca i32, align 4
|
|
%argv.addr = alloca i8**, align 8
|
|
%i = alloca i32, align 4
|
|
store i32 %argc, i32* %argc.addr, align 4
|
|
call void @llvm.dbg.declare(metadata i32* %argc.addr, metadata !14, metadata !MDExpression()), !dbg !15
|
|
store i8** %argv, i8*** %argv.addr, align 8
|
|
call void @llvm.dbg.declare(metadata i8*** %argv.addr, metadata !16, metadata !MDExpression()), !dbg !15
|
|
call void @llvm.dbg.declare(metadata i32* %i, metadata !17, metadata !MDExpression()), !dbg !20
|
|
store i32 0, i32* %i, align 4, !dbg !20
|
|
br label %for.cond, !dbg !20
|
|
|
|
for.cond: ; preds = %for.inc, %entry
|
|
%0 = load i32, i32* %i, align 4, !dbg !20
|
|
%1 = load i32, i32* %argc.addr, align 4, !dbg !20
|
|
%cmp = icmp slt i32 %0, %1, !dbg !20
|
|
br i1 %cmp, label %for.body, label %for.end, !dbg !20
|
|
|
|
for.body: ; preds = %for.cond
|
|
%2 = load i32, i32* %i, align 4, !dbg !21
|
|
%idxprom = sext i32 %2 to i64, !dbg !21
|
|
%3 = load i8**, i8*** %argv.addr, align 8, !dbg !21
|
|
%arrayidx = getelementptr inbounds i8*, i8** %3, i64 %idxprom, !dbg !21
|
|
%4 = load i8*, i8** %arrayidx, align 8, !dbg !21
|
|
%call = call i32 @puts(i8* %4), !dbg !21
|
|
br label %for.inc, !dbg !23
|
|
|
|
for.inc: ; preds = %for.body
|
|
%5 = load i32, i32* %i, align 4, !dbg !20
|
|
%inc = add nsw i32 %5, 1, !dbg !20
|
|
store i32 %inc, i32* %i, align 4, !dbg !20
|
|
br label %for.cond, !dbg !20
|
|
|
|
for.end: ; preds = %for.cond
|
|
ret void, !dbg !24
|
|
}
|
|
|
|
declare void @llvm.dbg.declare(metadata, metadata, metadata) nounwind readnone
|
|
|
|
declare i32 @puts(i8*)
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!27}
|
|
|
|
!0 = !MDCompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.3 (trunk 173515)", isOptimized: true, emissionKind: 0, file: !25, enums: !2, retainedTypes: !2, subprograms: !3, globals: !2)
|
|
!1 = !{!2}
|
|
!2 = !{i32 0}
|
|
!3 = !{!5}
|
|
!5 = !MDSubprogram(name: "print_args", linkageName: "test", line: 4, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 5, file: !26, scope: null, type: !7, function: void (i32, i8**)* @test, variables: !1)
|
|
!6 = !MDFile(filename: "test.cpp", directory: "/private/tmp")
|
|
!7 = !MDSubroutineType(types: !8)
|
|
!8 = !{null, !9, !10}
|
|
!9 = !MDBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
|
|
!10 = !MDDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: !11)
|
|
!11 = !MDDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: !12)
|
|
!12 = !MDDerivedType(tag: DW_TAG_const_type, baseType: !13)
|
|
!13 = !MDBasicType(tag: DW_TAG_base_type, name: "char", size: 8, align: 8, encoding: DW_ATE_signed_char)
|
|
!14 = !MDLocalVariable(tag: DW_TAG_arg_variable, name: "argc", line: 4, arg: 1, scope: !5, file: !6, type: !9)
|
|
!15 = !MDLocation(line: 4, scope: !5)
|
|
!16 = !MDLocalVariable(tag: DW_TAG_arg_variable, name: "argv", line: 4, arg: 2, scope: !5, file: !6, type: !10)
|
|
!17 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "i", line: 6, scope: !18, file: !6, type: !9)
|
|
!18 = distinct !MDLexicalBlock(line: 6, column: 0, file: !26, scope: !19)
|
|
!19 = distinct !MDLexicalBlock(line: 5, column: 0, file: !26, scope: !5)
|
|
!20 = !MDLocation(line: 6, scope: !18)
|
|
!21 = !MDLocation(line: 8, scope: !22)
|
|
!22 = distinct !MDLexicalBlock(line: 7, column: 0, file: !26, scope: !18)
|
|
!23 = !MDLocation(line: 9, scope: !22)
|
|
!24 = !MDLocation(line: 10, scope: !19)
|
|
!25 = !MDFile(filename: "main.cpp", directory: "/private/tmp")
|
|
!26 = !MDFile(filename: "test.cpp", directory: "/private/tmp")
|
|
!27 = !{i32 1, !"Debug Info Version", i32 3}
|