File: dyldinfo.test

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: 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 (32 lines) | stat: -rw-r--r-- 1,476 bytes parent folder | download | duplicates (30)
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
# RUN: llvm-nm %p/Inputs/Strip-ST.dylib.macho-x86_64 | FileCheck --check-prefix=DEFAULT %s
# RUN: llvm-nm --no-dyldinfo %p/Inputs/Strip-ST.dylib.macho-x86_64 | FileCheck --check-prefix=NO-DYLDINFO %s
# RUN: llvm-nm --dyldinfo-only %p/Inputs/Strip-ST.dylib.macho-x86_64 | FileCheck --check-prefix=DYLDINFO-ONLY %s
# RUN: llvm-nm %p/Inputs/Strip-N.hello.exe.macho-x86_64 | FileCheck --check-prefix=FUNC-STARTS %s
# RUN: llvm-nm %p/Inputs/Strip-N.LC_MAIN.exe.macho-x86_64 | FileCheck --check-prefix=LC-MAIN %s

# DEFAULT: 0000000000000f90 T __Bob_is_slow
# DEFAULT: 0000000000001008 D __T0ims_data
# DEFAULT: 0000000000000f80 T __T0om_is_not_swift
# DEFAULT: U dyld_stub_binder

# NO-DYLDINFO: 0000000000000f90 T __Bob_is_slow
# NO-DYLDINFO-NOT: __T0ims_data
# NO-DYLDINFO-NOT: __T0om_is_not_swift
# NO-DYLDINFO: U dyld_stub_binder

# DYLDINFO-ONLY: 0000000000000f90 T __Bob_is_slow
# DYLDINFO-ONLY: 0000000000001008 D __T0ims_data
# DYLDINFO-ONLY: 0000000000000f80 T __T0om_is_not_swift
# DYLDINFO-ONLY-NOT: U dyld_stub_binder

# FUNC-STARTS: 0000000100000f70 t <redacted function 1>
# FUNC-STARTS: 0000000100000f80 t <redacted function 2>
# FUNC-STARTS: 0000000100000000 T __mh_execute_header
# FUNC-STARTS: 0000000100000f30 T _main
# FUNC-STARTS: U _printf
# FUNC-STARTS: U dyld_stub_binder

# LC-MAIN: 0000000100000f50 t <redacted LC_MAIN>
# LC-MAIN: 0000000100000000 T __mh_execute_header
# LC-MAIN:                  U _printf
# LC-MAIN:                  U dyld_stub_binder