2016-09-16 06:05:08 +08:00
; RUN: llc -mtriple=x86_64-windows-msvc < %s | FileCheck %s --check-prefix=ASM
; RUN: llc -mtriple=x86_64-windows-msvc < %s -filetype=obj | llvm-readobj -codeview - | FileCheck %s --check-prefix=OBJ
; This test attempts to exercise gaps in local variables. The local variable 'p'
2017-11-29 01:15:09 +08:00
; will end up in some CSR (esi), which will be used in both the BB scheduled
2016-09-16 06:05:08 +08:00
; discontiguously out of line and the normal return BB. The best way to encode
; this is to use a LocalVariableAddrGap. If the gap is too large, multiple
; ranges should be emitted.
; Source to regenerate:
; int barrier();
; int vardef();
; void use(int);
; void __declspec(noreturn) call_noreturn(int);
; int f() {
; if (barrier()) {
; int p = vardef();
; if (barrier()) // Unlikely, will be placed after return
; call_noreturn(p);
; use(p);
; } else {
; barrier();
; }
; return 0;
; }
; ASM: f: # @f
; ASM: pushq %rsi
; ASM: subq $32, %rsp
; ASM: callq barrier
; ASM: testl %eax, %eax
; ASM: je .LBB0_3
; ASM: callq vardef
; ASM: movl %eax, %esi
; ASM: [[p_b1:\.Ltmp[0-9]+]]:
2018-02-01 06:04:26 +08:00
; ASM: #DEBUG_VALUE: p <- $esi
2016-09-16 06:05:08 +08:00
; ASM: callq barrier
; ASM: movl %esi, %ecx
; ASM: testl %eax, %eax
; ASM: jne .LBB0_5
2017-12-05 01:18:51 +08:00
; ASM: # %bb.2: # %if.end
2018-02-01 06:04:26 +08:00
; ASM: #DEBUG_VALUE: p <- $esi
2016-09-16 06:05:08 +08:00
; ASM: callq use
; ASM: jmp .LBB0_4
; ASM: [[p_e1:\.Ltmp[0-9]+]]:
; ASM: .LBB0_3: # %if.else
; ASM: callq barrier
; ASM: .LBB0_4: # %if.end6
; ASM: xorl %eax, %eax
; ASM: addq $32, %rsp
; ASM: popq %rsi
; ASM: retq
; ASM: .LBB0_5: # %if.then4
; ASM: [[p_b2:\.Ltmp[0-9]+]]:
2018-02-01 06:04:26 +08:00
; ASM: #DEBUG_VALUE: p <- $esi
2016-09-16 06:05:08 +08:00
; ASM: callq call_noreturn
; ASM: ud2
; ASM: .Lfunc_end0:
; ASM: .short {{.*}} # Record length
; ASM: .short 4414 # Record kind: S_LOCAL
; ASM: .long 116 # TypeIndex
; ASM: .short 0 # Flags
; ASM: .asciz "p"
; ASM: .cv_def_range [[p_b1]] [[p_e1]] [[p_b2]] .Lfunc_end0, "A\021\027\000\000\000"
; ASM: .short 2 # Record length
; ASM: .short 4431 # Record kind: S_PROC_ID_END
2017-07-12 07:41:41 +08:00
; OBJ: LocalSym {
2016-09-16 06:05:08 +08:00
; OBJ: Type: int (0x74)
; OBJ: VarName: p
; OBJ: }
2017-07-12 07:41:41 +08:00
; OBJ-NOT: LocalSym {
; OBJ: DefRangeRegisterSym {
; OBJ-NEXT: Kind:
2018-08-17 01:34:31 +08:00
; OBJ-NEXT: Register: ESI (0x17)
2016-09-16 06:05:08 +08:00
; OBJ-NEXT: MayHaveNoName: 0
; OBJ-NEXT: LocalVariableAddrRange {
; OBJ-NEXT: OffsetStart: .text+0x{{.*}}
; OBJ-NEXT: ISectStart: 0x0
; OBJ-NEXT: Range: 0x{{.*}}
; OBJ-NEXT: }
; OBJ-NEXT: LocalVariableAddrGap [
; OBJ-NEXT: GapStartOffset: 0x{{.*}}
; OBJ-NEXT: Range: 0x{{.*}}
; OBJ-NEXT: ]
; OBJ-NEXT: }
; ModuleID = 't.cpp'
source_filename = "t.cpp"
target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-windows-msvc19.0.24210"
; Function Attrs: nounwind uwtable
define i32 @f ( ) local_unnamed_addr #0 !dbg !7 {
entry:
%call = tail call i32 bitcast ( i32 ( . . . ) * @barrier to i32 ( ) * ) ( ) #4 , !dbg !15
%tobool = icmp eq i32 %call , 0 , !dbg !15
br i1 %tobool , label %if.else , label %if.then , !dbg !16
if.then: ; preds = %entry
%call1 = tail call i32 bitcast ( i32 ( . . . ) * @vardef to i32 ( ) * ) ( ) #4 , !dbg !17
2017-07-29 04:21:02 +08:00
tail call void @llvm.dbg.value ( metadata i32 %call1 , metadata !12 , metadata !18 ) , !dbg !19
2016-09-16 06:05:08 +08:00
%call2 = tail call i32 bitcast ( i32 ( . . . ) * @barrier to i32 ( ) * ) ( ) #4 , !dbg !20
%tobool3 = icmp eq i32 %call2 , 0 , !dbg !20
br i1 %tobool3 , label %if.end , label %if.then4 , !dbg !22
if.then4: ; preds = %if.then
tail call void @call_noreturn ( i32 %call1 ) #5 , !dbg !23
unreachable , !dbg !23
if.end: ; preds = %if.then
tail call void @use ( i32 %call1 ) #4 , !dbg !24
br label %if.end6 , !dbg !25
if.else: ; preds = %entry
%call5 = tail call i32 bitcast ( i32 ( . . . ) * @barrier to i32 ( ) * ) ( ) #4 , !dbg !26
br label %if.end6
if.end6: ; preds = %if.else, %if.end
ret i32 0 , !dbg !28
}
declare i32 @barrier ( . . . ) local_unnamed_addr #1
declare i32 @vardef ( . . . ) local_unnamed_addr #1
; Function Attrs: noreturn
declare void @call_noreturn ( i32 ) local_unnamed_addr #2
declare void @use ( i32 ) local_unnamed_addr #1
; Function Attrs: nounwind readnone
2017-07-29 04:21:02 +08:00
declare void @llvm.dbg.value ( metadata , metadata , metadata ) #3
2016-09-16 06:05:08 +08:00
attributes #0 = { nounwind uwtable "correctly-rounded-divide-sqrt-fp-math" = "false" "disable-tail-calls" = "false" "less-precise-fpmad" = "false" "no-frame-pointer-elim" = "false" "no-infs-fp-math" = "false" "no-jump-tables" = "false" "no-nans-fp-math" = "false" "no-signed-zeros-fp-math" = "false" "no-trapping-math" = "false" "stack-protector-buffer-size" = "8" "target-cpu" = "x86-64" "target-features" = "+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math" = "false" "use-soft-float" = "false" }
attributes #1 = { "correctly-rounded-divide-sqrt-fp-math" = "false" "disable-tail-calls" = "false" "less-precise-fpmad" = "false" "no-frame-pointer-elim" = "false" "no-infs-fp-math" = "false" "no-nans-fp-math" = "false" "no-signed-zeros-fp-math" = "false" "no-trapping-math" = "false" "stack-protector-buffer-size" = "8" "target-cpu" = "x86-64" "target-features" = "+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math" = "false" "use-soft-float" = "false" }
attributes #2 = { noreturn "correctly-rounded-divide-sqrt-fp-math" = "false" "disable-tail-calls" = "false" "less-precise-fpmad" = "false" "no-frame-pointer-elim" = "false" "no-infs-fp-math" = "false" "no-nans-fp-math" = "false" "no-signed-zeros-fp-math" = "false" "no-trapping-math" = "false" "stack-protector-buffer-size" = "8" "target-cpu" = "x86-64" "target-features" = "+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math" = "false" "use-soft-float" = "false" }
attributes #3 = { nounwind readnone }
attributes #4 = { nounwind }
attributes #5 = { noreturn nounwind }
!llvm.dbg.cu = ! { !0 }
!llvm.module.flags = ! { !3 , !4 , !5 }
!llvm.ident = ! { !6 }
!0 = distinct !DICompileUnit ( language: D W _ L A N G _ C 99 , file: !1 , producer: "clang version 4.0.0 " , isOptimized: true , runtimeVersion: 0 , emissionKind: F u l l D e b u g , enums: !2 )
!1 = !DIFile ( filename: "t.cpp" , directory: "C:\5Csrc\5Cllvm\5Cbuild" )
!2 = ! { }
!3 = ! { i32 2 , !"CodeView" , i32 1 }
!4 = ! { i32 2 , !"Debug Info Version" , i32 3 }
!5 = ! { i32 1 , !"PIC Level" , i32 2 }
!6 = ! { !"clang version 4.0.0 " }
[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
!7 = distinct !DISubprogram ( name: "f" , scope: !1 , file: !1 , line: 19 , type: !8 , isLocal: false , isDefinition: true , scopeLine: 19 , isOptimized: true , unit: !0 , retainedNodes: !11 )
2016-09-16 06:05:08 +08:00
!8 = !DISubroutineType ( types: !9 )
!9 = ! { !10 }
!10 = !DIBasicType ( name: "int" , size: 32 , align: 32 , encoding: D W _ A T E _ s i g n e d )
!11 = ! { !12 }
!12 = !DILocalVariable ( name: "p" , scope: !13 , file: !1 , line: 21 , type: !10 )
!13 = distinct !DILexicalBlock ( scope: !14 , file: !1 , line: 20 , column: 18 )
!14 = distinct !DILexicalBlock ( scope: !7 , file: !1 , line: 20 , column: 7 )
!15 = !DILocation ( line: 20 , column: 7 , scope: !14 )
!16 = !DILocation ( line: 20 , column: 7 , scope: !7 )
!17 = !DILocation ( line: 21 , column: 13 , scope: !13 )
!18 = !DIExpression ( )
!19 = !DILocation ( line: 21 , column: 9 , scope: !13 )
!20 = !DILocation ( line: 22 , column: 9 , scope: !21 )
!21 = distinct !DILexicalBlock ( scope: !13 , file: !1 , line: 22 , column: 9 )
!22 = !DILocation ( line: 22 , column: 9 , scope: !13 )
!23 = !DILocation ( line: 23 , column: 7 , scope: !21 )
!24 = !DILocation ( line: 24 , column: 5 , scope: !13 )
!25 = !DILocation ( line: 25 , column: 3 , scope: !13 )
!26 = !DILocation ( line: 26 , column: 5 , scope: !27 )
!27 = distinct !DILexicalBlock ( scope: !14 , file: !1 , line: 25 , column: 10 )
!28 = !DILocation ( line: 28 , column: 3 , scope: !7 )