File: redefine-symbol.s

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 (52 lines) | stat: -rw-r--r-- 1,738 bytes parent folder | download | duplicates (3)
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
# REQUIRES: x86-registered-target

# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-macos %s -o %t

## A non-existent symbol does not error.
# RUN: llvm-objcopy --redefine-sym _func=_cnuf1234 --redefine-sym _foo=_ba --redefine-sym=_notexist= %t %t2 2>&1 | count 0
# RUN: llvm-readobj --symbols %t2 | FileCheck %s

# RUN: echo '_func _cnuf1234 #rename func' > %t.rename.txt
# RUN: echo '  _foo _ba ' >> %t.rename.txt
# RUN: echo '_notexist _notexist' >> %t.rename.txt
# RUN: llvm-objcopy --redefine-syms %t.rename.txt %t %t3 2>&1 | count 0
# RUN: cmp %t2 %t3

# CHECK:      Symbol {
# CHECK-NEXT:   Name: _ba (1)
# CHECK-NEXT:   Extern
# CHECK-NEXT:   Type: Section (0xE)
# CHECK-NEXT:   Section: __const (0x2)
# CHECK-NEXT:   RefType: UndefinedNonLazy (0x0)
# CHECK-NEXT:   Flags [ (0x0)
# CHECK-NEXT:   ]
# CHECK-NEXT:   Value: 0x0
# CHECK-NEXT: }
# CHECK-NEXT: Symbol {
# CHECK-NEXT:   Name: _cnuf1234 (5)
# CHECK-NEXT:   Extern
# CHECK-NEXT:   Type: Section (0xE)
# CHECK-NEXT:   Section: __text (0x1)
# CHECK-NEXT:   RefType: UndefinedNonLazy (0x0)
# CHECK-NEXT:   Flags [ (0x0)
# CHECK-NEXT:   ]
# CHECK-NEXT:   Value: 0x0
# CHECK-NEXT: }

## Check that --redefine-sym executes before --strip-symbol.
# RUN: llvm-objcopy --strip-symbol _foo --redefine-sym _foo=_ba %t %t.notstripped
# RUN: llvm-readobj --symbols %t.notstripped | FileCheck %s --check-prefix=NOTSTRIPPED
# NOTSTRIPPED: Name: _ba
# NOTSTRIPPED: Name: _func

## FIXME: _ba should be stripped after --strip-symbol is implemented.
# RUN: llvm-objcopy --strip-symbol _ba --redefine-sym _foo=_ba %t %t.noba
# RUN: llvm-readobj --symbols %t.noba | FileCheck %s --check-prefix=NOTSTRIPPED

.linker_option "-lc"
.globl _func
_func:

.section __TEXT,__const
.globl _foo
_foo: