* pe-dll.c (auto_export): Use bsearch to speed up scan of exports
[binutils.git] / gold / expression.cc
blobe31c151c0d00f31fe86fd6ede452be0e3da38727
1 // expression.cc -- expressions in linker scripts for gold
3 // Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
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.
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.
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.
23 #include "gold.h"
25 #include <string>
27 #include "elfcpp.h"
28 #include "parameters.h"
29 #include "symtab.h"
30 #include "layout.h"
31 #include "output.h"
32 #include "script.h"
33 #include "script-c.h"
35 namespace gold
38 // This file holds the code which handles linker expressions.
40 // The dot symbol, which linker scripts refer to simply as ".",
41 // requires special treatment. The dot symbol is set several times,
42 // section addresses will refer to it, output sections will change it,
43 // and it can be set based on the value of other symbols. We simplify
44 // the handling by prohibiting setting the dot symbol to the value of
45 // a non-absolute symbol.
47 // When evaluating the value of an expression, we pass in a pointer to
48 // this struct, so that the expression evaluation can find the
49 // information it needs.
51 struct Expression::Expression_eval_info
53 // The symbol table.
54 const Symbol_table* symtab;
55 // The layout--we use this to get section information.
56 const Layout* layout;
57 // Whether to check assertions.
58 bool check_assertions;
59 // Whether expressions can refer to the dot symbol. The dot symbol
60 // is only available within a SECTIONS clause.
61 bool is_dot_available;
62 // The current value of the dot symbol.
63 uint64_t dot_value;
64 // The section in which the dot symbol is defined; this is NULL if
65 // it is absolute.
66 Output_section* dot_section;
67 // Points to where the section of the result should be stored.
68 Output_section** result_section_pointer;
69 // Pointer to where the alignment of the result should be stored.
70 uint64_t* result_alignment_pointer;
73 // Evaluate an expression.
75 uint64_t
76 Expression::eval(const Symbol_table* symtab, const Layout* layout,
77 bool check_assertions)
79 return this->eval_maybe_dot(symtab, layout, check_assertions,
80 false, 0, NULL, NULL, NULL, false);
83 // Evaluate an expression which may refer to the dot symbol.
85 uint64_t
86 Expression::eval_with_dot(const Symbol_table* symtab, const Layout* layout,
87 bool check_assertions, uint64_t dot_value,
88 Output_section* dot_section,
89 Output_section** result_section_pointer,
90 uint64_t* result_alignment_pointer,
91 bool is_section_dot_assignment)
93 return this->eval_maybe_dot(symtab, layout, check_assertions, true,
94 dot_value, dot_section, result_section_pointer,
95 result_alignment_pointer,
96 is_section_dot_assignment);
99 // Evaluate an expression which may or may not refer to the dot
100 // symbol.
102 uint64_t
103 Expression::eval_maybe_dot(const Symbol_table* symtab, const Layout* layout,
104 bool check_assertions, bool is_dot_available,
105 uint64_t dot_value, Output_section* dot_section,
106 Output_section** result_section_pointer,
107 uint64_t* result_alignment_pointer,
108 bool is_section_dot_assignment)
110 Expression_eval_info eei;
111 eei.symtab = symtab;
112 eei.layout = layout;
113 eei.check_assertions = check_assertions;
114 eei.is_dot_available = is_dot_available;
115 eei.dot_value = dot_value;
116 eei.dot_section = dot_section;
118 // We assume the value is absolute, and only set this to a section
119 // if we find a section-relative reference.
120 if (result_section_pointer != NULL)
121 *result_section_pointer = NULL;
122 eei.result_section_pointer = result_section_pointer;
124 eei.result_alignment_pointer = result_alignment_pointer;
126 uint64_t val = this->value(&eei);
128 // If this is an assignment to dot within a section, and the value
129 // is absolute, treat it as a section-relative offset.
130 if (is_section_dot_assignment && *result_section_pointer == NULL)
132 gold_assert(dot_section != NULL);
133 val += dot_section->address();
134 *result_section_pointer = dot_section;
136 return val;
139 // A number.
141 class Integer_expression : public Expression
143 public:
144 Integer_expression(uint64_t val)
145 : val_(val)
148 uint64_t
149 value(const Expression_eval_info*)
150 { return this->val_; }
152 void
153 print(FILE* f) const
154 { fprintf(f, "0x%llx", static_cast<unsigned long long>(this->val_)); }
156 private:
157 uint64_t val_;
160 extern "C" Expression*
161 script_exp_integer(uint64_t val)
163 return new Integer_expression(val);
166 // An expression whose value is the value of a symbol.
168 class Symbol_expression : public Expression
170 public:
171 Symbol_expression(const char* name, size_t length)
172 : name_(name, length)
175 uint64_t
176 value(const Expression_eval_info*);
178 void
179 print(FILE* f) const
180 { fprintf(f, "%s", this->name_.c_str()); }
182 private:
183 std::string name_;
186 uint64_t
187 Symbol_expression::value(const Expression_eval_info* eei)
189 Symbol* sym = eei->symtab->lookup(this->name_.c_str());
190 if (sym == NULL || !sym->is_defined())
192 gold_error(_("undefined symbol '%s' referenced in expression"),
193 this->name_.c_str());
194 return 0;
197 if (eei->result_section_pointer != NULL)
198 *eei->result_section_pointer = sym->output_section();
200 if (parameters->target().get_size() == 32)
201 return eei->symtab->get_sized_symbol<32>(sym)->value();
202 else if (parameters->target().get_size() == 64)
203 return eei->symtab->get_sized_symbol<64>(sym)->value();
204 else
205 gold_unreachable();
208 // An expression whose value is the value of the special symbol ".".
209 // This is only valid within a SECTIONS clause.
211 class Dot_expression : public Expression
213 public:
214 Dot_expression()
217 uint64_t
218 value(const Expression_eval_info*);
220 void
221 print(FILE* f) const
222 { fprintf(f, "."); }
225 uint64_t
226 Dot_expression::value(const Expression_eval_info* eei)
228 if (!eei->is_dot_available)
230 gold_error(_("invalid reference to dot symbol outside of "
231 "SECTIONS clause"));
232 return 0;
234 if (eei->result_section_pointer != NULL)
235 *eei->result_section_pointer = eei->dot_section;
236 return eei->dot_value;
239 // A string. This is either the name of a symbol, or ".".
241 extern "C" Expression*
242 script_exp_string(const char* name, size_t length)
244 if (length == 1 && name[0] == '.')
245 return new Dot_expression();
246 else
247 return new Symbol_expression(name, length);
250 // A unary expression.
252 class Unary_expression : public Expression
254 public:
255 Unary_expression(Expression* arg)
256 : arg_(arg)
259 ~Unary_expression()
260 { delete this->arg_; }
262 protected:
263 uint64_t
264 arg_value(const Expression_eval_info* eei,
265 Output_section** arg_section_pointer) const
267 return this->arg_->eval_maybe_dot(eei->symtab, eei->layout,
268 eei->check_assertions,
269 eei->is_dot_available,
270 eei->dot_value,
271 eei->dot_section,
272 arg_section_pointer,
273 eei->result_alignment_pointer,
274 false);
277 void
278 arg_print(FILE* f) const
279 { this->arg_->print(f); }
281 private:
282 Expression* arg_;
285 // Handle unary operators. We use a preprocessor macro as a hack to
286 // capture the C operator.
288 #define UNARY_EXPRESSION(NAME, OPERATOR) \
289 class Unary_ ## NAME : public Unary_expression \
291 public: \
292 Unary_ ## NAME(Expression* arg) \
293 : Unary_expression(arg) \
294 { } \
296 uint64_t \
297 value(const Expression_eval_info* eei) \
299 Output_section* arg_section; \
300 uint64_t ret = OPERATOR this->arg_value(eei, &arg_section); \
301 if (arg_section != NULL && parameters->options().relocatable()) \
302 gold_warning(_("unary " #NAME " applied to section " \
303 "relative value")); \
304 return ret; \
307 void \
308 print(FILE* f) const \
310 fprintf(f, "(%s ", #OPERATOR); \
311 this->arg_print(f); \
312 fprintf(f, ")"); \
314 }; \
316 extern "C" Expression* \
317 script_exp_unary_ ## NAME(Expression* arg) \
319 return new Unary_ ## NAME(arg); \
322 UNARY_EXPRESSION(minus, -)
323 UNARY_EXPRESSION(logical_not, !)
324 UNARY_EXPRESSION(bitwise_not, ~)
326 // A binary expression.
328 class Binary_expression : public Expression
330 public:
331 Binary_expression(Expression* left, Expression* right)
332 : left_(left), right_(right)
335 ~Binary_expression()
337 delete this->left_;
338 delete this->right_;
341 protected:
342 uint64_t
343 left_value(const Expression_eval_info* eei,
344 Output_section** section_pointer,
345 uint64_t* alignment_pointer) const
347 return this->left_->eval_maybe_dot(eei->symtab, eei->layout,
348 eei->check_assertions,
349 eei->is_dot_available,
350 eei->dot_value,
351 eei->dot_section,
352 section_pointer,
353 alignment_pointer,
354 false);
357 uint64_t
358 right_value(const Expression_eval_info* eei,
359 Output_section** section_pointer,
360 uint64_t* alignment_pointer) const
362 return this->right_->eval_maybe_dot(eei->symtab, eei->layout,
363 eei->check_assertions,
364 eei->is_dot_available,
365 eei->dot_value,
366 eei->dot_section,
367 section_pointer,
368 alignment_pointer,
369 false);
372 void
373 left_print(FILE* f) const
374 { this->left_->print(f); }
376 void
377 right_print(FILE* f) const
378 { this->right_->print(f); }
380 // This is a call to function FUNCTION_NAME. Print it. This is for
381 // debugging.
382 void
383 print_function(FILE* f, const char* function_name) const
385 fprintf(f, "%s(", function_name);
386 this->left_print(f);
387 fprintf(f, ", ");
388 this->right_print(f);
389 fprintf(f, ")");
392 private:
393 Expression* left_;
394 Expression* right_;
397 // Handle binary operators. We use a preprocessor macro as a hack to
398 // capture the C operator. KEEP_LEFT means that if the left operand
399 // is section relative and the right operand is not, the result uses
400 // the same section as the left operand. KEEP_RIGHT is the same with
401 // left and right swapped. IS_DIV means that we need to give an error
402 // if the right operand is zero. WARN means that we should warn if
403 // used on section relative values in a relocatable link. We always
404 // warn if used on values in different sections in a relocatable link.
406 #define BINARY_EXPRESSION(NAME, OPERATOR, KEEP_LEFT, KEEP_RIGHT, IS_DIV, WARN) \
407 class Binary_ ## NAME : public Binary_expression \
409 public: \
410 Binary_ ## NAME(Expression* left, Expression* right) \
411 : Binary_expression(left, right) \
412 { } \
414 uint64_t \
415 value(const Expression_eval_info* eei) \
417 Output_section* left_section; \
418 uint64_t left_alignment = 0; \
419 uint64_t left = this->left_value(eei, &left_section, \
420 &left_alignment); \
421 Output_section* right_section; \
422 uint64_t right_alignment = 0; \
423 uint64_t right = this->right_value(eei, &right_section, \
424 &right_alignment); \
425 if (KEEP_RIGHT && left_section == NULL && right_section != NULL) \
427 if (eei->result_section_pointer != NULL) \
428 *eei->result_section_pointer = right_section; \
429 if (eei->result_alignment_pointer != NULL \
430 && right_alignment > *eei->result_alignment_pointer) \
431 *eei->result_alignment_pointer = right_alignment; \
433 else if (KEEP_LEFT \
434 && left_section != NULL \
435 && right_section == NULL) \
437 if (eei->result_section_pointer != NULL) \
438 *eei->result_section_pointer = left_section; \
439 if (eei->result_alignment_pointer != NULL \
440 && left_alignment > *eei->result_alignment_pointer) \
441 *eei->result_alignment_pointer = left_alignment; \
443 else if ((WARN || left_section != right_section) \
444 && (left_section != NULL || right_section != NULL) \
445 && parameters->options().relocatable()) \
446 gold_warning(_("binary " #NAME " applied to section " \
447 "relative value")); \
448 if (IS_DIV && right == 0) \
450 gold_error(_(#NAME " by zero")); \
451 return 0; \
453 return left OPERATOR right; \
456 void \
457 print(FILE* f) const \
459 fprintf(f, "("); \
460 this->left_print(f); \
461 fprintf(f, " %s ", #OPERATOR); \
462 this->right_print(f); \
463 fprintf(f, ")"); \
465 }; \
467 extern "C" Expression* \
468 script_exp_binary_ ## NAME(Expression* left, Expression* right) \
470 return new Binary_ ## NAME(left, right); \
473 BINARY_EXPRESSION(mult, *, false, false, false, true)
474 BINARY_EXPRESSION(div, /, false, false, true, true)
475 BINARY_EXPRESSION(mod, %, false, false, true, true)
476 BINARY_EXPRESSION(add, +, true, true, false, true)
477 BINARY_EXPRESSION(sub, -, true, false, false, false)
478 BINARY_EXPRESSION(lshift, <<, false, false, false, true)
479 BINARY_EXPRESSION(rshift, >>, false, false, false, true)
480 BINARY_EXPRESSION(eq, ==, false, false, false, false)
481 BINARY_EXPRESSION(ne, !=, false, false, false, false)
482 BINARY_EXPRESSION(le, <=, false, false, false, false)
483 BINARY_EXPRESSION(ge, >=, false, false, false, false)
484 BINARY_EXPRESSION(lt, <, false, false, false, false)
485 BINARY_EXPRESSION(gt, >, false, false, false, false)
486 BINARY_EXPRESSION(bitwise_and, &, true, true, false, true)
487 BINARY_EXPRESSION(bitwise_xor, ^, true, true, false, true)
488 BINARY_EXPRESSION(bitwise_or, |, true, true, false, true)
489 BINARY_EXPRESSION(logical_and, &&, false, false, false, true)
490 BINARY_EXPRESSION(logical_or, ||, false, false, false, true)
492 // A trinary expression.
494 class Trinary_expression : public Expression
496 public:
497 Trinary_expression(Expression* arg1, Expression* arg2, Expression* arg3)
498 : arg1_(arg1), arg2_(arg2), arg3_(arg3)
501 ~Trinary_expression()
503 delete this->arg1_;
504 delete this->arg2_;
505 delete this->arg3_;
508 protected:
509 uint64_t
510 arg1_value(const Expression_eval_info* eei,
511 Output_section** section_pointer) const
513 return this->arg1_->eval_maybe_dot(eei->symtab, eei->layout,
514 eei->check_assertions,
515 eei->is_dot_available,
516 eei->dot_value,
517 eei->dot_section,
518 section_pointer,
519 NULL,
520 false);
523 uint64_t
524 arg2_value(const Expression_eval_info* eei,
525 Output_section** section_pointer,
526 uint64_t* alignment_pointer) const
528 return this->arg1_->eval_maybe_dot(eei->symtab, eei->layout,
529 eei->check_assertions,
530 eei->is_dot_available,
531 eei->dot_value,
532 eei->dot_section,
533 section_pointer,
534 alignment_pointer,
535 false);
538 uint64_t
539 arg3_value(const Expression_eval_info* eei,
540 Output_section** section_pointer,
541 uint64_t* alignment_pointer) const
543 return this->arg1_->eval_maybe_dot(eei->symtab, eei->layout,
544 eei->check_assertions,
545 eei->is_dot_available,
546 eei->dot_value,
547 eei->dot_section,
548 section_pointer,
549 alignment_pointer,
550 false);
553 void
554 arg1_print(FILE* f) const
555 { this->arg1_->print(f); }
557 void
558 arg2_print(FILE* f) const
559 { this->arg2_->print(f); }
561 void
562 arg3_print(FILE* f) const
563 { this->arg3_->print(f); }
565 private:
566 Expression* arg1_;
567 Expression* arg2_;
568 Expression* arg3_;
571 // The conditional operator.
573 class Trinary_cond : public Trinary_expression
575 public:
576 Trinary_cond(Expression* arg1, Expression* arg2, Expression* arg3)
577 : Trinary_expression(arg1, arg2, arg3)
580 uint64_t
581 value(const Expression_eval_info* eei)
583 Output_section* arg1_section;
584 uint64_t arg1 = this->arg1_value(eei, &arg1_section);
585 return (arg1
586 ? this->arg2_value(eei, eei->result_section_pointer,
587 eei->result_alignment_pointer)
588 : this->arg3_value(eei, eei->result_section_pointer,
589 eei->result_alignment_pointer));
592 void
593 print(FILE* f) const
595 fprintf(f, "(");
596 this->arg1_print(f);
597 fprintf(f, " ? ");
598 this->arg2_print(f);
599 fprintf(f, " : ");
600 this->arg3_print(f);
601 fprintf(f, ")");
605 extern "C" Expression*
606 script_exp_trinary_cond(Expression* arg1, Expression* arg2, Expression* arg3)
608 return new Trinary_cond(arg1, arg2, arg3);
611 // Max function.
613 class Max_expression : public Binary_expression
615 public:
616 Max_expression(Expression* left, Expression* right)
617 : Binary_expression(left, right)
620 uint64_t
621 value(const Expression_eval_info* eei)
623 Output_section* left_section;
624 uint64_t left_alignment;
625 uint64_t left = this->left_value(eei, &left_section, &left_alignment);
626 Output_section* right_section;
627 uint64_t right_alignment;
628 uint64_t right = this->right_value(eei, &right_section, &right_alignment);
629 if (left_section == right_section)
631 if (eei->result_section_pointer != NULL)
632 *eei->result_section_pointer = left_section;
634 else if ((left_section != NULL || right_section != NULL)
635 && parameters->options().relocatable())
636 gold_warning(_("max applied to section relative value"));
637 if (eei->result_alignment_pointer != NULL)
639 uint64_t ra = *eei->result_alignment_pointer;
640 if (left > right)
641 ra = std::max(ra, left_alignment);
642 else if (right > left)
643 ra = std::max(ra, right_alignment);
644 else
645 ra = std::max(ra, std::max(left_alignment, right_alignment));
646 *eei->result_alignment_pointer = ra;
648 return std::max(left, right);
651 void
652 print(FILE* f) const
653 { this->print_function(f, "MAX"); }
656 extern "C" Expression*
657 script_exp_function_max(Expression* left, Expression* right)
659 return new Max_expression(left, right);
662 // Min function.
664 class Min_expression : public Binary_expression
666 public:
667 Min_expression(Expression* left, Expression* right)
668 : Binary_expression(left, right)
671 uint64_t
672 value(const Expression_eval_info* eei)
674 Output_section* left_section;
675 uint64_t left_alignment;
676 uint64_t left = this->left_value(eei, &left_section, &left_alignment);
677 Output_section* right_section;
678 uint64_t right_alignment;
679 uint64_t right = this->right_value(eei, &right_section, &right_alignment);
680 if (left_section == right_section)
682 if (eei->result_section_pointer != NULL)
683 *eei->result_section_pointer = left_section;
685 else if ((left_section != NULL || right_section != NULL)
686 && parameters->options().relocatable())
687 gold_warning(_("min applied to section relative value"));
688 if (eei->result_alignment_pointer != NULL)
690 uint64_t ra = *eei->result_alignment_pointer;
691 if (left < right)
692 ra = std::max(ra, left_alignment);
693 else if (right < left)
694 ra = std::max(ra, right_alignment);
695 else
696 ra = std::max(ra, std::max(left_alignment, right_alignment));
697 *eei->result_alignment_pointer = ra;
699 return std::min(left, right);
702 void
703 print(FILE* f) const
704 { this->print_function(f, "MIN"); }
707 extern "C" Expression*
708 script_exp_function_min(Expression* left, Expression* right)
710 return new Min_expression(left, right);
713 // Class Section_expression. This is a parent class used for
714 // functions which take the name of an output section.
716 class Section_expression : public Expression
718 public:
719 Section_expression(const char* section_name, size_t section_name_len)
720 : section_name_(section_name, section_name_len)
723 uint64_t
724 value(const Expression_eval_info*);
726 void
727 print(FILE* f) const
728 { fprintf(f, "%s(%s)", this->function_name(), this->section_name_.c_str()); }
730 protected:
731 // The child class must implement this.
732 virtual uint64_t
733 value_from_output_section(const Expression_eval_info*,
734 Output_section*) = 0;
736 // The child class must implement this.
737 virtual uint64_t
738 value_from_script_output_section(uint64_t address, uint64_t load_address,
739 uint64_t addralign, uint64_t size) = 0;
741 // The child class must implement this.
742 virtual const char*
743 function_name() const = 0;
745 private:
746 std::string section_name_;
749 uint64_t
750 Section_expression::value(const Expression_eval_info* eei)
752 const char* section_name = this->section_name_.c_str();
753 Output_section* os = eei->layout->find_output_section(section_name);
754 if (os != NULL)
755 return this->value_from_output_section(eei, os);
757 uint64_t address;
758 uint64_t load_address;
759 uint64_t addralign;
760 uint64_t size;
761 const Script_options* ss = eei->layout->script_options();
762 if (ss->saw_sections_clause())
764 if (ss->script_sections()->get_output_section_info(section_name,
765 &address,
766 &load_address,
767 &addralign,
768 &size))
769 return this->value_from_script_output_section(address, load_address,
770 addralign, size);
773 gold_error("%s called on nonexistent output section '%s'",
774 this->function_name(), section_name);
775 return 0;
778 // ABSOLUTE function.
780 class Absolute_expression : public Unary_expression
782 public:
783 Absolute_expression(Expression* arg)
784 : Unary_expression(arg)
787 uint64_t
788 value(const Expression_eval_info* eei)
790 uint64_t ret = this->arg_value(eei, NULL);
791 // Force the value to be absolute.
792 if (eei->result_section_pointer != NULL)
793 *eei->result_section_pointer = NULL;
794 return ret;
797 void
798 print(FILE* f) const
800 fprintf(f, "ABSOLUTE(");
801 this->arg_print(f);
802 fprintf(f, ")");
806 extern "C" Expression*
807 script_exp_function_absolute(Expression* arg)
809 return new Absolute_expression(arg);
812 // ALIGN function.
814 class Align_expression : public Binary_expression
816 public:
817 Align_expression(Expression* left, Expression* right)
818 : Binary_expression(left, right)
821 uint64_t
822 value(const Expression_eval_info* eei)
824 Output_section* align_section;
825 uint64_t align = this->right_value(eei, &align_section, NULL);
826 if (align_section != NULL
827 && parameters->options().relocatable())
828 gold_warning(_("aligning to section relative value"));
830 if (eei->result_alignment_pointer != NULL
831 && align > *eei->result_alignment_pointer)
833 uint64_t a = align;
834 while ((a & (a - 1)) != 0)
835 a &= a - 1;
836 *eei->result_alignment_pointer = a;
839 uint64_t value = this->left_value(eei, eei->result_section_pointer, NULL);
840 if (align <= 1)
841 return value;
842 return ((value + align - 1) / align) * align;
845 void
846 print(FILE* f) const
847 { this->print_function(f, "ALIGN"); }
850 extern "C" Expression*
851 script_exp_function_align(Expression* left, Expression* right)
853 return new Align_expression(left, right);
856 // ASSERT function.
858 class Assert_expression : public Unary_expression
860 public:
861 Assert_expression(Expression* arg, const char* message, size_t length)
862 : Unary_expression(arg), message_(message, length)
865 uint64_t
866 value(const Expression_eval_info* eei)
868 uint64_t value = this->arg_value(eei, eei->result_section_pointer);
869 if (!value && eei->check_assertions)
870 gold_error("%s", this->message_.c_str());
871 return value;
874 void
875 print(FILE* f) const
877 fprintf(f, "ASSERT(");
878 this->arg_print(f);
879 fprintf(f, ", %s)", this->message_.c_str());
882 private:
883 std::string message_;
886 extern "C" Expression*
887 script_exp_function_assert(Expression* expr, const char* message,
888 size_t length)
890 return new Assert_expression(expr, message, length);
893 // ADDR function.
895 class Addr_expression : public Section_expression
897 public:
898 Addr_expression(const char* section_name, size_t section_name_len)
899 : Section_expression(section_name, section_name_len)
902 protected:
903 uint64_t
904 value_from_output_section(const Expression_eval_info* eei,
905 Output_section* os)
907 if (eei->result_section_pointer != NULL)
908 *eei->result_section_pointer = os;
909 return os->address();
912 uint64_t
913 value_from_script_output_section(uint64_t address, uint64_t, uint64_t,
914 uint64_t)
915 { return address; }
917 const char*
918 function_name() const
919 { return "ADDR"; }
922 extern "C" Expression*
923 script_exp_function_addr(const char* section_name, size_t section_name_len)
925 return new Addr_expression(section_name, section_name_len);
928 // ALIGNOF.
930 class Alignof_expression : public Section_expression
932 public:
933 Alignof_expression(const char* section_name, size_t section_name_len)
934 : Section_expression(section_name, section_name_len)
937 protected:
938 uint64_t
939 value_from_output_section(const Expression_eval_info*,
940 Output_section* os)
941 { return os->addralign(); }
943 uint64_t
944 value_from_script_output_section(uint64_t, uint64_t, uint64_t addralign,
945 uint64_t)
946 { return addralign; }
948 const char*
949 function_name() const
950 { return "ALIGNOF"; }
953 extern "C" Expression*
954 script_exp_function_alignof(const char* section_name, size_t section_name_len)
956 return new Alignof_expression(section_name, section_name_len);
959 // CONSTANT. It would be nice if we could simply evaluate this
960 // immediately and return an Integer_expression, but unfortunately we
961 // don't know the target.
963 class Constant_expression : public Expression
965 public:
966 Constant_expression(const char* name, size_t length);
968 uint64_t
969 value(const Expression_eval_info*);
971 void
972 print(FILE* f) const;
974 private:
975 enum Constant_function
977 CONSTANT_MAXPAGESIZE,
978 CONSTANT_COMMONPAGESIZE
981 Constant_function function_;
984 Constant_expression::Constant_expression(const char* name, size_t length)
986 if (length == 11 && strncmp(name, "MAXPAGESIZE", length) == 0)
987 this->function_ = CONSTANT_MAXPAGESIZE;
988 else if (length == 14 && strncmp(name, "COMMONPAGESIZE", length) == 0)
989 this->function_ = CONSTANT_COMMONPAGESIZE;
990 else
992 std::string s(name, length);
993 gold_error(_("unknown constant %s"), s.c_str());
994 this->function_ = CONSTANT_MAXPAGESIZE;
998 uint64_t
999 Constant_expression::value(const Expression_eval_info*)
1001 switch (this->function_)
1003 case CONSTANT_MAXPAGESIZE:
1004 return parameters->target().abi_pagesize();
1005 case CONSTANT_COMMONPAGESIZE:
1006 return parameters->target().common_pagesize();
1007 default:
1008 gold_unreachable();
1012 void
1013 Constant_expression::print(FILE* f) const
1015 const char* name;
1016 switch (this->function_)
1018 case CONSTANT_MAXPAGESIZE:
1019 name = "MAXPAGESIZE";
1020 break;
1021 case CONSTANT_COMMONPAGESIZE:
1022 name = "COMMONPAGESIZE";
1023 break;
1024 default:
1025 gold_unreachable();
1027 fprintf(f, "CONSTANT(%s)", name);
1030 extern "C" Expression*
1031 script_exp_function_constant(const char* name, size_t length)
1033 return new Constant_expression(name, length);
1036 // DATA_SEGMENT_ALIGN. FIXME: we don't implement this; we always fall
1037 // back to the general case.
1039 extern "C" Expression*
1040 script_exp_function_data_segment_align(Expression* left, Expression*)
1042 Expression* e1 = script_exp_function_align(script_exp_string(".", 1), left);
1043 Expression* e2 = script_exp_binary_sub(left, script_exp_integer(1));
1044 Expression* e3 = script_exp_binary_bitwise_and(script_exp_string(".", 1),
1045 e2);
1046 return script_exp_binary_add(e1, e3);
1049 // DATA_SEGMENT_RELRO. FIXME: This is not implemented.
1051 extern "C" Expression*
1052 script_exp_function_data_segment_relro_end(Expression*, Expression* right)
1054 return right;
1057 // DATA_SEGMENT_END. FIXME: This is not implemented.
1059 extern "C" Expression*
1060 script_exp_function_data_segment_end(Expression* val)
1062 return val;
1065 // DEFINED function.
1067 class Defined_expression : public Expression
1069 public:
1070 Defined_expression(const char* symbol_name, size_t symbol_name_len)
1071 : symbol_name_(symbol_name, symbol_name_len)
1074 uint64_t
1075 value(const Expression_eval_info* eei)
1077 Symbol* sym = eei->symtab->lookup(this->symbol_name_.c_str());
1078 return sym != NULL && sym->is_defined();
1081 void
1082 print(FILE* f) const
1083 { fprintf(f, "DEFINED(%s)", this->symbol_name_.c_str()); }
1085 private:
1086 std::string symbol_name_;
1089 extern "C" Expression*
1090 script_exp_function_defined(const char* symbol_name, size_t symbol_name_len)
1092 return new Defined_expression(symbol_name, symbol_name_len);
1095 // LOADADDR function
1097 class Loadaddr_expression : public Section_expression
1099 public:
1100 Loadaddr_expression(const char* section_name, size_t section_name_len)
1101 : Section_expression(section_name, section_name_len)
1104 protected:
1105 uint64_t
1106 value_from_output_section(const Expression_eval_info* eei,
1107 Output_section* os)
1109 if (os->has_load_address())
1110 return os->load_address();
1111 else
1113 if (eei->result_section_pointer != NULL)
1114 *eei->result_section_pointer = os;
1115 return os->address();
1119 uint64_t
1120 value_from_script_output_section(uint64_t, uint64_t load_address, uint64_t,
1121 uint64_t)
1122 { return load_address; }
1124 const char*
1125 function_name() const
1126 { return "LOADADDR"; }
1129 extern "C" Expression*
1130 script_exp_function_loadaddr(const char* section_name, size_t section_name_len)
1132 return new Loadaddr_expression(section_name, section_name_len);
1135 // SIZEOF function
1137 class Sizeof_expression : public Section_expression
1139 public:
1140 Sizeof_expression(const char* section_name, size_t section_name_len)
1141 : Section_expression(section_name, section_name_len)
1144 protected:
1145 uint64_t
1146 value_from_output_section(const Expression_eval_info*,
1147 Output_section* os)
1149 // We can not use data_size here, as the size of the section may
1150 // not have been finalized. Instead we get whatever the current
1151 // size is. This will work correctly for backward references in
1152 // linker scripts.
1153 return os->current_data_size();
1156 uint64_t
1157 value_from_script_output_section(uint64_t, uint64_t, uint64_t,
1158 uint64_t size)
1159 { return size; }
1161 const char*
1162 function_name() const
1163 { return "SIZEOF"; }
1166 extern "C" Expression*
1167 script_exp_function_sizeof(const char* section_name, size_t section_name_len)
1169 return new Sizeof_expression(section_name, section_name_len);
1172 // SIZEOF_HEADERS.
1174 class Sizeof_headers_expression : public Expression
1176 public:
1177 Sizeof_headers_expression()
1180 uint64_t
1181 value(const Expression_eval_info*);
1183 void
1184 print(FILE* f) const
1185 { fprintf(f, "SIZEOF_HEADERS"); }
1188 uint64_t
1189 Sizeof_headers_expression::value(const Expression_eval_info* eei)
1191 unsigned int ehdr_size;
1192 unsigned int phdr_size;
1193 if (parameters->target().get_size() == 32)
1195 ehdr_size = elfcpp::Elf_sizes<32>::ehdr_size;
1196 phdr_size = elfcpp::Elf_sizes<32>::phdr_size;
1198 else if (parameters->target().get_size() == 64)
1200 ehdr_size = elfcpp::Elf_sizes<64>::ehdr_size;
1201 phdr_size = elfcpp::Elf_sizes<64>::phdr_size;
1203 else
1204 gold_unreachable();
1206 return ehdr_size + phdr_size * eei->layout->expected_segment_count();
1209 extern "C" Expression*
1210 script_exp_function_sizeof_headers()
1212 return new Sizeof_headers_expression();
1215 // SEGMENT_START.
1217 class Segment_start_expression : public Unary_expression
1219 public:
1220 Segment_start_expression(const char* segment_name, size_t segment_name_len,
1221 Expression* default_value)
1222 : Unary_expression(default_value),
1223 segment_name_(segment_name, segment_name_len)
1226 uint64_t
1227 value(const Expression_eval_info*);
1229 void
1230 print(FILE* f) const
1232 fprintf(f, "SEGMENT_START(\"%s\", ", this->segment_name_.c_str());
1233 this->arg_print(f);
1234 fprintf(f, ")");
1237 private:
1238 std::string segment_name_;
1241 uint64_t
1242 Segment_start_expression::value(const Expression_eval_info* eei)
1244 // Check for command line overrides.
1245 if (parameters->options().user_set_Ttext()
1246 && this->segment_name_ == ".text")
1247 return parameters->options().Ttext();
1248 else if (parameters->options().user_set_Tdata()
1249 && this->segment_name_ == ".data")
1250 return parameters->options().Tdata();
1251 else if (parameters->options().user_set_Tbss()
1252 && this->segment_name_ == ".bss")
1253 return parameters->options().Tbss();
1254 else
1256 uint64_t ret = this->arg_value(eei, NULL);
1257 // Force the value to be absolute.
1258 if (eei->result_section_pointer != NULL)
1259 *eei->result_section_pointer = NULL;
1260 return ret;
1264 extern "C" Expression*
1265 script_exp_function_segment_start(const char* segment_name,
1266 size_t segment_name_len,
1267 Expression* default_value)
1269 return new Segment_start_expression(segment_name, segment_name_len,
1270 default_value);
1273 } // End namespace gold.