Record GDB 6.8 branch creation. Bump version number to 6.8.50.20080229-cvs.
[deliverable/binutils-gdb.git] / gold / resolve.cc
CommitLineData
14bfc3f5
ILT
1// resolve.cc -- symbol resolution for gold
2
e5756efb 3// Copyright 2006, 2007, 2008 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
14bfc3f5
ILT
23#include "gold.h"
24
25#include "elfcpp.h"
26#include "target.h"
27#include "object.h"
28#include "symtab.h"
29
30namespace gold
31{
32
1564db8d
ILT
33// Symbol methods used in this file.
34
35// Override the fields in Symbol.
36
37template<int size, bool big_endian>
38void
39Symbol::override_base(const elfcpp::Sym<size, big_endian>& sym,
14b31740 40 Object* object, const char* version)
1564db8d 41{
a3ad94ed 42 gold_assert(this->source_ == FROM_OBJECT);
ead1e424 43 this->u_.from_object.object = object;
14b31740
ILT
44 if (version != NULL && this->version() != version)
45 {
46 gold_assert(this->version() == NULL);
47 this->version_ = version;
48 }
ead1e424 49 // FIXME: Handle SHN_XINDEX.
16649710 50 this->u_.from_object.shndx = sym.get_st_shndx();
1564db8d
ILT
51 this->type_ = sym.get_st_type();
52 this->binding_ = sym.get_st_bind();
53 this->visibility_ = sym.get_st_visibility();
ead1e424 54 this->nonvis_ = sym.get_st_nonvis();
0d4f1889
ILT
55 if (object->is_dynamic())
56 this->in_dyn_ = true;
57 else
58 this->in_reg_ = true;
1564db8d
ILT
59}
60
61// Override the fields in Sized_symbol.
62
63template<int size>
64template<bool big_endian>
65void
66Sized_symbol<size>::override(const elfcpp::Sym<size, big_endian>& sym,
14b31740 67 Object* object, const char* version)
1564db8d 68{
14b31740 69 this->override_base(sym, object, version);
1564db8d 70 this->value_ = sym.get_st_value();
ead1e424 71 this->symsize_ = sym.get_st_size();
1564db8d
ILT
72}
73
aeddab66
ILT
74// Override TOSYM with symbol FROMSYM, defined in OBJECT, with version
75// VERSION. This handles all aliases of TOSYM.
76
77template<int size, bool big_endian>
78void
79Symbol_table::override(Sized_symbol<size>* tosym,
80 const elfcpp::Sym<size, big_endian>& fromsym,
81 Object* object, const char* version)
82{
83 tosym->override(fromsym, object, version);
84 if (tosym->has_alias())
85 {
86 Symbol* sym = this->weak_aliases_[tosym];
87 gold_assert(sym != NULL);
88 Sized_symbol<size>* ssym;
89 ssym = this->get_sized_symbol SELECT_SIZE_NAME(size) (sym
90 SELECT_SIZE(size));
91 do
92 {
93 ssym->override(fromsym, object, version);
94 sym = this->weak_aliases_[ssym];
95 gold_assert(sym != NULL);
96 ssym = this->get_sized_symbol SELECT_SIZE_NAME(size) (
97 sym SELECT_SIZE(size));
98 }
99 while (ssym != tosym);
100 }
101}
102
86f2e683
ILT
103// The resolve functions build a little code for each symbol.
104// Bit 0: 0 for global, 1 for weak.
105// Bit 1: 0 for regular object, 1 for shared object
106// Bits 2-3: 0 for normal, 1 for undefined, 2 for common
107// This gives us values from 0 to 11.
108
109static const int global_or_weak_shift = 0;
110static const unsigned int global_flag = 0 << global_or_weak_shift;
111static const unsigned int weak_flag = 1 << global_or_weak_shift;
112
113static const int regular_or_dynamic_shift = 1;
114static const unsigned int regular_flag = 0 << regular_or_dynamic_shift;
115static const unsigned int dynamic_flag = 1 << regular_or_dynamic_shift;
116
117static const int def_undef_or_common_shift = 2;
118static const unsigned int def_flag = 0 << def_undef_or_common_shift;
119static const unsigned int undef_flag = 1 << def_undef_or_common_shift;
120static const unsigned int common_flag = 2 << def_undef_or_common_shift;
121
70e654ba
ILT
122// This convenience function combines all the flags based on facts
123// about the symbol.
124
125static unsigned int
126symbol_to_bits(elfcpp::STB binding, bool is_dynamic,
127 unsigned int shndx, elfcpp::STT type)
128{
129 unsigned int bits;
130
131 switch (binding)
132 {
133 case elfcpp::STB_GLOBAL:
134 bits = global_flag;
135 break;
136
137 case elfcpp::STB_WEAK:
138 bits = weak_flag;
139 break;
140
141 case elfcpp::STB_LOCAL:
142 // We should only see externally visible symbols in the symbol
143 // table.
144 gold_error(_("invalid STB_LOCAL symbol in external symbols"));
145 bits = global_flag;
146
147 default:
148 // Any target which wants to handle STB_LOOS, etc., needs to
149 // define a resolve method.
150 gold_error(_("unsupported symbol binding"));
151 bits = global_flag;
152 }
153
154 if (is_dynamic)
155 bits |= dynamic_flag;
156 else
157 bits |= regular_flag;
158
159 switch (shndx)
160 {
161 case elfcpp::SHN_UNDEF:
162 bits |= undef_flag;
163 break;
164
165 case elfcpp::SHN_COMMON:
166 bits |= common_flag;
167 break;
168
169 default:
170 if (type == elfcpp::STT_COMMON)
171 bits |= common_flag;
172 else
173 bits |= def_flag;
174 break;
175 }
176
177 return bits;
178}
179
14bfc3f5 180// Resolve a symbol. This is called the second and subsequent times
70e654ba
ILT
181// we see a symbol. TO is the pre-existing symbol. ORIG_SYM is the
182// new symbol, seen in OBJECT. SYM is almost always identical to
183// ORIG_SYM, but may be munged (for instance, if we determine the
184// symbol is in a to-be-discarded section, we'll set sym's shndx to
185// UNDEFINED). VERSION of the version of SYM.
14bfc3f5
ILT
186
187template<int size, bool big_endian>
188void
1564db8d 189Symbol_table::resolve(Sized_symbol<size>* to,
14bfc3f5 190 const elfcpp::Sym<size, big_endian>& sym,
70e654ba 191 const elfcpp::Sym<size, big_endian>& orig_sym,
14b31740 192 Object* object, const char* version)
14bfc3f5
ILT
193{
194 if (object->target()->has_resolve())
195 {
274e99f9 196 Sized_target<size, big_endian>* sized_target;
593f47df
ILT
197 sized_target = object->sized_target
198 SELECT_SIZE_ENDIAN_NAME(size, big_endian) (
199 SELECT_SIZE_ENDIAN_ONLY(size, big_endian));
14b31740 200 sized_target->resolve(to, sym, object, version);
14bfc3f5
ILT
201 return;
202 }
203
86f2e683
ILT
204 if (!object->is_dynamic())
205 {
206 // Record that we've seen this symbol in a regular object.
207 to->set_in_reg();
208 }
209 else
210 {
211 // Record that we've seen this symbol in a dynamic object.
212 to->set_in_dyn();
213 }
14bfc3f5 214
70e654ba
ILT
215 unsigned int frombits = symbol_to_bits(sym.get_st_bind(),
216 object->is_dynamic(),
217 sym.get_st_shndx(),
218 sym.get_st_type());
14bfc3f5 219
86f2e683 220 bool adjust_common_sizes;
d20222a1
ILT
221 if (Symbol_table::should_override(to, frombits, object,
222 &adjust_common_sizes))
86f2e683
ILT
223 {
224 typename Sized_symbol<size>::Size_type tosize = to->symsize();
225
aeddab66 226 this->override(to, sym, object, version);
86f2e683
ILT
227
228 if (adjust_common_sizes && tosize > to->symsize())
229 to->set_symsize(tosize);
230 }
231 else
232 {
233 if (adjust_common_sizes && sym.get_st_size() > to->symsize())
234 to->set_symsize(sym.get_st_size());
235 }
70e654ba
ILT
236
237 // A new weak undefined reference, merging with an old weak
238 // reference, could be a One Definition Rule (ODR) violation --
239 // especially if the types or sizes of the references differ. We'll
240 // store such pairs and look them up later to make sure they
241 // actually refer to the same lines of code. (Note: not all ODR
242 // violations can be found this way, and not everything this finds
243 // is an ODR violation. But it's helpful to warn about.)
244 // We use orig_sym here because we want the symbol exactly as it
245 // appears in the object file, not munged via our future processing.
8851ecca 246 if (parameters->options().detect_odr_violations()
a55ce7fe 247 && orig_sym.get_st_bind() == elfcpp::STB_WEAK
70e654ba
ILT
248 && to->binding() == elfcpp::STB_WEAK
249 && orig_sym.get_st_shndx() != elfcpp::SHN_UNDEF
250 && to->shndx() != elfcpp::SHN_UNDEF
251 && orig_sym.get_st_size() != 0 // Ignore weird 0-sized symbols.
252 && to->symsize() != 0
253 && (orig_sym.get_st_type() != to->type()
254 || orig_sym.get_st_size() != to->symsize())
255 // C does not have a concept of ODR, so we only need to do this
256 // on C++ symbols. These have (mangled) names starting with _Z.
257 && to->name()[0] == '_' && to->name()[1] == 'Z')
258 {
a2b1aa12 259 Symbol_location fromloc
70e654ba 260 = { object, orig_sym.get_st_shndx(), orig_sym.get_st_value() };
a2b1aa12
ILT
261 Symbol_location toloc = { to->object(), to->shndx(), to->value() };
262 this->candidate_odr_violations_[to->name()].insert(fromloc);
263 this->candidate_odr_violations_[to->name()].insert(toloc);
70e654ba 264 }
86f2e683
ILT
265}
266
267// Handle the core of symbol resolution. This is called with the
268// existing symbol, TO, and a bitflag describing the new symbol. This
269// returns true if we should override the existing symbol with the new
270// one, and returns false otherwise. It sets *ADJUST_COMMON_SIZES to
271// true if we should set the symbol size to the maximum of the TO and
272// FROM sizes. It handles error conditions.
273
274bool
275Symbol_table::should_override(const Symbol* to, unsigned int frombits,
d20222a1 276 Object* object, bool* adjust_common_sizes)
86f2e683
ILT
277{
278 *adjust_common_sizes = false;
279
e5756efb
ILT
280 unsigned int tobits;
281 if (to->source() == Symbol::FROM_OBJECT)
282 tobits = symbol_to_bits(to->binding(),
283 to->object()->is_dynamic(),
284 to->shndx(),
285 to->type());
286 else
287 tobits = symbol_to_bits(to->binding(), false, elfcpp::SHN_ABS,
288 to->type());
14bfc3f5 289
1564db8d
ILT
290 // FIXME: Warn if either but not both of TO and SYM are STT_TLS.
291
14bfc3f5
ILT
292 // We use a giant switch table for symbol resolution. This code is
293 // unwieldy, but: 1) it is efficient; 2) we definitely handle all
294 // cases; 3) it is easy to change the handling of a particular case.
295 // The alternative would be a series of conditionals, but it is easy
296 // to get the ordering wrong. This could also be done as a table,
297 // but that is no easier to understand than this large switch
298 // statement.
299
86f2e683
ILT
300 // These are the values generated by the bit codes.
301 enum
302 {
303 DEF = global_flag | regular_flag | def_flag,
304 WEAK_DEF = weak_flag | regular_flag | def_flag,
305 DYN_DEF = global_flag | dynamic_flag | def_flag,
306 DYN_WEAK_DEF = weak_flag | dynamic_flag | def_flag,
307 UNDEF = global_flag | regular_flag | undef_flag,
308 WEAK_UNDEF = weak_flag | regular_flag | undef_flag,
309 DYN_UNDEF = global_flag | dynamic_flag | undef_flag,
310 DYN_WEAK_UNDEF = weak_flag | dynamic_flag | undef_flag,
311 COMMON = global_flag | regular_flag | common_flag,
312 WEAK_COMMON = weak_flag | regular_flag | common_flag,
313 DYN_COMMON = global_flag | dynamic_flag | common_flag,
314 DYN_WEAK_COMMON = weak_flag | dynamic_flag | common_flag
315 };
316
14bfc3f5
ILT
317 switch (tobits * 16 + frombits)
318 {
319 case DEF * 16 + DEF:
12e14209 320 // Two definitions of the same symbol.
878405a8
ILT
321
322 // If either symbol is defined by an object included using
323 // --just-symbols, then don't warn. This is for compatibility
324 // with the GNU linker. FIXME: This is a hack.
325 if ((to->source() == Symbol::FROM_OBJECT && to->object()->just_symbols())
326 || object->just_symbols())
327 return false;
328
d20222a1
ILT
329 // FIXME: Do a better job of reporting locations.
330 gold_error(_("%s: multiple definition of %s"),
331 object != NULL ? object->name().c_str() : _("command line"),
a2b1aa12 332 to->demangled_name().c_str());
d20222a1
ILT
333 gold_error(_("%s: previous definition here"),
334 (to->source() == Symbol::FROM_OBJECT
335 ? to->object()->name().c_str()
336 : _("command line")));
86f2e683 337 return false;
14bfc3f5
ILT
338
339 case WEAK_DEF * 16 + DEF:
1564db8d
ILT
340 // We've seen a weak definition, and now we see a strong
341 // definition. In the original SVR4 linker, this was treated as
342 // a multiple definition error. In the Solaris linker and the
343 // GNU linker, a weak definition followed by a regular
344 // definition causes the weak definition to be overridden. We
345 // are currently compatible with the GNU linker. In the future
346 // we should add a target specific option to change this.
347 // FIXME.
86f2e683 348 return true;
14bfc3f5
ILT
349
350 case DYN_DEF * 16 + DEF:
351 case DYN_WEAK_DEF * 16 + DEF:
1564db8d
ILT
352 // We've seen a definition in a dynamic object, and now we see a
353 // definition in a regular object. The definition in the
354 // regular object overrides the definition in the dynamic
355 // object.
86f2e683 356 return true;
1564db8d 357
14bfc3f5
ILT
358 case UNDEF * 16 + DEF:
359 case WEAK_UNDEF * 16 + DEF:
360 case DYN_UNDEF * 16 + DEF:
361 case DYN_WEAK_UNDEF * 16 + DEF:
1564db8d
ILT
362 // We've seen an undefined reference, and now we see a
363 // definition. We use the definition.
86f2e683 364 return true;
1564db8d 365
14bfc3f5
ILT
366 case COMMON * 16 + DEF:
367 case WEAK_COMMON * 16 + DEF:
368 case DYN_COMMON * 16 + DEF:
369 case DYN_WEAK_COMMON * 16 + DEF:
1564db8d 370 // We've seen a common symbol and now we see a definition. The
14b31740 371 // definition overrides. FIXME: We should optionally issue, version a
1564db8d 372 // warning.
86f2e683 373 return true;
14bfc3f5
ILT
374
375 case DEF * 16 + WEAK_DEF:
376 case WEAK_DEF * 16 + WEAK_DEF:
1564db8d
ILT
377 // We've seen a definition and now we see a weak definition. We
378 // ignore the new weak definition.
86f2e683 379 return false;
1564db8d 380
14bfc3f5
ILT
381 case DYN_DEF * 16 + WEAK_DEF:
382 case DYN_WEAK_DEF * 16 + WEAK_DEF:
1564db8d
ILT
383 // We've seen a dynamic definition and now we see a regular weak
384 // definition. The regular weak definition overrides.
86f2e683 385 return true;
1564db8d 386
14bfc3f5
ILT
387 case UNDEF * 16 + WEAK_DEF:
388 case WEAK_UNDEF * 16 + WEAK_DEF:
389 case DYN_UNDEF * 16 + WEAK_DEF:
390 case DYN_WEAK_UNDEF * 16 + WEAK_DEF:
1564db8d 391 // A weak definition of a currently undefined symbol.
86f2e683 392 return true;
1564db8d 393
14bfc3f5
ILT
394 case COMMON * 16 + WEAK_DEF:
395 case WEAK_COMMON * 16 + WEAK_DEF:
1564db8d 396 // A weak definition does not override a common definition.
86f2e683 397 return false;
1564db8d 398
14bfc3f5
ILT
399 case DYN_COMMON * 16 + WEAK_DEF:
400 case DYN_WEAK_COMMON * 16 + WEAK_DEF:
1564db8d
ILT
401 // A weak definition does override a definition in a dynamic
402 // object. FIXME: We should optionally issue a warning.
86f2e683 403 return true;
14bfc3f5
ILT
404
405 case DEF * 16 + DYN_DEF:
406 case WEAK_DEF * 16 + DYN_DEF:
407 case DYN_DEF * 16 + DYN_DEF:
408 case DYN_WEAK_DEF * 16 + DYN_DEF:
1564db8d 409 // Ignore a dynamic definition if we already have a definition.
86f2e683 410 return false;
1564db8d 411
14bfc3f5
ILT
412 case UNDEF * 16 + DYN_DEF:
413 case WEAK_UNDEF * 16 + DYN_DEF:
414 case DYN_UNDEF * 16 + DYN_DEF:
415 case DYN_WEAK_UNDEF * 16 + DYN_DEF:
1564db8d 416 // Use a dynamic definition if we have a reference.
86f2e683 417 return true;
1564db8d 418
14bfc3f5
ILT
419 case COMMON * 16 + DYN_DEF:
420 case WEAK_COMMON * 16 + DYN_DEF:
421 case DYN_COMMON * 16 + DYN_DEF:
422 case DYN_WEAK_COMMON * 16 + DYN_DEF:
1564db8d
ILT
423 // Ignore a dynamic definition if we already have a common
424 // definition.
86f2e683 425 return false;
14bfc3f5
ILT
426
427 case DEF * 16 + DYN_WEAK_DEF:
428 case WEAK_DEF * 16 + DYN_WEAK_DEF:
429 case DYN_DEF * 16 + DYN_WEAK_DEF:
430 case DYN_WEAK_DEF * 16 + DYN_WEAK_DEF:
1564db8d
ILT
431 // Ignore a weak dynamic definition if we already have a
432 // definition.
86f2e683 433 return false;
1564db8d 434
14bfc3f5
ILT
435 case UNDEF * 16 + DYN_WEAK_DEF:
436 case WEAK_UNDEF * 16 + DYN_WEAK_DEF:
437 case DYN_UNDEF * 16 + DYN_WEAK_DEF:
438 case DYN_WEAK_UNDEF * 16 + DYN_WEAK_DEF:
1564db8d 439 // Use a weak dynamic definition if we have a reference.
86f2e683 440 return true;
1564db8d 441
14bfc3f5
ILT
442 case COMMON * 16 + DYN_WEAK_DEF:
443 case WEAK_COMMON * 16 + DYN_WEAK_DEF:
444 case DYN_COMMON * 16 + DYN_WEAK_DEF:
445 case DYN_WEAK_COMMON * 16 + DYN_WEAK_DEF:
1564db8d
ILT
446 // Ignore a weak dynamic definition if we already have a common
447 // definition.
86f2e683 448 return false;
14bfc3f5
ILT
449
450 case DEF * 16 + UNDEF:
451 case WEAK_DEF * 16 + UNDEF:
452 case DYN_DEF * 16 + UNDEF:
453 case DYN_WEAK_DEF * 16 + UNDEF:
454 case UNDEF * 16 + UNDEF:
ead1e424 455 // A new undefined reference tells us nothing.
86f2e683 456 return false;
ead1e424 457
14bfc3f5
ILT
458 case WEAK_UNDEF * 16 + UNDEF:
459 case DYN_UNDEF * 16 + UNDEF:
460 case DYN_WEAK_UNDEF * 16 + UNDEF:
ead1e424 461 // A strong undef overrides a dynamic or weak undef.
86f2e683 462 return true;
ead1e424 463
14bfc3f5
ILT
464 case COMMON * 16 + UNDEF:
465 case WEAK_COMMON * 16 + UNDEF:
466 case DYN_COMMON * 16 + UNDEF:
467 case DYN_WEAK_COMMON * 16 + UNDEF:
1564db8d 468 // A new undefined reference tells us nothing.
86f2e683 469 return false;
14bfc3f5
ILT
470
471 case DEF * 16 + WEAK_UNDEF:
472 case WEAK_DEF * 16 + WEAK_UNDEF:
473 case DYN_DEF * 16 + WEAK_UNDEF:
474 case DYN_WEAK_DEF * 16 + WEAK_UNDEF:
475 case UNDEF * 16 + WEAK_UNDEF:
476 case WEAK_UNDEF * 16 + WEAK_UNDEF:
477 case DYN_UNDEF * 16 + WEAK_UNDEF:
478 case DYN_WEAK_UNDEF * 16 + WEAK_UNDEF:
479 case COMMON * 16 + WEAK_UNDEF:
480 case WEAK_COMMON * 16 + WEAK_UNDEF:
481 case DYN_COMMON * 16 + WEAK_UNDEF:
482 case DYN_WEAK_COMMON * 16 + WEAK_UNDEF:
1564db8d 483 // A new weak undefined reference tells us nothing.
86f2e683 484 return false;
14bfc3f5
ILT
485
486 case DEF * 16 + DYN_UNDEF:
487 case WEAK_DEF * 16 + DYN_UNDEF:
488 case DYN_DEF * 16 + DYN_UNDEF:
489 case DYN_WEAK_DEF * 16 + DYN_UNDEF:
490 case UNDEF * 16 + DYN_UNDEF:
491 case WEAK_UNDEF * 16 + DYN_UNDEF:
492 case DYN_UNDEF * 16 + DYN_UNDEF:
493 case DYN_WEAK_UNDEF * 16 + DYN_UNDEF:
494 case COMMON * 16 + DYN_UNDEF:
495 case WEAK_COMMON * 16 + DYN_UNDEF:
496 case DYN_COMMON * 16 + DYN_UNDEF:
497 case DYN_WEAK_COMMON * 16 + DYN_UNDEF:
1564db8d 498 // A new dynamic undefined reference tells us nothing.
86f2e683 499 return false;
14bfc3f5
ILT
500
501 case DEF * 16 + DYN_WEAK_UNDEF:
502 case WEAK_DEF * 16 + DYN_WEAK_UNDEF:
503 case DYN_DEF * 16 + DYN_WEAK_UNDEF:
504 case DYN_WEAK_DEF * 16 + DYN_WEAK_UNDEF:
505 case UNDEF * 16 + DYN_WEAK_UNDEF:
506 case WEAK_UNDEF * 16 + DYN_WEAK_UNDEF:
507 case DYN_UNDEF * 16 + DYN_WEAK_UNDEF:
508 case DYN_WEAK_UNDEF * 16 + DYN_WEAK_UNDEF:
509 case COMMON * 16 + DYN_WEAK_UNDEF:
510 case WEAK_COMMON * 16 + DYN_WEAK_UNDEF:
511 case DYN_COMMON * 16 + DYN_WEAK_UNDEF:
512 case DYN_WEAK_COMMON * 16 + DYN_WEAK_UNDEF:
1564db8d 513 // A new weak dynamic undefined reference tells us nothing.
86f2e683 514 return false;
14bfc3f5
ILT
515
516 case DEF * 16 + COMMON:
1564db8d 517 // A common symbol does not override a definition.
86f2e683 518 return false;
1564db8d 519
14bfc3f5
ILT
520 case WEAK_DEF * 16 + COMMON:
521 case DYN_DEF * 16 + COMMON:
522 case DYN_WEAK_DEF * 16 + COMMON:
1564db8d
ILT
523 // A common symbol does override a weak definition or a dynamic
524 // definition.
86f2e683 525 return true;
1564db8d 526
14bfc3f5
ILT
527 case UNDEF * 16 + COMMON:
528 case WEAK_UNDEF * 16 + COMMON:
529 case DYN_UNDEF * 16 + COMMON:
530 case DYN_WEAK_UNDEF * 16 + COMMON:
1564db8d 531 // A common symbol is a definition for a reference.
86f2e683 532 return true;
1564db8d 533
14bfc3f5 534 case COMMON * 16 + COMMON:
ead1e424 535 // Set the size to the maximum.
86f2e683
ILT
536 *adjust_common_sizes = true;
537 return false;
ead1e424 538
14bfc3f5 539 case WEAK_COMMON * 16 + COMMON:
ead1e424
ILT
540 // I'm not sure just what a weak common symbol means, but
541 // presumably it can be overridden by a regular common symbol.
86f2e683 542 return true;
ead1e424 543
14bfc3f5
ILT
544 case DYN_COMMON * 16 + COMMON:
545 case DYN_WEAK_COMMON * 16 + COMMON:
86f2e683
ILT
546 // Use the real common symbol, but adjust the size if necessary.
547 *adjust_common_sizes = true;
548 return true;
14bfc3f5
ILT
549
550 case DEF * 16 + WEAK_COMMON:
551 case WEAK_DEF * 16 + WEAK_COMMON:
552 case DYN_DEF * 16 + WEAK_COMMON:
553 case DYN_WEAK_DEF * 16 + WEAK_COMMON:
ead1e424
ILT
554 // Whatever a weak common symbol is, it won't override a
555 // definition.
86f2e683 556 return false;
ead1e424 557
14bfc3f5
ILT
558 case UNDEF * 16 + WEAK_COMMON:
559 case WEAK_UNDEF * 16 + WEAK_COMMON:
560 case DYN_UNDEF * 16 + WEAK_COMMON:
561 case DYN_WEAK_UNDEF * 16 + WEAK_COMMON:
ead1e424 562 // A weak common symbol is better than an undefined symbol.
86f2e683 563 return true;
ead1e424 564
14bfc3f5
ILT
565 case COMMON * 16 + WEAK_COMMON:
566 case WEAK_COMMON * 16 + WEAK_COMMON:
567 case DYN_COMMON * 16 + WEAK_COMMON:
568 case DYN_WEAK_COMMON * 16 + WEAK_COMMON:
ead1e424
ILT
569 // Ignore a weak common symbol in the presence of a real common
570 // symbol.
86f2e683 571 return false;
14bfc3f5
ILT
572
573 case DEF * 16 + DYN_COMMON:
574 case WEAK_DEF * 16 + DYN_COMMON:
575 case DYN_DEF * 16 + DYN_COMMON:
576 case DYN_WEAK_DEF * 16 + DYN_COMMON:
ead1e424
ILT
577 // Ignore a dynamic common symbol in the presence of a
578 // definition.
86f2e683 579 return false;
ead1e424 580
14bfc3f5
ILT
581 case UNDEF * 16 + DYN_COMMON:
582 case WEAK_UNDEF * 16 + DYN_COMMON:
583 case DYN_UNDEF * 16 + DYN_COMMON:
584 case DYN_WEAK_UNDEF * 16 + DYN_COMMON:
ead1e424 585 // A dynamic common symbol is a definition of sorts.
86f2e683 586 return true;
ead1e424 587
14bfc3f5
ILT
588 case COMMON * 16 + DYN_COMMON:
589 case WEAK_COMMON * 16 + DYN_COMMON:
590 case DYN_COMMON * 16 + DYN_COMMON:
591 case DYN_WEAK_COMMON * 16 + DYN_COMMON:
ead1e424 592 // Set the size to the maximum.
86f2e683
ILT
593 *adjust_common_sizes = true;
594 return false;
14bfc3f5
ILT
595
596 case DEF * 16 + DYN_WEAK_COMMON:
597 case WEAK_DEF * 16 + DYN_WEAK_COMMON:
598 case DYN_DEF * 16 + DYN_WEAK_COMMON:
599 case DYN_WEAK_DEF * 16 + DYN_WEAK_COMMON:
ead1e424 600 // A common symbol is ignored in the face of a definition.
86f2e683 601 return false;
ead1e424 602
14bfc3f5
ILT
603 case UNDEF * 16 + DYN_WEAK_COMMON:
604 case WEAK_UNDEF * 16 + DYN_WEAK_COMMON:
605 case DYN_UNDEF * 16 + DYN_WEAK_COMMON:
606 case DYN_WEAK_UNDEF * 16 + DYN_WEAK_COMMON:
ead1e424 607 // I guess a weak common symbol is better than a definition.
86f2e683 608 return true;
ead1e424 609
14bfc3f5
ILT
610 case COMMON * 16 + DYN_WEAK_COMMON:
611 case WEAK_COMMON * 16 + DYN_WEAK_COMMON:
612 case DYN_COMMON * 16 + DYN_WEAK_COMMON:
613 case DYN_WEAK_COMMON * 16 + DYN_WEAK_COMMON:
ead1e424 614 // Set the size to the maximum.
86f2e683
ILT
615 *adjust_common_sizes = true;
616 return false;
1564db8d
ILT
617
618 default:
a3ad94ed 619 gold_unreachable();
14bfc3f5
ILT
620 }
621}
622
86f2e683
ILT
623// A special case of should_override which is only called for a strong
624// defined symbol from a regular object file. This is used when
625// defining special symbols.
626
627bool
628Symbol_table::should_override_with_special(const Symbol* to)
629{
630 bool adjust_common_sizes;
631 unsigned int frombits = global_flag | regular_flag | def_flag;
d20222a1
ILT
632 bool ret = Symbol_table::should_override(to, frombits, NULL,
633 &adjust_common_sizes);
86f2e683
ILT
634 gold_assert(!adjust_common_sizes);
635 return ret;
636}
637
638// Override symbol base with a special symbol.
639
640void
641Symbol::override_base_with_special(const Symbol* from)
642{
46fe1623
ILT
643 gold_assert(this->name_ == from->name_ || this->has_alias());
644
86f2e683
ILT
645 this->source_ = from->source_;
646 switch (from->source_)
647 {
648 case FROM_OBJECT:
649 this->u_.from_object = from->u_.from_object;
650 break;
651 case IN_OUTPUT_DATA:
652 this->u_.in_output_data = from->u_.in_output_data;
653 break;
654 case IN_OUTPUT_SEGMENT:
655 this->u_.in_output_segment = from->u_.in_output_segment;
656 break;
657 case CONSTANT:
658 break;
659 default:
660 gold_unreachable();
661 break;
662 }
663
664 if (from->version_ != NULL && this->version_ != from->version_)
665 {
666 gold_assert(this->version_ == NULL);
667 this->version_ = from->version_;
668 }
669
670 this->type_ = from->type_;
671 this->binding_ = from->binding_;
672 this->visibility_ = from->visibility_;
673 this->nonvis_ = from->nonvis_;
674
675 // Special symbols are always considered to be regular symbols.
676 this->in_reg_ = true;
46fe1623
ILT
677
678 if (from->needs_dynsym_entry_)
679 this->needs_dynsym_entry_ = true;
680 if (from->needs_dynsym_value_)
681 this->needs_dynsym_value_ = true;
682
683 // We shouldn't see these flags. If we do, we need to handle them
684 // somehow.
685 gold_assert(!from->is_target_special_ || this->is_target_special_);
686 gold_assert(!from->is_forwarder_);
687 gold_assert(!from->has_got_offset_);
688 gold_assert(!from->has_plt_offset_);
689 gold_assert(!from->has_warning_);
690 gold_assert(!from->is_copied_from_dynobj_);
55a93433 691 gold_assert(!from->is_forced_local_);
86f2e683
ILT
692}
693
694// Override a symbol with a special symbol.
695
696template<int size>
697void
698Sized_symbol<size>::override_with_special(const Sized_symbol<size>* from)
699{
700 this->override_base_with_special(from);
701 this->value_ = from->value_;
702 this->symsize_ = from->symsize_;
703}
704
aeddab66
ILT
705// Override TOSYM with the special symbol FROMSYM. This handles all
706// aliases of TOSYM.
707
708template<int size>
709void
710Symbol_table::override_with_special(Sized_symbol<size>* tosym,
711 const Sized_symbol<size>* fromsym)
712{
713 tosym->override_with_special(fromsym);
714 if (tosym->has_alias())
715 {
716 Symbol* sym = this->weak_aliases_[tosym];
717 gold_assert(sym != NULL);
718 Sized_symbol<size>* ssym;
719 ssym = this->get_sized_symbol SELECT_SIZE_NAME(size) (sym
720 SELECT_SIZE(size));
721 do
722 {
723 ssym->override_with_special(fromsym);
724 sym = this->weak_aliases_[ssym];
725 gold_assert(sym != NULL);
726 ssym = this->get_sized_symbol SELECT_SIZE_NAME(size) (
727 sym SELECT_SIZE(size));
728 }
729 while (ssym != tosym);
730 }
55a93433
ILT
731 if (tosym->binding() == elfcpp::STB_LOCAL)
732 this->force_local(tosym);
aeddab66
ILT
733}
734
14bfc3f5
ILT
735// Instantiate the templates we need. We could use the configure
736// script to restrict this to only the ones needed for implemented
737// targets.
738
193a53d9 739#ifdef HAVE_TARGET_32_LITTLE
14bfc3f5
ILT
740template
741void
193a53d9 742Symbol_table::resolve<32, false>(
1564db8d 743 Sized_symbol<32>* to,
193a53d9 744 const elfcpp::Sym<32, false>& sym,
70e654ba 745 const elfcpp::Sym<32, false>& orig_sym,
14b31740
ILT
746 Object* object,
747 const char* version);
193a53d9 748#endif
14bfc3f5 749
193a53d9 750#ifdef HAVE_TARGET_32_BIG
14bfc3f5
ILT
751template
752void
193a53d9 753Symbol_table::resolve<32, true>(
1564db8d 754 Sized_symbol<32>* to,
193a53d9 755 const elfcpp::Sym<32, true>& sym,
70e654ba 756 const elfcpp::Sym<32, true>& orig_sym,
14b31740
ILT
757 Object* object,
758 const char* version);
193a53d9 759#endif
14bfc3f5 760
193a53d9 761#ifdef HAVE_TARGET_64_LITTLE
14bfc3f5
ILT
762template
763void
193a53d9 764Symbol_table::resolve<64, false>(
1564db8d 765 Sized_symbol<64>* to,
193a53d9 766 const elfcpp::Sym<64, false>& sym,
70e654ba 767 const elfcpp::Sym<64, false>& orig_sym,
14b31740
ILT
768 Object* object,
769 const char* version);
193a53d9 770#endif
14bfc3f5 771
193a53d9 772#ifdef HAVE_TARGET_64_BIG
14bfc3f5
ILT
773template
774void
193a53d9 775Symbol_table::resolve<64, true>(
1564db8d 776 Sized_symbol<64>* to,
193a53d9 777 const elfcpp::Sym<64, true>& sym,
70e654ba 778 const elfcpp::Sym<64, true>& orig_sym,
14b31740
ILT
779 Object* object,
780 const char* version);
193a53d9 781#endif
14bfc3f5 782
86f2e683
ILT
783#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
784template
785void
aeddab66
ILT
786Symbol_table::override_with_special<32>(Sized_symbol<32>*,
787 const Sized_symbol<32>*);
86f2e683
ILT
788#endif
789
790#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
791template
792void
aeddab66
ILT
793Symbol_table::override_with_special<64>(Sized_symbol<64>*,
794 const Sized_symbol<64>*);
86f2e683
ILT
795#endif
796
14bfc3f5 797} // End namespace gold.
This page took 0.110138 seconds and 4 git commands to generate.