2015-10-08 15:48:49 +08:00
; RUN: llc < %s -mtriple=i686-pc-linux | FileCheck %s
; CHECK-LABEL: _Z3foov:
; CHECK: .loc 1 4 3 prologue_end
; CHECK: .cfi_escape 0x2e, 0x10
2015-11-06 06:03:56 +08:00
define void @_Z3foov ( ) #0 personality i8 * bitcast ( i32 ( . . . ) * @__gxx_personality_v0 to i8 * ) !dbg !4 {
2015-10-08 15:48:49 +08:00
entry:
tail call void @_Z3bariii ( i32 0 , i32 1 , i32 2 ) #1 , !dbg !10
invoke void @_Z3bariii ( i32 4 , i32 5 , i32 6 ) #1
to label %try.cont unwind label %lpad , !dbg !11
lpad: ; preds = %entry
%0 = landingpad { i8 * , i32 }
catch i8 * null , !dbg !13
%1 = extractvalue { i8 * , i32 } %0 , 0 , !dbg !13
%2 = tail call i8 * @__cxa_begin_catch ( i8 * %1 ) #2 , !dbg !14
tail call void @__cxa_end_catch ( ) , !dbg !15
br label %try.cont , !dbg !15
try.cont: ; preds = %entry, %lpad
ret void , !dbg !17
}
; Function Attrs: optsize
declare void @_Z3bariii ( i32 , i32 , i32 ) #0
declare i32 @__gxx_personality_v0 ( . . . )
declare i8 * @__cxa_begin_catch ( i8 * )
declare void @__cxa_end_catch ( )
2015-11-03 16:17:25 +08:00
attributes #0 = { optsize "disable-tail-calls" = "false" "less-precise-fpmad" = "false" "no-frame-pointer-elim" = "true" "no-infs-fp-math" = "false" "no-nans-fp-math" = "false" "stack-protector-buffer-size" = "8" "target-cpu" = "pentium4" "target-features" = "+sse,+sse2" "unsafe-fp-math" = "false" "use-soft-float" = "false" }
2015-10-08 15:48:49 +08:00
attributes #1 = { optsize }
attributes #2 = { nounwind }
!llvm.dbg.cu = ! { !0 }
!llvm.module.flags = ! { !7 , !8 }
!llvm.ident = ! { !9 }
2016-04-15 23:57:41 +08:00
!0 = distinct !DICompileUnit ( language: D W _ L A N G _ C _ p l u s _ p l u s , file: !1 , producer: "clang version 3.8.0 (trunk 249520)" , isOptimized: true , runtimeVersion: 0 , emissionKind: F u l l D e b u g , enums: !2 )
2015-10-08 15:48:49 +08:00
!1 = !DIFile ( filename: "foo.cpp" , directory: "foo" )
!2 = ! { }
[DebugInfo] Add DILabel metadata and intrinsic llvm.dbg.label.
In order to set breakpoints on labels and list source code around
labels, we need collect debug information for labels, i.e., label
name, the function label belong, line number in the file, and the
address label located. In order to keep these information in LLVM
IR and to allow backend to generate debug information correctly.
We create a new kind of metadata for labels, DILabel. The format
of DILabel is
!DILabel(scope: !1, name: "foo", file: !2, line: 3)
We hope to keep debug information as much as possible even the
code is optimized. So, we create a new kind of intrinsic for label
metadata to avoid the metadata is eliminated with basic block.
The intrinsic will keep existing if we keep it from optimized out.
The format of the intrinsic is
llvm.dbg.label(metadata !1)
It has only one argument, that is the DILabel metadata. The
intrinsic will follow the label immediately. Backend could get the
label metadata through the intrinsic's parameter.
We also create DIBuilder API for labels to be used by Frontend.
Frontend could use createLabel() to allocate DILabel objects, and use
insertLabel() to insert llvm.dbg.label intrinsic in LLVM IR.
Differential Revision: https://reviews.llvm.org/D45024
Patch by Hsiangkai Wang.
llvm-svn: 331841
2018-05-09 10:40:45 +08:00
!4 = distinct !DISubprogram ( name: "foo" , linkageName: "_Z3foov" , scope: !1 , file: !1 , line: 3 , type: !5 , isLocal: false , isDefinition: true , scopeLine: 3 , flags: D I F l a g P r o t o t y p e d , isOptimized: true , unit: !0 , retainedNodes: !2 )
2015-10-08 15:48:49 +08:00
!5 = !DISubroutineType ( types: !6 )
!6 = ! { null }
!7 = ! { i32 2 , !"Dwarf Version" , i32 4 }
!8 = ! { i32 2 , !"Debug Info Version" , i32 3 }
!9 = ! { !"clang version 3.8.0 (trunk 249520)" }
!10 = !DILocation ( line: 4 , column: 3 , scope: !4 )
!11 = !DILocation ( line: 6 , column: 5 , scope: !12 )
!12 = distinct !DILexicalBlock ( scope: !4 , file: !1 , line: 5 , column: 7 )
!13 = !DILocation ( line: 10 , column: 1 , scope: !12 )
!14 = !DILocation ( line: 7 , column: 3 , scope: !12 )
!15 = !DILocation ( line: 9 , column: 3 , scope: !16 )
!16 = distinct !DILexicalBlock ( scope: !4 , file: !1 , line: 7 , column: 17 )
!17 = !DILocation ( line: 10 , column: 1 , scope: !4 )