summaryrefslogtreecommitdiff
path: root/test/Object/nm-trivial-object.test
blob: 631e821134f357d501f38eb1c13efe3dd52e12f5 (plain)
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
RUN: yaml2obj %p/Inputs/COFF/i386.yaml | llvm-nm \
RUN:         | FileCheck %s -check-prefix COFF
RUN: yaml2obj %p/Inputs/COFF/x86-64.yaml | llvm-nm \
RUN:         | FileCheck %s -check-prefix COFF
RUN: llvm-nm %p/Inputs/trivial-object-test.elf-i386 \
RUN:         | FileCheck %s -check-prefix ELF
RUN: llvm-nm %p/Inputs/trivial-object-test.elf-x86-64 \
RUN:         | FileCheck %s -check-prefix ELF
RUN: llvm-nm %p/Inputs/weak.elf-x86-64 \
RUN:         | FileCheck %s -check-prefix WEAK-ELF
RUN: llvm-nm %p/Inputs/absolute.elf-x86-64 \
RUN:         | FileCheck %s -check-prefix ABSOLUTE-ELF
RUN: llvm-nm %p/Inputs/trivial-object-test.macho-i386 \
RUN:         | FileCheck %s -check-prefix macho
RUN: llvm-nm %p/Inputs/trivial-object-test.macho-x86-64 \
RUN:         | FileCheck %s -check-prefix macho64
RUN: llvm-nm %p/Inputs/common.coff-i386 \
RUN:         | FileCheck %s -check-prefix COFF-COMMON

COFF: 00000000 d .data
COFF: 00000000 t .text
COFF: 00000000 d L{{_?}}.str
COFF:          U {{_?}}SomeOtherFunction
COFF: 00000000 T {{_?}}main
COFF:          U {{_?}}puts

COFF-COMMON: 00000000 b .bss
COFF-COMMON-NEXT: 00000000 d .data
COFF-COMMON-NEXT: 00000000 d .drectve
COFF-COMMON-NEXT: 00000000 n .file
COFF-COMMON-NEXT: 00000000 r .rdata$zzz
COFF-COMMON-NEXT: 00000000 t .text
COFF-COMMON-NEXT:          C _a


ELF-NOT:      U
ELF:          U SomeOtherFunction
ELF: 00000000 T main
ELF:          U puts

WEAK-ELF:          w f1
WEAK-ELF: 00000000 W f2
WEAK-ELF:          v x1
WEAK-ELF: 00000000 V x2

ABSOLUTE-ELF: 00000123 a a1
ABSOLUTE-ELF: 00000123 A a2

macho: 00000000 U _SomeOtherFunction
macho: 00000000 T _main
macho: 00000000 U _puts

macho64: 00000028 s L_.str
macho64: 00000000 U _SomeOtherFunction
macho64: 00000000 T _main
macho64: 00000000 U _puts