DebugInfo: Fix a bunch of tests that, owing to their compile_unit metadata not including a 13th field, had some subtle behavior.
Without the 13th field, the "emission kind" field defaults to 0 (which
is not equal to either of the values of the emission kind enum (1 ==
full debug info, 2 == line tables only)).
In this particular instance, the comparison with "FullDebugInfo" was
done when adding elements to the ranges list - so for these test cases
no values were added to the ranges list.
This got weirder when emitting debug_loc entries as the addresses should
be relative to the range of the CU if the CU has only one range (the
reasonable assumption is that if we're emitting debug_loc lists for a CU
that CU has at least one range - but due to the above situation, it has
zero) so the ranges were emitted relative to the start of the section
rather than relative to the start of the CU's singular range.
Fix these tests by accounting for the difference in the description of
debug_loc entries (in some cases making the test ignorant to these
differences, in others adding the extra label difference expression,
etc) or the presence/absence of high/low_pc on the CU, and add the 13th
field to their CUs to enable proper "full debug info" emission here.
In a future commit I'll fix up a bunch of other test cases that are not
so rigorously depending on this behavior, but still doing similarly
weird things due to the missing 13th field.
llvm-svn: 214937
2014-08-06 07:57:31 +08:00
|
|
|
; RUN: llc < %s - -filetype=obj | llvm-dwarfdump -debug-dump=loc - | FileCheck %s
|
2011-05-05 03:00:57 +08:00
|
|
|
; Radar 9376013
|
|
|
|
target datalayout = "e-p:32:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:32-f32:32:32-f64:32:32-v64:32:64-v128:32:128-a0:0:32-n32"
|
|
|
|
target triple = "thumbv7-apple-macosx10.6.7"
|
|
|
|
|
2014-08-08 06:44:24 +08:00
|
|
|
; Just making sure the first part of the location isn't a repetition
|
|
|
|
; of the size of the location description.
|
|
|
|
;
|
DebugInfo: Fix a bunch of tests that, owing to their compile_unit metadata not including a 13th field, had some subtle behavior.
Without the 13th field, the "emission kind" field defaults to 0 (which
is not equal to either of the values of the emission kind enum (1 ==
full debug info, 2 == line tables only)).
In this particular instance, the comparison with "FullDebugInfo" was
done when adding elements to the ranges list - so for these test cases
no values were added to the ranges list.
This got weirder when emitting debug_loc entries as the addresses should
be relative to the range of the CU if the CU has only one range (the
reasonable assumption is that if we're emitting debug_loc lists for a CU
that CU has at least one range - but due to the above situation, it has
zero) so the ranges were emitted relative to the start of the section
rather than relative to the start of the CU's singular range.
Fix these tests by accounting for the difference in the description of
debug_loc entries (in some cases making the test ignorant to these
differences, in others adding the extra label difference expression,
etc) or the presence/absence of high/low_pc on the CU, and add the 13th
field to their CUs to enable proper "full debug info" emission here.
In a future commit I'll fix up a bunch of other test cases that are not
so rigorously depending on this behavior, but still doing similarly
weird things due to the missing 13th field.
llvm-svn: 214937
2014-08-06 07:57:31 +08:00
|
|
|
; 0x90 DW_OP_regx of super-register
|
|
|
|
|
|
|
|
; CHECK: 0x00000000: Beginning address offset:
|
|
|
|
; CHECK-NEXT: Ending address offset:
|
|
|
|
; CHECK-NEXT: Location description: 90 {{.. .. .. ..}}
|
2011-05-05 03:00:57 +08:00
|
|
|
|
|
|
|
define void @_Z3foov() optsize ssp {
|
|
|
|
entry:
|
|
|
|
%call = tail call float @_Z3barv() optsize, !dbg !11
|
|
|
|
tail call void @llvm.dbg.value(metadata !{float %call}, i64 0, metadata !5), !dbg !11
|
|
|
|
%call16 = tail call float @_Z2f2v() optsize, !dbg !12
|
|
|
|
%cmp7 = fcmp olt float %call, %call16, !dbg !12
|
|
|
|
br i1 %cmp7, label %for.body, label %for.end, !dbg !12
|
|
|
|
|
|
|
|
for.body: ; preds = %entry, %for.body
|
|
|
|
%k.08 = phi float [ %inc, %for.body ], [ %call, %entry ]
|
|
|
|
%call4 = tail call float @_Z2f3f(float %k.08) optsize, !dbg !13
|
|
|
|
%inc = fadd float %k.08, 1.000000e+00, !dbg !14
|
|
|
|
%call1 = tail call float @_Z2f2v() optsize, !dbg !12
|
|
|
|
%cmp = fcmp olt float %inc, %call1, !dbg !12
|
|
|
|
br i1 %cmp, label %for.body, label %for.end, !dbg !12
|
|
|
|
|
|
|
|
for.end: ; preds = %for.body, %entry
|
|
|
|
ret void, !dbg !15
|
|
|
|
}
|
|
|
|
|
|
|
|
declare float @_Z3barv() optsize
|
|
|
|
|
|
|
|
declare float @_Z2f2v() optsize
|
|
|
|
|
|
|
|
declare float @_Z2f3f(float) optsize
|
|
|
|
|
|
|
|
declare void @llvm.dbg.value(metadata, i64, metadata) nounwind readnone
|
|
|
|
|
|
|
|
!llvm.dbg.cu = !{!0}
|
2013-11-23 05:49:45 +08:00
|
|
|
!llvm.module.flags = !{!20}
|
2011-05-05 03:00:57 +08:00
|
|
|
|
DebugInfo: Fix a bunch of tests that, owing to their compile_unit metadata not including a 13th field, had some subtle behavior.
Without the 13th field, the "emission kind" field defaults to 0 (which
is not equal to either of the values of the emission kind enum (1 ==
full debug info, 2 == line tables only)).
In this particular instance, the comparison with "FullDebugInfo" was
done when adding elements to the ranges list - so for these test cases
no values were added to the ranges list.
This got weirder when emitting debug_loc entries as the addresses should
be relative to the range of the CU if the CU has only one range (the
reasonable assumption is that if we're emitting debug_loc lists for a CU
that CU has at least one range - but due to the above situation, it has
zero) so the ranges were emitted relative to the start of the section
rather than relative to the start of the CU's singular range.
Fix these tests by accounting for the difference in the description of
debug_loc entries (in some cases making the test ignorant to these
differences, in others adding the extra label difference expression,
etc) or the presence/absence of high/low_pc on the CU, and add the 13th
field to their CUs to enable proper "full debug info" emission here.
In a future commit I'll fix up a bunch of other test cases that are not
so rigorously depending on this behavior, but still doing similarly
weird things due to the missing 13th field.
llvm-svn: 214937
2014-08-06 07:57:31 +08:00
|
|
|
!0 = metadata !{i32 786449, metadata !18, i32 4, metadata !"clang version 3.0 (trunk 130845)", i1 true, metadata !"", i32 0, metadata !19, metadata !19, metadata !16, null, null, null, i32 1} ; [ DW_TAG_compile_unit ]
|
2013-09-07 05:03:58 +08:00
|
|
|
!1 = metadata !{i32 786478, metadata !18, metadata !2, metadata !"foo", metadata !"foo", metadata !"_Z3foov", i32 5, metadata !3, i1 false, i1 true, i32 0, i32 0, null, i32 256, i1 true, void ()* @_Z3foov, null, null, metadata !17, i32 5} ; [ DW_TAG_subprogram ] [line 5] [def] [foo]
|
2013-03-28 10:44:59 +08:00
|
|
|
!2 = metadata !{i32 786473, metadata !18} ; [ DW_TAG_file_type ]
|
2013-09-07 05:03:58 +08:00
|
|
|
!3 = metadata !{i32 786453, metadata !18, metadata !2, metadata !"", i32 0, i64 0, i64 0, i32 0, i32 0, null, metadata !4, i32 0, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
2011-05-05 03:00:57 +08:00
|
|
|
!4 = metadata !{null}
|
2013-03-08 08:23:31 +08:00
|
|
|
!5 = metadata !{i32 786688, metadata !6, metadata !"k", metadata !2, i32 6, metadata !7, i32 0, null} ; [ DW_TAG_auto_variable ]
|
2013-07-25 14:43:01 +08:00
|
|
|
!6 = metadata !{i32 786443, metadata !18, metadata !1, i32 5, i32 12, i32 0} ; [ DW_TAG_lexical_block ]
|
|
|
|
!7 = metadata !{i32 786468, null, metadata !0, metadata !"float", i32 0, i64 32, i64 32, i64 0, i32 0, i32 4} ; [ DW_TAG_base_type ]
|
2013-03-08 08:23:31 +08:00
|
|
|
!8 = metadata !{i32 786688, metadata !9, metadata !"y", metadata !2, i32 8, metadata !7, i32 0, null} ; [ DW_TAG_auto_variable ]
|
2013-07-25 14:43:01 +08:00
|
|
|
!9 = metadata !{i32 786443, metadata !18, metadata !10, i32 7, i32 25, i32 2} ; [ DW_TAG_lexical_block ]
|
|
|
|
!10 = metadata !{i32 786443, metadata !18, metadata !6, i32 7, i32 3, i32 1} ; [ DW_TAG_lexical_block ]
|
2011-05-05 03:00:57 +08:00
|
|
|
!11 = metadata !{i32 6, i32 18, metadata !6, null}
|
|
|
|
!12 = metadata !{i32 7, i32 3, metadata !6, null}
|
|
|
|
!13 = metadata !{i32 8, i32 20, metadata !9, null}
|
|
|
|
!14 = metadata !{i32 7, i32 20, metadata !10, null}
|
|
|
|
!15 = metadata !{i32 10, i32 1, metadata !6, null}
|
2013-03-18 05:13:55 +08:00
|
|
|
!16 = metadata !{metadata !1}
|
|
|
|
!17 = metadata !{metadata !5, metadata !8}
|
|
|
|
!18 = metadata !{metadata !"k.cc", metadata !"/private/tmp"}
|
2013-07-27 04:04:30 +08:00
|
|
|
!19 = metadata !{i32 0}
|
2013-11-23 05:49:45 +08:00
|
|
|
!20 = metadata !{i32 1, metadata !"Debug Info Version", i32 1}
|