File: dbgcall-site-partial-describe.mir

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (82 lines) | stat: -rw-r--r-- 3,325 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# RUN: llc -emit-call-site-info -start-before=livedebugvalues -filetype=obj -o - %s \
# RUN:     | llvm-dwarfdump - | FileCheck %s --implicit-check-not=DW_TAG_GNU_call_site_parameter

--- |
  target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
  target triple = "x86_64-unknown-linux-gnu"

  ; Function Attrs: nounwind uwtable
  define void @foo() #0 !dbg !12 {
  entry:
    call void @call(i32 123, i32 undef), !dbg !15
    ret void, !dbg !16
  }

  declare !dbg !4 void @call(i32, i32)

  attributes #0 = { nounwind uwtable }

  !llvm.dbg.cu = !{!0}
  !llvm.module.flags = !{!8, !9, !10}
  !llvm.ident = !{!11}

  !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 11.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !3, splitDebugInlining: false, nameTableKind: None)
  !1 = !DIFile(filename: "clobber.c", directory: "/")
  !2 = !{}
  !3 = !{!4}
  !4 = !DISubprogram(name: "call", scope: !1, file: !1, line: 1, type: !5, flags: DIFlagPrototyped, spFlags: DISPFlagOptimized, retainedNodes: !2)
  !5 = !DISubroutineType(types: !6)
  !6 = !{null, !7, !7}
  !7 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  !8 = !{i32 7, !"Dwarf Version", i32 4}
  !9 = !{i32 2, !"Debug Info Version", i32 3}
  !10 = !{i32 1, !"wchar_size", i32 4}
  !11 = !{!"clang version 11.0.0"}
  !12 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 3, type: !13, scopeLine: 3, flags: DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !2)
  !13 = !DISubroutineType(types: !14)
  !14 = !{null}
  !15 = !DILocation(line: 5, scope: !12)
  !16 = !DILocation(line: 6, scope: !12)

...
---
name:            foo
callSites:
  - { bb: 0, offset: 4, fwdArgRegs:
      - { arg: 0, reg: '$edi' }
      - { arg: 1, reg: '$esi' } }
body:             |
  bb.0.entry:
    frame-setup PUSH64r undef $rax, implicit-def $rsp, implicit $rsp
    CFI_INSTRUCTION def_cfa_offset 16
    $esi = MOV32ri 123, debug-location !15
    $edi = MOV32rr $esi, implicit-def $esi, debug-location !15
    CALL64pcrel32 @call, csr_64, implicit $rsp, implicit $ssp, implicit killed $edi, implicit undef $esi, implicit-def $rsp, implicit-def $ssp, debug-location !15
    $rax = frame-destroy POP64r implicit-def $rsp, implicit $rsp, debug-location !16
    CFI_INSTRUCTION def_cfa_offset 8, debug-location !16
    RET64 debug-location !16

...

# In this test an implicit-def has been added to the MOV32rr instruction to
# simulate a situation where one instruction defines two call site worklist
# registers, and where we end up with one of the registers being described by
# the previous value of the other register that is clobbered by this
# instruction.
#
# In this reproducer we should end up with only one call site entry, with that
# being for $rdi.
#
# This test uses an implicit CHECK-NOT to verify that only one call site
# parameter entry is emitted.
#
# A somewhat more realistic scenario would for example be the following in a
# made-up ISA:
#
# $r1 = mv 123
# $r0, $r1 = mvri $r1, <undescribable value>
# call @foo, $r0, $r1

# CHECK: DW_TAG_GNU_call_site_parameter
# CHECK-NEXT: DW_AT_location	(DW_OP_reg5 RDI)
# CHECK-NEXT: DW_AT_GNU_call_site_value	(DW_OP_constu 0x7b)