*** empty log message ***
[deliverable/binutils-gdb.git] / gold / script.cc
CommitLineData
dbe717ef
ILT
1// script.cc -- handle linker scripts for gold.
2
62dfdd4d 3// Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6cb15b7f
ILT
4// Written by Ian Lance Taylor <iant@google.com>.
5
6// This file is part of gold.
7
8// This program is free software; you can redistribute it and/or modify
9// it under the terms of the GNU General Public License as published by
10// the Free Software Foundation; either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17
18// You should have received a copy of the GNU General Public License
19// along with this program; if not, write to the Free Software
20// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21// MA 02110-1301, USA.
22
dbe717ef
ILT
23#include "gold.h"
24
04bf7072
ILT
25#include <cstdio>
26#include <cstdlib>
27#include <cstring>
09124467 28#include <fnmatch.h>
dbe717ef
ILT
29#include <string>
30#include <vector>
ad2d6943 31#include "filenames.h"
dbe717ef 32
e5756efb 33#include "elfcpp.h"
09124467 34#include "demangle.h"
3c2fafa5 35#include "dirsearch.h"
dbe717ef
ILT
36#include "options.h"
37#include "fileread.h"
38#include "workqueue.h"
39#include "readsyms.h"
ad2d6943 40#include "parameters.h"
d391083d 41#include "layout.h"
e5756efb 42#include "symtab.h"
15f8229b 43#include "target-select.h"
dbe717ef
ILT
44#include "script.h"
45#include "script-c.h"
072fe7ce 46#include "incremental.h"
dbe717ef
ILT
47
48namespace gold
49{
50
51// A token read from a script file. We don't implement keywords here;
52// all keywords are simply represented as a string.
53
54class Token
55{
56 public:
57 // Token classification.
58 enum Classification
59 {
60 // Token is invalid.
61 TOKEN_INVALID,
62 // Token indicates end of input.
63 TOKEN_EOF,
64 // Token is a string of characters.
65 TOKEN_STRING,
e5756efb
ILT
66 // Token is a quoted string of characters.
67 TOKEN_QUOTED_STRING,
dbe717ef
ILT
68 // Token is an operator.
69 TOKEN_OPERATOR,
70 // Token is a number (an integer).
71 TOKEN_INTEGER
72 };
73
74 // We need an empty constructor so that we can put this STL objects.
75 Token()
e5756efb
ILT
76 : classification_(TOKEN_INVALID), value_(NULL), value_length_(0),
77 opcode_(0), lineno_(0), charpos_(0)
dbe717ef
ILT
78 { }
79
80 // A general token with no value.
2ea97941
ILT
81 Token(Classification classification, int lineno, int charpos)
82 : classification_(classification), value_(NULL), value_length_(0),
83 opcode_(0), lineno_(lineno), charpos_(charpos)
a3ad94ed 84 {
2ea97941
ILT
85 gold_assert(classification == TOKEN_INVALID
86 || classification == TOKEN_EOF);
a3ad94ed 87 }
dbe717ef
ILT
88
89 // A general token with a value.
2ea97941
ILT
90 Token(Classification classification, const char* value, size_t length,
91 int lineno, int charpos)
92 : classification_(classification), value_(value), value_length_(length),
93 opcode_(0), lineno_(lineno), charpos_(charpos)
a3ad94ed 94 {
2ea97941
ILT
95 gold_assert(classification != TOKEN_INVALID
96 && classification != TOKEN_EOF);
a3ad94ed 97 }
dbe717ef 98
dbe717ef 99 // A token representing an operator.
2ea97941 100 Token(int opcode, int lineno, int charpos)
e5756efb 101 : classification_(TOKEN_OPERATOR), value_(NULL), value_length_(0),
2ea97941 102 opcode_(opcode), lineno_(lineno), charpos_(charpos)
dbe717ef
ILT
103 { }
104
105 // Return whether the token is invalid.
106 bool
107 is_invalid() const
108 { return this->classification_ == TOKEN_INVALID; }
109
110 // Return whether this is an EOF token.
111 bool
112 is_eof() const
113 { return this->classification_ == TOKEN_EOF; }
114
115 // Return the token classification.
116 Classification
117 classification() const
118 { return this->classification_; }
119
120 // Return the line number at which the token starts.
121 int
122 lineno() const
123 { return this->lineno_; }
124
125 // Return the character position at this the token starts.
126 int
127 charpos() const
128 { return this->charpos_; }
129
130 // Get the value of a token.
131
e5756efb
ILT
132 const char*
133 string_value(size_t* length) const
dbe717ef 134 {
e5756efb
ILT
135 gold_assert(this->classification_ == TOKEN_STRING
136 || this->classification_ == TOKEN_QUOTED_STRING);
137 *length = this->value_length_;
dbe717ef
ILT
138 return this->value_;
139 }
140
141 int
142 operator_value() const
143 {
a3ad94ed 144 gold_assert(this->classification_ == TOKEN_OPERATOR);
dbe717ef
ILT
145 return this->opcode_;
146 }
147
e5756efb 148 uint64_t
dbe717ef
ILT
149 integer_value() const
150 {
a3ad94ed 151 gold_assert(this->classification_ == TOKEN_INTEGER);
e5756efb
ILT
152 // Null terminate.
153 std::string s(this->value_, this->value_length_);
154 return strtoull(s.c_str(), NULL, 0);
dbe717ef
ILT
155 }
156
157 private:
158 // The token classification.
159 Classification classification_;
e5756efb
ILT
160 // The token value, for TOKEN_STRING or TOKEN_QUOTED_STRING or
161 // TOKEN_INTEGER.
162 const char* value_;
163 // The length of the token value.
164 size_t value_length_;
dbe717ef
ILT
165 // The token value, for TOKEN_OPERATOR.
166 int opcode_;
167 // The line number where this token started (one based).
168 int lineno_;
169 // The character position within the line where this token started
170 // (one based).
171 int charpos_;
172};
173
e5756efb 174// This class handles lexing a file into a sequence of tokens.
dbe717ef
ILT
175
176class Lex
177{
178 public:
e5756efb
ILT
179 // We unfortunately have to support different lexing modes, because
180 // when reading different parts of a linker script we need to parse
181 // things differently.
182 enum Mode
183 {
184 // Reading an ordinary linker script.
185 LINKER_SCRIPT,
186 // Reading an expression in a linker script.
187 EXPRESSION,
188 // Reading a version script.
c82fbeee
CS
189 VERSION_SCRIPT,
190 // Reading a --dynamic-list file.
191 DYNAMIC_LIST
e5756efb
ILT
192 };
193
194 Lex(const char* input_string, size_t input_length, int parsing_token)
195 : input_string_(input_string), input_length_(input_length),
196 current_(input_string), mode_(LINKER_SCRIPT),
197 first_token_(parsing_token), token_(),
198 lineno_(1), linestart_(input_string)
dbe717ef
ILT
199 { }
200
e5756efb
ILT
201 // Read a file into a string.
202 static void
203 read_file(Input_file*, std::string*);
204
205 // Return the next token.
206 const Token*
207 next_token();
dbe717ef 208
e5756efb
ILT
209 // Return the current lexing mode.
210 Lex::Mode
211 mode() const
212 { return this->mode_; }
dbe717ef 213
e5756efb
ILT
214 // Set the lexing mode.
215 void
2ea97941
ILT
216 set_mode(Mode mode)
217 { this->mode_ = mode; }
dbe717ef
ILT
218
219 private:
220 Lex(const Lex&);
221 Lex& operator=(const Lex&);
222
dbe717ef
ILT
223 // Make a general token with no value at the current location.
224 Token
e5756efb
ILT
225 make_token(Token::Classification c, const char* start) const
226 { return Token(c, this->lineno_, start - this->linestart_ + 1); }
dbe717ef
ILT
227
228 // Make a general token with a value at the current location.
229 Token
e5756efb
ILT
230 make_token(Token::Classification c, const char* v, size_t len,
231 const char* start)
dbe717ef 232 const
e5756efb 233 { return Token(c, v, len, this->lineno_, start - this->linestart_ + 1); }
dbe717ef
ILT
234
235 // Make an operator token at the current location.
236 Token
e5756efb
ILT
237 make_token(int opcode, const char* start) const
238 { return Token(opcode, this->lineno_, start - this->linestart_ + 1); }
dbe717ef
ILT
239
240 // Make an invalid token at the current location.
241 Token
e5756efb
ILT
242 make_invalid_token(const char* start)
243 { return this->make_token(Token::TOKEN_INVALID, start); }
dbe717ef
ILT
244
245 // Make an EOF token at the current location.
246 Token
e5756efb
ILT
247 make_eof_token(const char* start)
248 { return this->make_token(Token::TOKEN_EOF, start); }
dbe717ef
ILT
249
250 // Return whether C can be the first character in a name. C2 is the
251 // next character, since we sometimes need that.
e5756efb 252 inline bool
dbe717ef
ILT
253 can_start_name(char c, char c2);
254
09124467
ILT
255 // If C can appear in a name which has already started, return a
256 // pointer to a character later in the token or just past
257 // it. Otherwise, return NULL.
258 inline const char*
259 can_continue_name(const char* c);
dbe717ef
ILT
260
261 // Return whether C, C2, C3 can start a hex number.
e5756efb 262 inline bool
dbe717ef
ILT
263 can_start_hex(char c, char c2, char c3);
264
09124467
ILT
265 // If C can appear in a hex number which has already started, return
266 // a pointer to a character later in the token or just past
267 // it. Otherwise, return NULL.
268 inline const char*
269 can_continue_hex(const char* c);
dbe717ef
ILT
270
271 // Return whether C can start a non-hex number.
272 static inline bool
273 can_start_number(char c);
274
09124467
ILT
275 // If C can appear in a decimal number which has already started,
276 // return a pointer to a character later in the token or just past
277 // it. Otherwise, return NULL.
278 inline const char*
279 can_continue_number(const char* c)
280 { return Lex::can_start_number(*c) ? c + 1 : NULL; }
dbe717ef
ILT
281
282 // If C1 C2 C3 form a valid three character operator, return the
283 // opcode. Otherwise return 0.
284 static inline int
285 three_char_operator(char c1, char c2, char c3);
286
287 // If C1 C2 form a valid two character operator, return the opcode.
288 // Otherwise return 0.
289 static inline int
290 two_char_operator(char c1, char c2);
291
292 // If C1 is a valid one character operator, return the opcode.
293 // Otherwise return 0.
294 static inline int
295 one_char_operator(char c1);
296
297 // Read the next token.
298 Token
299 get_token(const char**);
300
301 // Skip a C style /* */ comment. Return false if the comment did
302 // not end.
303 bool
304 skip_c_comment(const char**);
305
306 // Skip a line # comment. Return false if there was no newline.
307 bool
308 skip_line_comment(const char**);
309
310 // Build a token CLASSIFICATION from all characters that match
311 // CAN_CONTINUE_FN. The token starts at START. Start matching from
312 // MATCH. Set *PP to the character following the token.
313 inline Token
e5756efb 314 gather_token(Token::Classification,
09124467 315 const char* (Lex::*can_continue_fn)(const char*),
dbe717ef
ILT
316 const char* start, const char* match, const char** pp);
317
318 // Build a token from a quoted string.
319 Token
320 gather_quoted_string(const char** pp);
321
e5756efb
ILT
322 // The string we are tokenizing.
323 const char* input_string_;
324 // The length of the string.
325 size_t input_length_;
326 // The current offset into the string.
327 const char* current_;
328 // The current lexing mode.
329 Mode mode_;
330 // The code to use for the first token. This is set to 0 after it
331 // is used.
332 int first_token_;
333 // The current token.
334 Token token_;
dbe717ef
ILT
335 // The current line number.
336 int lineno_;
e5756efb 337 // The start of the current line in the string.
dbe717ef
ILT
338 const char* linestart_;
339};
340
341// Read the whole file into memory. We don't expect linker scripts to
342// be large, so we just use a std::string as a buffer. We ignore the
343// data we've already read, so that we read aligned buffers.
344
345void
e5756efb 346Lex::read_file(Input_file* input_file, std::string* contents)
dbe717ef 347{
e5756efb 348 off_t filesize = input_file->file().filesize();
dbe717ef 349 contents->clear();
82dcae9d
ILT
350 contents->reserve(filesize);
351
dbe717ef 352 off_t off = 0;
dbe717ef 353 unsigned char buf[BUFSIZ];
82dcae9d 354 while (off < filesize)
dbe717ef 355 {
82dcae9d
ILT
356 off_t get = BUFSIZ;
357 if (get > filesize - off)
358 get = filesize - off;
e5756efb 359 input_file->file().read(off, get, buf);
82dcae9d
ILT
360 contents->append(reinterpret_cast<char*>(&buf[0]), get);
361 off += get;
dbe717ef 362 }
dbe717ef
ILT
363}
364
365// Return whether C can be the start of a name, if the next character
366// is C2. A name can being with a letter, underscore, period, or
367// dollar sign. Because a name can be a file name, we also permit
368// forward slash, backslash, and tilde. Tilde is the tricky case
369// here; GNU ld also uses it as a bitwise not operator. It is only
370// recognized as the operator if it is not immediately followed by
e5756efb
ILT
371// some character which can appear in a symbol. That is, when we
372// don't know that we are looking at an expression, "~0" is a file
373// name, and "~ 0" is an expression using bitwise not. We are
dbe717ef
ILT
374// compatible.
375
376inline bool
377Lex::can_start_name(char c, char c2)
378{
379 switch (c)
380 {
381 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
382 case 'G': case 'H': case 'I': case 'J': case 'K': case 'L':
383 case 'M': case 'N': case 'O': case 'Q': case 'P': case 'R':
384 case 'S': case 'T': case 'U': case 'V': case 'W': case 'X':
385 case 'Y': case 'Z':
386 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
387 case 'g': case 'h': case 'i': case 'j': case 'k': case 'l':
388 case 'm': case 'n': case 'o': case 'q': case 'p': case 'r':
389 case 's': case 't': case 'u': case 'v': case 'w': case 'x':
390 case 'y': case 'z':
e5756efb 391 case '_': case '.': case '$':
dbe717ef
ILT
392 return true;
393
e5756efb
ILT
394 case '/': case '\\':
395 return this->mode_ == LINKER_SCRIPT;
396
dbe717ef 397 case '~':
09124467
ILT
398 return this->mode_ == LINKER_SCRIPT && can_continue_name(&c2);
399
c82fbeee 400 case '*': case '[':
3802b2dd 401 return (this->mode_ == VERSION_SCRIPT
c82fbeee 402 || this->mode_ == DYNAMIC_LIST
3802b2dd
ILT
403 || (this->mode_ == LINKER_SCRIPT
404 && can_continue_name(&c2)));
dbe717ef
ILT
405
406 default:
407 return false;
408 }
409}
410
411// Return whether C can continue a name which has already started.
412// Subsequent characters in a name are the same as the leading
413// characters, plus digits and "=+-:[],?*". So in general the linker
e5756efb
ILT
414// script language requires spaces around operators, unless we know
415// that we are parsing an expression.
dbe717ef 416
09124467
ILT
417inline const char*
418Lex::can_continue_name(const char* c)
dbe717ef 419{
09124467 420 switch (*c)
dbe717ef
ILT
421 {
422 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
423 case 'G': case 'H': case 'I': case 'J': case 'K': case 'L':
424 case 'M': case 'N': case 'O': case 'Q': case 'P': case 'R':
425 case 'S': case 'T': case 'U': case 'V': case 'W': case 'X':
426 case 'Y': case 'Z':
427 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
428 case 'g': case 'h': case 'i': case 'j': case 'k': case 'l':
429 case 'm': case 'n': case 'o': case 'q': case 'p': case 'r':
430 case 's': case 't': case 'u': case 'v': case 'w': case 'x':
431 case 'y': case 'z':
e5756efb 432 case '_': case '.': case '$':
dbe717ef
ILT
433 case '0': case '1': case '2': case '3': case '4':
434 case '5': case '6': case '7': case '8': case '9':
09124467 435 return c + 1;
dbe717ef 436
c82fbeee 437 // TODO(csilvers): why not allow ~ in names for version-scripts?
e5756efb 438 case '/': case '\\': case '~':
09124467 439 case '=': case '+':
afe47622 440 case ',':
09124467
ILT
441 if (this->mode_ == LINKER_SCRIPT)
442 return c + 1;
443 return NULL;
444
afe47622 445 case '[': case ']': case '*': case '?': case '-':
c82fbeee
CS
446 if (this->mode_ == LINKER_SCRIPT || this->mode_ == VERSION_SCRIPT
447 || this->mode_ == DYNAMIC_LIST)
09124467
ILT
448 return c + 1;
449 return NULL;
450
c82fbeee 451 // TODO(csilvers): why allow this? ^ is meaningless in version scripts.
09124467 452 case '^':
c82fbeee 453 if (this->mode_ == VERSION_SCRIPT || this->mode_ == DYNAMIC_LIST)
09124467
ILT
454 return c + 1;
455 return NULL;
456
457 case ':':
458 if (this->mode_ == LINKER_SCRIPT)
459 return c + 1;
c82fbeee
CS
460 else if ((this->mode_ == VERSION_SCRIPT || this->mode_ == DYNAMIC_LIST)
461 && (c[1] == ':'))
09124467
ILT
462 {
463 // A name can have '::' in it, as that's a c++ namespace
464 // separator. But a single colon is not part of a name.
465 return c + 2;
466 }
467 return NULL;
e5756efb 468
dbe717ef 469 default:
09124467 470 return NULL;
dbe717ef
ILT
471 }
472}
473
474// For a number we accept 0x followed by hex digits, or any sequence
475// of digits. The old linker accepts leading '$' for hex, and
476// trailing HXBOD. Those are for MRI compatibility and we don't
477// accept them. The old linker also accepts trailing MK for mega or
e5756efb
ILT
478// kilo. FIXME: Those are mentioned in the documentation, and we
479// should accept them.
dbe717ef
ILT
480
481// Return whether C1 C2 C3 can start a hex number.
482
483inline bool
484Lex::can_start_hex(char c1, char c2, char c3)
485{
486 if (c1 == '0' && (c2 == 'x' || c2 == 'X'))
09124467 487 return this->can_continue_hex(&c3);
dbe717ef
ILT
488 return false;
489}
490
491// Return whether C can appear in a hex number.
492
09124467
ILT
493inline const char*
494Lex::can_continue_hex(const char* c)
dbe717ef 495{
09124467 496 switch (*c)
dbe717ef
ILT
497 {
498 case '0': case '1': case '2': case '3': case '4':
499 case '5': case '6': case '7': case '8': case '9':
500 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
501 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
09124467 502 return c + 1;
dbe717ef
ILT
503
504 default:
09124467 505 return NULL;
dbe717ef
ILT
506 }
507}
508
509// Return whether C can start a non-hex number.
510
511inline bool
512Lex::can_start_number(char c)
513{
514 switch (c)
515 {
516 case '0': case '1': case '2': case '3': case '4':
517 case '5': case '6': case '7': case '8': case '9':
518 return true;
519
520 default:
521 return false;
522 }
523}
524
525// If C1 C2 C3 form a valid three character operator, return the
526// opcode (defined in the yyscript.h file generated from yyscript.y).
527// Otherwise return 0.
528
529inline int
530Lex::three_char_operator(char c1, char c2, char c3)
531{
532 switch (c1)
533 {
534 case '<':
535 if (c2 == '<' && c3 == '=')
536 return LSHIFTEQ;
537 break;
538 case '>':
539 if (c2 == '>' && c3 == '=')
540 return RSHIFTEQ;
541 break;
542 default:
543 break;
544 }
545 return 0;
546}
547
548// If C1 C2 form a valid two character operator, return the opcode
549// (defined in the yyscript.h file generated from yyscript.y).
550// Otherwise return 0.
551
552inline int
553Lex::two_char_operator(char c1, char c2)
554{
555 switch (c1)
556 {
557 case '=':
558 if (c2 == '=')
559 return EQ;
560 break;
561 case '!':
562 if (c2 == '=')
563 return NE;
564 break;
565 case '+':
566 if (c2 == '=')
567 return PLUSEQ;
568 break;
569 case '-':
570 if (c2 == '=')
571 return MINUSEQ;
572 break;
573 case '*':
574 if (c2 == '=')
575 return MULTEQ;
576 break;
577 case '/':
578 if (c2 == '=')
579 return DIVEQ;
580 break;
581 case '|':
582 if (c2 == '=')
583 return OREQ;
584 if (c2 == '|')
585 return OROR;
586 break;
587 case '&':
588 if (c2 == '=')
589 return ANDEQ;
590 if (c2 == '&')
591 return ANDAND;
592 break;
593 case '>':
594 if (c2 == '=')
595 return GE;
596 if (c2 == '>')
597 return RSHIFT;
598 break;
599 case '<':
600 if (c2 == '=')
601 return LE;
602 if (c2 == '<')
603 return LSHIFT;
604 break;
605 default:
606 break;
607 }
608 return 0;
609}
610
611// If C1 is a valid operator, return the opcode. Otherwise return 0.
612
613inline int
614Lex::one_char_operator(char c1)
615{
616 switch (c1)
617 {
618 case '+':
619 case '-':
620 case '*':
621 case '/':
622 case '%':
623 case '!':
624 case '&':
625 case '|':
626 case '^':
627 case '~':
628 case '<':
629 case '>':
630 case '=':
631 case '?':
632 case ',':
633 case '(':
634 case ')':
635 case '{':
636 case '}':
637 case '[':
638 case ']':
639 case ':':
640 case ';':
641 return c1;
642 default:
643 return 0;
644 }
645}
646
647// Skip a C style comment. *PP points to just after the "/*". Return
648// false if the comment did not end.
649
650bool
651Lex::skip_c_comment(const char** pp)
652{
653 const char* p = *pp;
654 while (p[0] != '*' || p[1] != '/')
655 {
656 if (*p == '\0')
657 {
658 *pp = p;
659 return false;
660 }
661
662 if (*p == '\n')
663 {
664 ++this->lineno_;
665 this->linestart_ = p + 1;
666 }
667 ++p;
668 }
669
670 *pp = p + 2;
671 return true;
672}
673
674// Skip a line # comment. Return false if there was no newline.
675
676bool
677Lex::skip_line_comment(const char** pp)
678{
679 const char* p = *pp;
680 size_t skip = strcspn(p, "\n");
681 if (p[skip] == '\0')
682 {
683 *pp = p + skip;
684 return false;
685 }
686
687 p += skip + 1;
688 ++this->lineno_;
689 this->linestart_ = p;
690 *pp = p;
691
692 return true;
693}
694
695// Build a token CLASSIFICATION from all characters that match
696// CAN_CONTINUE_FN. Update *PP.
697
698inline Token
699Lex::gather_token(Token::Classification classification,
09124467 700 const char* (Lex::*can_continue_fn)(const char*),
dbe717ef
ILT
701 const char* start,
702 const char* match,
ca09d69a 703 const char** pp)
dbe717ef 704{
09124467
ILT
705 const char* new_match = NULL;
706 while ((new_match = (this->*can_continue_fn)(match)))
707 match = new_match;
dbe717ef 708 *pp = match;
e5756efb 709 return this->make_token(classification, start, match - start, start);
dbe717ef
ILT
710}
711
712// Build a token from a quoted string.
713
714Token
715Lex::gather_quoted_string(const char** pp)
716{
717 const char* start = *pp;
718 const char* p = start;
719 ++p;
720 size_t skip = strcspn(p, "\"\n");
721 if (p[skip] != '"')
722 return this->make_invalid_token(start);
723 *pp = p + skip + 1;
e5756efb 724 return this->make_token(Token::TOKEN_QUOTED_STRING, p, skip, start);
dbe717ef
ILT
725}
726
727// Return the next token at *PP. Update *PP. General guideline: we
728// require linker scripts to be simple ASCII. No unicode linker
729// scripts. In particular we can assume that any '\0' is the end of
730// the input.
731
732Token
733Lex::get_token(const char** pp)
734{
735 const char* p = *pp;
736
737 while (true)
738 {
739 if (*p == '\0')
740 {
741 *pp = p;
742 return this->make_eof_token(p);
743 }
744
745 // Skip whitespace quickly.
f3048a1d 746 while (*p == ' ' || *p == '\t' || *p == '\r')
dbe717ef
ILT
747 ++p;
748
749 if (*p == '\n')
750 {
751 ++p;
752 ++this->lineno_;
753 this->linestart_ = p;
754 continue;
755 }
756
757 // Skip C style comments.
758 if (p[0] == '/' && p[1] == '*')
759 {
760 int lineno = this->lineno_;
761 int charpos = p - this->linestart_ + 1;
762
763 *pp = p + 2;
764 if (!this->skip_c_comment(pp))
765 return Token(Token::TOKEN_INVALID, lineno, charpos);
766 p = *pp;
767
768 continue;
769 }
770
771 // Skip line comments.
772 if (*p == '#')
773 {
774 *pp = p + 1;
775 if (!this->skip_line_comment(pp))
776 return this->make_eof_token(p);
777 p = *pp;
778 continue;
779 }
780
781 // Check for a name.
e5756efb 782 if (this->can_start_name(p[0], p[1]))
dbe717ef 783 return this->gather_token(Token::TOKEN_STRING,
e5756efb
ILT
784 &Lex::can_continue_name,
785 p, p + 1, pp);
dbe717ef
ILT
786
787 // We accept any arbitrary name in double quotes, as long as it
788 // does not cross a line boundary.
789 if (*p == '"')
790 {
791 *pp = p;
792 return this->gather_quoted_string(pp);
793 }
794
795 // Check for a number.
796
e5756efb 797 if (this->can_start_hex(p[0], p[1], p[2]))
dbe717ef 798 return this->gather_token(Token::TOKEN_INTEGER,
e5756efb 799 &Lex::can_continue_hex,
dbe717ef
ILT
800 p, p + 3, pp);
801
802 if (Lex::can_start_number(p[0]))
803 return this->gather_token(Token::TOKEN_INTEGER,
e5756efb 804 &Lex::can_continue_number,
dbe717ef
ILT
805 p, p + 1, pp);
806
807 // Check for operators.
808
809 int opcode = Lex::three_char_operator(p[0], p[1], p[2]);
810 if (opcode != 0)
811 {
812 *pp = p + 3;
813 return this->make_token(opcode, p);
814 }
815
816 opcode = Lex::two_char_operator(p[0], p[1]);
817 if (opcode != 0)
818 {
819 *pp = p + 2;
820 return this->make_token(opcode, p);
821 }
822
823 opcode = Lex::one_char_operator(p[0]);
824 if (opcode != 0)
825 {
826 *pp = p + 1;
827 return this->make_token(opcode, p);
828 }
829
830 return this->make_token(Token::TOKEN_INVALID, p);
831 }
832}
833
e5756efb 834// Return the next token.
dbe717ef 835
e5756efb
ILT
836const Token*
837Lex::next_token()
dbe717ef 838{
e5756efb
ILT
839 // The first token is special.
840 if (this->first_token_ != 0)
dbe717ef 841 {
e5756efb
ILT
842 this->token_ = Token(this->first_token_, 0, 0);
843 this->first_token_ = 0;
844 return &this->token_;
845 }
dbe717ef 846
e5756efb 847 this->token_ = this->get_token(&this->current_);
dbe717ef 848
e5756efb
ILT
849 // Don't let an early null byte fool us into thinking that we've
850 // reached the end of the file.
851 if (this->token_.is_eof()
852 && (static_cast<size_t>(this->current_ - this->input_string_)
853 < this->input_length_))
854 this->token_ = this->make_invalid_token(this->current_);
dbe717ef 855
e5756efb 856 return &this->token_;
dbe717ef
ILT
857}
858
494e05f4 859// class Symbol_assignment.
e5756efb 860
494e05f4
ILT
861// Add the symbol to the symbol table. This makes sure the symbol is
862// there and defined. The actual value is stored later. We can't
863// determine the actual value at this point, because we can't
864// necessarily evaluate the expression until all ordinary symbols have
865// been finalized.
e5756efb 866
caa9d5d9
ILT
867// The GNU linker lets symbol assignments in the linker script
868// silently override defined symbols in object files. We are
869// compatible. FIXME: Should we issue a warning?
870
e5756efb 871void
9b07f471 872Symbol_assignment::add_to_table(Symbol_table* symtab)
e5756efb 873{
494e05f4 874 elfcpp::STV vis = this->hidden_ ? elfcpp::STV_HIDDEN : elfcpp::STV_DEFAULT;
9b07f471 875 this->sym_ = symtab->define_as_constant(this->name_.c_str(),
e5756efb 876 NULL, // version
99fff23b
ILT
877 (this->is_defsym_
878 ? Symbol_table::DEFSYM
879 : Symbol_table::SCRIPT),
e5756efb
ILT
880 0, // value
881 0, // size
882 elfcpp::STT_NOTYPE,
883 elfcpp::STB_GLOBAL,
884 vis,
885 0, // nonvis
caa9d5d9
ILT
886 this->provide_,
887 true); // force_override
e5756efb
ILT
888}
889
494e05f4 890// Finalize a symbol value.
e5756efb
ILT
891
892void
494e05f4 893Symbol_assignment::finalize(Symbol_table* symtab, const Layout* layout)
a445fddf 894{
77e65537 895 this->finalize_maybe_dot(symtab, layout, false, 0, NULL);
a445fddf
ILT
896}
897
898// Finalize a symbol value which can refer to the dot symbol.
899
900void
901Symbol_assignment::finalize_with_dot(Symbol_table* symtab,
902 const Layout* layout,
77e65537
ILT
903 uint64_t dot_value,
904 Output_section* dot_section)
a445fddf 905{
77e65537 906 this->finalize_maybe_dot(symtab, layout, true, dot_value, dot_section);
a445fddf
ILT
907}
908
909// Finalize a symbol value, internal version.
910
911void
912Symbol_assignment::finalize_maybe_dot(Symbol_table* symtab,
913 const Layout* layout,
914 bool is_dot_available,
77e65537
ILT
915 uint64_t dot_value,
916 Output_section* dot_section)
e5756efb 917{
494e05f4
ILT
918 // If we were only supposed to provide this symbol, the sym_ field
919 // will be NULL if the symbol was not referenced.
920 if (this->sym_ == NULL)
921 {
922 gold_assert(this->provide_);
923 return;
924 }
925
8851ecca 926 if (parameters->target().get_size() == 32)
e5756efb
ILT
927 {
928#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
77e65537
ILT
929 this->sized_finalize<32>(symtab, layout, is_dot_available, dot_value,
930 dot_section);
e5756efb
ILT
931#else
932 gold_unreachable();
933#endif
934 }
8851ecca 935 else if (parameters->target().get_size() == 64)
e5756efb
ILT
936 {
937#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
77e65537
ILT
938 this->sized_finalize<64>(symtab, layout, is_dot_available, dot_value,
939 dot_section);
e5756efb
ILT
940#else
941 gold_unreachable();
942#endif
943 }
944 else
945 gold_unreachable();
946}
947
948template<int size>
949void
a445fddf 950Symbol_assignment::sized_finalize(Symbol_table* symtab, const Layout* layout,
77e65537
ILT
951 bool is_dot_available, uint64_t dot_value,
952 Output_section* dot_section)
a445fddf 953{
77e65537 954 Output_section* section;
919ed24c 955 uint64_t final_val = this->val_->eval_maybe_dot(symtab, layout, true,
a445fddf 956 is_dot_available,
77e65537 957 dot_value, dot_section,
f6973bdc 958 &section, NULL);
494e05f4 959 Sized_symbol<size>* ssym = symtab->get_sized_symbol<size>(this->sym_);
a445fddf 960 ssym->set_value(final_val);
77e65537
ILT
961 if (section != NULL)
962 ssym->set_output_section(section);
a445fddf
ILT
963}
964
965// Set the symbol value if the expression yields an absolute value.
966
967void
968Symbol_assignment::set_if_absolute(Symbol_table* symtab, const Layout* layout,
77e65537 969 bool is_dot_available, uint64_t dot_value)
a445fddf
ILT
970{
971 if (this->sym_ == NULL)
972 return;
973
77e65537 974 Output_section* val_section;
919ed24c
ILT
975 uint64_t val = this->val_->eval_maybe_dot(symtab, layout, false,
976 is_dot_available, dot_value,
f6973bdc 977 NULL, &val_section, NULL);
77e65537 978 if (val_section != NULL)
a445fddf
ILT
979 return;
980
8851ecca 981 if (parameters->target().get_size() == 32)
a445fddf
ILT
982 {
983#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
984 Sized_symbol<32>* ssym = symtab->get_sized_symbol<32>(this->sym_);
985 ssym->set_value(val);
986#else
987 gold_unreachable();
988#endif
989 }
8851ecca 990 else if (parameters->target().get_size() == 64)
a445fddf
ILT
991 {
992#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
993 Sized_symbol<64>* ssym = symtab->get_sized_symbol<64>(this->sym_);
994 ssym->set_value(val);
995#else
996 gold_unreachable();
997#endif
998 }
999 else
1000 gold_unreachable();
494e05f4
ILT
1001}
1002
1003// Print for debugging.
1004
1005void
1006Symbol_assignment::print(FILE* f) const
1007{
1008 if (this->provide_ && this->hidden_)
1009 fprintf(f, "PROVIDE_HIDDEN(");
1010 else if (this->provide_)
1011 fprintf(f, "PROVIDE(");
1012 else if (this->hidden_)
1013 gold_unreachable();
1014
1015 fprintf(f, "%s = ", this->name_.c_str());
1016 this->val_->print(f);
1017
1018 if (this->provide_ || this->hidden_)
1019 fprintf(f, ")");
1020
1021 fprintf(f, "\n");
1022}
1023
1024// Class Script_assertion.
1025
1026// Check the assertion.
1027
1028void
1029Script_assertion::check(const Symbol_table* symtab, const Layout* layout)
1030{
919ed24c 1031 if (!this->check_->eval(symtab, layout, true))
494e05f4
ILT
1032 gold_error("%s", this->message_.c_str());
1033}
1034
1035// Print for debugging.
1036
1037void
1038Script_assertion::print(FILE* f) const
1039{
1040 fprintf(f, "ASSERT(");
1041 this->check_->print(f);
1042 fprintf(f, ", \"%s\")\n", this->message_.c_str());
1043}
1044
1045// Class Script_options.
1046
1047Script_options::Script_options()
88a4108b
ILT
1048 : entry_(), symbol_assignments_(), symbol_definitions_(),
1049 symbol_references_(), version_script_info_(), script_sections_()
494e05f4
ILT
1050{
1051}
1052
e597fa08
NC
1053// Returns true if NAME is on the list of symbol assignments waiting
1054// to be processed.
1055
1056bool
1057Script_options::is_pending_assignment(const char* name)
1058{
1059 for (Symbol_assignments::iterator p = this->symbol_assignments_.begin();
1060 p != this->symbol_assignments_.end();
1061 ++p)
1062 if ((*p)->name() == name)
1063 return true;
1064 return false;
1065}
1066
494e05f4
ILT
1067// Add a symbol to be defined.
1068
1069void
1070Script_options::add_symbol_assignment(const char* name, size_t length,
99fff23b
ILT
1071 bool is_defsym, Expression* value,
1072 bool provide, bool hidden)
494e05f4 1073{
a445fddf
ILT
1074 if (length != 1 || name[0] != '.')
1075 {
1076 if (this->script_sections_.in_sections_clause())
a445fddf 1077 {
99fff23b
ILT
1078 gold_assert(!is_defsym);
1079 this->script_sections_.add_symbol_assignment(name, length, value,
a445fddf 1080 provide, hidden);
99fff23b
ILT
1081 }
1082 else
1083 {
1084 Symbol_assignment* p = new Symbol_assignment(name, length, is_defsym,
1085 value, provide, hidden);
a445fddf
ILT
1086 this->symbol_assignments_.push_back(p);
1087 }
88a4108b
ILT
1088
1089 if (!provide)
1090 {
1091 std::string n(name, length);
1092 this->symbol_definitions_.insert(n);
1093 this->symbol_references_.erase(n);
1094 }
a445fddf 1095 }
494e05f4
ILT
1096 else
1097 {
a445fddf
ILT
1098 if (provide || hidden)
1099 gold_error(_("invalid use of PROVIDE for dot symbol"));
12edd763
ILT
1100
1101 // The GNU linker permits assignments to dot outside of SECTIONS
1102 // clauses and treats them as occurring inside, so we don't
1103 // check in_sections_clause here.
1104 this->script_sections_.add_dot_assignment(value);
494e05f4
ILT
1105 }
1106}
1107
88a4108b
ILT
1108// Add a reference to a symbol.
1109
1110void
1111Script_options::add_symbol_reference(const char* name, size_t length)
1112{
1113 if (length != 1 || name[0] != '.')
1114 {
1115 std::string n(name, length);
1116 if (this->symbol_definitions_.find(n) == this->symbol_definitions_.end())
1117 this->symbol_references_.insert(n);
1118 }
1119}
1120
494e05f4
ILT
1121// Add an assertion.
1122
1123void
1124Script_options::add_assertion(Expression* check, const char* message,
1125 size_t messagelen)
1126{
1127 if (this->script_sections_.in_sections_clause())
1128 this->script_sections_.add_assertion(check, message, messagelen);
1129 else
1130 {
1131 Script_assertion* p = new Script_assertion(check, message, messagelen);
1132 this->assertions_.push_back(p);
1133 }
1134}
1135
919ed24c
ILT
1136// Create sections required by any linker scripts.
1137
1138void
1139Script_options::create_script_sections(Layout* layout)
1140{
1141 if (this->saw_sections_clause())
1142 this->script_sections_.create_sections(layout);
1143}
1144
494e05f4
ILT
1145// Add any symbols we are defining to the symbol table.
1146
1147void
9b07f471 1148Script_options::add_symbols_to_table(Symbol_table* symtab)
e5756efb
ILT
1149{
1150 for (Symbol_assignments::iterator p = this->symbol_assignments_.begin();
1151 p != this->symbol_assignments_.end();
1152 ++p)
9b07f471 1153 (*p)->add_to_table(symtab);
a445fddf 1154 this->script_sections_.add_symbols_to_table(symtab);
494e05f4
ILT
1155}
1156
a445fddf 1157// Finalize symbol values. Also check assertions.
494e05f4
ILT
1158
1159void
1160Script_options::finalize_symbols(Symbol_table* symtab, const Layout* layout)
1161{
7c07ecec
ILT
1162 // We finalize the symbols defined in SECTIONS first, because they
1163 // are the ones which may have changed. This way if symbol outside
1164 // SECTIONS are defined in terms of symbols inside SECTIONS, they
1165 // will get the right value.
1166 this->script_sections_.finalize_symbols(symtab, layout);
1167
494e05f4
ILT
1168 for (Symbol_assignments::iterator p = this->symbol_assignments_.begin();
1169 p != this->symbol_assignments_.end();
1170 ++p)
1171 (*p)->finalize(symtab, layout);
a445fddf
ILT
1172
1173 for (Assertions::iterator p = this->assertions_.begin();
1174 p != this->assertions_.end();
1175 ++p)
1176 (*p)->check(symtab, layout);
a445fddf
ILT
1177}
1178
1179// Set section addresses. We set all the symbols which have absolute
1180// values. Then we let the SECTIONS clause do its thing. This
1181// returns the segment which holds the file header and segment
1182// headers, if any.
1183
1184Output_segment*
1185Script_options::set_section_addresses(Symbol_table* symtab, Layout* layout)
1186{
1187 for (Symbol_assignments::iterator p = this->symbol_assignments_.begin();
1188 p != this->symbol_assignments_.end();
1189 ++p)
77e65537 1190 (*p)->set_if_absolute(symtab, layout, false, 0);
a445fddf
ILT
1191
1192 return this->script_sections_.set_section_addresses(symtab, layout);
e5756efb
ILT
1193}
1194
dbe717ef
ILT
1195// This class holds data passed through the parser to the lexer and to
1196// the parser support functions. This avoids global variables. We
17a1d0a9
ILT
1197// can't use global variables because we need not be called by a
1198// singleton thread.
dbe717ef
ILT
1199
1200class Parser_closure
1201{
1202 public:
2ea97941 1203 Parser_closure(const char* filename,
dbe717ef 1204 const Position_dependent_options& posdep_options,
99fff23b 1205 bool parsing_defsym, bool in_group, bool is_in_sysroot,
2ea97941
ILT
1206 Command_line* command_line,
1207 Script_options* script_options,
15f8229b 1208 Lex* lex,
c7975edd
CC
1209 bool skip_on_incompatible_target,
1210 Script_info* script_info)
2ea97941 1211 : filename_(filename), posdep_options_(posdep_options),
99fff23b
ILT
1212 parsing_defsym_(parsing_defsym), in_group_(in_group),
1213 is_in_sysroot_(is_in_sysroot),
2ea97941 1214 skip_on_incompatible_target_(skip_on_incompatible_target),
15f8229b 1215 found_incompatible_target_(false),
2ea97941
ILT
1216 command_line_(command_line), script_options_(script_options),
1217 version_script_info_(script_options->version_script_info()),
c7975edd
CC
1218 lex_(lex), lineno_(0), charpos_(0), lex_mode_stack_(), inputs_(NULL),
1219 script_info_(script_info)
c82fbeee 1220 {
09124467 1221 // We start out processing C symbols in the default lex mode.
6affe781
ILT
1222 this->language_stack_.push_back(Version_script_info::LANGUAGE_C);
1223 this->lex_mode_stack_.push_back(lex->mode());
09124467 1224 }
dbe717ef
ILT
1225
1226 // Return the file name.
1227 const char*
1228 filename() const
1229 { return this->filename_; }
1230
1231 // Return the position dependent options. The caller may modify
1232 // this.
1233 Position_dependent_options&
1234 position_dependent_options()
1235 { return this->posdep_options_; }
1236
99fff23b
ILT
1237 // Whether we are parsing a --defsym.
1238 bool
1239 parsing_defsym() const
1240 { return this->parsing_defsym_; }
1241
dbe717ef
ILT
1242 // Return whether this script is being run in a group.
1243 bool
1244 in_group() const
1245 { return this->in_group_; }
1246
ad2d6943
ILT
1247 // Return whether this script was found using a directory in the
1248 // sysroot.
1249 bool
1250 is_in_sysroot() const
1251 { return this->is_in_sysroot_; }
1252
15f8229b
ILT
1253 // Whether to skip to the next file with the same name if we find an
1254 // incompatible target in an OUTPUT_FORMAT statement.
1255 bool
1256 skip_on_incompatible_target() const
1257 { return this->skip_on_incompatible_target_; }
1258
e6a307ba 1259 // Stop skipping to the next file on an incompatible target. This
15f8229b
ILT
1260 // is called when we make some unrevocable change to the data
1261 // structures.
1262 void
1263 clear_skip_on_incompatible_target()
1264 { this->skip_on_incompatible_target_ = false; }
1265
1266 // Whether we found an incompatible target in an OUTPUT_FORMAT
1267 // statement.
1268 bool
1269 found_incompatible_target() const
1270 { return this->found_incompatible_target_; }
1271
1272 // Note that we found an incompatible target.
1273 void
1274 set_found_incompatible_target()
1275 { this->found_incompatible_target_ = true; }
1276
a0451b38
ILT
1277 // Returns the Command_line structure passed in at constructor time.
1278 // This value may be NULL. The caller may modify this, which modifies
1279 // the passed-in Command_line object (not a copy).
e5756efb
ILT
1280 Command_line*
1281 command_line()
a0451b38
ILT
1282 { return this->command_line_; }
1283
e5756efb
ILT
1284 // Return the options which may be set by a script.
1285 Script_options*
1286 script_options()
1287 { return this->script_options_; }
dbe717ef 1288
09124467
ILT
1289 // Return the object in which version script information should be stored.
1290 Version_script_info*
1291 version_script()
1292 { return this->version_script_info_; }
1293
2dd3e587 1294 // Return the next token, and advance.
dbe717ef
ILT
1295 const Token*
1296 next_token()
1297 {
e5756efb
ILT
1298 const Token* token = this->lex_->next_token();
1299 this->lineno_ = token->lineno();
1300 this->charpos_ = token->charpos();
1301 return token;
dbe717ef
ILT
1302 }
1303
e5756efb
ILT
1304 // Set a new lexer mode, pushing the current one.
1305 void
1306 push_lex_mode(Lex::Mode mode)
1307 {
1308 this->lex_mode_stack_.push_back(this->lex_->mode());
1309 this->lex_->set_mode(mode);
1310 }
1311
1312 // Pop the lexer mode.
1313 void
1314 pop_lex_mode()
2dd3e587 1315 {
e5756efb
ILT
1316 gold_assert(!this->lex_mode_stack_.empty());
1317 this->lex_->set_mode(this->lex_mode_stack_.back());
1318 this->lex_mode_stack_.pop_back();
2dd3e587
ILT
1319 }
1320
09124467
ILT
1321 // Return the current lexer mode.
1322 Lex::Mode
1323 lex_mode() const
1324 { return this->lex_mode_stack_.back(); }
1325
e5756efb
ILT
1326 // Return the line number of the last token.
1327 int
1328 lineno() const
1329 { return this->lineno_; }
1330
1331 // Return the character position in the line of the last token.
1332 int
1333 charpos() const
1334 { return this->charpos_; }
1335
dbe717ef
ILT
1336 // Return the list of input files, creating it if necessary. This
1337 // is a space leak--we never free the INPUTS_ pointer.
1338 Input_arguments*
1339 inputs()
1340 {
1341 if (this->inputs_ == NULL)
1342 this->inputs_ = new Input_arguments();
1343 return this->inputs_;
1344 }
1345
1346 // Return whether we saw any input files.
1347 bool
1348 saw_inputs() const
1349 { return this->inputs_ != NULL && !this->inputs_->empty(); }
1350
09124467
ILT
1351 // Return the current language being processed in a version script
1352 // (eg, "C++"). The empty string represents unmangled C names.
6affe781 1353 Version_script_info::Language
09124467
ILT
1354 get_current_language() const
1355 { return this->language_stack_.back(); }
1356
1357 // Push a language onto the stack when entering an extern block.
6affe781
ILT
1358 void
1359 push_language(Version_script_info::Language lang)
09124467
ILT
1360 { this->language_stack_.push_back(lang); }
1361
1362 // Pop a language off of the stack when exiting an extern block.
6affe781
ILT
1363 void
1364 pop_language()
09124467
ILT
1365 {
1366 gold_assert(!this->language_stack_.empty());
1367 this->language_stack_.pop_back();
1368 }
1369
c7975edd
CC
1370 // Return a pointer to the incremental info.
1371 Script_info*
1372 script_info()
1373 { return this->script_info_; }
1374
dbe717ef
ILT
1375 private:
1376 // The name of the file we are reading.
1377 const char* filename_;
1378 // The position dependent options.
1379 Position_dependent_options posdep_options_;
99fff23b
ILT
1380 // True if we are parsing a --defsym.
1381 bool parsing_defsym_;
dbe717ef
ILT
1382 // Whether we are currently in a --start-group/--end-group.
1383 bool in_group_;
ad2d6943
ILT
1384 // Whether the script was found in a sysrooted directory.
1385 bool is_in_sysroot_;
15f8229b
ILT
1386 // If this is true, then if we find an OUTPUT_FORMAT with an
1387 // incompatible target, then we tell the parser to abort so that we
1388 // can search for the next file with the same name.
1389 bool skip_on_incompatible_target_;
1390 // True if we found an OUTPUT_FORMAT with an incompatible target.
1391 bool found_incompatible_target_;
a0451b38
ILT
1392 // May be NULL if the user chooses not to pass one in.
1393 Command_line* command_line_;
e5756efb
ILT
1394 // Options which may be set from any linker script.
1395 Script_options* script_options_;
09124467
ILT
1396 // Information parsed from a version script.
1397 Version_script_info* version_script_info_;
e5756efb
ILT
1398 // The lexer.
1399 Lex* lex_;
1400 // The line number of the last token returned by next_token.
1401 int lineno_;
1402 // The column number of the last token returned by next_token.
1403 int charpos_;
1404 // A stack of lexer modes.
1405 std::vector<Lex::Mode> lex_mode_stack_;
09124467
ILT
1406 // A stack of which extern/language block we're inside. Can be C++,
1407 // java, or empty for C.
6affe781 1408 std::vector<Version_script_info::Language> language_stack_;
dbe717ef
ILT
1409 // New input files found to add to the link.
1410 Input_arguments* inputs_;
c7975edd
CC
1411 // Pointer to incremental linking info.
1412 Script_info* script_info_;
dbe717ef
ILT
1413};
1414
1415// FILE was found as an argument on the command line. Try to read it
da769d56 1416// as a script. Return true if the file was handled.
dbe717ef
ILT
1417
1418bool
f1ed28fb 1419read_input_script(Workqueue* workqueue, Symbol_table* symtab, Layout* layout,
15f8229b
ILT
1420 Dirsearch* dirsearch, int dirindex,
1421 Input_objects* input_objects, Mapfile* mapfile,
1422 Input_group* input_group,
dbe717ef 1423 const Input_argument* input_argument,
da769d56
ILT
1424 Input_file* input_file, Task_token* next_blocker,
1425 bool* used_next_blocker)
dbe717ef 1426{
da769d56
ILT
1427 *used_next_blocker = false;
1428
e5756efb
ILT
1429 std::string input_string;
1430 Lex::read_file(input_file, &input_string);
1431
1432 Lex lex(input_string.c_str(), input_string.length(), PARSING_LINKER_SCRIPT);
dbe717ef 1433
c7975edd
CC
1434 Script_info* script_info = NULL;
1435 if (layout->incremental_inputs() != NULL)
1436 {
1437 const std::string& filename = input_file->filename();
1438 Timespec mtime = input_file->file().get_mtime();
1439 script_info = new Script_info();
1440 layout->incremental_inputs()->report_script(filename, script_info, mtime);
1441 }
1442
dbe717ef
ILT
1443 Parser_closure closure(input_file->filename().c_str(),
1444 input_argument->file().options(),
99fff23b 1445 false,
dbe717ef 1446 input_group != NULL,
ad2d6943 1447 input_file->is_in_sysroot(),
a0451b38 1448 NULL,
e5756efb 1449 layout->script_options(),
15f8229b 1450 &lex,
c7975edd
CC
1451 input_file->will_search_for(),
1452 script_info);
dbe717ef 1453
d7bb5745
ILT
1454 bool old_saw_sections_clause =
1455 layout->script_options()->saw_sections_clause();
1456
dbe717ef 1457 if (yyparse(&closure) != 0)
15f8229b
ILT
1458 {
1459 if (closure.found_incompatible_target())
1460 {
1461 Read_symbols::incompatible_warning(input_argument, input_file);
1462 Read_symbols::requeue(workqueue, input_objects, symtab, layout,
1463 dirsearch, dirindex, mapfile, input_argument,
1464 input_group, next_blocker);
1465 return true;
1466 }
1467 return false;
1468 }
dbe717ef 1469
d7bb5745
ILT
1470 if (!old_saw_sections_clause
1471 && layout->script_options()->saw_sections_clause()
1472 && layout->have_added_input_section())
1473 gold_error(_("%s: SECTIONS seen after other input files; try -T/--script"),
1474 input_file->filename().c_str());
1475
dbe717ef 1476 if (!closure.saw_inputs())
da769d56 1477 return true;
dbe717ef 1478
da769d56 1479 Task_token* this_blocker = NULL;
dbe717ef
ILT
1480 for (Input_arguments::const_iterator p = closure.inputs()->begin();
1481 p != closure.inputs()->end();
1482 ++p)
1483 {
1484 Task_token* nb;
1485 if (p + 1 == closure.inputs()->end())
1486 nb = next_blocker;
1487 else
1488 {
17a1d0a9 1489 nb = new Task_token(true);
dbe717ef
ILT
1490 nb->add_blocker();
1491 }
f1ed28fb 1492 workqueue->queue_soon(new Read_symbols(input_objects, symtab,
15f8229b 1493 layout, dirsearch, 0, mapfile, &*p,
b0193076 1494 input_group, NULL, this_blocker, nb));
dbe717ef
ILT
1495 this_blocker = nb;
1496 }
1497
da769d56
ILT
1498 *used_next_blocker = true;
1499
dbe717ef
ILT
1500 return true;
1501}
1502
09124467
ILT
1503// Helper function for read_version_script() and
1504// read_commandline_script(). Processes the given file in the mode
1505// indicated by first_token and lex_mode.
3c2fafa5 1506
09124467
ILT
1507static bool
1508read_script_file(const char* filename, Command_line* cmdline,
c82fbeee 1509 Script_options* script_options,
09124467 1510 int first_token, Lex::Mode lex_mode)
3c2fafa5 1511{
a0451b38
ILT
1512 // TODO: if filename is a relative filename, search for it manually
1513 // using "." + cmdline->options()->search_path() -- not dirsearch.
3c2fafa5
ILT
1514 Dirsearch dirsearch;
1515
17a1d0a9
ILT
1516 // The file locking code wants to record a Task, but we haven't
1517 // started the workqueue yet. This is only for debugging purposes,
1518 // so we invent a fake value.
1519 const Task* task = reinterpret_cast<const Task*>(-1);
1520
b0d8593d
ILT
1521 // We don't want this file to be opened in binary mode.
1522 Position_dependent_options posdep = cmdline->position_dependent_options();
7cc619c3
ILT
1523 if (posdep.format_enum() == General_options::OBJECT_FORMAT_BINARY)
1524 posdep.set_format_enum(General_options::OBJECT_FORMAT_ELF);
ae3b5189
CD
1525 Input_file_argument input_argument(filename,
1526 Input_file_argument::INPUT_FILE_TYPE_FILE,
1527 "", false, posdep);
3c2fafa5 1528 Input_file input_file(&input_argument);
15f8229b
ILT
1529 int dummy = 0;
1530 if (!input_file.open(dirsearch, task, &dummy))
3c2fafa5
ILT
1531 return false;
1532
e5756efb
ILT
1533 std::string input_string;
1534 Lex::read_file(&input_file, &input_string);
1535
09124467
ILT
1536 Lex lex(input_string.c_str(), input_string.length(), first_token);
1537 lex.set_mode(lex_mode);
3c2fafa5
ILT
1538
1539 Parser_closure closure(filename,
1540 cmdline->position_dependent_options(),
99fff23b 1541 first_token == Lex::DYNAMIC_LIST,
3c2fafa5
ILT
1542 false,
1543 input_file.is_in_sysroot(),
a0451b38 1544 cmdline,
c82fbeee 1545 script_options,
15f8229b 1546 &lex,
c7975edd
CC
1547 false,
1548 NULL);
3c2fafa5
ILT
1549 if (yyparse(&closure) != 0)
1550 {
17a1d0a9 1551 input_file.file().unlock(task);
3c2fafa5
ILT
1552 return false;
1553 }
1554
17a1d0a9 1555 input_file.file().unlock(task);
d391083d
ILT
1556
1557 gold_assert(!closure.saw_inputs());
1558
3c2fafa5
ILT
1559 return true;
1560}
1561
09124467
ILT
1562// FILENAME was found as an argument to --script (-T).
1563// Read it as a script, and execute its contents immediately.
1564
1565bool
1566read_commandline_script(const char* filename, Command_line* cmdline)
1567{
c82fbeee 1568 return read_script_file(filename, cmdline, &cmdline->script_options(),
09124467
ILT
1569 PARSING_LINKER_SCRIPT, Lex::LINKER_SCRIPT);
1570}
1571
c82fbeee
CS
1572// FILENAME was found as an argument to --version-script. Read it as
1573// a version script, and store its contents in
09124467
ILT
1574// cmdline->script_options()->version_script_info().
1575
1576bool
1577read_version_script(const char* filename, Command_line* cmdline)
1578{
c82fbeee 1579 return read_script_file(filename, cmdline, &cmdline->script_options(),
09124467
ILT
1580 PARSING_VERSION_SCRIPT, Lex::VERSION_SCRIPT);
1581}
1582
c82fbeee
CS
1583// FILENAME was found as an argument to --dynamic-list. Read it as a
1584// list of symbols, and store its contents in DYNAMIC_LIST.
1585
1586bool
1587read_dynamic_list(const char* filename, Command_line* cmdline,
1588 Script_options* dynamic_list)
1589{
1590 return read_script_file(filename, cmdline, dynamic_list,
1591 PARSING_DYNAMIC_LIST, Lex::DYNAMIC_LIST);
1592}
1593
e5756efb
ILT
1594// Implement the --defsym option on the command line. Return true if
1595// all is well.
1596
1597bool
1598Script_options::define_symbol(const char* definition)
1599{
1600 Lex lex(definition, strlen(definition), PARSING_DEFSYM);
1601 lex.set_mode(Lex::EXPRESSION);
1602
1603 // Dummy value.
1604 Position_dependent_options posdep_options;
1605
99fff23b 1606 Parser_closure closure("command line", posdep_options, true,
c7975edd 1607 false, false, NULL, this, &lex, false, NULL);
e5756efb
ILT
1608
1609 if (yyparse(&closure) != 0)
1610 return false;
1611
1612 gold_assert(!closure.saw_inputs());
1613
1614 return true;
1615}
1616
494e05f4
ILT
1617// Print the script to F for debugging.
1618
1619void
1620Script_options::print(FILE* f) const
1621{
1622 fprintf(f, "%s: Dumping linker script\n", program_name);
1623
1624 if (!this->entry_.empty())
1625 fprintf(f, "ENTRY(%s)\n", this->entry_.c_str());
1626
1627 for (Symbol_assignments::const_iterator p =
1628 this->symbol_assignments_.begin();
1629 p != this->symbol_assignments_.end();
1630 ++p)
1631 (*p)->print(f);
1632
1633 for (Assertions::const_iterator p = this->assertions_.begin();
1634 p != this->assertions_.end();
1635 ++p)
1636 (*p)->print(f);
1637
1638 this->script_sections_.print(f);
1639
1640 this->version_script_info_.print(f);
1641}
1642
dbe717ef 1643// Manage mapping from keywords to the codes expected by the bison
09124467
ILT
1644// parser. We construct one global object for each lex mode with
1645// keywords.
dbe717ef
ILT
1646
1647class Keyword_to_parsecode
1648{
1649 public:
1650 // The structure which maps keywords to parsecodes.
1651 struct Keyword_parsecode
1652 {
1653 // Keyword.
1654 const char* keyword;
1655 // Corresponding parsecode.
1656 int parsecode;
1657 };
1658
09124467
ILT
1659 Keyword_to_parsecode(const Keyword_parsecode* keywords,
1660 int keyword_count)
1661 : keyword_parsecodes_(keywords), keyword_count_(keyword_count)
1662 { }
1663
dbe717ef
ILT
1664 // Return the parsecode corresponding KEYWORD, or 0 if it is not a
1665 // keyword.
09124467
ILT
1666 int
1667 keyword_to_parsecode(const char* keyword, size_t len) const;
dbe717ef
ILT
1668
1669 private:
09124467
ILT
1670 const Keyword_parsecode* keyword_parsecodes_;
1671 const int keyword_count_;
dbe717ef
ILT
1672};
1673
1674// Mapping from keyword string to keyword parsecode. This array must
1675// be kept in sorted order. Parsecodes are looked up using bsearch.
1676// This array must correspond to the list of parsecodes in yyscript.y.
1677
09124467
ILT
1678static const Keyword_to_parsecode::Keyword_parsecode
1679script_keyword_parsecodes[] =
dbe717ef
ILT
1680{
1681 { "ABSOLUTE", ABSOLUTE },
1682 { "ADDR", ADDR },
1683 { "ALIGN", ALIGN_K },
e5756efb 1684 { "ALIGNOF", ALIGNOF },
dbe717ef
ILT
1685 { "ASSERT", ASSERT_K },
1686 { "AS_NEEDED", AS_NEEDED },
1687 { "AT", AT },
1688 { "BIND", BIND },
1689 { "BLOCK", BLOCK },
1690 { "BYTE", BYTE },
1691 { "CONSTANT", CONSTANT },
1692 { "CONSTRUCTORS", CONSTRUCTORS },
1e5d2fb1 1693 { "COPY", COPY },
dbe717ef
ILT
1694 { "CREATE_OBJECT_SYMBOLS", CREATE_OBJECT_SYMBOLS },
1695 { "DATA_SEGMENT_ALIGN", DATA_SEGMENT_ALIGN },
1696 { "DATA_SEGMENT_END", DATA_SEGMENT_END },
1697 { "DATA_SEGMENT_RELRO_END", DATA_SEGMENT_RELRO_END },
1698 { "DEFINED", DEFINED },
1e5d2fb1 1699 { "DSECT", DSECT },
dbe717ef
ILT
1700 { "ENTRY", ENTRY },
1701 { "EXCLUDE_FILE", EXCLUDE_FILE },
1702 { "EXTERN", EXTERN },
1703 { "FILL", FILL },
1704 { "FLOAT", FLOAT },
1705 { "FORCE_COMMON_ALLOCATION", FORCE_COMMON_ALLOCATION },
1706 { "GROUP", GROUP },
1707 { "HLL", HLL },
1708 { "INCLUDE", INCLUDE },
1e5d2fb1 1709 { "INFO", INFO },
dbe717ef
ILT
1710 { "INHIBIT_COMMON_ALLOCATION", INHIBIT_COMMON_ALLOCATION },
1711 { "INPUT", INPUT },
1712 { "KEEP", KEEP },
1713 { "LENGTH", LENGTH },
1714 { "LOADADDR", LOADADDR },
1715 { "LONG", LONG },
1716 { "MAP", MAP },
1717 { "MAX", MAX_K },
1718 { "MEMORY", MEMORY },
1719 { "MIN", MIN_K },
1720 { "NEXT", NEXT },
1721 { "NOCROSSREFS", NOCROSSREFS },
1722 { "NOFLOAT", NOFLOAT },
1e5d2fb1 1723 { "NOLOAD", NOLOAD },
dbe717ef
ILT
1724 { "ONLY_IF_RO", ONLY_IF_RO },
1725 { "ONLY_IF_RW", ONLY_IF_RW },
195e7dc6 1726 { "OPTION", OPTION },
dbe717ef
ILT
1727 { "ORIGIN", ORIGIN },
1728 { "OUTPUT", OUTPUT },
1729 { "OUTPUT_ARCH", OUTPUT_ARCH },
1730 { "OUTPUT_FORMAT", OUTPUT_FORMAT },
1731 { "OVERLAY", OVERLAY },
1732 { "PHDRS", PHDRS },
1733 { "PROVIDE", PROVIDE },
1734 { "PROVIDE_HIDDEN", PROVIDE_HIDDEN },
1735 { "QUAD", QUAD },
1736 { "SEARCH_DIR", SEARCH_DIR },
1737 { "SECTIONS", SECTIONS },
1738 { "SEGMENT_START", SEGMENT_START },
1739 { "SHORT", SHORT },
1740 { "SIZEOF", SIZEOF },
1741 { "SIZEOF_HEADERS", SIZEOF_HEADERS },
3802b2dd 1742 { "SORT", SORT_BY_NAME },
dbe717ef
ILT
1743 { "SORT_BY_ALIGNMENT", SORT_BY_ALIGNMENT },
1744 { "SORT_BY_NAME", SORT_BY_NAME },
1745 { "SPECIAL", SPECIAL },
1746 { "SQUAD", SQUAD },
1747 { "STARTUP", STARTUP },
1748 { "SUBALIGN", SUBALIGN },
1749 { "SYSLIB", SYSLIB },
1750 { "TARGET", TARGET_K },
1751 { "TRUNCATE", TRUNCATE },
1752 { "VERSION", VERSIONK },
1753 { "global", GLOBAL },
1754 { "l", LENGTH },
1755 { "len", LENGTH },
1756 { "local", LOCAL },
1757 { "o", ORIGIN },
1758 { "org", ORIGIN },
1759 { "sizeof_headers", SIZEOF_HEADERS },
1760};
1761
09124467
ILT
1762static const Keyword_to_parsecode
1763script_keywords(&script_keyword_parsecodes[0],
1764 (sizeof(script_keyword_parsecodes)
1765 / sizeof(script_keyword_parsecodes[0])));
1766
1767static const Keyword_to_parsecode::Keyword_parsecode
1768version_script_keyword_parsecodes[] =
1769{
1770 { "extern", EXTERN },
1771 { "global", GLOBAL },
1772 { "local", LOCAL },
1773};
1774
1775static const Keyword_to_parsecode
1776version_script_keywords(&version_script_keyword_parsecodes[0],
1777 (sizeof(version_script_keyword_parsecodes)
1778 / sizeof(version_script_keyword_parsecodes[0])));
dbe717ef 1779
c82fbeee
CS
1780static const Keyword_to_parsecode::Keyword_parsecode
1781dynamic_list_keyword_parsecodes[] =
1782{
1783 { "extern", EXTERN },
1784};
1785
1786static const Keyword_to_parsecode
1787dynamic_list_keywords(&dynamic_list_keyword_parsecodes[0],
1788 (sizeof(dynamic_list_keyword_parsecodes)
1789 / sizeof(dynamic_list_keyword_parsecodes[0])));
1790
1791
1792
dbe717ef
ILT
1793// Comparison function passed to bsearch.
1794
1795extern "C"
1796{
1797
e5756efb
ILT
1798struct Ktt_key
1799{
1800 const char* str;
1801 size_t len;
1802};
1803
dbe717ef
ILT
1804static int
1805ktt_compare(const void* keyv, const void* kttv)
1806{
e5756efb 1807 const Ktt_key* key = static_cast<const Ktt_key*>(keyv);
dbe717ef
ILT
1808 const Keyword_to_parsecode::Keyword_parsecode* ktt =
1809 static_cast<const Keyword_to_parsecode::Keyword_parsecode*>(kttv);
e5756efb
ILT
1810 int i = strncmp(key->str, ktt->keyword, key->len);
1811 if (i != 0)
1812 return i;
1813 if (ktt->keyword[key->len] != '\0')
1814 return -1;
1815 return 0;
dbe717ef
ILT
1816}
1817
1818} // End extern "C".
1819
1820int
09124467
ILT
1821Keyword_to_parsecode::keyword_to_parsecode(const char* keyword,
1822 size_t len) const
dbe717ef 1823{
e5756efb
ILT
1824 Ktt_key key;
1825 key.str = keyword;
1826 key.len = len;
1827 void* kttv = bsearch(&key,
09124467
ILT
1828 this->keyword_parsecodes_,
1829 this->keyword_count_,
1830 sizeof(this->keyword_parsecodes_[0]),
1831 ktt_compare);
dbe717ef
ILT
1832 if (kttv == NULL)
1833 return 0;
1834 Keyword_parsecode* ktt = static_cast<Keyword_parsecode*>(kttv);
1835 return ktt->parsecode;
1836}
1837
494e05f4
ILT
1838// The following structs are used within the VersionInfo class as well
1839// as in the bison helper functions. They store the information
1840// parsed from the version script.
dbe717ef 1841
494e05f4
ILT
1842// A single version expression.
1843// For example, pattern="std::map*" and language="C++".
62dfdd4d 1844struct Version_expression
6affe781
ILT
1845{
1846 Version_expression(const std::string& a_pattern,
1847 Version_script_info::Language a_language,
1848 bool a_exact_match)
62dfdd4d
ILT
1849 : pattern(a_pattern), language(a_language), exact_match(a_exact_match),
1850 was_matched_by_symbol(false)
6affe781 1851 { }
dbe717ef 1852
494e05f4 1853 std::string pattern;
6affe781 1854 Version_script_info::Language language;
494e05f4
ILT
1855 // If false, we use glob() to match pattern. If true, we use strcmp().
1856 bool exact_match;
62dfdd4d
ILT
1857 // True if --no-undefined-version is in effect and we found this
1858 // version in get_symbol_version. We use mutable because this
1859 // struct is generally not modifiable after it has been created.
1860 mutable bool was_matched_by_symbol;
494e05f4 1861};
dbe717ef 1862
494e05f4 1863// A list of expressions.
6affe781
ILT
1864struct Version_expression_list
1865{
494e05f4
ILT
1866 std::vector<struct Version_expression> expressions;
1867};
e5756efb 1868
494e05f4
ILT
1869// A list of which versions upon which another version depends.
1870// Strings should be from the Stringpool.
6affe781
ILT
1871struct Version_dependency_list
1872{
494e05f4
ILT
1873 std::vector<std::string> dependencies;
1874};
dbe717ef 1875
494e05f4
ILT
1876// The total definition of a version. It includes the tag for the
1877// version, its global and local expressions, and any dependencies.
6affe781
ILT
1878struct Version_tree
1879{
494e05f4 1880 Version_tree()
6affe781
ILT
1881 : tag(), global(NULL), local(NULL), dependencies(NULL)
1882 { }
e5756efb 1883
494e05f4
ILT
1884 std::string tag;
1885 const struct Version_expression_list* global;
1886 const struct Version_expression_list* local;
1887 const struct Version_dependency_list* dependencies;
1888};
dbe717ef 1889
98e090bd
ILT
1890// Helper class that calls cplus_demangle when needed and takes care of freeing
1891// the result.
1892
1893class Lazy_demangler
1894{
1895 public:
1896 Lazy_demangler(const char* symbol, int options)
1897 : symbol_(symbol), options_(options), demangled_(NULL), did_demangle_(false)
1898 { }
1899
1900 ~Lazy_demangler()
1901 { free(this->demangled_); }
1902
1903 // Return the demangled name. The actual demangling happens on the first call,
1904 // and the result is later cached.
1905 inline char*
1906 get();
1907
1908 private:
1909 // The symbol to demangle.
ca09d69a 1910 const char* symbol_;
98e090bd
ILT
1911 // Option flags to pass to cplus_demagle.
1912 const int options_;
1913 // The cached demangled value, or NULL if demangling didn't happen yet or
1914 // failed.
ca09d69a 1915 char* demangled_;
98e090bd
ILT
1916 // Whether we already called cplus_demangle
1917 bool did_demangle_;
1918};
1919
1920// Return the demangled name. The actual demangling happens on the first call,
1921// and the result is later cached. Returns NULL if the symbol cannot be
1922// demangled.
1923
1924inline char*
1925Lazy_demangler::get()
1926{
1927 if (!this->did_demangle_)
1928 {
1929 this->demangled_ = cplus_demangle(this->symbol_, this->options_);
1930 this->did_demangle_ = true;
1931 }
1932 return this->demangled_;
1933}
1934
6affe781
ILT
1935// Class Version_script_info.
1936
1937Version_script_info::Version_script_info()
98e090bd
ILT
1938 : dependency_lists_(), expression_lists_(), version_trees_(), globs_(),
1939 default_version_(NULL), default_is_global_(false), is_finalized_(false)
6affe781
ILT
1940{
1941 for (int i = 0; i < LANGUAGE_COUNT; ++i)
98e090bd 1942 this->exact_[i] = NULL;
6affe781
ILT
1943}
1944
494e05f4 1945Version_script_info::~Version_script_info()
1ef1f3d3 1946{
1ef1f3d3
ILT
1947}
1948
6affe781
ILT
1949// Forget all the known version script information.
1950
1ef1f3d3
ILT
1951void
1952Version_script_info::clear()
494e05f4 1953{
6affe781
ILT
1954 for (size_t k = 0; k < this->dependency_lists_.size(); ++k)
1955 delete this->dependency_lists_[k];
1ef1f3d3 1956 this->dependency_lists_.clear();
6affe781
ILT
1957 for (size_t k = 0; k < this->version_trees_.size(); ++k)
1958 delete this->version_trees_[k];
1ef1f3d3 1959 this->version_trees_.clear();
6affe781
ILT
1960 for (size_t k = 0; k < this->expression_lists_.size(); ++k)
1961 delete this->expression_lists_[k];
1ef1f3d3 1962 this->expression_lists_.clear();
dbe717ef
ILT
1963}
1964
6affe781
ILT
1965// Finalize the version script information.
1966
1967void
1968Version_script_info::finalize()
1969{
1970 if (!this->is_finalized_)
1971 {
1972 this->build_lookup_tables();
1973 this->is_finalized_ = true;
1974 }
1975}
1976
1977// Return all the versions.
1978
494e05f4
ILT
1979std::vector<std::string>
1980Version_script_info::get_versions() const
dbe717ef 1981{
494e05f4 1982 std::vector<std::string> ret;
6affe781 1983 for (size_t j = 0; j < this->version_trees_.size(); ++j)
057ead22
ILT
1984 if (!this->version_trees_[j]->tag.empty())
1985 ret.push_back(this->version_trees_[j]->tag);
494e05f4 1986 return ret;
dbe717ef
ILT
1987}
1988
6affe781
ILT
1989// Return the dependencies of VERSION.
1990
494e05f4
ILT
1991std::vector<std::string>
1992Version_script_info::get_dependencies(const char* version) const
dbe717ef 1993{
494e05f4 1994 std::vector<std::string> ret;
6affe781
ILT
1995 for (size_t j = 0; j < this->version_trees_.size(); ++j)
1996 if (this->version_trees_[j]->tag == version)
494e05f4
ILT
1997 {
1998 const struct Version_dependency_list* deps =
6affe781 1999 this->version_trees_[j]->dependencies;
494e05f4
ILT
2000 if (deps != NULL)
2001 for (size_t k = 0; k < deps->dependencies.size(); ++k)
2002 ret.push_back(deps->dependencies[k]);
2003 return ret;
2004 }
2005 return ret;
2006}
2007
98e090bd
ILT
2008// A version script essentially maps a symbol name to a version tag
2009// and an indication of whether symbol is global or local within that
2010// version tag. Each symbol maps to at most one version tag.
2011// Unfortunately, in practice, version scripts are ambiguous, and list
2012// symbols multiple times. Thus, we have to document the matching
2013// process.
2014
2015// This is a description of what the GNU linker does as of 2010-01-11.
2016// It walks through the version tags in the order in which they appear
2017// in the version script. For each tag, it first walks through the
2018// global patterns for that tag, then the local patterns. When
2019// looking at a single pattern, it first applies any language specific
2020// demangling as specified for the pattern, and then matches the
2021// resulting symbol name to the pattern. If it finds an exact match
2022// for a literal pattern (a pattern enclosed in quotes or with no
2023// wildcard characters), then that is the match that it uses. If
2024// finds a match with a wildcard pattern, then it saves it and
2025// continues searching. Wildcard patterns that are exactly "*" are
2026// saved separately.
2027
2028// If no exact match with a literal pattern is ever found, then if a
2029// wildcard match with a global pattern was found it is used,
2030// otherwise if a wildcard match with a local pattern was found it is
2031// used.
2032
2033// This is the result:
2034// * If there is an exact match, then we use the first tag in the
2035// version script where it matches.
2036// + If the exact match in that tag is global, it is used.
2037// + Otherwise the exact match in that tag is local, and is used.
2038// * Otherwise, if there is any match with a global wildcard pattern:
2039// + If there is any match with a wildcard pattern which is not
2040// "*", then we use the tag in which the *last* such pattern
2041// appears.
2042// + Otherwise, we matched "*". If there is no match with a local
2043// wildcard pattern which is not "*", then we use the *last*
2044// match with a global "*". Otherwise, continue.
2045// * Otherwise, if there is any match with a local wildcard pattern:
2046// + If there is any match with a wildcard pattern which is not
2047// "*", then we use the tag in which the *last* such pattern
2048// appears.
2049// + Otherwise, we matched "*", and we use the tag in which the
2050// *last* such match occurred.
2051
2052// There is an additional wrinkle. When the GNU linker finds a symbol
2053// with a version defined in an object file due to a .symver
2054// directive, it looks up that symbol name in that version tag. If it
2055// finds it, it matches the symbol name against the patterns for that
2056// version. If there is no match with a global pattern, but there is
2057// a match with a local pattern, then the GNU linker marks the symbol
2058// as local.
2059
2060// We want gold to be generally compatible, but we also want gold to
2061// be fast. These are the rules that gold implements:
2062// * If there is an exact match for the mangled name, we use it.
2063// + If there is more than one exact match, we give a warning, and
2064// we use the first tag in the script which matches.
2065// + If a symbol has an exact match as both global and local for
2066// the same version tag, we give an error.
2067// * Otherwise, we look for an extern C++ or an extern Java exact
2068// match. If we find an exact match, we use it.
2069// + If there is more than one exact match, we give a warning, and
2070// we use the first tag in the script which matches.
2071// + If a symbol has an exact match as both global and local for
2072// the same version tag, we give an error.
2073// * Otherwise, we look through the wildcard patterns, ignoring "*"
2074// patterns. We look through the version tags in reverse order.
2075// For each version tag, we look through the global patterns and
2076// then the local patterns. We use the first match we find (i.e.,
2077// the last matching version tag in the file).
2078// * Otherwise, we use the "*" pattern if there is one. We give an
2079// error if there are multiple "*" patterns.
2080
2081// At least for now, gold does not look up the version tag for a
2082// symbol version found in an object file to see if it should be
2083// forced local. There are other ways to force a symbol to be local,
2084// and I don't understand why this one is useful.
2085
6affe781
ILT
2086// Build a set of fast lookup tables for a version script.
2087
2088void
2089Version_script_info::build_lookup_tables()
2090{
2091 size_t size = this->version_trees_.size();
2092 for (size_t j = 0; j < size; ++j)
2093 {
2094 const Version_tree* v = this->version_trees_[j];
98e090bd
ILT
2095 this->build_expression_list_lookup(v->local, v, false);
2096 this->build_expression_list_lookup(v->global, v, true);
2097 }
2098}
2099
2100// If a pattern has backlashes but no unquoted wildcard characters,
2101// then we apply backslash unquoting and look for an exact match.
2102// Otherwise we treat it as a wildcard pattern. This function returns
2103// true for a wildcard pattern. Otherwise, it does backslash
2104// unquoting on *PATTERN and returns false. If this returns true,
2105// *PATTERN may have been partially unquoted.
2106
2107bool
2108Version_script_info::unquote(std::string* pattern) const
2109{
2110 bool saw_backslash = false;
2111 size_t len = pattern->length();
2112 size_t j = 0;
2113 for (size_t i = 0; i < len; ++i)
2114 {
2115 if (saw_backslash)
2116 saw_backslash = false;
2117 else
2118 {
2119 switch ((*pattern)[i])
2120 {
2121 case '?': case '[': case '*':
2122 return true;
2123 case '\\':
2124 saw_backslash = true;
2125 continue;
2126 default:
2127 break;
2128 }
2129 }
2130
2131 if (i != j)
2132 (*pattern)[j] = (*pattern)[i];
2133 ++j;
2134 }
2135 return false;
2136}
2137
2138// Add an exact match for MATCH to *PE. The result of the match is
2139// V/IS_GLOBAL.
2140
2141void
2142Version_script_info::add_exact_match(const std::string& match,
2143 const Version_tree* v, bool is_global,
2144 const Version_expression* ve,
ca09d69a 2145 Exact* pe)
98e090bd
ILT
2146{
2147 std::pair<Exact::iterator, bool> ins =
2148 pe->insert(std::make_pair(match, Version_tree_match(v, is_global, ve)));
2149 if (ins.second)
2150 {
2151 // This is the first time we have seen this match.
2152 return;
2153 }
2154
2155 Version_tree_match& vtm(ins.first->second);
2156 if (vtm.real->tag != v->tag)
2157 {
2158 // This is an ambiguous match. We still return the
2159 // first version that we found in the script, but we
2160 // record the new version to issue a warning if we
2161 // wind up looking up this symbol.
2162 if (vtm.ambiguous == NULL)
2163 vtm.ambiguous = v;
2164 }
2165 else if (is_global != vtm.is_global)
2166 {
2167 // We have a match for both the global and local entries for a
2168 // version tag. That's got to be wrong.
2169 gold_error(_("'%s' appears as both a global and a local symbol "
2170 "for version '%s' in script"),
2171 match.c_str(), v->tag.c_str());
6affe781
ILT
2172 }
2173}
2174
2175// Build fast lookup information for EXPLIST and store it in LOOKUP.
98e090bd
ILT
2176// All matches go to V, and IS_GLOBAL is true if they are global
2177// matches.
6affe781
ILT
2178
2179void
2180Version_script_info::build_expression_list_lookup(
2181 const Version_expression_list* explist,
2182 const Version_tree* v,
98e090bd 2183 bool is_global)
6affe781
ILT
2184{
2185 if (explist == NULL)
2186 return;
2187 size_t size = explist->expressions.size();
98e090bd 2188 for (size_t i = 0; i < size; ++i)
6affe781 2189 {
98e090bd
ILT
2190 const Version_expression& exp(explist->expressions[i]);
2191
2192 if (exp.pattern.length() == 1 && exp.pattern[0] == '*')
6affe781 2193 {
98e090bd
ILT
2194 if (this->default_version_ != NULL
2195 && this->default_version_->tag != v->tag)
d0a91bd8
ILT
2196 gold_warning(_("wildcard match appears in both version '%s' "
2197 "and '%s' in script"),
2198 this->default_version_->tag.c_str(), v->tag.c_str());
98e090bd
ILT
2199 else if (this->default_version_ != NULL
2200 && this->default_is_global_ != is_global)
2201 gold_error(_("wildcard match appears as both global and local "
2202 "in version '%s' in script"),
2203 v->tag.c_str());
2204 this->default_version_ = v;
2205 this->default_is_global_ = is_global;
2206 continue;
2207 }
2208
2209 std::string pattern = exp.pattern;
2210 if (!exp.exact_match)
2211 {
2212 if (this->unquote(&pattern))
6affe781 2213 {
98e090bd
ILT
2214 this->globs_.push_back(Glob(&exp, v, is_global));
2215 continue;
6affe781
ILT
2216 }
2217 }
98e090bd
ILT
2218
2219 if (this->exact_[exp.language] == NULL)
2220 this->exact_[exp.language] = new Exact();
2221 this->add_exact_match(pattern, v, is_global, &exp,
2222 this->exact_[exp.language]);
6affe781
ILT
2223 }
2224}
2225
98e090bd
ILT
2226// Return the name to match given a name, a language code, and two
2227// lazy demanglers.
62dfdd4d 2228
98e090bd
ILT
2229const char*
2230Version_script_info::get_name_to_match(const char* name,
2231 int language,
2232 Lazy_demangler* cpp_demangler,
2233 Lazy_demangler* java_demangler) const
62dfdd4d 2234{
98e090bd 2235 switch (language)
62dfdd4d 2236 {
98e090bd
ILT
2237 case LANGUAGE_C:
2238 return name;
2239 case LANGUAGE_CXX:
2240 return cpp_demangler->get();
2241 case LANGUAGE_JAVA:
2242 return java_demangler->get();
2243 default:
2244 gold_unreachable();
62dfdd4d 2245 }
62dfdd4d
ILT
2246}
2247
98e090bd
ILT
2248// Look up SYMBOL_NAME in the list of versions. Return true if the
2249// symbol is found, false if not. If the symbol is found, then if
2250// PVERSION is not NULL, set *PVERSION to the version tag, and if
2251// P_IS_GLOBAL is not NULL, set *P_IS_GLOBAL according to whether the
2252// symbol is global or not.
057ead22
ILT
2253
2254bool
98e090bd
ILT
2255Version_script_info::get_symbol_version(const char* symbol_name,
2256 std::string* pversion,
2257 bool* p_is_global) const
494e05f4 2258{
98e090bd
ILT
2259 Lazy_demangler cpp_demangled_name(symbol_name, DMGL_ANSI | DMGL_PARAMS);
2260 Lazy_demangler java_demangled_name(symbol_name,
2261 DMGL_ANSI | DMGL_PARAMS | DMGL_JAVA);
2262
6affe781 2263 gold_assert(this->is_finalized_);
6affe781 2264 for (int i = 0; i < LANGUAGE_COUNT; ++i)
494e05f4 2265 {
98e090bd
ILT
2266 Exact* exact = this->exact_[i];
2267 if (exact == NULL)
6affe781
ILT
2268 continue;
2269
98e090bd
ILT
2270 const char* name_to_match = this->get_name_to_match(symbol_name, i,
2271 &cpp_demangled_name,
2272 &java_demangled_name);
2273 if (name_to_match == NULL)
6affe781 2274 {
98e090bd
ILT
2275 // If the name can not be demangled, the GNU linker goes
2276 // ahead and tries to match it anyhow. That does not
2277 // make sense to me and I have not implemented it.
2278 continue;
6affe781
ILT
2279 }
2280
98e090bd
ILT
2281 Exact::const_iterator pe = exact->find(name_to_match);
2282 if (pe != exact->end())
6affe781 2283 {
98e090bd
ILT
2284 const Version_tree_match& vtm(pe->second);
2285 if (vtm.ambiguous != NULL)
2286 gold_warning(_("using '%s' as version for '%s' which is also "
2287 "named in version '%s' in script"),
2288 vtm.real->tag.c_str(), name_to_match,
2289 vtm.ambiguous->tag.c_str());
2290
6affe781 2291 if (pversion != NULL)
98e090bd
ILT
2292 *pversion = vtm.real->tag;
2293 if (p_is_global != NULL)
2294 *p_is_global = vtm.is_global;
62dfdd4d
ILT
2295
2296 // If we are using --no-undefined-version, and this is a
2297 // global symbol, we have to record that we have found this
2298 // symbol, so that we don't warn about it. We have to do
2299 // this now, because otherwise we have no way to get from a
2300 // non-C language back to the demangled name that we
2301 // matched.
98e090bd
ILT
2302 if (p_is_global != NULL && vtm.is_global)
2303 vtm.expression->was_matched_by_symbol = true;
62dfdd4d 2304
6affe781
ILT
2305 return true;
2306 }
98e090bd
ILT
2307 }
2308
2309 // Look through the glob patterns in reverse order.
6affe781 2310
98e090bd
ILT
2311 for (Globs::const_reverse_iterator p = this->globs_.rbegin();
2312 p != this->globs_.rend();
2313 ++p)
2314 {
2315 int language = p->expression->language;
2316 const char* name_to_match = this->get_name_to_match(symbol_name,
2317 language,
2318 &cpp_demangled_name,
2319 &java_demangled_name);
2320 if (name_to_match == NULL)
2321 continue;
2322
2323 if (fnmatch(p->expression->pattern.c_str(), name_to_match,
2324 FNM_NOESCAPE) == 0)
6affe781 2325 {
98e090bd
ILT
2326 if (pversion != NULL)
2327 *pversion = p->version->tag;
2328 if (p_is_global != NULL)
2329 *p_is_global = p->is_global;
2330 return true;
6affe781 2331 }
98e090bd 2332 }
6affe781 2333
98e090bd
ILT
2334 // Finally, there may be a wildcard.
2335 if (this->default_version_ != NULL)
2336 {
2337 if (pversion != NULL)
2338 *pversion = this->default_version_->tag;
2339 if (p_is_global != NULL)
2340 *p_is_global = this->default_is_global_;
2341 return true;
494e05f4 2342 }
6affe781 2343
057ead22 2344 return false;
494e05f4
ILT
2345}
2346
62dfdd4d
ILT
2347// Give an error if any exact symbol names (not wildcards) appear in a
2348// version script, but there is no such symbol.
2349
2350void
2351Version_script_info::check_unmatched_names(const Symbol_table* symtab) const
2352{
2353 for (size_t i = 0; i < this->version_trees_.size(); ++i)
2354 {
2355 const Version_tree* vt = this->version_trees_[i];
2356 if (vt->global == NULL)
2357 continue;
2358 for (size_t j = 0; j < vt->global->expressions.size(); ++j)
2359 {
2360 const Version_expression& expression(vt->global->expressions[j]);
2361
2362 // Ignore cases where we used the version because we saw a
2363 // symbol that we looked up. Note that
2364 // WAS_MATCHED_BY_SYMBOL will be true even if the symbol was
2365 // not a definition. That's OK as in that case we most
2366 // likely gave an undefined symbol error anyhow.
2367 if (expression.was_matched_by_symbol)
2368 continue;
2369
2370 // Just ignore names which are in languages other than C.
2371 // We have no way to look them up in the symbol table.
2372 if (expression.language != LANGUAGE_C)
2373 continue;
2374
98e090bd
ILT
2375 // Remove backslash quoting, and ignore wildcard patterns.
2376 std::string pattern = expression.pattern;
2377 if (!expression.exact_match)
62dfdd4d 2378 {
98e090bd
ILT
2379 if (this->unquote(&pattern))
2380 continue;
62dfdd4d 2381 }
98e090bd
ILT
2382
2383 if (symtab->lookup(pattern.c_str(), vt->tag.c_str()) == NULL)
2384 gold_error(_("version script assignment of %s to symbol %s "
2385 "failed: symbol not defined"),
2386 vt->tag.c_str(), pattern.c_str());
62dfdd4d
ILT
2387 }
2388 }
2389}
2390
494e05f4
ILT
2391struct Version_dependency_list*
2392Version_script_info::allocate_dependency_list()
2393{
2394 dependency_lists_.push_back(new Version_dependency_list);
2395 return dependency_lists_.back();
2396}
2397
2398struct Version_expression_list*
2399Version_script_info::allocate_expression_list()
2400{
2401 expression_lists_.push_back(new Version_expression_list);
2402 return expression_lists_.back();
2403}
2404
2405struct Version_tree*
2406Version_script_info::allocate_version_tree()
2407{
2408 version_trees_.push_back(new Version_tree);
2409 return version_trees_.back();
2410}
2411
2412// Print for debugging.
2413
2414void
2415Version_script_info::print(FILE* f) const
2416{
2417 if (this->empty())
2418 return;
2419
2420 fprintf(f, "VERSION {");
2421
2422 for (size_t i = 0; i < this->version_trees_.size(); ++i)
2423 {
2424 const Version_tree* vt = this->version_trees_[i];
2425
2426 if (vt->tag.empty())
2427 fprintf(f, " {\n");
2428 else
2429 fprintf(f, " %s {\n", vt->tag.c_str());
2430
2431 if (vt->global != NULL)
2432 {
2433 fprintf(f, " global :\n");
2434 this->print_expression_list(f, vt->global);
2435 }
2436
2437 if (vt->local != NULL)
2438 {
2439 fprintf(f, " local :\n");
2440 this->print_expression_list(f, vt->local);
2441 }
2442
2443 fprintf(f, " }");
2444 if (vt->dependencies != NULL)
2445 {
2446 const Version_dependency_list* deps = vt->dependencies;
2447 for (size_t j = 0; j < deps->dependencies.size(); ++j)
2448 {
2449 if (j < deps->dependencies.size() - 1)
2450 fprintf(f, "\n");
2451 fprintf(f, " %s", deps->dependencies[j].c_str());
2452 }
2453 }
2454 fprintf(f, ";\n");
2455 }
2456
2457 fprintf(f, "}\n");
2458}
2459
2460void
2461Version_script_info::print_expression_list(
2462 FILE* f,
2463 const Version_expression_list* vel) const
2464{
6affe781 2465 Version_script_info::Language current_language = LANGUAGE_C;
494e05f4
ILT
2466 for (size_t i = 0; i < vel->expressions.size(); ++i)
2467 {
2468 const Version_expression& ve(vel->expressions[i]);
2469
2470 if (ve.language != current_language)
2471 {
6affe781 2472 if (current_language != LANGUAGE_C)
494e05f4 2473 fprintf(f, " }\n");
6affe781
ILT
2474 switch (ve.language)
2475 {
2476 case LANGUAGE_C:
2477 break;
2478 case LANGUAGE_CXX:
2479 fprintf(f, " extern \"C++\" {\n");
2480 break;
2481 case LANGUAGE_JAVA:
2482 fprintf(f, " extern \"Java\" {\n");
2483 break;
2484 default:
2485 gold_unreachable();
2486 }
494e05f4
ILT
2487 current_language = ve.language;
2488 }
2489
2490 fprintf(f, " ");
6affe781 2491 if (current_language != LANGUAGE_C)
494e05f4
ILT
2492 fprintf(f, " ");
2493
2494 if (ve.exact_match)
2495 fprintf(f, "\"");
2496 fprintf(f, "%s", ve.pattern.c_str());
2497 if (ve.exact_match)
2498 fprintf(f, "\"");
2499
2500 fprintf(f, "\n");
2501 }
2502
6affe781 2503 if (current_language != LANGUAGE_C)
494e05f4
ILT
2504 fprintf(f, " }\n");
2505}
2506
2507} // End namespace gold.
2508
2509// The remaining functions are extern "C", so it's clearer to not put
2510// them in namespace gold.
2511
2512using namespace gold;
2513
2514// This function is called by the bison parser to return the next
2515// token.
2516
2517extern "C" int
2518yylex(YYSTYPE* lvalp, void* closurev)
2519{
2520 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2521 const Token* token = closure->next_token();
2522 switch (token->classification())
2523 {
2524 default:
2525 gold_unreachable();
2526
2527 case Token::TOKEN_INVALID:
2528 yyerror(closurev, "invalid character");
2529 return 0;
2530
2531 case Token::TOKEN_EOF:
2532 return 0;
2533
2534 case Token::TOKEN_STRING:
2535 {
2536 // This is either a keyword or a STRING.
2537 size_t len;
2538 const char* str = token->string_value(&len);
2539 int parsecode = 0;
2540 switch (closure->lex_mode())
2541 {
2542 case Lex::LINKER_SCRIPT:
2543 parsecode = script_keywords.keyword_to_parsecode(str, len);
2544 break;
2545 case Lex::VERSION_SCRIPT:
2546 parsecode = version_script_keywords.keyword_to_parsecode(str, len);
2547 break;
c82fbeee
CS
2548 case Lex::DYNAMIC_LIST:
2549 parsecode = dynamic_list_keywords.keyword_to_parsecode(str, len);
2550 break;
494e05f4
ILT
2551 default:
2552 break;
2553 }
2554 if (parsecode != 0)
2555 return parsecode;
2556 lvalp->string.value = str;
2557 lvalp->string.length = len;
2558 return STRING;
2559 }
2560
2561 case Token::TOKEN_QUOTED_STRING:
2562 lvalp->string.value = token->string_value(&lvalp->string.length);
2563 return QUOTED_STRING;
2564
2565 case Token::TOKEN_OPERATOR:
2566 return token->operator_value();
2567
2568 case Token::TOKEN_INTEGER:
2569 lvalp->integer = token->integer_value();
2570 return INTEGER;
2571 }
2572}
2573
2574// This function is called by the bison parser to report an error.
2575
2576extern "C" void
2577yyerror(void* closurev, const char* message)
2578{
2579 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2580 gold_error(_("%s:%d:%d: %s"), closure->filename(), closure->lineno(),
2581 closure->charpos(), message);
2582}
2583
afc06bb8
ILT
2584// Called by the bison parser to add an external symbol to the link.
2585
2586extern "C" void
2587script_add_extern(void* closurev, const char* name, size_t length)
2588{
d433c3ac
ILT
2589 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2590 closure->script_options()->add_symbol_reference(name, length);
afc06bb8
ILT
2591}
2592
494e05f4
ILT
2593// Called by the bison parser to add a file to the link.
2594
2595extern "C" void
2596script_add_file(void* closurev, const char* name, size_t length)
2597{
2598 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2599
2600 // If this is an absolute path, and we found the script in the
2601 // sysroot, then we want to prepend the sysroot to the file name.
2602 // For example, this is how we handle a cross link to the x86_64
2603 // libc.so, which refers to /lib/libc.so.6.
2604 std::string name_string(name, length);
2605 const char* extra_search_path = ".";
2606 std::string script_directory;
2607 if (IS_ABSOLUTE_PATH(name_string.c_str()))
2608 {
2609 if (closure->is_in_sysroot())
2610 {
8851ecca 2611 const std::string& sysroot(parameters->options().sysroot());
494e05f4
ILT
2612 gold_assert(!sysroot.empty());
2613 name_string = sysroot + name_string;
2614 }
2615 }
2616 else
2617 {
2618 // In addition to checking the normal library search path, we
2619 // also want to check in the script-directory.
ca09d69a 2620 const char* slash = strrchr(closure->filename(), '/');
494e05f4
ILT
2621 if (slash != NULL)
2622 {
2623 script_directory.assign(closure->filename(),
2624 slash - closure->filename() + 1);
2625 extra_search_path = script_directory.c_str();
2626 }
2627 }
2628
ae3b5189
CD
2629 Input_file_argument file(name_string.c_str(),
2630 Input_file_argument::INPUT_FILE_TYPE_FILE,
2631 extra_search_path, false,
2632 closure->position_dependent_options());
c7975edd
CC
2633 Input_argument& arg = closure->inputs()->add_file(file);
2634 arg.set_script_info(closure->script_info());
dbe717ef
ILT
2635}
2636
e1df38aa
NC
2637// Called by the bison parser to add a library to the link.
2638
2639extern "C" void
2640script_add_library(void* closurev, const char* name, size_t length)
2641{
2642 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2643 std::string name_string(name, length);
2644
2645 if (name_string[0] != 'l')
2646 gold_error(_("library name must be prefixed with -l"));
2647
2648 Input_file_argument file(name_string.c_str() + 1,
2649 Input_file_argument::INPUT_FILE_TYPE_LIBRARY,
2650 "", false,
2651 closure->position_dependent_options());
c7975edd
CC
2652 Input_argument& arg = closure->inputs()->add_file(file);
2653 arg.set_script_info(closure->script_info());
e1df38aa
NC
2654}
2655
dbe717ef
ILT
2656// Called by the bison parser to start a group. If we are already in
2657// a group, that means that this script was invoked within a
2658// --start-group --end-group sequence on the command line, or that
2659// this script was found in a GROUP of another script. In that case,
2660// we simply continue the existing group, rather than starting a new
2661// one. It is possible to construct a case in which this will do
2662// something other than what would happen if we did a recursive group,
2663// but it's hard to imagine why the different behaviour would be
2664// useful for a real program. Avoiding recursive groups is simpler
2665// and more efficient.
2666
2667extern "C" void
2668script_start_group(void* closurev)
2669{
2670 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2671 if (!closure->in_group())
2672 closure->inputs()->start_group();
2673}
2674
2675// Called by the bison parser at the end of a group.
2676
2677extern "C" void
2678script_end_group(void* closurev)
2679{
2680 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2681 if (!closure->in_group())
2682 closure->inputs()->end_group();
2683}
2684
2685// Called by the bison parser to start an AS_NEEDED list.
2686
2687extern "C" void
2688script_start_as_needed(void* closurev)
2689{
2690 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
45aa233b 2691 closure->position_dependent_options().set_as_needed(true);
dbe717ef
ILT
2692}
2693
2694// Called by the bison parser at the end of an AS_NEEDED list.
2695
2696extern "C" void
2697script_end_as_needed(void* closurev)
2698{
2699 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
45aa233b 2700 closure->position_dependent_options().set_as_needed(false);
dbe717ef 2701}
195e7dc6 2702
d391083d
ILT
2703// Called by the bison parser to set the entry symbol.
2704
2705extern "C" void
e5756efb 2706script_set_entry(void* closurev, const char* entry, size_t length)
d391083d 2707{
a5dc0706
ILT
2708 // We'll parse this exactly the same as --entry=ENTRY on the commandline
2709 // TODO(csilvers): FIXME -- call set_entry directly.
1890b465 2710 std::string arg("--entry=");
a5dc0706
ILT
2711 arg.append(entry, length);
2712 script_parse_option(closurev, arg.c_str(), arg.size());
e5756efb
ILT
2713}
2714
0dfbdef4
ILT
2715// Called by the bison parser to set whether to define common symbols.
2716
2717extern "C" void
2718script_set_common_allocation(void* closurev, int set)
2719{
2720 const char* arg = set != 0 ? "--define-common" : "--no-define-common";
2721 script_parse_option(closurev, arg, strlen(arg));
2722}
2723
88a4108b
ILT
2724// Called by the bison parser to refer to a symbol.
2725
2726extern "C" Expression*
ca09d69a 2727script_symbol(void* closurev, const char* name, size_t length)
88a4108b
ILT
2728{
2729 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2730 if (length != 1 || name[0] != '.')
2731 closure->script_options()->add_symbol_reference(name, length);
2732 return script_exp_string(name, length);
2733}
2734
e5756efb
ILT
2735// Called by the bison parser to define a symbol.
2736
2737extern "C" void
2738script_set_symbol(void* closurev, const char* name, size_t length,
2739 Expression* value, int providei, int hiddeni)
2740{
2741 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2742 const bool provide = providei != 0;
2743 const bool hidden = hiddeni != 0;
99fff23b
ILT
2744 closure->script_options()->add_symbol_assignment(name, length,
2745 closure->parsing_defsym(),
2746 value, provide, hidden);
15f8229b 2747 closure->clear_skip_on_incompatible_target();
d391083d
ILT
2748}
2749
494e05f4
ILT
2750// Called by the bison parser to add an assertion.
2751
2752extern "C" void
2753script_add_assertion(void* closurev, Expression* check, const char* message,
2754 size_t messagelen)
2755{
2756 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2757 closure->script_options()->add_assertion(check, message, messagelen);
15f8229b 2758 closure->clear_skip_on_incompatible_target();
494e05f4
ILT
2759}
2760
195e7dc6
ILT
2761// Called by the bison parser to parse an OPTION.
2762
2763extern "C" void
e5756efb 2764script_parse_option(void* closurev, const char* option, size_t length)
195e7dc6
ILT
2765{
2766 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
a0451b38
ILT
2767 // We treat the option as a single command-line option, even if
2768 // it has internal whitespace.
2769 if (closure->command_line() == NULL)
2770 {
2771 // There are some options that we could handle here--e.g.,
2772 // -lLIBRARY. Should we bother?
e5756efb 2773 gold_warning(_("%s:%d:%d: ignoring command OPTION; OPTION is only valid"
d391083d 2774 " for scripts specified via -T/--script"),
e5756efb 2775 closure->filename(), closure->lineno(), closure->charpos());
a0451b38
ILT
2776 }
2777 else
2778 {
2779 bool past_a_double_dash_option = false;
ee1fe73e 2780 const char* mutable_option = strndup(option, length);
e5756efb 2781 gold_assert(mutable_option != NULL);
a0451b38
ILT
2782 closure->command_line()->process_one_option(1, &mutable_option, 0,
2783 &past_a_double_dash_option);
a5dc0706
ILT
2784 // The General_options class will quite possibly store a pointer
2785 // into mutable_option, so we can't free it. In cases the class
2786 // does not store such a pointer, this is a memory leak. Alas. :(
a0451b38 2787 }
15f8229b
ILT
2788 closure->clear_skip_on_incompatible_target();
2789}
2790
2791// Called by the bison parser to handle OUTPUT_FORMAT. OUTPUT_FORMAT
2792// takes either one or three arguments. In the three argument case,
2793// the format depends on the endianness option, which we don't
2794// currently support (FIXME). If we see an OUTPUT_FORMAT for the
2795// wrong format, then we want to search for a new file. Returning 0
2796// here will cause the parser to immediately abort.
2797
2798extern "C" int
2799script_check_output_format(void* closurev,
2800 const char* default_name, size_t default_length,
2801 const char*, size_t, const char*, size_t)
2802{
2803 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2804 std::string name(default_name, default_length);
2805 Target* target = select_target_by_name(name.c_str());
2806 if (target == NULL || !parameters->is_compatible_target(target))
2807 {
2808 if (closure->skip_on_incompatible_target())
2809 {
2810 closure->set_found_incompatible_target();
2811 return 0;
2812 }
2813 // FIXME: Should we warn about the unknown target?
2814 }
2815 return 1;
195e7dc6 2816}
e5756efb 2817
e6a307ba
ILT
2818// Called by the bison parser to handle TARGET.
2819
2820extern "C" void
2821script_set_target(void* closurev, const char* target, size_t len)
2822{
2823 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2824 std::string s(target, len);
2825 General_options::Object_format format_enum;
2826 format_enum = General_options::string_to_object_format(s.c_str());
2827 closure->position_dependent_options().set_format_enum(format_enum);
2828}
2829
3802b2dd
ILT
2830// Called by the bison parser to handle SEARCH_DIR. This is handled
2831// exactly like a -L option.
2832
2833extern "C" void
2834script_add_search_dir(void* closurev, const char* option, size_t length)
2835{
2836 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2837 if (closure->command_line() == NULL)
2838 gold_warning(_("%s:%d:%d: ignoring SEARCH_DIR; SEARCH_DIR is only valid"
2839 " for scripts specified via -T/--script"),
2840 closure->filename(), closure->lineno(), closure->charpos());
91e75c8a 2841 else if (!closure->command_line()->options().nostdlib())
3802b2dd
ILT
2842 {
2843 std::string s = "-L" + std::string(option, length);
2844 script_parse_option(closurev, s.c_str(), s.size());
2845 }
2846}
2847
e5756efb
ILT
2848/* Called by the bison parser to push the lexer into expression
2849 mode. */
2850
494e05f4 2851extern "C" void
e5756efb
ILT
2852script_push_lex_into_expression_mode(void* closurev)
2853{
2854 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2855 closure->push_lex_mode(Lex::EXPRESSION);
2856}
2857
09124467
ILT
2858/* Called by the bison parser to push the lexer into version
2859 mode. */
2860
494e05f4 2861extern "C" void
09124467
ILT
2862script_push_lex_into_version_mode(void* closurev)
2863{
2864 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
6affe781
ILT
2865 if (closure->version_script()->is_finalized())
2866 gold_error(_("%s:%d:%d: invalid use of VERSION in input file"),
2867 closure->filename(), closure->lineno(), closure->charpos());
09124467
ILT
2868 closure->push_lex_mode(Lex::VERSION_SCRIPT);
2869}
2870
e5756efb
ILT
2871/* Called by the bison parser to pop the lexer mode. */
2872
494e05f4 2873extern "C" void
e5756efb
ILT
2874script_pop_lex_mode(void* closurev)
2875{
2876 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2877 closure->pop_lex_mode();
2878}
09124467 2879
09124467
ILT
2880// Register an entire version node. For example:
2881//
2882// GLIBC_2.1 {
2883// global: foo;
2884// } GLIBC_2.0;
2885//
2886// - tag is "GLIBC_2.1"
2887// - tree contains the information "global: foo"
2888// - deps contains "GLIBC_2.0"
2889
2890extern "C" void
2891script_register_vers_node(void*,
2892 const char* tag,
2893 int taglen,
ca09d69a
NC
2894 struct Version_tree* tree,
2895 struct Version_dependency_list* deps)
09124467
ILT
2896{
2897 gold_assert(tree != NULL);
09124467 2898 tree->dependencies = deps;
057ead22
ILT
2899 if (tag != NULL)
2900 tree->tag = std::string(tag, taglen);
09124467
ILT
2901}
2902
2903// Add a dependencies to the list of existing dependencies, if any,
2904// and return the expanded list.
2905
ca09d69a 2906extern "C" struct Version_dependency_list*
09124467 2907script_add_vers_depend(void* closurev,
ca09d69a
NC
2908 struct Version_dependency_list* all_deps,
2909 const char* depend_to_add, int deplen)
09124467
ILT
2910{
2911 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2912 if (all_deps == NULL)
2913 all_deps = closure->version_script()->allocate_dependency_list();
2914 all_deps->dependencies.push_back(std::string(depend_to_add, deplen));
2915 return all_deps;
2916}
2917
2918// Add a pattern expression to an existing list of expressions, if any.
09124467 2919
ca09d69a 2920extern "C" struct Version_expression_list*
09124467 2921script_new_vers_pattern(void* closurev,
ca09d69a
NC
2922 struct Version_expression_list* expressions,
2923 const char* pattern, int patlen, int exact_match)
09124467
ILT
2924{
2925 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2926 if (expressions == NULL)
2927 expressions = closure->version_script()->allocate_expression_list();
2928 expressions->expressions.push_back(
2929 Version_expression(std::string(pattern, patlen),
10600224
ILT
2930 closure->get_current_language(),
2931 static_cast<bool>(exact_match)));
09124467
ILT
2932 return expressions;
2933}
2934
10600224
ILT
2935// Attaches b to the end of a, and clears b. So a = a + b and b = {}.
2936
2937extern "C" struct Version_expression_list*
ca09d69a
NC
2938script_merge_expressions(struct Version_expression_list* a,
2939 struct Version_expression_list* b)
10600224
ILT
2940{
2941 a->expressions.insert(a->expressions.end(),
2942 b->expressions.begin(), b->expressions.end());
2943 // We could delete b and remove it from expressions_lists_, but
2944 // that's a lot of work. This works just as well.
2945 b->expressions.clear();
2946 return a;
2947}
2948
09124467
ILT
2949// Combine the global and local expressions into a a Version_tree.
2950
ca09d69a 2951extern "C" struct Version_tree*
09124467 2952script_new_vers_node(void* closurev,
ca09d69a
NC
2953 struct Version_expression_list* global,
2954 struct Version_expression_list* local)
09124467
ILT
2955{
2956 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2957 Version_tree* tree = closure->version_script()->allocate_version_tree();
2958 tree->global = global;
2959 tree->local = local;
2960 return tree;
2961}
2962
10600224 2963// Handle a transition in language, such as at the
09124467
ILT
2964// start or end of 'extern "C++"'
2965
2966extern "C" void
2967version_script_push_lang(void* closurev, const char* lang, int langlen)
2968{
2969 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
6affe781
ILT
2970 std::string language(lang, langlen);
2971 Version_script_info::Language code;
2972 if (language.empty() || language == "C")
2973 code = Version_script_info::LANGUAGE_C;
2974 else if (language == "C++")
2975 code = Version_script_info::LANGUAGE_CXX;
2976 else if (language == "Java")
2977 code = Version_script_info::LANGUAGE_JAVA;
2978 else
2979 {
2980 char* buf = new char[langlen + 100];
2981 snprintf(buf, langlen + 100,
2982 _("unrecognized version script language '%s'"),
2983 language.c_str());
2984 yyerror(closurev, buf);
2985 delete[] buf;
2986 code = Version_script_info::LANGUAGE_C;
2987 }
2988 closure->push_language(code);
09124467
ILT
2989}
2990
2991extern "C" void
2992version_script_pop_lang(void* closurev)
2993{
2994 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2995 closure->pop_language();
2996}
494e05f4
ILT
2997
2998// Called by the bison parser to start a SECTIONS clause.
2999
3000extern "C" void
3001script_start_sections(void* closurev)
3002{
3003 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3004 closure->script_options()->script_sections()->start_sections();
15f8229b 3005 closure->clear_skip_on_incompatible_target();
494e05f4
ILT
3006}
3007
3008// Called by the bison parser to finish a SECTIONS clause.
3009
3010extern "C" void
3011script_finish_sections(void* closurev)
3012{
3013 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3014 closure->script_options()->script_sections()->finish_sections();
3015}
3016
3017// Start processing entries for an output section.
3018
3019extern "C" void
3020script_start_output_section(void* closurev, const char* name, size_t namelen,
3021 const struct Parser_output_section_header* header)
3022{
3023 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3024 closure->script_options()->script_sections()->start_output_section(name,
3025 namelen,
3026 header);
3027}
3028
3029// Finish processing entries for an output section.
3030
3031extern "C" void
c82fbeee 3032script_finish_output_section(void* closurev,
494e05f4
ILT
3033 const struct Parser_output_section_trailer* trail)
3034{
3035 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3036 closure->script_options()->script_sections()->finish_output_section(trail);
3037}
3038
3039// Add a data item (e.g., "WORD (0)") to the current output section.
3040
3041extern "C" void
3042script_add_data(void* closurev, int data_token, Expression* val)
3043{
3044 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3045 int size;
3046 bool is_signed = true;
3047 switch (data_token)
3048 {
3049 case QUAD:
3050 size = 8;
3051 is_signed = false;
3052 break;
3053 case SQUAD:
3054 size = 8;
3055 break;
3056 case LONG:
3057 size = 4;
3058 break;
3059 case SHORT:
3060 size = 2;
3061 break;
3062 case BYTE:
3063 size = 1;
3064 break;
3065 default:
3066 gold_unreachable();
3067 }
3068 closure->script_options()->script_sections()->add_data(size, is_signed, val);
3069}
3070
3071// Add a clause setting the fill value to the current output section.
3072
3073extern "C" void
3074script_add_fill(void* closurev, Expression* val)
3075{
3076 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3077 closure->script_options()->script_sections()->add_fill(val);
3078}
3079
3080// Add a new input section specification to the current output
3081// section.
3082
3083extern "C" void
3084script_add_input_section(void* closurev,
3085 const struct Input_section_spec* spec,
3086 int keepi)
3087{
3088 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3089 bool keep = keepi != 0;
3090 closure->script_options()->script_sections()->add_input_section(spec, keep);
3091}
3092
2d924fd9
ILT
3093// When we see DATA_SEGMENT_ALIGN we record that following output
3094// sections may be relro.
3095
3096extern "C" void
3097script_data_segment_align(void* closurev)
3098{
3099 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3100 if (!closure->script_options()->saw_sections_clause())
3101 gold_error(_("%s:%d:%d: DATA_SEGMENT_ALIGN not in SECTIONS clause"),
3102 closure->filename(), closure->lineno(), closure->charpos());
3103 else
3104 closure->script_options()->script_sections()->data_segment_align();
3105}
3106
3107// When we see DATA_SEGMENT_RELRO_END we know that all output sections
3108// since DATA_SEGMENT_ALIGN should be relro.
3109
3110extern "C" void
3111script_data_segment_relro_end(void* closurev)
3112{
3113 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3114 if (!closure->script_options()->saw_sections_clause())
3115 gold_error(_("%s:%d:%d: DATA_SEGMENT_ALIGN not in SECTIONS clause"),
3116 closure->filename(), closure->lineno(), closure->charpos());
3117 else
3118 closure->script_options()->script_sections()->data_segment_relro_end();
3119}
3120
494e05f4
ILT
3121// Create a new list of string/sort pairs.
3122
3123extern "C" String_sort_list_ptr
3124script_new_string_sort_list(const struct Wildcard_section* string_sort)
3125{
3126 return new String_sort_list(1, *string_sort);
3127}
3128
3129// Add an entry to a list of string/sort pairs. The way the parser
3130// works permits us to simply modify the first parameter, rather than
3131// copy the vector.
3132
3133extern "C" String_sort_list_ptr
3134script_string_sort_list_add(String_sort_list_ptr pv,
3135 const struct Wildcard_section* string_sort)
3136{
a445fddf
ILT
3137 if (pv == NULL)
3138 return script_new_string_sort_list(string_sort);
3139 else
3140 {
3141 pv->push_back(*string_sort);
3142 return pv;
3143 }
494e05f4
ILT
3144}
3145
3146// Create a new list of strings.
3147
3148extern "C" String_list_ptr
3149script_new_string_list(const char* str, size_t len)
3150{
3151 return new String_list(1, std::string(str, len));
3152}
3153
3154// Add an element to a list of strings. The way the parser works
3155// permits us to simply modify the first parameter, rather than copy
3156// the vector.
3157
3158extern "C" String_list_ptr
3159script_string_list_push_back(String_list_ptr pv, const char* str, size_t len)
3160{
1c4f3631
ILT
3161 if (pv == NULL)
3162 return script_new_string_list(str, len);
3163 else
3164 {
3165 pv->push_back(std::string(str, len));
3166 return pv;
3167 }
494e05f4
ILT
3168}
3169
3170// Concatenate two string lists. Either or both may be NULL. The way
3171// the parser works permits us to modify the parameters, rather than
3172// copy the vector.
3173
3174extern "C" String_list_ptr
3175script_string_list_append(String_list_ptr pv1, String_list_ptr pv2)
3176{
3177 if (pv1 == NULL)
3178 return pv2;
3179 if (pv2 == NULL)
3180 return pv1;
3181 pv1->insert(pv1->end(), pv2->begin(), pv2->end());
3182 return pv1;
3183}
1c4f3631
ILT
3184
3185// Add a new program header.
3186
3187extern "C" void
3188script_add_phdr(void* closurev, const char* name, size_t namelen,
3189 unsigned int type, const Phdr_info* info)
3190{
3191 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3192 bool includes_filehdr = info->includes_filehdr != 0;
3193 bool includes_phdrs = info->includes_phdrs != 0;
3194 bool is_flags_valid = info->is_flags_valid != 0;
3195 Script_sections* ss = closure->script_options()->script_sections();
3196 ss->add_phdr(name, namelen, type, includes_filehdr, includes_phdrs,
3197 is_flags_valid, info->flags, info->load_address);
15f8229b 3198 closure->clear_skip_on_incompatible_target();
1c4f3631
ILT
3199}
3200
3201// Convert a program header string to a type.
3202
3203#define PHDR_TYPE(NAME) { #NAME, sizeof(#NAME) - 1, elfcpp::NAME }
3204
3205static struct
3206{
3207 const char* name;
3208 size_t namelen;
3209 unsigned int val;
3210} phdr_type_names[] =
3211{
3212 PHDR_TYPE(PT_NULL),
3213 PHDR_TYPE(PT_LOAD),
3214 PHDR_TYPE(PT_DYNAMIC),
3215 PHDR_TYPE(PT_INTERP),
3216 PHDR_TYPE(PT_NOTE),
3217 PHDR_TYPE(PT_SHLIB),
3218 PHDR_TYPE(PT_PHDR),
3219 PHDR_TYPE(PT_TLS),
3220 PHDR_TYPE(PT_GNU_EH_FRAME),
3221 PHDR_TYPE(PT_GNU_STACK),
3222 PHDR_TYPE(PT_GNU_RELRO)
3223};
3224
3225extern "C" unsigned int
3226script_phdr_string_to_type(void* closurev, const char* name, size_t namelen)
3227{
3228 for (unsigned int i = 0;
3229 i < sizeof(phdr_type_names) / sizeof(phdr_type_names[0]);
3230 ++i)
3231 if (namelen == phdr_type_names[i].namelen
3232 && strncmp(name, phdr_type_names[i].name, namelen) == 0)
3233 return phdr_type_names[i].val;
3234 yyerror(closurev, _("unknown PHDR type (try integer)"));
3235 return elfcpp::PT_NULL;
3236}
3c12dcdb
DK
3237
3238extern "C" void
3239script_saw_segment_start_expression(void* closurev)
3240{
3241 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3242 Script_sections* ss = closure->script_options()->script_sections();
3243 ss->set_saw_segment_start_expression(true);
3244}
7f8cd844
NC
3245
3246extern "C" void
3247script_set_section_region(void* closurev, const char* name, size_t namelen,
3248 int set_vma)
3249{
3250 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3251 if (!closure->script_options()->saw_sections_clause())
3252 {
3253 gold_error(_("%s:%d:%d: MEMORY region '%.*s' referred to outside of "
3254 "SECTIONS clause"),
3255 closure->filename(), closure->lineno(), closure->charpos(),
33dbc701 3256 static_cast<int>(namelen), name);
7f8cd844
NC
3257 return;
3258 }
3259
3260 Script_sections* ss = closure->script_options()->script_sections();
3261 Memory_region* mr = ss->find_memory_region(name, namelen);
3262 if (mr == NULL)
3263 {
3264 gold_error(_("%s:%d:%d: MEMORY region '%.*s' not declared"),
3265 closure->filename(), closure->lineno(), closure->charpos(),
33dbc701 3266 static_cast<int>(namelen), name);
7f8cd844
NC
3267 return;
3268 }
3269
3270 ss->set_memory_region(mr, set_vma);
3271}
3272
3273extern "C" void
3274script_add_memory(void* closurev, const char* name, size_t namelen,
3275 unsigned int attrs, Expression* origin, Expression* length)
3276{
3277 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3278 Script_sections* ss = closure->script_options()->script_sections();
3279 ss->add_memory_region(name, namelen, attrs, origin, length);
3280}
3281
3282extern "C" unsigned int
3283script_parse_memory_attr(void* closurev, const char* attrs, size_t attrlen,
3284 int invert)
3285{
3286 int attributes = 0;
3287
3288 while (attrlen--)
3289 switch (*attrs++)
3290 {
3291 case 'R':
3292 case 'r':
3293 attributes |= MEM_READABLE; break;
3294 case 'W':
3295 case 'w':
3296 attributes |= MEM_READABLE | MEM_WRITEABLE; break;
3297 case 'X':
3298 case 'x':
3299 attributes |= MEM_EXECUTABLE; break;
3300 case 'A':
3301 case 'a':
3302 attributes |= MEM_ALLOCATABLE; break;
3303 case 'I':
3304 case 'i':
3305 case 'L':
3306 case 'l':
3307 attributes |= MEM_INITIALIZED; break;
3308 default:
3309 yyerror(closurev, _("unknown MEMORY attribute"));
3310 }
3311
3312 if (invert)
3313 attributes = (~ attributes) & MEM_ATTR_MASK;
3314
3315 return attributes;
3316}
3317
3318extern "C" void
3319script_include_directive(void* closurev, const char*, size_t)
3320{
3321 // FIXME: Implement ?
3322 yyerror (closurev, _("GOLD does not currently support INCLUDE directives"));
3323}
3324
3325// Functions for memory regions.
3326
3327extern "C" Expression*
3328script_exp_function_origin(void* closurev, const char* name, size_t namelen)
3329{
3330 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3331 Script_sections* ss = closure->script_options()->script_sections();
3332 Expression* origin = ss->find_memory_region_origin(name, namelen);
3333
3334 if (origin == NULL)
3335 {
3336 gold_error(_("undefined memory region '%s' referenced "
3337 "in ORIGIN expression"),
3338 name);
3339 // Create a dummy expression to prevent crashes later on.
3340 origin = script_exp_integer(0);
3341 }
3342
3343 return origin;
3344}
3345
3346extern "C" Expression*
3347script_exp_function_length(void* closurev, const char* name, size_t namelen)
3348{
3349 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
3350 Script_sections* ss = closure->script_options()->script_sections();
3351 Expression* length = ss->find_memory_region_length(name, namelen);
3352
3353 if (length == NULL)
3354 {
3355 gold_error(_("undefined memory region '%s' referenced "
3356 "in LENGTH expression"),
3357 name);
3358 // Create a dummy expression to prevent crashes later on.
3359 length = script_exp_integer(0);
3360 }
3361
3362 return length;
3363}
This page took 0.375127 seconds and 4 git commands to generate.