File: cv-loc.s

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (87 lines) | stat: -rw-r--r-- 1,841 bytes parent folder | download | duplicates (24)
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
83
84
85
86
87
# RUN: llvm-mc < %s -triple=x86_64-pc-win32 -filetype=obj | llvm-readobj - --codeview | FileCheck %s

.section .debug$S
.long 4
.cv_stringtable

.cv_file 1 "a.c"
.cv_file 2 "t.inc"

.cv_func_id 0

# Implements this C:
# void f(volatile int *x) {
#   ++*x;
# #include "t.h" // contains two ++*x; statements
#   ++*x;
# }

.text
.def     f;
        .scl    2;
        .type   32;
        .endef
        .text
        .globl  f
        .align  16, 0x90
f:
.Lfunc_begin0:
  .cv_loc 0 1 5 2
  incl (%rdi)
  # #include "t.h" start
  .cv_loc 0 2 0 0 is_stmt 1
  incl (%rdi)
  .cv_loc 0 2 1 0
  incl (%rdi)
  # #include "t.h" end
  .cv_loc 0 1 6 2
  incl (%rdi)
  retq
.Lfunc_end0:

.section .debug$S
.cv_filechecksums
.cv_linetable 0, f, .Lfunc_end0

# CHECK: FunctionLineTable [
# CHECK:   LinkageName: f
# CHECK:   Flags: 0x1
# CHECK:   CodeSize: 0x9
# CHECK:   FilenameSegment [
# CHECK:     Filename: a.c (0x0)
# CHECK:     +0x0 [
# CHECK:       LineNumberStart: 5
# CHECK:       LineNumberEndDelta: 0
# CHECK:       IsStatement: No
# CHECK:       ColStart: 2
# CHECK:       ColEnd: 0
# CHECK:     ]
# CHECK:   ]
# CHECK:   FilenameSegment [
# CHECK:     Filename: t.inc (0x8)
# CHECK:     +0x2 [
# CHECK:       LineNumberStart: 0
# CHECK:       LineNumberEndDelta: 0
# CHECK:       IsStatement: Yes
# CHECK:       ColStart: 0
# CHECK:       ColEnd: 0
# CHECK:     ]
# CHECK:     +0x4 [
# CHECK:       LineNumberStart: 1
# CHECK:       LineNumberEndDelta: 0
# CHECK:       IsStatement: No
# CHECK:       ColStart: 0
# CHECK:       ColEnd: 0
# CHECK:     ]
# CHECK:   ]
# CHECK:   FilenameSegment [
# CHECK:     Filename: a.c (0x0)
# CHECK:     +0x6 [
# CHECK:       LineNumberStart: 6
# CHECK:       LineNumberEndDelta: 0
# CHECK:       IsStatement: No
# CHECK:       ColStart: 2
# CHECK:       ColEnd: 0
# CHECK:     ]
# CHECK:   ]
# CHECK: ]