X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gold%2Fscript.h;h=81e45a2df20df2c30f1837537b9d2790dfeb2738;hb=196535a69c8568342e62fdf5e3f5ade04470fd6a;hp=f41f438373948a3494ff5e3dbaae87e8d35026ac;hpb=286adcf4f8c8bb15d46dca29dd7e9a8c935f5e3e;p=deliverable%2Fbinutils-gdb.git diff --git a/gold/script.h b/gold/script.h index f41f438373..81e45a2df2 100644 --- a/gold/script.h +++ b/gold/script.h @@ -1,6 +1,6 @@ // script.h -- handle linker scripts for gold -*- C++ -*- -// Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +// Copyright (C) 2006-2020 Free Software Foundation, Inc. // Written by Ian Lance Taylor . // This file is part of gold. @@ -34,6 +34,7 @@ #include #include +#include "elfcpp.h" #include "script-sections.h" namespace gold @@ -111,7 +112,8 @@ class Expression bool is_dot_available, uint64_t dot_value, Output_section* dot_section, Output_section** result_section, uint64_t* result_alignment, - bool is_section_dot_assignment); + elfcpp::STT* type, elfcpp::STV* vis, unsigned char* nonvis, + bool is_section_dot_assignment, bool* is_valid_pointer); // Print the expression to the FILE. This is for debugging. virtual void @@ -127,13 +129,17 @@ class Expression virtual uint64_t value(const Expression_eval_info*) = 0; + // Sets all symbols used in expressions as seen in a real ELF object. + virtual void + set_expr_sym_in_real_elf(Symbol_table*) const + { return; } + private: // May not be copied. Expression(const Expression&); Expression& operator=(const Expression&); }; - // Version_script_info stores information parsed from the version // script, either provided by --version-script or as part of a linker // script. A single Version_script_info object per target is owned by @@ -342,6 +348,14 @@ class Symbol_assignment void finalize(Symbol_table*, const Layout*); + bool + is_defsym() const + { return is_defsym_; } + + Expression * + value() const + { return val_; } + // Finalize the symbol value when it can refer to the dot symbol. void finalize_with_dot(Symbol_table*, const Layout*, uint64_t dot_value, @@ -452,6 +466,13 @@ class Script_options bool define_symbol(const char* definition); + // Populates the set with symbol names used in LHS of defsym. + void + find_defsym_defs(Unordered_set&); + + // Set symbols used in defsym expressions as seen in a real ELF object. + void set_defsym_uses_in_real_elf(Symbol_table*) const; + // Create sections required by any linker scripts. void create_script_sections(Layout*); @@ -536,7 +557,7 @@ class Script_options // SECTIONS clause. typedef std::vector Symbol_assignments; - // We keep a list of all assertions whcih occur outside of a + // We keep a list of all assertions which occur outside of a // SECTIONS clause. typedef std::vector Assertions;