xref: /aosp_15_r20/external/llvm/test/DebugInfo/Mips/fn-call-line.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc -mtriple=mips-linux-gnu -filetype=asm -asm-verbose=0 -O0 -relocation-model=pic < %s | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker; RUN: llc -mtriple=mips-linux-gnu -filetype=obj -O0 < %s | llvm-dwarfdump -debug-dump=line - | FileCheck %s --check-prefix=INT
3*9880d681SAndroid Build Coastguard Worker
4*9880d681SAndroid Build Coastguard Worker; Mips used to generate 'jumpy' debug line info around calls. The address
5*9880d681SAndroid Build Coastguard Worker; calculation for each call to f1() would share the same line info so it would
6*9880d681SAndroid Build Coastguard Worker; emit output of the form:
7*9880d681SAndroid Build Coastguard Worker;   .loc $first_call_location
8*9880d681SAndroid Build Coastguard Worker;   .. address calculation ..
9*9880d681SAndroid Build Coastguard Worker;   .. function call ..
10*9880d681SAndroid Build Coastguard Worker;   .. address calculation ..
11*9880d681SAndroid Build Coastguard Worker;   .loc $second_call_location
12*9880d681SAndroid Build Coastguard Worker;   .. function call ..
13*9880d681SAndroid Build Coastguard Worker;   .loc $first_call_location
14*9880d681SAndroid Build Coastguard Worker;   .. address calculation ..
15*9880d681SAndroid Build Coastguard Worker;   .loc $third_call_location
16*9880d681SAndroid Build Coastguard Worker;   .. function call ..
17*9880d681SAndroid Build Coastguard Worker;   ...
18*9880d681SAndroid Build Coastguard Worker; which would cause confusing stepping behaviour for the end user.
19*9880d681SAndroid Build Coastguard Worker;
20*9880d681SAndroid Build Coastguard Worker; This test checks that we emit more user friendly debug line info of the form:
21*9880d681SAndroid Build Coastguard Worker;   .loc $first_call_location
22*9880d681SAndroid Build Coastguard Worker;   .. address calculation ..
23*9880d681SAndroid Build Coastguard Worker;   .. function call ..
24*9880d681SAndroid Build Coastguard Worker;   .loc $second_call_location
25*9880d681SAndroid Build Coastguard Worker;   .. address calculation ..
26*9880d681SAndroid Build Coastguard Worker;   .. function call ..
27*9880d681SAndroid Build Coastguard Worker;   .loc $third_call_location
28*9880d681SAndroid Build Coastguard Worker;   .. address calculation ..
29*9880d681SAndroid Build Coastguard Worker;   .. function call ..
30*9880d681SAndroid Build Coastguard Worker;   ...
31*9880d681SAndroid Build Coastguard Worker;
32*9880d681SAndroid Build Coastguard Worker; Generated with clang from fn-call-line.c:
33*9880d681SAndroid Build Coastguard Worker; void f1();
34*9880d681SAndroid Build Coastguard Worker; void f2() {
35*9880d681SAndroid Build Coastguard Worker;   f1();
36*9880d681SAndroid Build Coastguard Worker;   f1();
37*9880d681SAndroid Build Coastguard Worker; }
38*9880d681SAndroid Build Coastguard Worker
39*9880d681SAndroid Build Coastguard Worker; CHECK: .loc	1 3 3
40*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: .loc
41*9880d681SAndroid Build Coastguard Worker; CHECK: %call16(f1)
42*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: .loc
43*9880d681SAndroid Build Coastguard Worker; CHECK: .loc	1 4 3
44*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: .loc
45*9880d681SAndroid Build Coastguard Worker; CHECK: %call16(f1)
46*9880d681SAndroid Build Coastguard Worker
47*9880d681SAndroid Build Coastguard Worker; INT: {{^}}Address
48*9880d681SAndroid Build Coastguard Worker; INT: -----
49*9880d681SAndroid Build Coastguard Worker; INT-NEXT: 2 0 1 0 0 is_stmt{{$}}
50*9880d681SAndroid Build Coastguard Worker; INT-NEXT: 3 3 1 0 0 is_stmt prologue_end{{$}}
51*9880d681SAndroid Build Coastguard Worker; INT-NEXT: 4 3 1 0 0 is_stmt{{$}}
52*9880d681SAndroid Build Coastguard Worker
53*9880d681SAndroid Build Coastguard Worker
54*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind uwtable
55*9880d681SAndroid Build Coastguard Workerdefine void @f2() #0 !dbg !4 {
56*9880d681SAndroid Build Coastguard Workerentry:
57*9880d681SAndroid Build Coastguard Worker  call void (...) @f1(), !dbg !11
58*9880d681SAndroid Build Coastguard Worker  call void (...) @f1(), !dbg !12
59*9880d681SAndroid Build Coastguard Worker  ret void, !dbg !13
60*9880d681SAndroid Build Coastguard Worker}
61*9880d681SAndroid Build Coastguard Worker
62*9880d681SAndroid Build Coastguard Workerdeclare void @f1(...) #1
63*9880d681SAndroid Build Coastguard Worker
64*9880d681SAndroid Build Coastguard Workerattributes #0 = { nounwind uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
65*9880d681SAndroid Build Coastguard Workerattributes #1 = { "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
66*9880d681SAndroid Build Coastguard Worker
67*9880d681SAndroid Build Coastguard Worker!llvm.dbg.cu = !{!0}
68*9880d681SAndroid Build Coastguard Worker!llvm.module.flags = !{!8, !9}
69*9880d681SAndroid Build Coastguard Worker!llvm.ident = !{!10}
70*9880d681SAndroid Build Coastguard Worker
71*9880d681SAndroid Build Coastguard Worker!0 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.7.0 (trunk 226641)", isOptimized: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2)
72*9880d681SAndroid Build Coastguard Worker!1 = !DIFile(filename: "fn-call-line.c", directory: "/tmp/dbginfo")
73*9880d681SAndroid Build Coastguard Worker!2 = !{}
74*9880d681SAndroid Build Coastguard Worker!4 = distinct !DISubprogram(name: "f2", line: 2, isLocal: false, isDefinition: true, isOptimized: false, unit: !0, scopeLine: 2, file: !1, scope: !5, type: !6, variables: !2)
75*9880d681SAndroid Build Coastguard Worker!5 = !DIFile(filename: "fn-call-line.c", directory: "/tmp/dbginfo")
76*9880d681SAndroid Build Coastguard Worker!6 = !DISubroutineType(types: !7)
77*9880d681SAndroid Build Coastguard Worker!7 = !{null}
78*9880d681SAndroid Build Coastguard Worker!8 = !{i32 2, !"Dwarf Version", i32 4}
79*9880d681SAndroid Build Coastguard Worker!9 = !{i32 2, !"Debug Info Version", i32 3}
80*9880d681SAndroid Build Coastguard Worker!10 = !{!"clang version 3.7.0 (trunk 226641)"}
81*9880d681SAndroid Build Coastguard Worker!11 = !DILocation(line: 3, column: 3, scope: !4)
82*9880d681SAndroid Build Coastguard Worker!12 = !DILocation(line: 4, column: 3, scope: !4)
83*9880d681SAndroid Build Coastguard Worker!13 = !DILocation(line: 5, column: 1, scope: !4)
84