PR 10931
[deliverable/binutils-gdb.git] / gold / script.cc
CommitLineData
dbe717ef
ILT
1// script.cc -- handle linker scripts for gold.
2
12edd763 3// Copyright 2006, 2007, 2008, 2009 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,
703 const char **pp)
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
ILT
957 dot_value, dot_section,
958 &section);
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,
977 NULL, &val_section);
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()
1048 : entry_(), symbol_assignments_(), version_script_info_(),
1049 script_sections_()
1050{
1051}
1052
1053// Add a symbol to be defined.
1054
1055void
1056Script_options::add_symbol_assignment(const char* name, size_t length,
99fff23b
ILT
1057 bool is_defsym, Expression* value,
1058 bool provide, bool hidden)
494e05f4 1059{
a445fddf
ILT
1060 if (length != 1 || name[0] != '.')
1061 {
1062 if (this->script_sections_.in_sections_clause())
a445fddf 1063 {
99fff23b
ILT
1064 gold_assert(!is_defsym);
1065 this->script_sections_.add_symbol_assignment(name, length, value,
a445fddf 1066 provide, hidden);
99fff23b
ILT
1067 }
1068 else
1069 {
1070 Symbol_assignment* p = new Symbol_assignment(name, length, is_defsym,
1071 value, provide, hidden);
a445fddf
ILT
1072 this->symbol_assignments_.push_back(p);
1073 }
1074 }
494e05f4
ILT
1075 else
1076 {
a445fddf
ILT
1077 if (provide || hidden)
1078 gold_error(_("invalid use of PROVIDE for dot symbol"));
12edd763
ILT
1079
1080 // The GNU linker permits assignments to dot outside of SECTIONS
1081 // clauses and treats them as occurring inside, so we don't
1082 // check in_sections_clause here.
1083 this->script_sections_.add_dot_assignment(value);
494e05f4
ILT
1084 }
1085}
1086
1087// Add an assertion.
1088
1089void
1090Script_options::add_assertion(Expression* check, const char* message,
1091 size_t messagelen)
1092{
1093 if (this->script_sections_.in_sections_clause())
1094 this->script_sections_.add_assertion(check, message, messagelen);
1095 else
1096 {
1097 Script_assertion* p = new Script_assertion(check, message, messagelen);
1098 this->assertions_.push_back(p);
1099 }
1100}
1101
919ed24c
ILT
1102// Create sections required by any linker scripts.
1103
1104void
1105Script_options::create_script_sections(Layout* layout)
1106{
1107 if (this->saw_sections_clause())
1108 this->script_sections_.create_sections(layout);
1109}
1110
494e05f4
ILT
1111// Add any symbols we are defining to the symbol table.
1112
1113void
9b07f471 1114Script_options::add_symbols_to_table(Symbol_table* symtab)
e5756efb
ILT
1115{
1116 for (Symbol_assignments::iterator p = this->symbol_assignments_.begin();
1117 p != this->symbol_assignments_.end();
1118 ++p)
9b07f471 1119 (*p)->add_to_table(symtab);
a445fddf 1120 this->script_sections_.add_symbols_to_table(symtab);
494e05f4
ILT
1121}
1122
a445fddf 1123// Finalize symbol values. Also check assertions.
494e05f4
ILT
1124
1125void
1126Script_options::finalize_symbols(Symbol_table* symtab, const Layout* layout)
1127{
7c07ecec
ILT
1128 // We finalize the symbols defined in SECTIONS first, because they
1129 // are the ones which may have changed. This way if symbol outside
1130 // SECTIONS are defined in terms of symbols inside SECTIONS, they
1131 // will get the right value.
1132 this->script_sections_.finalize_symbols(symtab, layout);
1133
494e05f4
ILT
1134 for (Symbol_assignments::iterator p = this->symbol_assignments_.begin();
1135 p != this->symbol_assignments_.end();
1136 ++p)
1137 (*p)->finalize(symtab, layout);
a445fddf
ILT
1138
1139 for (Assertions::iterator p = this->assertions_.begin();
1140 p != this->assertions_.end();
1141 ++p)
1142 (*p)->check(symtab, layout);
a445fddf
ILT
1143}
1144
1145// Set section addresses. We set all the symbols which have absolute
1146// values. Then we let the SECTIONS clause do its thing. This
1147// returns the segment which holds the file header and segment
1148// headers, if any.
1149
1150Output_segment*
1151Script_options::set_section_addresses(Symbol_table* symtab, Layout* layout)
1152{
1153 for (Symbol_assignments::iterator p = this->symbol_assignments_.begin();
1154 p != this->symbol_assignments_.end();
1155 ++p)
77e65537 1156 (*p)->set_if_absolute(symtab, layout, false, 0);
a445fddf
ILT
1157
1158 return this->script_sections_.set_section_addresses(symtab, layout);
e5756efb
ILT
1159}
1160
dbe717ef
ILT
1161// This class holds data passed through the parser to the lexer and to
1162// the parser support functions. This avoids global variables. We
17a1d0a9
ILT
1163// can't use global variables because we need not be called by a
1164// singleton thread.
dbe717ef
ILT
1165
1166class Parser_closure
1167{
1168 public:
2ea97941 1169 Parser_closure(const char* filename,
dbe717ef 1170 const Position_dependent_options& posdep_options,
99fff23b 1171 bool parsing_defsym, bool in_group, bool is_in_sysroot,
2ea97941
ILT
1172 Command_line* command_line,
1173 Script_options* script_options,
15f8229b 1174 Lex* lex,
2ea97941
ILT
1175 bool skip_on_incompatible_target)
1176 : filename_(filename), posdep_options_(posdep_options),
99fff23b
ILT
1177 parsing_defsym_(parsing_defsym), in_group_(in_group),
1178 is_in_sysroot_(is_in_sysroot),
2ea97941 1179 skip_on_incompatible_target_(skip_on_incompatible_target),
15f8229b 1180 found_incompatible_target_(false),
2ea97941
ILT
1181 command_line_(command_line), script_options_(script_options),
1182 version_script_info_(script_options->version_script_info()),
e5756efb 1183 lex_(lex), lineno_(0), charpos_(0), lex_mode_stack_(), inputs_(NULL)
c82fbeee 1184 {
09124467 1185 // We start out processing C symbols in the default lex mode.
6affe781
ILT
1186 this->language_stack_.push_back(Version_script_info::LANGUAGE_C);
1187 this->lex_mode_stack_.push_back(lex->mode());
09124467 1188 }
dbe717ef
ILT
1189
1190 // Return the file name.
1191 const char*
1192 filename() const
1193 { return this->filename_; }
1194
1195 // Return the position dependent options. The caller may modify
1196 // this.
1197 Position_dependent_options&
1198 position_dependent_options()
1199 { return this->posdep_options_; }
1200
99fff23b
ILT
1201 // Whether we are parsing a --defsym.
1202 bool
1203 parsing_defsym() const
1204 { return this->parsing_defsym_; }
1205
dbe717ef
ILT
1206 // Return whether this script is being run in a group.
1207 bool
1208 in_group() const
1209 { return this->in_group_; }
1210
ad2d6943
ILT
1211 // Return whether this script was found using a directory in the
1212 // sysroot.
1213 bool
1214 is_in_sysroot() const
1215 { return this->is_in_sysroot_; }
1216
15f8229b
ILT
1217 // Whether to skip to the next file with the same name if we find an
1218 // incompatible target in an OUTPUT_FORMAT statement.
1219 bool
1220 skip_on_incompatible_target() const
1221 { return this->skip_on_incompatible_target_; }
1222
e6a307ba 1223 // Stop skipping to the next file on an incompatible target. This
15f8229b
ILT
1224 // is called when we make some unrevocable change to the data
1225 // structures.
1226 void
1227 clear_skip_on_incompatible_target()
1228 { this->skip_on_incompatible_target_ = false; }
1229
1230 // Whether we found an incompatible target in an OUTPUT_FORMAT
1231 // statement.
1232 bool
1233 found_incompatible_target() const
1234 { return this->found_incompatible_target_; }
1235
1236 // Note that we found an incompatible target.
1237 void
1238 set_found_incompatible_target()
1239 { this->found_incompatible_target_ = true; }
1240
a0451b38
ILT
1241 // Returns the Command_line structure passed in at constructor time.
1242 // This value may be NULL. The caller may modify this, which modifies
1243 // the passed-in Command_line object (not a copy).
e5756efb
ILT
1244 Command_line*
1245 command_line()
a0451b38
ILT
1246 { return this->command_line_; }
1247
e5756efb
ILT
1248 // Return the options which may be set by a script.
1249 Script_options*
1250 script_options()
1251 { return this->script_options_; }
dbe717ef 1252
09124467
ILT
1253 // Return the object in which version script information should be stored.
1254 Version_script_info*
1255 version_script()
1256 { return this->version_script_info_; }
1257
2dd3e587 1258 // Return the next token, and advance.
dbe717ef
ILT
1259 const Token*
1260 next_token()
1261 {
e5756efb
ILT
1262 const Token* token = this->lex_->next_token();
1263 this->lineno_ = token->lineno();
1264 this->charpos_ = token->charpos();
1265 return token;
dbe717ef
ILT
1266 }
1267
e5756efb
ILT
1268 // Set a new lexer mode, pushing the current one.
1269 void
1270 push_lex_mode(Lex::Mode mode)
1271 {
1272 this->lex_mode_stack_.push_back(this->lex_->mode());
1273 this->lex_->set_mode(mode);
1274 }
1275
1276 // Pop the lexer mode.
1277 void
1278 pop_lex_mode()
2dd3e587 1279 {
e5756efb
ILT
1280 gold_assert(!this->lex_mode_stack_.empty());
1281 this->lex_->set_mode(this->lex_mode_stack_.back());
1282 this->lex_mode_stack_.pop_back();
2dd3e587
ILT
1283 }
1284
09124467
ILT
1285 // Return the current lexer mode.
1286 Lex::Mode
1287 lex_mode() const
1288 { return this->lex_mode_stack_.back(); }
1289
e5756efb
ILT
1290 // Return the line number of the last token.
1291 int
1292 lineno() const
1293 { return this->lineno_; }
1294
1295 // Return the character position in the line of the last token.
1296 int
1297 charpos() const
1298 { return this->charpos_; }
1299
dbe717ef
ILT
1300 // Return the list of input files, creating it if necessary. This
1301 // is a space leak--we never free the INPUTS_ pointer.
1302 Input_arguments*
1303 inputs()
1304 {
1305 if (this->inputs_ == NULL)
1306 this->inputs_ = new Input_arguments();
1307 return this->inputs_;
1308 }
1309
1310 // Return whether we saw any input files.
1311 bool
1312 saw_inputs() const
1313 { return this->inputs_ != NULL && !this->inputs_->empty(); }
1314
09124467
ILT
1315 // Return the current language being processed in a version script
1316 // (eg, "C++"). The empty string represents unmangled C names.
6affe781 1317 Version_script_info::Language
09124467
ILT
1318 get_current_language() const
1319 { return this->language_stack_.back(); }
1320
1321 // Push a language onto the stack when entering an extern block.
6affe781
ILT
1322 void
1323 push_language(Version_script_info::Language lang)
09124467
ILT
1324 { this->language_stack_.push_back(lang); }
1325
1326 // Pop a language off of the stack when exiting an extern block.
6affe781
ILT
1327 void
1328 pop_language()
09124467
ILT
1329 {
1330 gold_assert(!this->language_stack_.empty());
1331 this->language_stack_.pop_back();
1332 }
1333
dbe717ef
ILT
1334 private:
1335 // The name of the file we are reading.
1336 const char* filename_;
1337 // The position dependent options.
1338 Position_dependent_options posdep_options_;
99fff23b
ILT
1339 // True if we are parsing a --defsym.
1340 bool parsing_defsym_;
dbe717ef
ILT
1341 // Whether we are currently in a --start-group/--end-group.
1342 bool in_group_;
ad2d6943
ILT
1343 // Whether the script was found in a sysrooted directory.
1344 bool is_in_sysroot_;
15f8229b
ILT
1345 // If this is true, then if we find an OUTPUT_FORMAT with an
1346 // incompatible target, then we tell the parser to abort so that we
1347 // can search for the next file with the same name.
1348 bool skip_on_incompatible_target_;
1349 // True if we found an OUTPUT_FORMAT with an incompatible target.
1350 bool found_incompatible_target_;
a0451b38
ILT
1351 // May be NULL if the user chooses not to pass one in.
1352 Command_line* command_line_;
e5756efb
ILT
1353 // Options which may be set from any linker script.
1354 Script_options* script_options_;
09124467
ILT
1355 // Information parsed from a version script.
1356 Version_script_info* version_script_info_;
e5756efb
ILT
1357 // The lexer.
1358 Lex* lex_;
1359 // The line number of the last token returned by next_token.
1360 int lineno_;
1361 // The column number of the last token returned by next_token.
1362 int charpos_;
1363 // A stack of lexer modes.
1364 std::vector<Lex::Mode> lex_mode_stack_;
09124467
ILT
1365 // A stack of which extern/language block we're inside. Can be C++,
1366 // java, or empty for C.
6affe781 1367 std::vector<Version_script_info::Language> language_stack_;
dbe717ef
ILT
1368 // New input files found to add to the link.
1369 Input_arguments* inputs_;
1370};
1371
1372// FILE was found as an argument on the command line. Try to read it
da769d56 1373// as a script. Return true if the file was handled.
dbe717ef
ILT
1374
1375bool
f1ed28fb 1376read_input_script(Workqueue* workqueue, Symbol_table* symtab, Layout* layout,
15f8229b
ILT
1377 Dirsearch* dirsearch, int dirindex,
1378 Input_objects* input_objects, Mapfile* mapfile,
1379 Input_group* input_group,
dbe717ef 1380 const Input_argument* input_argument,
da769d56
ILT
1381 Input_file* input_file, Task_token* next_blocker,
1382 bool* used_next_blocker)
dbe717ef 1383{
da769d56
ILT
1384 *used_next_blocker = false;
1385
e5756efb
ILT
1386 std::string input_string;
1387 Lex::read_file(input_file, &input_string);
1388
1389 Lex lex(input_string.c_str(), input_string.length(), PARSING_LINKER_SCRIPT);
dbe717ef
ILT
1390
1391 Parser_closure closure(input_file->filename().c_str(),
1392 input_argument->file().options(),
99fff23b 1393 false,
dbe717ef 1394 input_group != NULL,
ad2d6943 1395 input_file->is_in_sysroot(),
a0451b38 1396 NULL,
e5756efb 1397 layout->script_options(),
15f8229b
ILT
1398 &lex,
1399 input_file->will_search_for());
dbe717ef
ILT
1400
1401 if (yyparse(&closure) != 0)
15f8229b
ILT
1402 {
1403 if (closure.found_incompatible_target())
1404 {
1405 Read_symbols::incompatible_warning(input_argument, input_file);
1406 Read_symbols::requeue(workqueue, input_objects, symtab, layout,
1407 dirsearch, dirindex, mapfile, input_argument,
1408 input_group, next_blocker);
1409 return true;
1410 }
1411 return false;
1412 }
dbe717ef 1413
dbe717ef 1414 if (!closure.saw_inputs())
da769d56 1415 return true;
dbe717ef 1416
da769d56 1417 Task_token* this_blocker = NULL;
dbe717ef
ILT
1418 for (Input_arguments::const_iterator p = closure.inputs()->begin();
1419 p != closure.inputs()->end();
1420 ++p)
1421 {
1422 Task_token* nb;
1423 if (p + 1 == closure.inputs()->end())
1424 nb = next_blocker;
1425 else
1426 {
17a1d0a9 1427 nb = new Task_token(true);
dbe717ef
ILT
1428 nb->add_blocker();
1429 }
f1ed28fb 1430 workqueue->queue_soon(new Read_symbols(input_objects, symtab,
15f8229b 1431 layout, dirsearch, 0, mapfile, &*p,
da769d56 1432 input_group, this_blocker, nb));
dbe717ef
ILT
1433 this_blocker = nb;
1434 }
1435
072fe7ce
ILT
1436 if (layout->incremental_inputs())
1437 {
1438 // Like new Read_symbols(...) above, we rely on close.inputs()
1439 // getting leaked by closure.
1440 Script_info* info = new Script_info(closure.inputs());
98fa85cb
ILT
1441 layout->incremental_inputs()->report_script(
1442 input_argument,
1443 input_file->file().get_mtime(),
1444 info);
072fe7ce 1445 }
da769d56
ILT
1446 *used_next_blocker = true;
1447
dbe717ef
ILT
1448 return true;
1449}
1450
09124467
ILT
1451// Helper function for read_version_script() and
1452// read_commandline_script(). Processes the given file in the mode
1453// indicated by first_token and lex_mode.
3c2fafa5 1454
09124467
ILT
1455static bool
1456read_script_file(const char* filename, Command_line* cmdline,
c82fbeee 1457 Script_options* script_options,
09124467 1458 int first_token, Lex::Mode lex_mode)
3c2fafa5 1459{
a0451b38
ILT
1460 // TODO: if filename is a relative filename, search for it manually
1461 // using "." + cmdline->options()->search_path() -- not dirsearch.
3c2fafa5
ILT
1462 Dirsearch dirsearch;
1463
17a1d0a9
ILT
1464 // The file locking code wants to record a Task, but we haven't
1465 // started the workqueue yet. This is only for debugging purposes,
1466 // so we invent a fake value.
1467 const Task* task = reinterpret_cast<const Task*>(-1);
1468
b0d8593d
ILT
1469 // We don't want this file to be opened in binary mode.
1470 Position_dependent_options posdep = cmdline->position_dependent_options();
7cc619c3
ILT
1471 if (posdep.format_enum() == General_options::OBJECT_FORMAT_BINARY)
1472 posdep.set_format_enum(General_options::OBJECT_FORMAT_ELF);
ae3b5189
CD
1473 Input_file_argument input_argument(filename,
1474 Input_file_argument::INPUT_FILE_TYPE_FILE,
1475 "", false, posdep);
3c2fafa5 1476 Input_file input_file(&input_argument);
15f8229b
ILT
1477 int dummy = 0;
1478 if (!input_file.open(dirsearch, task, &dummy))
3c2fafa5
ILT
1479 return false;
1480
e5756efb
ILT
1481 std::string input_string;
1482 Lex::read_file(&input_file, &input_string);
1483
09124467
ILT
1484 Lex lex(input_string.c_str(), input_string.length(), first_token);
1485 lex.set_mode(lex_mode);
3c2fafa5
ILT
1486
1487 Parser_closure closure(filename,
1488 cmdline->position_dependent_options(),
99fff23b 1489 first_token == Lex::DYNAMIC_LIST,
3c2fafa5
ILT
1490 false,
1491 input_file.is_in_sysroot(),
a0451b38 1492 cmdline,
c82fbeee 1493 script_options,
15f8229b
ILT
1494 &lex,
1495 false);
3c2fafa5
ILT
1496 if (yyparse(&closure) != 0)
1497 {
17a1d0a9 1498 input_file.file().unlock(task);
3c2fafa5
ILT
1499 return false;
1500 }
1501
17a1d0a9 1502 input_file.file().unlock(task);
d391083d
ILT
1503
1504 gold_assert(!closure.saw_inputs());
1505
3c2fafa5
ILT
1506 return true;
1507}
1508
09124467
ILT
1509// FILENAME was found as an argument to --script (-T).
1510// Read it as a script, and execute its contents immediately.
1511
1512bool
1513read_commandline_script(const char* filename, Command_line* cmdline)
1514{
c82fbeee 1515 return read_script_file(filename, cmdline, &cmdline->script_options(),
09124467
ILT
1516 PARSING_LINKER_SCRIPT, Lex::LINKER_SCRIPT);
1517}
1518
c82fbeee
CS
1519// FILENAME was found as an argument to --version-script. Read it as
1520// a version script, and store its contents in
09124467
ILT
1521// cmdline->script_options()->version_script_info().
1522
1523bool
1524read_version_script(const char* filename, Command_line* cmdline)
1525{
c82fbeee 1526 return read_script_file(filename, cmdline, &cmdline->script_options(),
09124467
ILT
1527 PARSING_VERSION_SCRIPT, Lex::VERSION_SCRIPT);
1528}
1529
c82fbeee
CS
1530// FILENAME was found as an argument to --dynamic-list. Read it as a
1531// list of symbols, and store its contents in DYNAMIC_LIST.
1532
1533bool
1534read_dynamic_list(const char* filename, Command_line* cmdline,
1535 Script_options* dynamic_list)
1536{
1537 return read_script_file(filename, cmdline, dynamic_list,
1538 PARSING_DYNAMIC_LIST, Lex::DYNAMIC_LIST);
1539}
1540
e5756efb
ILT
1541// Implement the --defsym option on the command line. Return true if
1542// all is well.
1543
1544bool
1545Script_options::define_symbol(const char* definition)
1546{
1547 Lex lex(definition, strlen(definition), PARSING_DEFSYM);
1548 lex.set_mode(Lex::EXPRESSION);
1549
1550 // Dummy value.
1551 Position_dependent_options posdep_options;
1552
99fff23b
ILT
1553 Parser_closure closure("command line", posdep_options, true,
1554 false, false, NULL, this, &lex, false);
e5756efb
ILT
1555
1556 if (yyparse(&closure) != 0)
1557 return false;
1558
1559 gold_assert(!closure.saw_inputs());
1560
1561 return true;
1562}
1563
494e05f4
ILT
1564// Print the script to F for debugging.
1565
1566void
1567Script_options::print(FILE* f) const
1568{
1569 fprintf(f, "%s: Dumping linker script\n", program_name);
1570
1571 if (!this->entry_.empty())
1572 fprintf(f, "ENTRY(%s)\n", this->entry_.c_str());
1573
1574 for (Symbol_assignments::const_iterator p =
1575 this->symbol_assignments_.begin();
1576 p != this->symbol_assignments_.end();
1577 ++p)
1578 (*p)->print(f);
1579
1580 for (Assertions::const_iterator p = this->assertions_.begin();
1581 p != this->assertions_.end();
1582 ++p)
1583 (*p)->print(f);
1584
1585 this->script_sections_.print(f);
1586
1587 this->version_script_info_.print(f);
1588}
1589
dbe717ef 1590// Manage mapping from keywords to the codes expected by the bison
09124467
ILT
1591// parser. We construct one global object for each lex mode with
1592// keywords.
dbe717ef
ILT
1593
1594class Keyword_to_parsecode
1595{
1596 public:
1597 // The structure which maps keywords to parsecodes.
1598 struct Keyword_parsecode
1599 {
1600 // Keyword.
1601 const char* keyword;
1602 // Corresponding parsecode.
1603 int parsecode;
1604 };
1605
09124467
ILT
1606 Keyword_to_parsecode(const Keyword_parsecode* keywords,
1607 int keyword_count)
1608 : keyword_parsecodes_(keywords), keyword_count_(keyword_count)
1609 { }
1610
dbe717ef
ILT
1611 // Return the parsecode corresponding KEYWORD, or 0 if it is not a
1612 // keyword.
09124467
ILT
1613 int
1614 keyword_to_parsecode(const char* keyword, size_t len) const;
dbe717ef
ILT
1615
1616 private:
09124467
ILT
1617 const Keyword_parsecode* keyword_parsecodes_;
1618 const int keyword_count_;
dbe717ef
ILT
1619};
1620
1621// Mapping from keyword string to keyword parsecode. This array must
1622// be kept in sorted order. Parsecodes are looked up using bsearch.
1623// This array must correspond to the list of parsecodes in yyscript.y.
1624
09124467
ILT
1625static const Keyword_to_parsecode::Keyword_parsecode
1626script_keyword_parsecodes[] =
dbe717ef
ILT
1627{
1628 { "ABSOLUTE", ABSOLUTE },
1629 { "ADDR", ADDR },
1630 { "ALIGN", ALIGN_K },
e5756efb 1631 { "ALIGNOF", ALIGNOF },
dbe717ef
ILT
1632 { "ASSERT", ASSERT_K },
1633 { "AS_NEEDED", AS_NEEDED },
1634 { "AT", AT },
1635 { "BIND", BIND },
1636 { "BLOCK", BLOCK },
1637 { "BYTE", BYTE },
1638 { "CONSTANT", CONSTANT },
1639 { "CONSTRUCTORS", CONSTRUCTORS },
dbe717ef
ILT
1640 { "CREATE_OBJECT_SYMBOLS", CREATE_OBJECT_SYMBOLS },
1641 { "DATA_SEGMENT_ALIGN", DATA_SEGMENT_ALIGN },
1642 { "DATA_SEGMENT_END", DATA_SEGMENT_END },
1643 { "DATA_SEGMENT_RELRO_END", DATA_SEGMENT_RELRO_END },
1644 { "DEFINED", DEFINED },
dbe717ef
ILT
1645 { "ENTRY", ENTRY },
1646 { "EXCLUDE_FILE", EXCLUDE_FILE },
1647 { "EXTERN", EXTERN },
1648 { "FILL", FILL },
1649 { "FLOAT", FLOAT },
1650 { "FORCE_COMMON_ALLOCATION", FORCE_COMMON_ALLOCATION },
1651 { "GROUP", GROUP },
1652 { "HLL", HLL },
1653 { "INCLUDE", INCLUDE },
dbe717ef
ILT
1654 { "INHIBIT_COMMON_ALLOCATION", INHIBIT_COMMON_ALLOCATION },
1655 { "INPUT", INPUT },
1656 { "KEEP", KEEP },
1657 { "LENGTH", LENGTH },
1658 { "LOADADDR", LOADADDR },
1659 { "LONG", LONG },
1660 { "MAP", MAP },
1661 { "MAX", MAX_K },
1662 { "MEMORY", MEMORY },
1663 { "MIN", MIN_K },
1664 { "NEXT", NEXT },
1665 { "NOCROSSREFS", NOCROSSREFS },
1666 { "NOFLOAT", NOFLOAT },
dbe717ef
ILT
1667 { "ONLY_IF_RO", ONLY_IF_RO },
1668 { "ONLY_IF_RW", ONLY_IF_RW },
195e7dc6 1669 { "OPTION", OPTION },
dbe717ef
ILT
1670 { "ORIGIN", ORIGIN },
1671 { "OUTPUT", OUTPUT },
1672 { "OUTPUT_ARCH", OUTPUT_ARCH },
1673 { "OUTPUT_FORMAT", OUTPUT_FORMAT },
1674 { "OVERLAY", OVERLAY },
1675 { "PHDRS", PHDRS },
1676 { "PROVIDE", PROVIDE },
1677 { "PROVIDE_HIDDEN", PROVIDE_HIDDEN },
1678 { "QUAD", QUAD },
1679 { "SEARCH_DIR", SEARCH_DIR },
1680 { "SECTIONS", SECTIONS },
1681 { "SEGMENT_START", SEGMENT_START },
1682 { "SHORT", SHORT },
1683 { "SIZEOF", SIZEOF },
1684 { "SIZEOF_HEADERS", SIZEOF_HEADERS },
3802b2dd 1685 { "SORT", SORT_BY_NAME },
dbe717ef
ILT
1686 { "SORT_BY_ALIGNMENT", SORT_BY_ALIGNMENT },
1687 { "SORT_BY_NAME", SORT_BY_NAME },
1688 { "SPECIAL", SPECIAL },
1689 { "SQUAD", SQUAD },
1690 { "STARTUP", STARTUP },
1691 { "SUBALIGN", SUBALIGN },
1692 { "SYSLIB", SYSLIB },
1693 { "TARGET", TARGET_K },
1694 { "TRUNCATE", TRUNCATE },
1695 { "VERSION", VERSIONK },
1696 { "global", GLOBAL },
1697 { "l", LENGTH },
1698 { "len", LENGTH },
1699 { "local", LOCAL },
1700 { "o", ORIGIN },
1701 { "org", ORIGIN },
1702 { "sizeof_headers", SIZEOF_HEADERS },
1703};
1704
09124467
ILT
1705static const Keyword_to_parsecode
1706script_keywords(&script_keyword_parsecodes[0],
1707 (sizeof(script_keyword_parsecodes)
1708 / sizeof(script_keyword_parsecodes[0])));
1709
1710static const Keyword_to_parsecode::Keyword_parsecode
1711version_script_keyword_parsecodes[] =
1712{
1713 { "extern", EXTERN },
1714 { "global", GLOBAL },
1715 { "local", LOCAL },
1716};
1717
1718static const Keyword_to_parsecode
1719version_script_keywords(&version_script_keyword_parsecodes[0],
1720 (sizeof(version_script_keyword_parsecodes)
1721 / sizeof(version_script_keyword_parsecodes[0])));
dbe717ef 1722
c82fbeee
CS
1723static const Keyword_to_parsecode::Keyword_parsecode
1724dynamic_list_keyword_parsecodes[] =
1725{
1726 { "extern", EXTERN },
1727};
1728
1729static const Keyword_to_parsecode
1730dynamic_list_keywords(&dynamic_list_keyword_parsecodes[0],
1731 (sizeof(dynamic_list_keyword_parsecodes)
1732 / sizeof(dynamic_list_keyword_parsecodes[0])));
1733
1734
1735
dbe717ef
ILT
1736// Comparison function passed to bsearch.
1737
1738extern "C"
1739{
1740
e5756efb
ILT
1741struct Ktt_key
1742{
1743 const char* str;
1744 size_t len;
1745};
1746
dbe717ef
ILT
1747static int
1748ktt_compare(const void* keyv, const void* kttv)
1749{
e5756efb 1750 const Ktt_key* key = static_cast<const Ktt_key*>(keyv);
dbe717ef
ILT
1751 const Keyword_to_parsecode::Keyword_parsecode* ktt =
1752 static_cast<const Keyword_to_parsecode::Keyword_parsecode*>(kttv);
e5756efb
ILT
1753 int i = strncmp(key->str, ktt->keyword, key->len);
1754 if (i != 0)
1755 return i;
1756 if (ktt->keyword[key->len] != '\0')
1757 return -1;
1758 return 0;
dbe717ef
ILT
1759}
1760
1761} // End extern "C".
1762
1763int
09124467
ILT
1764Keyword_to_parsecode::keyword_to_parsecode(const char* keyword,
1765 size_t len) const
dbe717ef 1766{
e5756efb
ILT
1767 Ktt_key key;
1768 key.str = keyword;
1769 key.len = len;
1770 void* kttv = bsearch(&key,
09124467
ILT
1771 this->keyword_parsecodes_,
1772 this->keyword_count_,
1773 sizeof(this->keyword_parsecodes_[0]),
1774 ktt_compare);
dbe717ef
ILT
1775 if (kttv == NULL)
1776 return 0;
1777 Keyword_parsecode* ktt = static_cast<Keyword_parsecode*>(kttv);
1778 return ktt->parsecode;
1779}
1780
494e05f4
ILT
1781// The following structs are used within the VersionInfo class as well
1782// as in the bison helper functions. They store the information
1783// parsed from the version script.
dbe717ef 1784
494e05f4
ILT
1785// A single version expression.
1786// For example, pattern="std::map*" and language="C++".
6affe781
ILT
1787// PATTERN should be from the stringpool.
1788struct
1789Version_expression
1790{
1791 Version_expression(const std::string& a_pattern,
1792 Version_script_info::Language a_language,
1793 bool a_exact_match)
1794 : pattern(a_pattern), language(a_language), exact_match(a_exact_match)
1795 { }
dbe717ef 1796
494e05f4 1797 std::string pattern;
6affe781 1798 Version_script_info::Language language;
494e05f4
ILT
1799 // If false, we use glob() to match pattern. If true, we use strcmp().
1800 bool exact_match;
1801};
dbe717ef 1802
dbe717ef 1803
494e05f4 1804// A list of expressions.
6affe781
ILT
1805struct Version_expression_list
1806{
494e05f4
ILT
1807 std::vector<struct Version_expression> expressions;
1808};
e5756efb 1809
494e05f4
ILT
1810// A list of which versions upon which another version depends.
1811// Strings should be from the Stringpool.
6affe781
ILT
1812struct Version_dependency_list
1813{
494e05f4
ILT
1814 std::vector<std::string> dependencies;
1815};
dbe717ef 1816
494e05f4
ILT
1817// The total definition of a version. It includes the tag for the
1818// version, its global and local expressions, and any dependencies.
6affe781
ILT
1819struct Version_tree
1820{
494e05f4 1821 Version_tree()
6affe781
ILT
1822 : tag(), global(NULL), local(NULL), dependencies(NULL)
1823 { }
e5756efb 1824
494e05f4
ILT
1825 std::string tag;
1826 const struct Version_expression_list* global;
1827 const struct Version_expression_list* local;
1828 const struct Version_dependency_list* dependencies;
1829};
dbe717ef 1830
6affe781
ILT
1831// Class Version_script_info.
1832
1833Version_script_info::Version_script_info()
1834 : dependency_lists_(), expression_lists_(), version_trees_(),
1835 is_finalized_(false)
1836{
1837 for (int i = 0; i < LANGUAGE_COUNT; ++i)
1838 {
1839 this->globals_[i] = NULL;
1840 this->locals_[i] = NULL;
1841 }
1842}
1843
494e05f4 1844Version_script_info::~Version_script_info()
1ef1f3d3 1845{
1ef1f3d3
ILT
1846}
1847
6affe781
ILT
1848// Forget all the known version script information.
1849
1ef1f3d3
ILT
1850void
1851Version_script_info::clear()
494e05f4 1852{
6affe781
ILT
1853 for (size_t k = 0; k < this->dependency_lists_.size(); ++k)
1854 delete this->dependency_lists_[k];
1ef1f3d3 1855 this->dependency_lists_.clear();
6affe781
ILT
1856 for (size_t k = 0; k < this->version_trees_.size(); ++k)
1857 delete this->version_trees_[k];
1ef1f3d3 1858 this->version_trees_.clear();
6affe781
ILT
1859 for (size_t k = 0; k < this->expression_lists_.size(); ++k)
1860 delete this->expression_lists_[k];
1ef1f3d3 1861 this->expression_lists_.clear();
dbe717ef
ILT
1862}
1863
6affe781
ILT
1864// Finalize the version script information.
1865
1866void
1867Version_script_info::finalize()
1868{
1869 if (!this->is_finalized_)
1870 {
1871 this->build_lookup_tables();
1872 this->is_finalized_ = true;
1873 }
1874}
1875
1876// Return all the versions.
1877
494e05f4
ILT
1878std::vector<std::string>
1879Version_script_info::get_versions() const
dbe717ef 1880{
494e05f4 1881 std::vector<std::string> ret;
6affe781 1882 for (size_t j = 0; j < this->version_trees_.size(); ++j)
057ead22
ILT
1883 if (!this->version_trees_[j]->tag.empty())
1884 ret.push_back(this->version_trees_[j]->tag);
494e05f4 1885 return ret;
dbe717ef
ILT
1886}
1887
6affe781
ILT
1888// Return the dependencies of VERSION.
1889
494e05f4
ILT
1890std::vector<std::string>
1891Version_script_info::get_dependencies(const char* version) const
dbe717ef 1892{
494e05f4 1893 std::vector<std::string> ret;
6affe781
ILT
1894 for (size_t j = 0; j < this->version_trees_.size(); ++j)
1895 if (this->version_trees_[j]->tag == version)
494e05f4
ILT
1896 {
1897 const struct Version_dependency_list* deps =
6affe781 1898 this->version_trees_[j]->dependencies;
494e05f4
ILT
1899 if (deps != NULL)
1900 for (size_t k = 0; k < deps->dependencies.size(); ++k)
1901 ret.push_back(deps->dependencies[k]);
1902 return ret;
1903 }
1904 return ret;
1905}
1906
6affe781
ILT
1907// Build a set of fast lookup tables for a version script.
1908
1909void
1910Version_script_info::build_lookup_tables()
1911{
1912 size_t size = this->version_trees_.size();
1913 for (size_t j = 0; j < size; ++j)
1914 {
1915 const Version_tree* v = this->version_trees_[j];
1916 this->build_expression_list_lookup(v->global, v, &this->globals_[0]);
1917 this->build_expression_list_lookup(v->local, v, &this->locals_[0]);
1918 }
1919}
1920
1921// Build fast lookup information for EXPLIST and store it in LOOKUP.
1922
1923void
1924Version_script_info::build_expression_list_lookup(
1925 const Version_expression_list* explist,
1926 const Version_tree* v,
1927 Lookup** lookup)
1928{
1929 if (explist == NULL)
1930 return;
1931 size_t size = explist->expressions.size();
1932 for (size_t j = 0; j < size; ++j)
1933 {
1934 const Version_expression& exp(explist->expressions[j]);
1935 Lookup **pp = &lookup[exp.language];
1936 if (*pp == NULL)
1937 *pp = new Lookup();
1938 Lookup* p = *pp;
1939
1940 if (!exp.exact_match && strpbrk(exp.pattern.c_str(), "?*[") != NULL)
1941 p->globs.push_back(Glob(exp.pattern.c_str(), v));
1942 else
1943 {
1944 std::pair<Exact::iterator, bool> ins =
1945 p->exact.insert(std::make_pair(exp.pattern, v));
1946 if (!ins.second)
1947 {
1948 const Version_tree* v1 = ins.first->second;
1949 if (v1->tag != v->tag)
1950 gold_error(_("'%s' appears in version script with both "
1951 "versions '%s' and '%s'"),
1952 exp.pattern.c_str(), v1->tag.c_str(),
1953 v->tag.c_str());
1954 }
1955 }
1956 }
1957}
1958
057ead22
ILT
1959// Look up SYMBOL_NAME in the list of versions. If CHECK_GLOBAL is
1960// true look at the globally visible symbols, otherwise look at the
1961// symbols listed as "local:". Return true if the symbol is found,
1962// false otherwise. If the symbol is found, then if PVERSION is not
1963// NULL, set *PVERSION to the version.
1964
1965bool
494e05f4 1966Version_script_info::get_symbol_version_helper(const char* symbol_name,
057ead22
ILT
1967 bool check_global,
1968 std::string* pversion) const
494e05f4 1969{
6affe781
ILT
1970 gold_assert(this->is_finalized_);
1971 const Lookup* const * pp = (check_global
1972 ? &this->globals_[0]
1973 : &this->locals_[0]);
1974 for (int i = 0; i < LANGUAGE_COUNT; ++i)
494e05f4 1975 {
6affe781
ILT
1976 const Lookup* lookup = pp[i];
1977 if (lookup == NULL)
1978 continue;
1979
1980 const char* name_to_match;
1981 char* allocated;
1982 switch (i)
1983 {
1984 case LANGUAGE_C:
1985 allocated = NULL;
1986 name_to_match = symbol_name;
1987 break;
1988 case LANGUAGE_CXX:
1989 allocated = cplus_demangle(symbol_name, DMGL_ANSI | DMGL_PARAMS);
1990 if (allocated == NULL)
1991 continue;
1992 name_to_match = allocated;
1993 break;
1994 case LANGUAGE_JAVA:
1995 allocated = cplus_demangle(symbol_name,
1996 DMGL_ANSI | DMGL_PARAMS | DMGL_JAVA);
1997 if (allocated == NULL)
1998 continue;
1999 name_to_match = allocated;
2000 default:
2001 gold_unreachable();
2002 }
2003
2004 Exact::const_iterator pe = lookup->exact.find(name_to_match);
2005 if (pe != lookup->exact.end())
2006 {
2007 if (pversion != NULL)
2008 *pversion = pe->second->tag;
2009 if (allocated != NULL)
2010 free (allocated);
2011 return true;
2012 }
2013
2014 for (std::vector<Glob>::const_iterator pg = lookup->globs.begin();
2015 pg != lookup->globs.end();
2016 ++pg)
2017 {
2018 // Check for * specially since it is fairly common.
2019 if ((pg->pattern[0] == '*' && pg->pattern[1] == '\0')
2020 || fnmatch(pg->pattern, name_to_match, FNM_NOESCAPE) == 0)
2021 {
2022 if (pversion != NULL)
2023 *pversion = pg->version->tag;
2024 if (allocated != NULL)
2025 free (allocated);
2026 return true;
2027 }
2028 }
2029
2030 if (allocated != NULL)
2031 free (allocated);
494e05f4 2032 }
6affe781 2033
057ead22 2034 return false;
494e05f4
ILT
2035}
2036
2037struct Version_dependency_list*
2038Version_script_info::allocate_dependency_list()
2039{
2040 dependency_lists_.push_back(new Version_dependency_list);
2041 return dependency_lists_.back();
2042}
2043
2044struct Version_expression_list*
2045Version_script_info::allocate_expression_list()
2046{
2047 expression_lists_.push_back(new Version_expression_list);
2048 return expression_lists_.back();
2049}
2050
2051struct Version_tree*
2052Version_script_info::allocate_version_tree()
2053{
2054 version_trees_.push_back(new Version_tree);
2055 return version_trees_.back();
2056}
2057
2058// Print for debugging.
2059
2060void
2061Version_script_info::print(FILE* f) const
2062{
2063 if (this->empty())
2064 return;
2065
2066 fprintf(f, "VERSION {");
2067
2068 for (size_t i = 0; i < this->version_trees_.size(); ++i)
2069 {
2070 const Version_tree* vt = this->version_trees_[i];
2071
2072 if (vt->tag.empty())
2073 fprintf(f, " {\n");
2074 else
2075 fprintf(f, " %s {\n", vt->tag.c_str());
2076
2077 if (vt->global != NULL)
2078 {
2079 fprintf(f, " global :\n");
2080 this->print_expression_list(f, vt->global);
2081 }
2082
2083 if (vt->local != NULL)
2084 {
2085 fprintf(f, " local :\n");
2086 this->print_expression_list(f, vt->local);
2087 }
2088
2089 fprintf(f, " }");
2090 if (vt->dependencies != NULL)
2091 {
2092 const Version_dependency_list* deps = vt->dependencies;
2093 for (size_t j = 0; j < deps->dependencies.size(); ++j)
2094 {
2095 if (j < deps->dependencies.size() - 1)
2096 fprintf(f, "\n");
2097 fprintf(f, " %s", deps->dependencies[j].c_str());
2098 }
2099 }
2100 fprintf(f, ";\n");
2101 }
2102
2103 fprintf(f, "}\n");
2104}
2105
2106void
2107Version_script_info::print_expression_list(
2108 FILE* f,
2109 const Version_expression_list* vel) const
2110{
6affe781 2111 Version_script_info::Language current_language = LANGUAGE_C;
494e05f4
ILT
2112 for (size_t i = 0; i < vel->expressions.size(); ++i)
2113 {
2114 const Version_expression& ve(vel->expressions[i]);
2115
2116 if (ve.language != current_language)
2117 {
6affe781 2118 if (current_language != LANGUAGE_C)
494e05f4 2119 fprintf(f, " }\n");
6affe781
ILT
2120 switch (ve.language)
2121 {
2122 case LANGUAGE_C:
2123 break;
2124 case LANGUAGE_CXX:
2125 fprintf(f, " extern \"C++\" {\n");
2126 break;
2127 case LANGUAGE_JAVA:
2128 fprintf(f, " extern \"Java\" {\n");
2129 break;
2130 default:
2131 gold_unreachable();
2132 }
494e05f4
ILT
2133 current_language = ve.language;
2134 }
2135
2136 fprintf(f, " ");
6affe781 2137 if (current_language != LANGUAGE_C)
494e05f4
ILT
2138 fprintf(f, " ");
2139
2140 if (ve.exact_match)
2141 fprintf(f, "\"");
2142 fprintf(f, "%s", ve.pattern.c_str());
2143 if (ve.exact_match)
2144 fprintf(f, "\"");
2145
2146 fprintf(f, "\n");
2147 }
2148
6affe781 2149 if (current_language != LANGUAGE_C)
494e05f4
ILT
2150 fprintf(f, " }\n");
2151}
2152
2153} // End namespace gold.
2154
2155// The remaining functions are extern "C", so it's clearer to not put
2156// them in namespace gold.
2157
2158using namespace gold;
2159
2160// This function is called by the bison parser to return the next
2161// token.
2162
2163extern "C" int
2164yylex(YYSTYPE* lvalp, void* closurev)
2165{
2166 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2167 const Token* token = closure->next_token();
2168 switch (token->classification())
2169 {
2170 default:
2171 gold_unreachable();
2172
2173 case Token::TOKEN_INVALID:
2174 yyerror(closurev, "invalid character");
2175 return 0;
2176
2177 case Token::TOKEN_EOF:
2178 return 0;
2179
2180 case Token::TOKEN_STRING:
2181 {
2182 // This is either a keyword or a STRING.
2183 size_t len;
2184 const char* str = token->string_value(&len);
2185 int parsecode = 0;
2186 switch (closure->lex_mode())
2187 {
2188 case Lex::LINKER_SCRIPT:
2189 parsecode = script_keywords.keyword_to_parsecode(str, len);
2190 break;
2191 case Lex::VERSION_SCRIPT:
2192 parsecode = version_script_keywords.keyword_to_parsecode(str, len);
2193 break;
c82fbeee
CS
2194 case Lex::DYNAMIC_LIST:
2195 parsecode = dynamic_list_keywords.keyword_to_parsecode(str, len);
2196 break;
494e05f4
ILT
2197 default:
2198 break;
2199 }
2200 if (parsecode != 0)
2201 return parsecode;
2202 lvalp->string.value = str;
2203 lvalp->string.length = len;
2204 return STRING;
2205 }
2206
2207 case Token::TOKEN_QUOTED_STRING:
2208 lvalp->string.value = token->string_value(&lvalp->string.length);
2209 return QUOTED_STRING;
2210
2211 case Token::TOKEN_OPERATOR:
2212 return token->operator_value();
2213
2214 case Token::TOKEN_INTEGER:
2215 lvalp->integer = token->integer_value();
2216 return INTEGER;
2217 }
2218}
2219
2220// This function is called by the bison parser to report an error.
2221
2222extern "C" void
2223yyerror(void* closurev, const char* message)
2224{
2225 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2226 gold_error(_("%s:%d:%d: %s"), closure->filename(), closure->lineno(),
2227 closure->charpos(), message);
2228}
2229
afc06bb8
ILT
2230// Called by the bison parser to add an external symbol to the link.
2231
2232extern "C" void
2233script_add_extern(void* closurev, const char* name, size_t length)
2234{
2235 // We treat exactly like -u NAME. FIXME: If it seems useful, we
2236 // could handle this after the command line has been read, by adding
2237 // entries to the symbol table directly.
2238 std::string arg("--undefined=");
2239 arg.append(name, length);
2240 script_parse_option(closurev, arg.c_str(), arg.size());
2241}
2242
494e05f4
ILT
2243// Called by the bison parser to add a file to the link.
2244
2245extern "C" void
2246script_add_file(void* closurev, const char* name, size_t length)
2247{
2248 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2249
2250 // If this is an absolute path, and we found the script in the
2251 // sysroot, then we want to prepend the sysroot to the file name.
2252 // For example, this is how we handle a cross link to the x86_64
2253 // libc.so, which refers to /lib/libc.so.6.
2254 std::string name_string(name, length);
2255 const char* extra_search_path = ".";
2256 std::string script_directory;
2257 if (IS_ABSOLUTE_PATH(name_string.c_str()))
2258 {
2259 if (closure->is_in_sysroot())
2260 {
8851ecca 2261 const std::string& sysroot(parameters->options().sysroot());
494e05f4
ILT
2262 gold_assert(!sysroot.empty());
2263 name_string = sysroot + name_string;
2264 }
2265 }
2266 else
2267 {
2268 // In addition to checking the normal library search path, we
2269 // also want to check in the script-directory.
2270 const char *slash = strrchr(closure->filename(), '/');
2271 if (slash != NULL)
2272 {
2273 script_directory.assign(closure->filename(),
2274 slash - closure->filename() + 1);
2275 extra_search_path = script_directory.c_str();
2276 }
2277 }
2278
ae3b5189
CD
2279 Input_file_argument file(name_string.c_str(),
2280 Input_file_argument::INPUT_FILE_TYPE_FILE,
2281 extra_search_path, false,
2282 closure->position_dependent_options());
494e05f4 2283 closure->inputs()->add_file(file);
dbe717ef
ILT
2284}
2285
2286// Called by the bison parser to start a group. If we are already in
2287// a group, that means that this script was invoked within a
2288// --start-group --end-group sequence on the command line, or that
2289// this script was found in a GROUP of another script. In that case,
2290// we simply continue the existing group, rather than starting a new
2291// one. It is possible to construct a case in which this will do
2292// something other than what would happen if we did a recursive group,
2293// but it's hard to imagine why the different behaviour would be
2294// useful for a real program. Avoiding recursive groups is simpler
2295// and more efficient.
2296
2297extern "C" void
2298script_start_group(void* closurev)
2299{
2300 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2301 if (!closure->in_group())
2302 closure->inputs()->start_group();
2303}
2304
2305// Called by the bison parser at the end of a group.
2306
2307extern "C" void
2308script_end_group(void* closurev)
2309{
2310 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2311 if (!closure->in_group())
2312 closure->inputs()->end_group();
2313}
2314
2315// Called by the bison parser to start an AS_NEEDED list.
2316
2317extern "C" void
2318script_start_as_needed(void* closurev)
2319{
2320 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
45aa233b 2321 closure->position_dependent_options().set_as_needed(true);
dbe717ef
ILT
2322}
2323
2324// Called by the bison parser at the end of an AS_NEEDED list.
2325
2326extern "C" void
2327script_end_as_needed(void* closurev)
2328{
2329 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
45aa233b 2330 closure->position_dependent_options().set_as_needed(false);
dbe717ef 2331}
195e7dc6 2332
d391083d
ILT
2333// Called by the bison parser to set the entry symbol.
2334
2335extern "C" void
e5756efb 2336script_set_entry(void* closurev, const char* entry, size_t length)
d391083d 2337{
a5dc0706
ILT
2338 // We'll parse this exactly the same as --entry=ENTRY on the commandline
2339 // TODO(csilvers): FIXME -- call set_entry directly.
1890b465 2340 std::string arg("--entry=");
a5dc0706
ILT
2341 arg.append(entry, length);
2342 script_parse_option(closurev, arg.c_str(), arg.size());
e5756efb
ILT
2343}
2344
0dfbdef4
ILT
2345// Called by the bison parser to set whether to define common symbols.
2346
2347extern "C" void
2348script_set_common_allocation(void* closurev, int set)
2349{
2350 const char* arg = set != 0 ? "--define-common" : "--no-define-common";
2351 script_parse_option(closurev, arg, strlen(arg));
2352}
2353
e5756efb
ILT
2354// Called by the bison parser to define a symbol.
2355
2356extern "C" void
2357script_set_symbol(void* closurev, const char* name, size_t length,
2358 Expression* value, int providei, int hiddeni)
2359{
2360 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2361 const bool provide = providei != 0;
2362 const bool hidden = hiddeni != 0;
99fff23b
ILT
2363 closure->script_options()->add_symbol_assignment(name, length,
2364 closure->parsing_defsym(),
2365 value, provide, hidden);
15f8229b 2366 closure->clear_skip_on_incompatible_target();
d391083d
ILT
2367}
2368
494e05f4
ILT
2369// Called by the bison parser to add an assertion.
2370
2371extern "C" void
2372script_add_assertion(void* closurev, Expression* check, const char* message,
2373 size_t messagelen)
2374{
2375 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2376 closure->script_options()->add_assertion(check, message, messagelen);
15f8229b 2377 closure->clear_skip_on_incompatible_target();
494e05f4
ILT
2378}
2379
195e7dc6
ILT
2380// Called by the bison parser to parse an OPTION.
2381
2382extern "C" void
e5756efb 2383script_parse_option(void* closurev, const char* option, size_t length)
195e7dc6
ILT
2384{
2385 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
a0451b38
ILT
2386 // We treat the option as a single command-line option, even if
2387 // it has internal whitespace.
2388 if (closure->command_line() == NULL)
2389 {
2390 // There are some options that we could handle here--e.g.,
2391 // -lLIBRARY. Should we bother?
e5756efb 2392 gold_warning(_("%s:%d:%d: ignoring command OPTION; OPTION is only valid"
d391083d 2393 " for scripts specified via -T/--script"),
e5756efb 2394 closure->filename(), closure->lineno(), closure->charpos());
a0451b38
ILT
2395 }
2396 else
2397 {
2398 bool past_a_double_dash_option = false;
ee1fe73e 2399 const char* mutable_option = strndup(option, length);
e5756efb 2400 gold_assert(mutable_option != NULL);
a0451b38
ILT
2401 closure->command_line()->process_one_option(1, &mutable_option, 0,
2402 &past_a_double_dash_option);
a5dc0706
ILT
2403 // The General_options class will quite possibly store a pointer
2404 // into mutable_option, so we can't free it. In cases the class
2405 // does not store such a pointer, this is a memory leak. Alas. :(
a0451b38 2406 }
15f8229b
ILT
2407 closure->clear_skip_on_incompatible_target();
2408}
2409
2410// Called by the bison parser to handle OUTPUT_FORMAT. OUTPUT_FORMAT
2411// takes either one or three arguments. In the three argument case,
2412// the format depends on the endianness option, which we don't
2413// currently support (FIXME). If we see an OUTPUT_FORMAT for the
2414// wrong format, then we want to search for a new file. Returning 0
2415// here will cause the parser to immediately abort.
2416
2417extern "C" int
2418script_check_output_format(void* closurev,
2419 const char* default_name, size_t default_length,
2420 const char*, size_t, const char*, size_t)
2421{
2422 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2423 std::string name(default_name, default_length);
2424 Target* target = select_target_by_name(name.c_str());
2425 if (target == NULL || !parameters->is_compatible_target(target))
2426 {
2427 if (closure->skip_on_incompatible_target())
2428 {
2429 closure->set_found_incompatible_target();
2430 return 0;
2431 }
2432 // FIXME: Should we warn about the unknown target?
2433 }
2434 return 1;
195e7dc6 2435}
e5756efb 2436
e6a307ba
ILT
2437// Called by the bison parser to handle TARGET.
2438
2439extern "C" void
2440script_set_target(void* closurev, const char* target, size_t len)
2441{
2442 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2443 std::string s(target, len);
2444 General_options::Object_format format_enum;
2445 format_enum = General_options::string_to_object_format(s.c_str());
2446 closure->position_dependent_options().set_format_enum(format_enum);
2447}
2448
3802b2dd
ILT
2449// Called by the bison parser to handle SEARCH_DIR. This is handled
2450// exactly like a -L option.
2451
2452extern "C" void
2453script_add_search_dir(void* closurev, const char* option, size_t length)
2454{
2455 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2456 if (closure->command_line() == NULL)
2457 gold_warning(_("%s:%d:%d: ignoring SEARCH_DIR; SEARCH_DIR is only valid"
2458 " for scripts specified via -T/--script"),
2459 closure->filename(), closure->lineno(), closure->charpos());
2460 else
2461 {
2462 std::string s = "-L" + std::string(option, length);
2463 script_parse_option(closurev, s.c_str(), s.size());
2464 }
2465}
2466
e5756efb
ILT
2467/* Called by the bison parser to push the lexer into expression
2468 mode. */
2469
494e05f4 2470extern "C" void
e5756efb
ILT
2471script_push_lex_into_expression_mode(void* closurev)
2472{
2473 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2474 closure->push_lex_mode(Lex::EXPRESSION);
2475}
2476
09124467
ILT
2477/* Called by the bison parser to push the lexer into version
2478 mode. */
2479
494e05f4 2480extern "C" void
09124467
ILT
2481script_push_lex_into_version_mode(void* closurev)
2482{
2483 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
6affe781
ILT
2484 if (closure->version_script()->is_finalized())
2485 gold_error(_("%s:%d:%d: invalid use of VERSION in input file"),
2486 closure->filename(), closure->lineno(), closure->charpos());
09124467
ILT
2487 closure->push_lex_mode(Lex::VERSION_SCRIPT);
2488}
2489
e5756efb
ILT
2490/* Called by the bison parser to pop the lexer mode. */
2491
494e05f4 2492extern "C" void
e5756efb
ILT
2493script_pop_lex_mode(void* closurev)
2494{
2495 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2496 closure->pop_lex_mode();
2497}
09124467 2498
09124467
ILT
2499// Register an entire version node. For example:
2500//
2501// GLIBC_2.1 {
2502// global: foo;
2503// } GLIBC_2.0;
2504//
2505// - tag is "GLIBC_2.1"
2506// - tree contains the information "global: foo"
2507// - deps contains "GLIBC_2.0"
2508
2509extern "C" void
2510script_register_vers_node(void*,
2511 const char* tag,
2512 int taglen,
2513 struct Version_tree *tree,
2514 struct Version_dependency_list *deps)
2515{
2516 gold_assert(tree != NULL);
09124467 2517 tree->dependencies = deps;
057ead22
ILT
2518 if (tag != NULL)
2519 tree->tag = std::string(tag, taglen);
09124467
ILT
2520}
2521
2522// Add a dependencies to the list of existing dependencies, if any,
2523// and return the expanded list.
2524
2525extern "C" struct Version_dependency_list *
2526script_add_vers_depend(void* closurev,
2527 struct Version_dependency_list *all_deps,
2528 const char *depend_to_add, int deplen)
2529{
2530 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2531 if (all_deps == NULL)
2532 all_deps = closure->version_script()->allocate_dependency_list();
2533 all_deps->dependencies.push_back(std::string(depend_to_add, deplen));
2534 return all_deps;
2535}
2536
2537// Add a pattern expression to an existing list of expressions, if any.
09124467
ILT
2538
2539extern "C" struct Version_expression_list *
2540script_new_vers_pattern(void* closurev,
2541 struct Version_expression_list *expressions,
10600224 2542 const char *pattern, int patlen, int exact_match)
09124467
ILT
2543{
2544 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2545 if (expressions == NULL)
2546 expressions = closure->version_script()->allocate_expression_list();
2547 expressions->expressions.push_back(
2548 Version_expression(std::string(pattern, patlen),
10600224
ILT
2549 closure->get_current_language(),
2550 static_cast<bool>(exact_match)));
09124467
ILT
2551 return expressions;
2552}
2553
10600224
ILT
2554// Attaches b to the end of a, and clears b. So a = a + b and b = {}.
2555
2556extern "C" struct Version_expression_list*
2557script_merge_expressions(struct Version_expression_list *a,
2558 struct Version_expression_list *b)
2559{
2560 a->expressions.insert(a->expressions.end(),
2561 b->expressions.begin(), b->expressions.end());
2562 // We could delete b and remove it from expressions_lists_, but
2563 // that's a lot of work. This works just as well.
2564 b->expressions.clear();
2565 return a;
2566}
2567
09124467
ILT
2568// Combine the global and local expressions into a a Version_tree.
2569
2570extern "C" struct Version_tree *
2571script_new_vers_node(void* closurev,
2572 struct Version_expression_list *global,
2573 struct Version_expression_list *local)
2574{
2575 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2576 Version_tree* tree = closure->version_script()->allocate_version_tree();
2577 tree->global = global;
2578 tree->local = local;
2579 return tree;
2580}
2581
10600224 2582// Handle a transition in language, such as at the
09124467
ILT
2583// start or end of 'extern "C++"'
2584
2585extern "C" void
2586version_script_push_lang(void* closurev, const char* lang, int langlen)
2587{
2588 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
6affe781
ILT
2589 std::string language(lang, langlen);
2590 Version_script_info::Language code;
2591 if (language.empty() || language == "C")
2592 code = Version_script_info::LANGUAGE_C;
2593 else if (language == "C++")
2594 code = Version_script_info::LANGUAGE_CXX;
2595 else if (language == "Java")
2596 code = Version_script_info::LANGUAGE_JAVA;
2597 else
2598 {
2599 char* buf = new char[langlen + 100];
2600 snprintf(buf, langlen + 100,
2601 _("unrecognized version script language '%s'"),
2602 language.c_str());
2603 yyerror(closurev, buf);
2604 delete[] buf;
2605 code = Version_script_info::LANGUAGE_C;
2606 }
2607 closure->push_language(code);
09124467
ILT
2608}
2609
2610extern "C" void
2611version_script_pop_lang(void* closurev)
2612{
2613 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2614 closure->pop_language();
2615}
494e05f4
ILT
2616
2617// Called by the bison parser to start a SECTIONS clause.
2618
2619extern "C" void
2620script_start_sections(void* closurev)
2621{
2622 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2623 closure->script_options()->script_sections()->start_sections();
15f8229b 2624 closure->clear_skip_on_incompatible_target();
494e05f4
ILT
2625}
2626
2627// Called by the bison parser to finish a SECTIONS clause.
2628
2629extern "C" void
2630script_finish_sections(void* closurev)
2631{
2632 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2633 closure->script_options()->script_sections()->finish_sections();
2634}
2635
2636// Start processing entries for an output section.
2637
2638extern "C" void
2639script_start_output_section(void* closurev, const char* name, size_t namelen,
2640 const struct Parser_output_section_header* header)
2641{
2642 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2643 closure->script_options()->script_sections()->start_output_section(name,
2644 namelen,
2645 header);
2646}
2647
2648// Finish processing entries for an output section.
2649
2650extern "C" void
c82fbeee 2651script_finish_output_section(void* closurev,
494e05f4
ILT
2652 const struct Parser_output_section_trailer* trail)
2653{
2654 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2655 closure->script_options()->script_sections()->finish_output_section(trail);
2656}
2657
2658// Add a data item (e.g., "WORD (0)") to the current output section.
2659
2660extern "C" void
2661script_add_data(void* closurev, int data_token, Expression* val)
2662{
2663 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2664 int size;
2665 bool is_signed = true;
2666 switch (data_token)
2667 {
2668 case QUAD:
2669 size = 8;
2670 is_signed = false;
2671 break;
2672 case SQUAD:
2673 size = 8;
2674 break;
2675 case LONG:
2676 size = 4;
2677 break;
2678 case SHORT:
2679 size = 2;
2680 break;
2681 case BYTE:
2682 size = 1;
2683 break;
2684 default:
2685 gold_unreachable();
2686 }
2687 closure->script_options()->script_sections()->add_data(size, is_signed, val);
2688}
2689
2690// Add a clause setting the fill value to the current output section.
2691
2692extern "C" void
2693script_add_fill(void* closurev, Expression* val)
2694{
2695 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2696 closure->script_options()->script_sections()->add_fill(val);
2697}
2698
2699// Add a new input section specification to the current output
2700// section.
2701
2702extern "C" void
2703script_add_input_section(void* closurev,
2704 const struct Input_section_spec* spec,
2705 int keepi)
2706{
2707 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2708 bool keep = keepi != 0;
2709 closure->script_options()->script_sections()->add_input_section(spec, keep);
2710}
2711
2d924fd9
ILT
2712// When we see DATA_SEGMENT_ALIGN we record that following output
2713// sections may be relro.
2714
2715extern "C" void
2716script_data_segment_align(void* closurev)
2717{
2718 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2719 if (!closure->script_options()->saw_sections_clause())
2720 gold_error(_("%s:%d:%d: DATA_SEGMENT_ALIGN not in SECTIONS clause"),
2721 closure->filename(), closure->lineno(), closure->charpos());
2722 else
2723 closure->script_options()->script_sections()->data_segment_align();
2724}
2725
2726// When we see DATA_SEGMENT_RELRO_END we know that all output sections
2727// since DATA_SEGMENT_ALIGN should be relro.
2728
2729extern "C" void
2730script_data_segment_relro_end(void* closurev)
2731{
2732 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2733 if (!closure->script_options()->saw_sections_clause())
2734 gold_error(_("%s:%d:%d: DATA_SEGMENT_ALIGN not in SECTIONS clause"),
2735 closure->filename(), closure->lineno(), closure->charpos());
2736 else
2737 closure->script_options()->script_sections()->data_segment_relro_end();
2738}
2739
494e05f4
ILT
2740// Create a new list of string/sort pairs.
2741
2742extern "C" String_sort_list_ptr
2743script_new_string_sort_list(const struct Wildcard_section* string_sort)
2744{
2745 return new String_sort_list(1, *string_sort);
2746}
2747
2748// Add an entry to a list of string/sort pairs. The way the parser
2749// works permits us to simply modify the first parameter, rather than
2750// copy the vector.
2751
2752extern "C" String_sort_list_ptr
2753script_string_sort_list_add(String_sort_list_ptr pv,
2754 const struct Wildcard_section* string_sort)
2755{
a445fddf
ILT
2756 if (pv == NULL)
2757 return script_new_string_sort_list(string_sort);
2758 else
2759 {
2760 pv->push_back(*string_sort);
2761 return pv;
2762 }
494e05f4
ILT
2763}
2764
2765// Create a new list of strings.
2766
2767extern "C" String_list_ptr
2768script_new_string_list(const char* str, size_t len)
2769{
2770 return new String_list(1, std::string(str, len));
2771}
2772
2773// Add an element to a list of strings. The way the parser works
2774// permits us to simply modify the first parameter, rather than copy
2775// the vector.
2776
2777extern "C" String_list_ptr
2778script_string_list_push_back(String_list_ptr pv, const char* str, size_t len)
2779{
1c4f3631
ILT
2780 if (pv == NULL)
2781 return script_new_string_list(str, len);
2782 else
2783 {
2784 pv->push_back(std::string(str, len));
2785 return pv;
2786 }
494e05f4
ILT
2787}
2788
2789// Concatenate two string lists. Either or both may be NULL. The way
2790// the parser works permits us to modify the parameters, rather than
2791// copy the vector.
2792
2793extern "C" String_list_ptr
2794script_string_list_append(String_list_ptr pv1, String_list_ptr pv2)
2795{
2796 if (pv1 == NULL)
2797 return pv2;
2798 if (pv2 == NULL)
2799 return pv1;
2800 pv1->insert(pv1->end(), pv2->begin(), pv2->end());
2801 return pv1;
2802}
1c4f3631
ILT
2803
2804// Add a new program header.
2805
2806extern "C" void
2807script_add_phdr(void* closurev, const char* name, size_t namelen,
2808 unsigned int type, const Phdr_info* info)
2809{
2810 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2811 bool includes_filehdr = info->includes_filehdr != 0;
2812 bool includes_phdrs = info->includes_phdrs != 0;
2813 bool is_flags_valid = info->is_flags_valid != 0;
2814 Script_sections* ss = closure->script_options()->script_sections();
2815 ss->add_phdr(name, namelen, type, includes_filehdr, includes_phdrs,
2816 is_flags_valid, info->flags, info->load_address);
15f8229b 2817 closure->clear_skip_on_incompatible_target();
1c4f3631
ILT
2818}
2819
2820// Convert a program header string to a type.
2821
2822#define PHDR_TYPE(NAME) { #NAME, sizeof(#NAME) - 1, elfcpp::NAME }
2823
2824static struct
2825{
2826 const char* name;
2827 size_t namelen;
2828 unsigned int val;
2829} phdr_type_names[] =
2830{
2831 PHDR_TYPE(PT_NULL),
2832 PHDR_TYPE(PT_LOAD),
2833 PHDR_TYPE(PT_DYNAMIC),
2834 PHDR_TYPE(PT_INTERP),
2835 PHDR_TYPE(PT_NOTE),
2836 PHDR_TYPE(PT_SHLIB),
2837 PHDR_TYPE(PT_PHDR),
2838 PHDR_TYPE(PT_TLS),
2839 PHDR_TYPE(PT_GNU_EH_FRAME),
2840 PHDR_TYPE(PT_GNU_STACK),
2841 PHDR_TYPE(PT_GNU_RELRO)
2842};
2843
2844extern "C" unsigned int
2845script_phdr_string_to_type(void* closurev, const char* name, size_t namelen)
2846{
2847 for (unsigned int i = 0;
2848 i < sizeof(phdr_type_names) / sizeof(phdr_type_names[0]);
2849 ++i)
2850 if (namelen == phdr_type_names[i].namelen
2851 && strncmp(name, phdr_type_names[i].name, namelen) == 0)
2852 return phdr_type_names[i].val;
2853 yyerror(closurev, _("unknown PHDR type (try integer)"));
2854 return elfcpp::PT_NULL;
2855}
3c12dcdb
DK
2856
2857extern "C" void
2858script_saw_segment_start_expression(void* closurev)
2859{
2860 Parser_closure* closure = static_cast<Parser_closure*>(closurev);
2861 Script_sections* ss = closure->script_options()->script_sections();
2862 ss->set_saw_segment_start_expression(true);
2863}
This page took 0.280525 seconds and 4 git commands to generate.