Skip to content

Commit 0df80be

Browse files
committedAug 18, 2016
[ELF] Linkerscript: support assignment outside SECTIONS
We only support assignments inside SECTIONS, but this does not match the behavior of GNU linker which also allows them outside SECTIONS. The only restriction on assignments outside SECTIONS is that they cannot reference . (they have to be absolute expressions). Differential Revision: https://reviews.llvm.org/D23598 llvm-svn: 279033
1 parent c7c81fa commit 0df80be

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed
 

‎lld/ELF/LinkerScript.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -655,6 +655,8 @@ void ScriptParser::run() {
655655
StringRef Tok = next();
656656
if (Handler Fn = Cmd.lookup(Tok))
657657
(this->*Fn)();
658+
else if (SymbolAssignment *Cmd = readProvideOrAssignment(Tok))
659+
Opt.Commands.emplace_back(Cmd);
658660
else
659661
setError("unknown directive: " + Tok);
660662
}

‎lld/test/ELF/invalid-linkerscript.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# RUN: echo foobar > %t1
1717
# RUN: not ld.lld %t1 no-such-file 2>&1 | FileCheck -check-prefix=ERR1 %s
18-
# ERR1: unknown directive: foobar
18+
# ERR1: unexpected EOF
1919
# ERR1: cannot open no-such-file:
2020

2121
# RUN: echo "foo \"bar" > %t2

‎lld/test/ELF/linkerscript/linkerscript-symbols.s

+26
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,32 @@
4141
# RUN: llvm-objdump -t %t1 | FileCheck --check-prefix=HIDDEN3 %s
4242
# HIDDEN3: 0000000000000001 *ABS* 00000000 .hidden newsym
4343

44+
# The symbol is not referenced. Don't provide it.
45+
# RUN: echo "PROVIDE(newsym = 1);" > %t.script
46+
# RUN: ld.lld -o %t1 --script %t.script %t
47+
# RUN: llvm-objdump -t %t1 | FileCheck --check-prefix=PROVIDE4 %s
48+
# PROVIDE4-NOT: 0000000000000001 *ABS* 00000000 newsym
49+
50+
# The symbol is not referenced. Don't provide it.
51+
# RUN: echo "PROVIDE_HIDDEN(newsym = 1);" > %t.script
52+
# RUN: ld.lld -o %t1 --script %t.script %t
53+
# RUN: llvm-objdump -t %t1 | FileCheck --check-prefix=HIDDEN4 %s
54+
# HIDDEN4-NOT: 0000000000000001 *ABS* 00000000 .hidden newsym
55+
56+
# Provide existing symbol. The value should be 0, even though we
57+
# have value of 1 in PROVIDE()
58+
# RUN: echo "PROVIDE(somesym = 1);" > %t.script
59+
# RUN: ld.lld -o %t1 --script %t.script %t
60+
# RUN: llvm-objdump -t %t1 | FileCheck --check-prefix=PROVIDE5 %s
61+
# PROVIDE5: 0000000000000000 *ABS* 00000000 somesym
62+
63+
# Provide existing symbol. The value should be 0, even though we
64+
# have value of 1 in PROVIDE_HIDDEN(). Visibility should not change
65+
# RUN: echo "PROVIDE_HIDDEN(somesym = 1);" > %t.script
66+
# RUN: ld.lld -o %t1 --script %t.script %t
67+
# RUN: llvm-objdump -t %t1 | FileCheck --check-prefix=HIDDEN5 %s
68+
# HIDDEN5: 0000000000000000 *ABS* 00000000 somesym
69+
4470
.global _start
4571
_start:
4672
nop

0 commit comments

Comments
 (0)
Please sign in to comment.