Handle the case where 'local' is the name of a global in a version script:

{ global : local; local: *; };

llvm-svn: 294343
This commit is contained in:
Dmitry Mikulin 2017-02-07 19:50:47 +00:00
parent 3877f397cd
commit f3965c0246
4 changed files with 37 additions and 7 deletions

View File

@ -1995,7 +1995,7 @@ std::vector<SymbolVersion> ScriptParser::readSymbols() {
continue;
}
if (peek() == "}" || peek() == "local" || Error)
if (peek() == "}" || (peek() == "local" && peek(1) == ":") || Error)
break;
StringRef Tok = next();
Ret.push_back({unquote(Tok), false, hasWildcard(Tok)});

View File

@ -156,11 +156,14 @@ StringRef ScriptParserBase::next() {
return Tokens[Pos++];
}
StringRef ScriptParserBase::peek() {
StringRef Tok = next();
if (Error)
return "";
--Pos;
StringRef ScriptParserBase::peek(unsigned N) {
StringRef Tok;
for (unsigned I = 0; I <= N; ++I) {
Tok = next();
if (Error)
return "";
}
Pos = Pos - N - 1;
return Tok;
}

View File

@ -28,7 +28,7 @@ public:
static StringRef skipSpace(StringRef S);
bool atEOF();
StringRef next();
StringRef peek();
StringRef peek(unsigned N = 0);
void skip();
bool consume(StringRef Tok);
void expect(StringRef Expect);

View File

@ -14,6 +14,9 @@ bar1:
.globl zed1
zed1:
.globl local
local:
# CHECK: DynamicSymbols [
# CHECK-NEXT: Symbol {
# CHECK-NEXT: Name:
@ -43,3 +46,27 @@ zed1:
# CHECK-NEXT: Section: .text
# CHECK-NEXT: }
# CHECK-NEXT: ]
# RUN: echo "{ global : local; local: *; };" > %t1.script
# RUN: ld.lld -shared --version-script %t1.script %t.o -o %t1.so
# LOCAL: DynamicSymbols [
# LOCAL-NEXT: Symbol {
# LOCAL-NEXT: Name:
# LOCAL-NEXT: Value: 0x0
# LOCAL-NEXT: Size: 0
# LOCAL-NEXT: Binding: Local
# LOCAL-NEXT: Type: None
# LOCAL-NEXT: Other: 0
# LOCAL-NEXT: Section: Undefined
# LOCAL-NEXT: }
# LOCAL-NEXT: Symbol {
# LOCAL-NEXT: Name: local
# LOCAL-NEXT: Value: 0x1000
# LOCAL-NEXT: Size: 0
# LOCAL-NEXT: Binding: Global
# LOCAL-NEXT: Type: None
# LOCAL-NEXT: Other: 0
# LOCAL-NEXT: Section: .text
# LOCAL-NEXT: }
# LOCAL-NEXT: ]