2014-06-03 04:25:36 +00:00
|
|
|
; RUN: sed -e 's@PATTERN@\%T@g' < %s > %t1
|
|
|
|
; RUN: opt -insert-gcov-profiling -disable-output < %t1
|
|
|
|
; RUN: rm %T/linezero.gcno %t1
|
|
|
|
; REQUIRES: shell
|
|
|
|
|
|
|
|
; This is a crash test.
|
|
|
|
|
|
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
|
|
|
|
%struct.vector = type { i8 }
|
|
|
|
|
|
|
|
; Function Attrs: nounwind
|
|
|
|
define i32 @_Z4testv() #0 {
|
|
|
|
entry:
|
|
|
|
%retval = alloca i32, align 4
|
|
|
|
%__range = alloca %struct.vector*, align 8
|
|
|
|
%ref.tmp = alloca %struct.vector, align 1
|
|
|
|
%undef.agg.tmp = alloca %struct.vector, align 1
|
|
|
|
%__begin = alloca i8*, align 8
|
|
|
|
%__end = alloca i8*, align 8
|
|
|
|
%spec = alloca i8, align 1
|
Move the complex address expression out of DIVariable and into an extra
argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
Previously, DIVariable was a variable-length field that has an optional
reference to a Metadata array consisting of a variable number of
complex address expressions. In the case of OpPiece expressions this is
wasting a lot of storage in IR, because when an aggregate type is, e.g.,
SROA'd into all of its n individual members, the IR will contain n copies
of the DIVariable, all alike, only differing in the complex address
reference at the end.
By making the complex address into an extra argument of the
dbg.value/dbg.declare intrinsics, all of the pieces can reference the
same variable and the complex address expressions can be uniqued across
the CU, too.
Down the road, this will allow us to move other flags, such as
"indirection" out of the DIVariable, too.
The new intrinsics look like this:
declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
This patch adds a new LLVM-local tag to DIExpressions, so we can detect
and pretty-print DIExpression metadata nodes.
What this patch doesn't do:
This patch does not touch the "Indirect" field in DIVariable; but moving
that into the expression would be a natural next step.
http://reviews.llvm.org/D4919
rdar://problem/17994491
Thanks to dblaikie and dexonsmith for reviewing this patch!
Note: I accidentally committed a bogus older version of this patch previously.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218787 91177308-0d34-0410-b5e6-96231b3b80d8
2014-10-01 18:55:02 +00:00
|
|
|
call void @llvm.dbg.declare(metadata !{%struct.vector** %__range}, metadata !27, metadata !{}), !dbg !30
|
2014-06-03 04:25:36 +00:00
|
|
|
br label %0
|
|
|
|
|
|
|
|
; <label>:0 ; preds = %entry
|
|
|
|
call void @_Z13TagFieldSpecsv(), !dbg !31
|
|
|
|
store %struct.vector* %ref.tmp, %struct.vector** %__range, align 8, !dbg !31
|
Move the complex address expression out of DIVariable and into an extra
argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
Previously, DIVariable was a variable-length field that has an optional
reference to a Metadata array consisting of a variable number of
complex address expressions. In the case of OpPiece expressions this is
wasting a lot of storage in IR, because when an aggregate type is, e.g.,
SROA'd into all of its n individual members, the IR will contain n copies
of the DIVariable, all alike, only differing in the complex address
reference at the end.
By making the complex address into an extra argument of the
dbg.value/dbg.declare intrinsics, all of the pieces can reference the
same variable and the complex address expressions can be uniqued across
the CU, too.
Down the road, this will allow us to move other flags, such as
"indirection" out of the DIVariable, too.
The new intrinsics look like this:
declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
This patch adds a new LLVM-local tag to DIExpressions, so we can detect
and pretty-print DIExpression metadata nodes.
What this patch doesn't do:
This patch does not touch the "Indirect" field in DIVariable; but moving
that into the expression would be a natural next step.
http://reviews.llvm.org/D4919
rdar://problem/17994491
Thanks to dblaikie and dexonsmith for reviewing this patch!
Note: I accidentally committed a bogus older version of this patch previously.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218787 91177308-0d34-0410-b5e6-96231b3b80d8
2014-10-01 18:55:02 +00:00
|
|
|
call void @llvm.dbg.declare(metadata !{i8** %__begin}, metadata !32, metadata !{}), !dbg !30
|
2014-06-03 04:25:36 +00:00
|
|
|
%1 = load %struct.vector** %__range, align 8, !dbg !31
|
|
|
|
%call = call i8* @_ZN6vector5beginEv(%struct.vector* %1), !dbg !31
|
|
|
|
store i8* %call, i8** %__begin, align 8, !dbg !31
|
Move the complex address expression out of DIVariable and into an extra
argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
Previously, DIVariable was a variable-length field that has an optional
reference to a Metadata array consisting of a variable number of
complex address expressions. In the case of OpPiece expressions this is
wasting a lot of storage in IR, because when an aggregate type is, e.g.,
SROA'd into all of its n individual members, the IR will contain n copies
of the DIVariable, all alike, only differing in the complex address
reference at the end.
By making the complex address into an extra argument of the
dbg.value/dbg.declare intrinsics, all of the pieces can reference the
same variable and the complex address expressions can be uniqued across
the CU, too.
Down the road, this will allow us to move other flags, such as
"indirection" out of the DIVariable, too.
The new intrinsics look like this:
declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
This patch adds a new LLVM-local tag to DIExpressions, so we can detect
and pretty-print DIExpression metadata nodes.
What this patch doesn't do:
This patch does not touch the "Indirect" field in DIVariable; but moving
that into the expression would be a natural next step.
http://reviews.llvm.org/D4919
rdar://problem/17994491
Thanks to dblaikie and dexonsmith for reviewing this patch!
Note: I accidentally committed a bogus older version of this patch previously.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218787 91177308-0d34-0410-b5e6-96231b3b80d8
2014-10-01 18:55:02 +00:00
|
|
|
call void @llvm.dbg.declare(metadata !{i8** %__end}, metadata !33, metadata !{}), !dbg !30
|
2014-06-03 04:25:36 +00:00
|
|
|
%2 = load %struct.vector** %__range, align 8, !dbg !31
|
|
|
|
%call1 = call i8* @_ZN6vector3endEv(%struct.vector* %2), !dbg !31
|
|
|
|
store i8* %call1, i8** %__end, align 8, !dbg !31
|
|
|
|
br label %for.cond, !dbg !31
|
|
|
|
|
|
|
|
for.cond: ; preds = %for.inc, %0
|
|
|
|
%3 = load i8** %__begin, align 8, !dbg !34
|
|
|
|
%4 = load i8** %__end, align 8, !dbg !34
|
|
|
|
%cmp = icmp ne i8* %3, %4, !dbg !34
|
|
|
|
br i1 %cmp, label %for.body, label %for.end, !dbg !34
|
|
|
|
|
|
|
|
for.body: ; preds = %for.cond
|
Move the complex address expression out of DIVariable and into an extra
argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
Previously, DIVariable was a variable-length field that has an optional
reference to a Metadata array consisting of a variable number of
complex address expressions. In the case of OpPiece expressions this is
wasting a lot of storage in IR, because when an aggregate type is, e.g.,
SROA'd into all of its n individual members, the IR will contain n copies
of the DIVariable, all alike, only differing in the complex address
reference at the end.
By making the complex address into an extra argument of the
dbg.value/dbg.declare intrinsics, all of the pieces can reference the
same variable and the complex address expressions can be uniqued across
the CU, too.
Down the road, this will allow us to move other flags, such as
"indirection" out of the DIVariable, too.
The new intrinsics look like this:
declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
This patch adds a new LLVM-local tag to DIExpressions, so we can detect
and pretty-print DIExpression metadata nodes.
What this patch doesn't do:
This patch does not touch the "Indirect" field in DIVariable; but moving
that into the expression would be a natural next step.
http://reviews.llvm.org/D4919
rdar://problem/17994491
Thanks to dblaikie and dexonsmith for reviewing this patch!
Note: I accidentally committed a bogus older version of this patch previously.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218787 91177308-0d34-0410-b5e6-96231b3b80d8
2014-10-01 18:55:02 +00:00
|
|
|
call void @llvm.dbg.declare(metadata !{i8* %spec}, metadata !37, metadata !{}), !dbg !31
|
2014-06-03 04:25:36 +00:00
|
|
|
%5 = load i8** %__begin, align 8, !dbg !38
|
|
|
|
%6 = load i8* %5, align 1, !dbg !38
|
|
|
|
store i8 %6, i8* %spec, align 1, !dbg !38
|
|
|
|
br label %for.inc, !dbg !38
|
|
|
|
|
|
|
|
for.inc: ; preds = %for.body
|
|
|
|
%7 = load i8** %__begin, align 8, !dbg !40
|
|
|
|
%incdec.ptr = getelementptr inbounds i8* %7, i32 1, !dbg !40
|
|
|
|
store i8* %incdec.ptr, i8** %__begin, align 8, !dbg !40
|
|
|
|
br label %for.cond, !dbg !40
|
|
|
|
|
|
|
|
for.end: ; preds = %for.cond
|
|
|
|
call void @llvm.trap(), !dbg !42
|
|
|
|
unreachable, !dbg !42
|
|
|
|
|
|
|
|
return: ; No predecessors!
|
|
|
|
%8 = load i32* %retval, !dbg !44
|
|
|
|
ret i32 %8, !dbg !44
|
|
|
|
}
|
|
|
|
|
|
|
|
; Function Attrs: nounwind readnone
|
Move the complex address expression out of DIVariable and into an extra
argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
Previously, DIVariable was a variable-length field that has an optional
reference to a Metadata array consisting of a variable number of
complex address expressions. In the case of OpPiece expressions this is
wasting a lot of storage in IR, because when an aggregate type is, e.g.,
SROA'd into all of its n individual members, the IR will contain n copies
of the DIVariable, all alike, only differing in the complex address
reference at the end.
By making the complex address into an extra argument of the
dbg.value/dbg.declare intrinsics, all of the pieces can reference the
same variable and the complex address expressions can be uniqued across
the CU, too.
Down the road, this will allow us to move other flags, such as
"indirection" out of the DIVariable, too.
The new intrinsics look like this:
declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
This patch adds a new LLVM-local tag to DIExpressions, so we can detect
and pretty-print DIExpression metadata nodes.
What this patch doesn't do:
This patch does not touch the "Indirect" field in DIVariable; but moving
that into the expression would be a natural next step.
http://reviews.llvm.org/D4919
rdar://problem/17994491
Thanks to dblaikie and dexonsmith for reviewing this patch!
Note: I accidentally committed a bogus older version of this patch previously.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218787 91177308-0d34-0410-b5e6-96231b3b80d8
2014-10-01 18:55:02 +00:00
|
|
|
declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
|
2014-06-03 04:25:36 +00:00
|
|
|
|
|
|
|
declare void @_Z13TagFieldSpecsv() #2
|
|
|
|
|
|
|
|
declare i8* @_ZN6vector5beginEv(%struct.vector*) #2
|
|
|
|
|
|
|
|
declare i8* @_ZN6vector3endEv(%struct.vector*) #2
|
|
|
|
|
|
|
|
; Function Attrs: noreturn nounwind
|
|
|
|
declare void @llvm.trap() #3
|
|
|
|
|
|
|
|
; Function Attrs: nounwind
|
|
|
|
define void @_Z2f1v() #0 {
|
|
|
|
entry:
|
|
|
|
br label %0
|
|
|
|
|
|
|
|
; <label>:0 ; preds = %entry
|
|
|
|
ret void, !dbg !45
|
|
|
|
}
|
|
|
|
|
|
|
|
attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-realign-stack" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
|
|
|
attributes #1 = { nounwind readnone }
|
|
|
|
attributes #2 = { "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-realign-stack" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
|
|
|
attributes #3 = { noreturn nounwind }
|
|
|
|
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
|
|
!llvm.module.flags = !{!23, !24}
|
|
|
|
!llvm.gcov = !{!25}
|
|
|
|
!llvm.ident = !{!26}
|
|
|
|
|
2014-10-03 20:01:09 +00:00
|
|
|
!0 = metadata !{metadata !"0x11\004\00clang version 3.5.0 (trunk 209871)\000\00\000\00\001", metadata !1, metadata !2, metadata !3, metadata !14, metadata !2, metadata !2} ; [ DW_TAG_compile_unit ] [<stdin>] [DW_LANG_C_plus_plus]
|
2014-06-03 04:25:36 +00:00
|
|
|
!1 = metadata !{metadata !"<stdin>", metadata !"PATTERN"}
|
|
|
|
!2 = metadata !{}
|
|
|
|
!3 = metadata !{metadata !4}
|
2014-10-03 20:01:09 +00:00
|
|
|
!4 = metadata !{metadata !"0x13\00vector\0021\008\008\000\000\000", metadata !5, null, null, metadata !6, null, null, metadata !"_ZTS6vector"} ; [ DW_TAG_structure_type ] [vector] [line 21, size 8, align 8, offset 0] [def] [from ]
|
2014-06-03 04:25:36 +00:00
|
|
|
!5 = metadata !{metadata !"linezero.cc", metadata !"PATTERN"}
|
|
|
|
!6 = metadata !{metadata !7, metadata !13}
|
2014-10-03 20:01:09 +00:00
|
|
|
!7 = metadata !{metadata !"0x2e\00begin\00begin\00_ZN6vector5beginEv\0025\000\000\000\006\00256\000\0025", metadata !5, metadata !"_ZTS6vector", metadata !8, null, null, null, i32 0, null} ; [ DW_TAG_subprogram ] [line 25] [begin]
|
|
|
|
!8 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !9, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
2014-06-03 04:25:36 +00:00
|
|
|
!9 = metadata !{metadata !10, metadata !12}
|
2014-10-03 20:01:09 +00:00
|
|
|
!10 = metadata !{metadata !"0xf\00\000\0064\0064\000\000", null, null, metadata !11} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from char]
|
|
|
|
!11 = metadata !{metadata !"0x24\00char\000\008\008\000\000\006", null, null} ; [ DW_TAG_base_type ] [char] [line 0, size 8, align 8, offset 0, enc DW_ATE_signed_char]
|
|
|
|
!12 = metadata !{metadata !"0xf\00\000\0064\0064\000\001088", null, null, metadata !"_ZTS6vector"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [artificial] [from _ZTS6vector]
|
|
|
|
!13 = metadata !{metadata !"0x2e\00end\00end\00_ZN6vector3endEv\0026\000\000\000\006\00256\000\0026", metadata !5, metadata !"_ZTS6vector", metadata !8, null, null, null, i32 0, null} ; [ DW_TAG_subprogram ] [line 26] [end]
|
2014-06-03 04:25:36 +00:00
|
|
|
!14 = metadata !{metadata !15, metadata !20}
|
2014-10-03 20:01:09 +00:00
|
|
|
!15 = metadata !{metadata !"0x2e\00test\00test\00_Z4testv\0050\000\001\000\006\00256\000\0050", metadata !5, metadata !16, metadata !17, null, i32 ()* @_Z4testv, null, null, metadata !2} ; [ DW_TAG_subprogram ] [line 50] [def] [test]
|
|
|
|
!16 = metadata !{metadata !"0x29", metadata !5} ; [ DW_TAG_file_type ] [./linezero.cc]
|
|
|
|
!17 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !18, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
2014-06-03 04:25:36 +00:00
|
|
|
!18 = metadata !{metadata !19}
|
2014-10-03 20:01:09 +00:00
|
|
|
!19 = metadata !{metadata !"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed]
|
|
|
|
!20 = metadata !{metadata !"0x2e\00f1\00f1\00_Z2f1v\0054\000\001\000\006\00256\000\0054", metadata !5, metadata !16, metadata !21, null, void ()* @_Z2f1v, null, null, metadata !2} ; [ DW_TAG_subprogram ] [line 54] [def] [f1]
|
|
|
|
!21 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !22, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
2014-06-03 04:25:36 +00:00
|
|
|
!22 = metadata !{null}
|
|
|
|
!23 = metadata !{i32 2, metadata !"Dwarf Version", i32 4}
|
2014-10-03 20:01:09 +00:00
|
|
|
!24 = metadata !{i32 2, metadata !"Debug Info Version", i32 2}
|
2014-06-03 04:25:36 +00:00
|
|
|
!25 = metadata !{metadata !"PATTERN/linezero.o", metadata !0}
|
|
|
|
!26 = metadata !{metadata !"clang version 3.5.0 (trunk 209871)"}
|
2014-10-03 20:01:09 +00:00
|
|
|
!27 = metadata !{metadata !"0x100\00__range\000\0064", metadata !28, null, metadata !29} ; [ DW_TAG_auto_variable ] [__range] [line 0]
|
|
|
|
!28 = metadata !{metadata !"0xb\0051\000\000", metadata !5, metadata !15} ; [ DW_TAG_lexical_block ] [./linezero.cc]
|
|
|
|
!29 = metadata !{metadata !"0x42\00\000\000\000\000\000", null, null, metadata !"_ZTS6vector"} ; [ DW_TAG_rvalue_reference_type ] [line 0, size 0, align 0, offset 0] [from _ZTS6vector]
|
2014-06-03 04:25:36 +00:00
|
|
|
!30 = metadata !{i32 0, i32 0, metadata !28, null}
|
|
|
|
!31 = metadata !{i32 51, i32 0, metadata !28, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!32 = metadata !{metadata !"0x100\00__begin\000\0064", metadata !28, null, metadata !10} ; [ DW_TAG_auto_variable ] [__begin] [line 0]
|
|
|
|
!33 = metadata !{metadata !"0x100\00__end\000\0064", metadata !28, null, metadata !10} ; [ DW_TAG_auto_variable ] [__end] [line 0]
|
2014-06-03 04:25:36 +00:00
|
|
|
!34 = metadata !{i32 51, i32 0, metadata !35, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!35 = metadata !{metadata !"0xb\0051\000\005", metadata !5, metadata !36} ; [ DW_TAG_lexical_block ] [./linezero.cc]
|
|
|
|
!36 = metadata !{metadata !"0xb\0051\000\001", metadata !5, metadata !28} ; [ DW_TAG_lexical_block ] [./linezero.cc]
|
|
|
|
!37 = metadata !{metadata !"0x100\00spec\0051\000", metadata !28, metadata !16, metadata !11} ; [ DW_TAG_auto_variable ] [spec] [line 51]
|
2014-06-03 04:25:36 +00:00
|
|
|
!38 = metadata !{i32 51, i32 0, metadata !39, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!39 = metadata !{metadata !"0xb\0051\000\002", metadata !5, metadata !28} ; [ DW_TAG_lexical_block ] [./linezero.cc]
|
2014-06-03 04:25:36 +00:00
|
|
|
!40 = metadata !{i32 51, i32 0, metadata !41, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!41 = metadata !{metadata !"0xb\0051\000\004", metadata !5, metadata !28} ; [ DW_TAG_lexical_block ] [./linezero.cc]
|
2014-06-03 04:25:36 +00:00
|
|
|
!42 = metadata !{i32 51, i32 0, metadata !43, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!43 = metadata !{metadata !"0xb\0051\000\003", metadata !5, metadata !28} ; [ DW_TAG_lexical_block ] [./linezero.cc]
|
2014-06-03 04:25:36 +00:00
|
|
|
!44 = metadata !{i32 52, i32 0, metadata !15, null}
|
|
|
|
!45 = metadata !{i32 54, i32 0, metadata !20, null}
|