]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gold/plugin.cc
*** empty log message ***
[thirdparty/binutils-gdb.git] / gold / plugin.cc
CommitLineData
6d03d481 1// plugin.cc -- plugin manager for gold -*- C++ -*-
89fc3421 2
0f3b89d8 3// Copyright 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
89fc3421
CC
4// Written by Cary Coutant <ccoutant@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
1c7814ed
ILT
23#include "gold.h"
24
89fc3421
CC
25#include <cstdio>
26#include <cstdarg>
27#include <cstring>
28#include <string>
29#include <vector>
bc06c745
ILT
30
31#ifdef ENABLE_PLUGINS
89fc3421 32#include <dlfcn.h>
bc06c745 33#endif
89fc3421 34
89fc3421
CC
35#include "parameters.h"
36#include "errors.h"
37#include "fileread.h"
38#include "layout.h"
39#include "options.h"
40#include "plugin.h"
41#include "target.h"
42#include "readsyms.h"
43#include "symtab.h"
44#include "elfcpp.h"
45
46namespace gold
47{
48
49#ifdef ENABLE_PLUGINS
50
51// The linker's exported interfaces.
52
53extern "C"
54{
55
56static enum ld_plugin_status
57register_claim_file(ld_plugin_claim_file_handler handler);
58
59static enum ld_plugin_status
60register_all_symbols_read(ld_plugin_all_symbols_read_handler handler);
61
62static enum ld_plugin_status
63register_cleanup(ld_plugin_cleanup_handler handler);
64
65static enum ld_plugin_status
66add_symbols(void *handle, int nsyms, const struct ld_plugin_symbol *syms);
67
0f7c0701
CC
68static enum ld_plugin_status
69get_input_file(const void *handle, struct ld_plugin_input_file *file);
70
9c793f14
RÁE
71static enum ld_plugin_status
72get_view(const void *handle, const void **viewp);
73
0f7c0701
CC
74static enum ld_plugin_status
75release_input_file(const void *handle);
76
89fc3421
CC
77static enum ld_plugin_status
78get_symbols(const void *handle, int nsyms, struct ld_plugin_symbol *syms);
79
80static enum ld_plugin_status
6508b958 81add_input_file(const char *pathname);
89fc3421 82
e99daf92 83static enum ld_plugin_status
6508b958 84add_input_library(const char *pathname);
e99daf92 85
42218b9f
RÁE
86static enum ld_plugin_status
87set_extra_library_path(const char *path);
88
89fc3421 89static enum ld_plugin_status
6c52134c 90message(int level, const char *format, ...);
89fc3421
CC
91
92};
93
94#endif // ENABLE_PLUGINS
95
96static Pluginobj* make_sized_plugin_object(Input_file* input_file,
0f7c0701 97 off_t offset, off_t filesize);
89fc3421
CC
98
99// Plugin methods.
100
101// Load one plugin library.
102
103void
104Plugin::load()
105{
106#ifdef ENABLE_PLUGINS
89fc3421
CC
107 // Load the plugin library.
108 // FIXME: Look for the library in standard locations.
4674ecfc 109 this->handle_ = dlopen(this->filename_.c_str(), RTLD_NOW);
89fc3421
CC
110 if (this->handle_ == NULL)
111 {
4802450a
RÁE
112 gold_error(_("%s: could not load plugin library: %s"),
113 this->filename_.c_str(), dlerror());
89fc3421
CC
114 return;
115 }
116
117 // Find the plugin's onload entry point.
b59befec
ILT
118 void* ptr = dlsym(this->handle_, "onload");
119 if (ptr == NULL)
89fc3421 120 {
4674ecfc
CC
121 gold_error(_("%s: could not find onload entry point"),
122 this->filename_.c_str());
89fc3421
CC
123 return;
124 }
b59befec
ILT
125 ld_plugin_onload onload;
126 gold_assert(sizeof(onload) == sizeof(ptr));
127 memcpy(&onload, &ptr, sizeof(ptr));
89fc3421
CC
128
129 // Get the linker's version number.
130 const char* ver = get_version_string();
131 int major = 0;
132 int minor = 0;
133 sscanf(ver, "%d.%d", &major, &minor);
134
135 // Allocate and populate a transfer vector.
9c793f14 136 const int tv_fixed_size = 17;
4674ecfc 137 int tv_size = this->args_.size() + tv_fixed_size;
ca09d69a 138 ld_plugin_tv* tv = new ld_plugin_tv[tv_size];
89fc3421 139
abc8dcba
CC
140 // Put LDPT_MESSAGE at the front of the list so the plugin can use it
141 // while processing subsequent entries.
89fc3421 142 int i = 0;
abc8dcba
CC
143 tv[i].tv_tag = LDPT_MESSAGE;
144 tv[i].tv_u.tv_message = message;
145
146 ++i;
89fc3421
CC
147 tv[i].tv_tag = LDPT_API_VERSION;
148 tv[i].tv_u.tv_val = LD_PLUGIN_API_VERSION;
149
150 ++i;
151 tv[i].tv_tag = LDPT_GOLD_VERSION;
152 tv[i].tv_u.tv_val = major * 100 + minor;
153
154 ++i;
155 tv[i].tv_tag = LDPT_LINKER_OUTPUT;
156 if (parameters->options().relocatable())
157 tv[i].tv_u.tv_val = LDPO_REL;
158 else if (parameters->options().shared())
159 tv[i].tv_u.tv_val = LDPO_DYN;
160 else
161 tv[i].tv_u.tv_val = LDPO_EXEC;
162
3537c84b
RÁE
163 ++i;
164 tv[i].tv_tag = LDPT_OUTPUT_NAME;
165 tv[i].tv_u.tv_string = parameters->options().output();
166
4674ecfc 167 for (unsigned int j = 0; j < this->args_.size(); ++j)
89fc3421
CC
168 {
169 ++i;
170 tv[i].tv_tag = LDPT_OPTION;
4674ecfc 171 tv[i].tv_u.tv_string = this->args_[j].c_str();
89fc3421
CC
172 }
173
174 ++i;
175 tv[i].tv_tag = LDPT_REGISTER_CLAIM_FILE_HOOK;
176 tv[i].tv_u.tv_register_claim_file = register_claim_file;
177
178 ++i;
179 tv[i].tv_tag = LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK;
180 tv[i].tv_u.tv_register_all_symbols_read = register_all_symbols_read;
181
182 ++i;
183 tv[i].tv_tag = LDPT_REGISTER_CLEANUP_HOOK;
184 tv[i].tv_u.tv_register_cleanup = register_cleanup;
185
186 ++i;
187 tv[i].tv_tag = LDPT_ADD_SYMBOLS;
188 tv[i].tv_u.tv_add_symbols = add_symbols;
189
0f7c0701
CC
190 ++i;
191 tv[i].tv_tag = LDPT_GET_INPUT_FILE;
192 tv[i].tv_u.tv_get_input_file = get_input_file;
193
9c793f14
RÁE
194 ++i;
195 tv[i].tv_tag = LDPT_GET_VIEW;
196 tv[i].tv_u.tv_get_view = get_view;
197
0f7c0701
CC
198 ++i;
199 tv[i].tv_tag = LDPT_RELEASE_INPUT_FILE;
200 tv[i].tv_u.tv_release_input_file = release_input_file;
201
89fc3421
CC
202 ++i;
203 tv[i].tv_tag = LDPT_GET_SYMBOLS;
204 tv[i].tv_u.tv_get_symbols = get_symbols;
205
206 ++i;
207 tv[i].tv_tag = LDPT_ADD_INPUT_FILE;
208 tv[i].tv_u.tv_add_input_file = add_input_file;
209
e99daf92
ILT
210 ++i;
211 tv[i].tv_tag = LDPT_ADD_INPUT_LIBRARY;
212 tv[i].tv_u.tv_add_input_library = add_input_library;
213
42218b9f
RÁE
214 ++i;
215 tv[i].tv_tag = LDPT_SET_EXTRA_LIBRARY_PATH;
216 tv[i].tv_u.tv_set_extra_library_path = set_extra_library_path;
217
89fc3421
CC
218 ++i;
219 tv[i].tv_tag = LDPT_NULL;
220 tv[i].tv_u.tv_val = 0;
221
222 gold_assert(i == tv_size - 1);
223
224 // Call the onload entry point.
225 (*onload)(tv);
226
6c52134c 227 delete[] tv;
89fc3421
CC
228#endif // ENABLE_PLUGINS
229}
230
231// Call the plugin claim-file handler.
232
233inline bool
ca09d69a 234Plugin::claim_file(struct ld_plugin_input_file* plugin_input_file)
89fc3421
CC
235{
236 int claimed = 0;
237
238 if (this->claim_file_handler_ != NULL)
239 {
240 (*this->claim_file_handler_)(plugin_input_file, &claimed);
241 if (claimed)
242 return true;
243 }
244 return false;
245}
246
247// Call the all-symbols-read handler.
248
249inline void
250Plugin::all_symbols_read()
251{
252 if (this->all_symbols_read_handler_ != NULL)
253 (*this->all_symbols_read_handler_)();
254}
255
256// Call the cleanup handler.
257
258inline void
259Plugin::cleanup()
260{
40f36857
CC
261 if (this->cleanup_handler_ != NULL && !this->cleanup_done_)
262 {
263 // Set this flag before calling to prevent a recursive plunge
264 // in the event that a plugin's cleanup handler issues a
265 // fatal error.
266 this->cleanup_done_ = true;
267 (*this->cleanup_handler_)();
268 }
89fc3421
CC
269}
270
0f3b89d8
ILT
271// This task is used to rescan archives as needed.
272
273class Plugin_rescan : public Task
274{
275 public:
276 Plugin_rescan(Task_token* this_blocker, Task_token* next_blocker)
277 : this_blocker_(this_blocker), next_blocker_(next_blocker)
278 { }
279
280 ~Plugin_rescan()
281 {
282 delete this->this_blocker_;
283 }
284
285 Task_token*
286 is_runnable()
287 {
288 if (this->this_blocker_->is_blocked())
289 return this->this_blocker_;
290 return NULL;
291 }
292
293 void
294 locks(Task_locker* tl)
295 { tl->add(this, this->next_blocker_); }
296
297 void
298 run(Workqueue*)
299 { parameters->options().plugins()->rescan(this); }
300
301 std::string
302 get_name() const
303 { return "Plugin_rescan"; }
304
305 private:
306 Task_token* this_blocker_;
307 Task_token* next_blocker_;
308};
309
89fc3421
CC
310// Plugin_manager methods.
311
312Plugin_manager::~Plugin_manager()
313{
314 for (Plugin_list::iterator p = this->plugins_.begin();
315 p != this->plugins_.end();
316 ++p)
317 delete *p;
318 this->plugins_.clear();
319 for (Object_list::iterator obj = this->objects_.begin();
320 obj != this->objects_.end();
321 ++obj)
322 delete *obj;
323 this->objects_.clear();
324}
325
326// Load all plugin libraries.
327
328void
329Plugin_manager::load_plugins()
330{
331 for (this->current_ = this->plugins_.begin();
332 this->current_ != this->plugins_.end();
333 ++this->current_)
334 (*this->current_)->load();
335}
336
337// Call the plugin claim-file handlers in turn to see if any claim the file.
338
339Pluginobj*
340Plugin_manager::claim_file(Input_file* input_file, off_t offset,
341 off_t filesize)
342{
343 if (this->in_replacement_phase_)
344 return NULL;
345
346 unsigned int handle = this->objects_.size();
347 this->input_file_ = input_file;
348 this->plugin_input_file_.name = input_file->filename().c_str();
349 this->plugin_input_file_.fd = input_file->file().descriptor();
350 this->plugin_input_file_.offset = offset;
351 this->plugin_input_file_.filesize = filesize;
352 this->plugin_input_file_.handle = reinterpret_cast<void*>(handle);
353
354 for (this->current_ = this->plugins_.begin();
355 this->current_ != this->plugins_.end();
356 ++this->current_)
357 {
358 if ((*this->current_)->claim_file(&this->plugin_input_file_))
359 {
0f3b89d8
ILT
360 this->any_claimed_ = true;
361
abc8dcba
CC
362 if (this->objects_.size() > handle)
363 return this->objects_[handle];
364
365 // If the plugin claimed the file but did not call the
366 // add_symbols callback, we need to create the Pluginobj now.
367 Pluginobj* obj = this->make_plugin_object(handle);
368 return obj;
89fc3421
CC
369 }
370 }
371
372 return NULL;
373}
374
0f3b89d8
ILT
375// Save an archive. This is used so that a plugin can add a file
376// which refers to a symbol which was not previously referenced. In
377// that case we want to pretend that the symbol was referenced before,
378// and pull in the archive object.
379
380void
381Plugin_manager::save_archive(Archive* archive)
382{
383 if (this->in_replacement_phase_ || !this->any_claimed_)
384 delete archive;
385 else
386 this->rescannable_.push_back(Rescannable(archive));
387}
388
389// Save an Input_group. This is like save_archive.
390
391void
392Plugin_manager::save_input_group(Input_group* input_group)
393{
394 if (this->in_replacement_phase_ || !this->any_claimed_)
395 delete input_group;
396 else
397 this->rescannable_.push_back(Rescannable(input_group));
398}
399
89fc3421
CC
400// Call the all-symbols-read handlers.
401
402void
0f7c0701 403Plugin_manager::all_symbols_read(Workqueue* workqueue, Task* task,
89fc3421 404 Input_objects* input_objects,
2ea97941 405 Symbol_table* symtab, Layout* layout,
89fc3421
CC
406 Dirsearch* dirpath, Mapfile* mapfile,
407 Task_token** last_blocker)
408{
409 this->in_replacement_phase_ = true;
410 this->workqueue_ = workqueue;
0f7c0701 411 this->task_ = task;
89fc3421
CC
412 this->input_objects_ = input_objects;
413 this->symtab_ = symtab;
2ea97941 414 this->layout_ = layout;
89fc3421
CC
415 this->dirpath_ = dirpath;
416 this->mapfile_ = mapfile;
417 this->this_blocker_ = NULL;
418
419 for (this->current_ = this->plugins_.begin();
420 this->current_ != this->plugins_.end();
421 ++this->current_)
422 (*this->current_)->all_symbols_read();
423
0f3b89d8
ILT
424 if (this->any_added_)
425 {
426 Task_token* next_blocker = new Task_token(true);
427 next_blocker->add_blocker();
428 workqueue->queue(new Plugin_rescan(this->this_blocker_, next_blocker));
429 this->this_blocker_ = next_blocker;
430 }
431
89fc3421
CC
432 *last_blocker = this->this_blocker_;
433}
434
0f3b89d8
ILT
435// This is called when we see a new undefined symbol. If we are in
436// the replacement phase, this means that we may need to rescan some
437// archives we have previously seen.
438
439void
440Plugin_manager::new_undefined_symbol(Symbol* sym)
441{
442 if (this->in_replacement_phase_)
443 this->undefined_symbols_.push_back(sym);
444}
445
446// Rescan archives as needed. This handles the case where a new
447// object file added by a plugin has an undefined reference to some
448// symbol defined in an archive.
449
450void
451Plugin_manager::rescan(Task* task)
452{
453 size_t rescan_pos = 0;
454 size_t rescan_size = this->rescannable_.size();
455 while (!this->undefined_symbols_.empty())
456 {
457 if (rescan_pos >= rescan_size)
458 {
459 this->undefined_symbols_.clear();
460 return;
461 }
462
463 Undefined_symbol_list undefs;
464 undefs.reserve(this->undefined_symbols_.size());
465 this->undefined_symbols_.swap(undefs);
466
467 size_t min_rescan_pos = rescan_size;
468
469 for (Undefined_symbol_list::const_iterator p = undefs.begin();
470 p != undefs.end();
471 ++p)
472 {
473 if (!(*p)->is_undefined())
474 continue;
475
476 this->undefined_symbols_.push_back(*p);
477
478 // Find the first rescan archive which defines this symbol,
479 // starting at the current rescan position. The rescan position
480 // exists so that given -la -lb -lc we don't look for undefined
481 // symbols in -lb back in -la, but instead get the definition
482 // from -lc. Don't bother to look past the current minimum
483 // rescan position.
484 for (size_t i = rescan_pos; i < min_rescan_pos; ++i)
485 {
486 if (this->rescannable_defines(i, *p))
487 {
488 min_rescan_pos = i;
489 break;
490 }
491 }
492 }
493
494 if (min_rescan_pos >= rescan_size)
495 {
496 // We didn't find any rescannable archives which define any
497 // undefined symbols.
498 return;
499 }
500
501 const Rescannable& r(this->rescannable_[min_rescan_pos]);
502 if (r.is_archive)
503 {
504 Task_lock_obj<Archive> tl(task, r.u.archive);
505 r.u.archive->add_symbols(this->symtab_, this->layout_,
506 this->input_objects_, this->mapfile_);
507 }
508 else
509 {
510 size_t next_saw_undefined = this->symtab_->saw_undefined();
511 size_t saw_undefined;
512 do
513 {
514 saw_undefined = next_saw_undefined;
515
516 for (Input_group::const_iterator p = r.u.input_group->begin();
517 p != r.u.input_group->end();
518 ++p)
519 {
520 Task_lock_obj<Archive> tl(task, *p);
521
522 (*p)->add_symbols(this->symtab_, this->layout_,
523 this->input_objects_, this->mapfile_);
524 }
525
526 next_saw_undefined = this->symtab_->saw_undefined();
527 }
528 while (saw_undefined != next_saw_undefined);
529 }
530
531 for (size_t i = rescan_pos; i < min_rescan_pos + 1; ++i)
532 {
533 if (this->rescannable_[i].is_archive)
534 delete this->rescannable_[i].u.archive;
535 else
536 delete this->rescannable_[i].u.input_group;
537 }
538
539 rescan_pos = min_rescan_pos + 1;
540 }
541}
542
543// Return whether the rescannable at index I defines SYM.
544
545bool
546Plugin_manager::rescannable_defines(size_t i, Symbol* sym)
547{
548 const Rescannable& r(this->rescannable_[i]);
549 if (r.is_archive)
550 return r.u.archive->defines_symbol(sym);
551 else
552 {
553 for (Input_group::const_iterator p = r.u.input_group->begin();
554 p != r.u.input_group->end();
555 ++p)
556 {
557 if ((*p)->defines_symbol(sym))
558 return true;
559 }
560 return false;
561 }
562}
563
483620e8 564// Layout deferred objects.
89fc3421
CC
565
566void
483620e8 567Plugin_manager::layout_deferred_objects()
89fc3421 568{
5995b570
CC
569 Deferred_layout_list::iterator obj;
570
571 for (obj = this->deferred_layout_objects_.begin();
572 obj != this->deferred_layout_objects_.end();
573 ++obj)
5f9bcf58
CC
574 {
575 // Lock the object so we can read from it. This is only called
576 // single-threaded from queue_middle_tasks, so it is OK to lock.
577 // Unfortunately we have no way to pass in a Task token.
578 const Task* dummy_task = reinterpret_cast<const Task*>(-1);
579 Task_lock_obj<Object> tl(dummy_task, *obj);
580 (*obj)->layout_deferred_sections(this->layout_);
581 }
483620e8
CC
582}
583
584// Call the cleanup handlers.
5995b570 585
483620e8
CC
586void
587Plugin_manager::cleanup()
588{
89fc3421
CC
589 for (this->current_ = this->plugins_.begin();
590 this->current_ != this->plugins_.end();
591 ++this->current_)
592 (*this->current_)->cleanup();
593}
594
595// Make a new Pluginobj object. This is called when the plugin calls
596// the add_symbols API.
597
598Pluginobj*
599Plugin_manager::make_plugin_object(unsigned int handle)
600{
601 // Make sure we aren't asked to make an object for the same handle twice.
602 if (this->objects_.size() != handle)
603 return NULL;
604
605 Pluginobj* obj = make_sized_plugin_object(this->input_file_,
0f7c0701
CC
606 this->plugin_input_file_.offset,
607 this->plugin_input_file_.filesize);
89fc3421
CC
608 this->objects_.push_back(obj);
609 return obj;
610}
611
0f7c0701
CC
612// Get the input file information with an open (possibly re-opened)
613// file descriptor.
614
615ld_plugin_status
616Plugin_manager::get_input_file(unsigned int handle,
ca09d69a 617 struct ld_plugin_input_file* file)
0f7c0701
CC
618{
619 Pluginobj* obj = this->object(handle);
620 if (obj == NULL)
621 return LDPS_BAD_HANDLE;
622
623 obj->lock(this->task_);
624 file->name = obj->filename().c_str();
625 file->fd = obj->descriptor();
626 file->offset = obj->offset();
627 file->filesize = obj->filesize();
628 file->handle = reinterpret_cast<void*>(handle);
629 return LDPS_OK;
630}
631
632// Release the input file.
633
634ld_plugin_status
635Plugin_manager::release_input_file(unsigned int handle)
636{
637 Pluginobj* obj = this->object(handle);
638 if (obj == NULL)
639 return LDPS_BAD_HANDLE;
640
641 obj->unlock(this->task_);
642 return LDPS_OK;
643}
644
9c793f14
RÁE
645ld_plugin_status
646Plugin_manager::get_view(unsigned int handle, const void **viewp)
647{
648 off_t offset;
649 size_t filesize;
650 Input_file *input_file;
651 if (this->objects_.size() == handle)
652 {
653 // We are being called from the claim_file hook.
654 const struct ld_plugin_input_file &f = this->plugin_input_file_;
655 offset = f.offset;
656 filesize = f.filesize;
657 input_file = this->input_file_;
658 }
659 else
660 {
661 // An already claimed file.
662 Pluginobj* obj = this->object(handle);
663 if (obj == NULL)
664 return LDPS_BAD_HANDLE;
665 offset = obj->offset();
666 filesize = obj->filesize();
667 input_file = obj->input_file();
668 }
669 *viewp = (void*) input_file->file().get_view(offset, 0, filesize, false,
670 false);
671 return LDPS_OK;
672}
673
42218b9f
RÁE
674// Add a new library path.
675
676ld_plugin_status
ca09d69a 677Plugin_manager::set_extra_library_path(const char* path)
42218b9f
RÁE
678{
679 this->extra_search_path_ = std::string(path);
680 return LDPS_OK;
681}
682
89fc3421
CC
683// Add a new input file.
684
685ld_plugin_status
ca09d69a 686Plugin_manager::add_input_file(const char* pathname, bool is_lib)
89fc3421 687{
ae3b5189
CD
688 Input_file_argument file(pathname,
689 (is_lib
690 ? Input_file_argument::INPUT_FILE_TYPE_LIBRARY
691 : Input_file_argument::INPUT_FILE_TYPE_FILE),
42218b9f
RÁE
692 (is_lib
693 ? this->extra_search_path_.c_str()
694 : ""),
695 false,
696 this->options_);
89fc3421
CC
697 Input_argument* input_argument = new Input_argument(file);
698 Task_token* next_blocker = new Task_token(true);
699 next_blocker->add_blocker();
8c21d9d3 700 if (parameters->incremental())
40f36857
CC
701 gold_error(_("input files added by plug-ins in --incremental mode not "
702 "supported yet"));
f1ed28fb 703 this->workqueue_->queue_soon(new Read_symbols(this->input_objects_,
89fc3421
CC
704 this->symtab_,
705 this->layout_,
706 this->dirpath_,
15f8229b 707 0,
89fc3421
CC
708 this->mapfile_,
709 input_argument,
710 NULL,
b0193076 711 NULL,
89fc3421
CC
712 this->this_blocker_,
713 next_blocker));
714 this->this_blocker_ = next_blocker;
0f3b89d8 715 this->any_added_ = true;
89fc3421
CC
716 return LDPS_OK;
717}
718
719// Class Pluginobj.
720
2ea97941
ILT
721Pluginobj::Pluginobj(const std::string& name, Input_file* input_file,
722 off_t offset, off_t filesize)
723 : Object(name, input_file, false, offset),
724 nsyms_(0), syms_(NULL), symbols_(), filesize_(filesize), comdat_map_()
89fc3421
CC
725{
726}
727
d66a9eb3
CC
728// Return TRUE if a defined symbol might be reachable from outside the
729// universe of claimed objects.
730
731static inline bool
732is_visible_from_outside(Symbol* lsym)
733{
734 if (lsym->in_real_elf())
735 return true;
736 if (parameters->options().relocatable())
737 return true;
84ced98a
RÁE
738 if (parameters->options().is_undefined(lsym->name()))
739 return true;
d66a9eb3
CC
740 if (parameters->options().export_dynamic() || parameters->options().shared())
741 return lsym->is_externally_visible();
742 return false;
743}
744
89fc3421
CC
745// Get symbol resolution info.
746
747ld_plugin_status
748Pluginobj::get_symbol_resolution_info(int nsyms, ld_plugin_symbol* syms) const
749{
abc8dcba 750 if (nsyms > this->nsyms_)
89fc3421 751 return LDPS_NO_SYMS;
b0193076
RÁE
752
753 if (static_cast<size_t>(nsyms) > this->symbols_.size())
754 {
755 // We never decided to include this object. We mark all symbols as
756 // preempted.
ca09d69a 757 gold_assert(this->symbols_.size() == 0);
b0193076
RÁE
758 for (int i = 0; i < nsyms; i++)
759 syms[i].resolution = LDPR_PREEMPTED_REG;
760 return LDPS_OK;
761 }
762
89fc3421
CC
763 for (int i = 0; i < nsyms; i++)
764 {
765 ld_plugin_symbol* isym = &syms[i];
766 Symbol* lsym = this->symbols_[i];
767 ld_plugin_symbol_resolution res = LDPR_UNKNOWN;
768
769 if (lsym->is_undefined())
770 // The symbol remains undefined.
771 res = LDPR_UNDEF;
772 else if (isym->def == LDPK_UNDEF
773 || isym->def == LDPK_WEAKUNDEF
774 || isym->def == LDPK_COMMON)
775 {
776 // The original symbol was undefined or common.
777 if (lsym->source() != Symbol::FROM_OBJECT)
778 res = LDPR_RESOLVED_EXEC;
be234d88
CC
779 else if (lsym->object()->pluginobj() == this)
780 res = (is_visible_from_outside(lsym)
781 ? LDPR_PREVAILING_DEF
782 : LDPR_PREVAILING_DEF_IRONLY);
89fc3421
CC
783 else if (lsym->object()->pluginobj() != NULL)
784 res = LDPR_RESOLVED_IR;
785 else if (lsym->object()->is_dynamic())
786 res = LDPR_RESOLVED_DYN;
787 else
788 res = LDPR_RESOLVED_EXEC;
789 }
790 else
791 {
792 // The original symbol was a definition.
793 if (lsym->source() != Symbol::FROM_OBJECT)
794 res = LDPR_PREEMPTED_REG;
795 else if (lsym->object() == static_cast<const Object*>(this))
d66a9eb3 796 res = (is_visible_from_outside(lsym)
89fc3421
CC
797 ? LDPR_PREVAILING_DEF
798 : LDPR_PREVAILING_DEF_IRONLY);
799 else
800 res = (lsym->object()->pluginobj() != NULL
801 ? LDPR_PREEMPTED_IR
802 : LDPR_PREEMPTED_REG);
803 }
804 isym->resolution = res;
805 }
806 return LDPS_OK;
807}
808
809// Return TRUE if the comdat group with key COMDAT_KEY from this object
810// should be kept.
811
812bool
2ea97941 813Pluginobj::include_comdat_group(std::string comdat_key, Layout* layout)
89fc3421
CC
814{
815 std::pair<Comdat_map::iterator, bool> ins =
816 this->comdat_map_.insert(std::make_pair(comdat_key, false));
817
818 // If this is the first time we've seen this comdat key, ask the
819 // layout object whether it should be included.
820 if (ins.second)
2ea97941
ILT
821 ins.first->second = layout->find_or_add_kept_section(comdat_key,
822 NULL, 0, true,
823 true, NULL);
89fc3421
CC
824
825 return ins.first->second;
826}
827
828// Class Sized_pluginobj.
829
830template<int size, bool big_endian>
831Sized_pluginobj<size, big_endian>::Sized_pluginobj(
2ea97941
ILT
832 const std::string& name,
833 Input_file* input_file,
834 off_t offset,
835 off_t filesize)
836 : Pluginobj(name, input_file, offset, filesize)
89fc3421
CC
837{
838}
839
840// Read the symbols. Not used for plugin objects.
841
842template<int size, bool big_endian>
843void
844Sized_pluginobj<size, big_endian>::do_read_symbols(Read_symbols_data*)
845{
846 gold_unreachable();
847}
848
849// Lay out the input sections. Not used for plugin objects.
850
851template<int size, bool big_endian>
852void
853Sized_pluginobj<size, big_endian>::do_layout(Symbol_table*, Layout*,
854 Read_symbols_data*)
855{
856 gold_unreachable();
857}
858
859// Add the symbols to the symbol table.
860
89fc3421
CC
861template<int size, bool big_endian>
862void
863Sized_pluginobj<size, big_endian>::do_add_symbols(Symbol_table* symtab,
f488e4b0 864 Read_symbols_data*,
2ea97941 865 Layout* layout)
89fc3421
CC
866{
867 const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
868 unsigned char symbuf[sym_size];
869 elfcpp::Sym<size, big_endian> sym(symbuf);
870 elfcpp::Sym_write<size, big_endian> osym(symbuf);
871
872 typedef typename elfcpp::Elf_types<size>::Elf_WXword Elf_size_type;
873
874 this->symbols_.resize(this->nsyms_);
875
876 for (int i = 0; i < this->nsyms_; ++i)
877 {
ca09d69a 878 const struct ld_plugin_symbol* isym = &this->syms_[i];
2ea97941 879 const char* name = isym->name;
89fc3421
CC
880 const char* ver = isym->version;
881 elfcpp::Elf_Half shndx;
882 elfcpp::STB bind;
883 elfcpp::STV vis;
884
2ea97941
ILT
885 if (name != NULL && name[0] == '\0')
886 name = NULL;
89fc3421
CC
887 if (ver != NULL && ver[0] == '\0')
888 ver = NULL;
889
890 switch (isym->def)
891 {
892 case LDPK_WEAKDEF:
893 case LDPK_WEAKUNDEF:
894 bind = elfcpp::STB_WEAK;
895 break;
896 case LDPK_DEF:
897 case LDPK_UNDEF:
898 case LDPK_COMMON:
899 default:
900 bind = elfcpp::STB_GLOBAL;
901 break;
902 }
903
904 switch (isym->def)
905 {
906 case LDPK_DEF:
907 case LDPK_WEAKDEF:
908 shndx = elfcpp::SHN_ABS;
909 break;
910 case LDPK_COMMON:
911 shndx = elfcpp::SHN_COMMON;
912 break;
913 case LDPK_UNDEF:
914 case LDPK_WEAKUNDEF:
915 default:
916 shndx = elfcpp::SHN_UNDEF;
917 break;
918 }
919
920 switch (isym->visibility)
921 {
922 case LDPV_PROTECTED:
105b6afd 923 vis = elfcpp::STV_PROTECTED;
89fc3421
CC
924 break;
925 case LDPV_INTERNAL:
105b6afd 926 vis = elfcpp::STV_INTERNAL;
89fc3421
CC
927 break;
928 case LDPV_HIDDEN:
105b6afd 929 vis = elfcpp::STV_HIDDEN;
89fc3421
CC
930 break;
931 case LDPV_DEFAULT:
932 default:
933 vis = elfcpp::STV_DEFAULT;
934 break;
935 }
936
937 if (isym->comdat_key != NULL
938 && isym->comdat_key[0] != '\0'
2ea97941 939 && !this->include_comdat_group(isym->comdat_key, layout))
89fc3421
CC
940 shndx = elfcpp::SHN_UNDEF;
941
942 osym.put_st_name(0);
943 osym.put_st_value(0);
944 osym.put_st_size(static_cast<Elf_size_type>(isym->size));
945 osym.put_st_info(bind, elfcpp::STT_NOTYPE);
946 osym.put_st_other(vis, 0);
947 osym.put_st_shndx(shndx);
948
949 this->symbols_[i] =
2ea97941 950 symtab->add_from_pluginobj<size, big_endian>(this, name, ver, &sym);
89fc3421
CC
951 }
952}
953
b0193076
RÁE
954template<int size, bool big_endian>
955Archive::Should_include
956Sized_pluginobj<size, big_endian>::do_should_include_member(
88a4108b
ILT
957 Symbol_table* symtab,
958 Layout* layout,
959 Read_symbols_data*,
960 std::string* why)
b0193076
RÁE
961{
962 char* tmpbuf = NULL;
963 size_t tmpbuflen = 0;
964
88a4108b
ILT
965 for (int i = 0; i < this->nsyms_; ++i)
966 {
967 const struct ld_plugin_symbol& sym = this->syms_[i];
968 const char* name = sym.name;
969 Symbol* symbol;
970 Archive::Should_include t = Archive::should_include_member(symtab,
971 layout,
972 name,
973 &symbol, why,
974 &tmpbuf,
975 &tmpbuflen);
b0193076
RÁE
976 if (t == Archive::SHOULD_INCLUDE_YES)
977 {
978 if (tmpbuf != NULL)
979 free(tmpbuf);
980 return t;
981 }
88a4108b 982 }
b0193076
RÁE
983 if (tmpbuf != NULL)
984 free(tmpbuf);
985 return Archive::SHOULD_INCLUDE_UNKNOWN;
986}
987
e0c52780
CC
988// Iterate over global symbols, calling a visitor class V for each.
989
990template<int size, bool big_endian>
991void
992Sized_pluginobj<size, big_endian>::do_for_all_global_symbols(
993 Read_symbols_data*,
994 Library_base::Symbol_visitor_base* v)
995{
996 for (int i = 0; i < this->nsyms_; ++i)
997 {
998 const struct ld_plugin_symbol& sym = this->syms_[i];
999 if (sym.def != LDPK_UNDEF)
1000 v->visit(sym.name);
1001 }
1002}
1003
cdc29364
CC
1004// Iterate over local symbols, calling a visitor class V for each GOT offset
1005// associated with a local symbol.
1006template<int size, bool big_endian>
1007void
1008Sized_pluginobj<size, big_endian>::do_for_all_local_got_entries(
1009 Got_offset_list::Visitor*) const
1010{
1011 gold_unreachable();
1012}
1013
89fc3421
CC
1014// Get the size of a section. Not used for plugin objects.
1015
1016template<int size, bool big_endian>
1017uint64_t
1018Sized_pluginobj<size, big_endian>::do_section_size(unsigned int)
1019{
1020 gold_unreachable();
1021 return 0;
1022}
1023
1024// Get the name of a section. Not used for plugin objects.
1025
1026template<int size, bool big_endian>
1027std::string
1028Sized_pluginobj<size, big_endian>::do_section_name(unsigned int)
1029{
1030 gold_unreachable();
1031 return std::string();
1032}
1033
1034// Return a view of the contents of a section. Not used for plugin objects.
1035
1036template<int size, bool big_endian>
1037Object::Location
1038Sized_pluginobj<size, big_endian>::do_section_contents(unsigned int)
1039{
1040 Location loc(0, 0);
1041
1042 gold_unreachable();
1043 return loc;
1044}
1045
1046// Return section flags. Not used for plugin objects.
1047
1048template<int size, bool big_endian>
1049uint64_t
1050Sized_pluginobj<size, big_endian>::do_section_flags(unsigned int)
1051{
1052 gold_unreachable();
1053 return 0;
1054}
1055
ef15dade
ST
1056// Return section entsize. Not used for plugin objects.
1057
1058template<int size, bool big_endian>
1059uint64_t
1060Sized_pluginobj<size, big_endian>::do_section_entsize(unsigned int)
1061{
1062 gold_unreachable();
1063 return 0;
1064}
1065
89fc3421
CC
1066// Return section address. Not used for plugin objects.
1067
1068template<int size, bool big_endian>
1069uint64_t
1070Sized_pluginobj<size, big_endian>::do_section_address(unsigned int)
1071{
1072 gold_unreachable();
1073 return 0;
1074}
1075
1076// Return section type. Not used for plugin objects.
1077
1078template<int size, bool big_endian>
1079unsigned int
1080Sized_pluginobj<size, big_endian>::do_section_type(unsigned int)
1081{
1082 gold_unreachable();
1083 return 0;
1084}
1085
1086// Return the section link field. Not used for plugin objects.
1087
1088template<int size, bool big_endian>
1089unsigned int
1090Sized_pluginobj<size, big_endian>::do_section_link(unsigned int)
1091{
1092 gold_unreachable();
1093 return 0;
1094}
1095
1096// Return the section link field. Not used for plugin objects.
1097
1098template<int size, bool big_endian>
1099unsigned int
1100Sized_pluginobj<size, big_endian>::do_section_info(unsigned int)
1101{
1102 gold_unreachable();
1103 return 0;
1104}
1105
1106// Return the section alignment. Not used for plugin objects.
1107
1108template<int size, bool big_endian>
1109uint64_t
1110Sized_pluginobj<size, big_endian>::do_section_addralign(unsigned int)
1111{
1112 gold_unreachable();
1113 return 0;
1114}
1115
1116// Return the Xindex structure to use. Not used for plugin objects.
1117
1118template<int size, bool big_endian>
1119Xindex*
1120Sized_pluginobj<size, big_endian>::do_initialize_xindex()
1121{
1122 gold_unreachable();
1123 return NULL;
1124}
1125
1126// Get symbol counts. Not used for plugin objects.
1127
1128template<int size, bool big_endian>
1129void
1130Sized_pluginobj<size, big_endian>::do_get_global_symbol_counts(const Symbol_table*,
1131 size_t*, size_t*) const
1132{
1133 gold_unreachable();
1134}
1135
dde3f402
ILT
1136// Get symbols. Not used for plugin objects.
1137
1138template<int size, bool big_endian>
1139const Object::Symbols*
1140Sized_pluginobj<size, big_endian>::do_get_global_symbols() const
1141{
1142 gold_unreachable();
1143}
1144
5995b570 1145// Class Plugin_finish. This task runs after all replacement files have
78384e8f
CC
1146// been added. For now, it's a placeholder for a possible plugin API
1147// to allow the plugin to release most of its resources. The cleanup
1148// handlers must be called later, because they can remove the temporary
1149// object files that are needed until the end of the link.
89fc3421 1150
5995b570 1151class Plugin_finish : public Task
89fc3421
CC
1152{
1153 public:
5995b570 1154 Plugin_finish(Task_token* this_blocker, Task_token* next_blocker)
89fc3421
CC
1155 : this_blocker_(this_blocker), next_blocker_(next_blocker)
1156 { }
1157
5995b570 1158 ~Plugin_finish()
89fc3421
CC
1159 {
1160 if (this->this_blocker_ != NULL)
1161 delete this->this_blocker_;
1162 }
1163
1164 Task_token*
1165 is_runnable()
1166 {
1167 if (this->this_blocker_ != NULL && this->this_blocker_->is_blocked())
1168 return this->this_blocker_;
1169 return NULL;
1170 }
1171
1172 void
1173 locks(Task_locker* tl)
1174 { tl->add(this, this->next_blocker_); }
1175
1176 void
1177 run(Workqueue*)
483620e8 1178 {
78384e8f 1179 // We could call early cleanup handlers here.
483620e8 1180 }
89fc3421
CC
1181
1182 std::string
1183 get_name() const
5995b570 1184 { return "Plugin_finish"; }
89fc3421
CC
1185
1186 private:
1187 Task_token* this_blocker_;
1188 Task_token* next_blocker_;
1189};
1190
1191// Class Plugin_hook.
1192
1193Plugin_hook::~Plugin_hook()
1194{
1195}
1196
1197// Return whether a Plugin_hook task is runnable.
1198
1199Task_token*
1200Plugin_hook::is_runnable()
1201{
1202 if (this->this_blocker_ != NULL && this->this_blocker_->is_blocked())
1203 return this->this_blocker_;
1204 return NULL;
1205}
1206
1207// Return a Task_locker for a Plugin_hook task. We don't need any
1208// locks here.
1209
1210void
1211Plugin_hook::locks(Task_locker*)
1212{
1213}
1214
89fc3421
CC
1215// Run the "all symbols read" plugin hook.
1216
1217void
5995b570 1218Plugin_hook::run(Workqueue* workqueue)
89fc3421
CC
1219{
1220 gold_assert(this->options_.has_plugins());
a10ae760 1221 Symbol* start_sym = this->symtab_->lookup(parameters->entry());
91ff43fe
RÁE
1222 if (start_sym != NULL)
1223 start_sym->set_in_real_elf();
1224
89fc3421 1225 this->options_.plugins()->all_symbols_read(workqueue,
0f7c0701 1226 this,
89fc3421
CC
1227 this->input_objects_,
1228 this->symtab_,
1229 this->layout_,
1230 this->dirpath_,
1231 this->mapfile_,
1232 &this->this_blocker_);
5995b570
CC
1233 workqueue->queue_soon(new Plugin_finish(this->this_blocker_,
1234 this->next_blocker_));
89fc3421
CC
1235}
1236
1237// The C interface routines called by the plugins.
1238
1239#ifdef ENABLE_PLUGINS
1240
1241// Register a claim-file handler.
1242
1243static enum ld_plugin_status
1244register_claim_file(ld_plugin_claim_file_handler handler)
1245{
1246 gold_assert(parameters->options().has_plugins());
1247 parameters->options().plugins()->set_claim_file_handler(handler);
1248 return LDPS_OK;
1249}
1250
1251// Register an all-symbols-read handler.
1252
1253static enum ld_plugin_status
1254register_all_symbols_read(ld_plugin_all_symbols_read_handler handler)
1255{
1256 gold_assert(parameters->options().has_plugins());
1257 parameters->options().plugins()->set_all_symbols_read_handler(handler);
1258 return LDPS_OK;
1259}
1260
1261// Register a cleanup handler.
1262
1263static enum ld_plugin_status
1264register_cleanup(ld_plugin_cleanup_handler handler)
1265{
1266 gold_assert(parameters->options().has_plugins());
1267 parameters->options().plugins()->set_cleanup_handler(handler);
1268 return LDPS_OK;
1269}
1270
1271// Add symbols from a plugin-claimed input file.
1272
1273static enum ld_plugin_status
ca09d69a 1274add_symbols(void* handle, int nsyms, const ld_plugin_symbol* syms)
89fc3421
CC
1275{
1276 gold_assert(parameters->options().has_plugins());
1277 Pluginobj* obj = parameters->options().plugins()->make_plugin_object(
1278 static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle)));
1279 if (obj == NULL)
1280 return LDPS_ERR;
1281 obj->store_incoming_symbols(nsyms, syms);
1282 return LDPS_OK;
1283}
1284
0f7c0701
CC
1285// Get the input file information with an open (possibly re-opened)
1286// file descriptor.
1287
1288static enum ld_plugin_status
ca09d69a 1289get_input_file(const void* handle, struct ld_plugin_input_file* file)
0f7c0701
CC
1290{
1291 gold_assert(parameters->options().has_plugins());
1292 unsigned int obj_index =
1293 static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle));
1294 return parameters->options().plugins()->get_input_file(obj_index, file);
1295}
1296
1297// Release the input file.
1298
1299static enum ld_plugin_status
ca09d69a 1300release_input_file(const void* handle)
0f7c0701
CC
1301{
1302 gold_assert(parameters->options().has_plugins());
1303 unsigned int obj_index =
1304 static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle));
1305 return parameters->options().plugins()->release_input_file(obj_index);
1306}
1307
9c793f14
RÁE
1308static enum ld_plugin_status
1309get_view(const void *handle, const void **viewp)
1310{
1311 gold_assert(parameters->options().has_plugins());
1312 unsigned int obj_index =
1313 static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle));
1314 return parameters->options().plugins()->get_view(obj_index, viewp);
1315}
1316
89fc3421
CC
1317// Get the symbol resolution info for a plugin-claimed input file.
1318
1319static enum ld_plugin_status
ca09d69a 1320get_symbols(const void* handle, int nsyms, ld_plugin_symbol* syms)
89fc3421
CC
1321{
1322 gold_assert(parameters->options().has_plugins());
1323 Pluginobj* obj = parameters->options().plugins()->object(
1324 static_cast<unsigned int>(reinterpret_cast<intptr_t>(handle)));
1325 if (obj == NULL)
1326 return LDPS_ERR;
1327 return obj->get_symbol_resolution_info(nsyms, syms);
1328}
1329
1330// Add a new (real) input file generated by a plugin.
1331
1332static enum ld_plugin_status
ca09d69a 1333add_input_file(const char* pathname)
89fc3421
CC
1334{
1335 gold_assert(parameters->options().has_plugins());
e99daf92
ILT
1336 return parameters->options().plugins()->add_input_file(pathname, false);
1337}
1338
1339// Add a new (real) library required by a plugin.
1340
1341static enum ld_plugin_status
ca09d69a 1342add_input_library(const char* pathname)
e99daf92
ILT
1343{
1344 gold_assert(parameters->options().has_plugins());
1345 return parameters->options().plugins()->add_input_file(pathname, true);
89fc3421
CC
1346}
1347
42218b9f
RÁE
1348// Set the extra library path to be used by libraries added via
1349// add_input_library
1350
1351static enum ld_plugin_status
ca09d69a 1352set_extra_library_path(const char* path)
42218b9f
RÁE
1353{
1354 gold_assert(parameters->options().has_plugins());
1355 return parameters->options().plugins()->set_extra_library_path(path);
1356}
1357
89fc3421
CC
1358// Issue a diagnostic message from a plugin.
1359
1360static enum ld_plugin_status
ca09d69a 1361message(int level, const char* format, ...)
89fc3421
CC
1362{
1363 va_list args;
1364 va_start(args, format);
1365
1366 switch (level)
1367 {
1368 case LDPL_INFO:
1369 parameters->errors()->info(format, args);
1370 break;
1371 case LDPL_WARNING:
1372 parameters->errors()->warning(format, args);
1373 break;
1374 case LDPL_ERROR:
1375 default:
1376 parameters->errors()->error(format, args);
1377 break;
1378 case LDPL_FATAL:
1379 parameters->errors()->fatal(format, args);
1380 break;
1381 }
1382
1383 va_end(args);
1384 return LDPS_OK;
1385}
1386
1387#endif // ENABLE_PLUGINS
1388
1389// Allocate a Pluginobj object of the appropriate size and endianness.
1390
1391static Pluginobj*
0f7c0701 1392make_sized_plugin_object(Input_file* input_file, off_t offset, off_t filesize)
89fc3421 1393{
89fc3421
CC
1394 Pluginobj* obj = NULL;
1395
029ba973
ILT
1396 parameters_force_valid_target();
1397 const Target& target(parameters->target());
89fc3421 1398
029ba973 1399 if (target.get_size() == 32)
89fc3421 1400 {
029ba973 1401 if (target.is_big_endian())
92f03fcb 1402#ifdef HAVE_TARGET_32_BIG
89fc3421 1403 obj = new Sized_pluginobj<32, true>(input_file->filename(),
0f7c0701 1404 input_file, offset, filesize);
92f03fcb
CC
1405#else
1406 gold_error(_("%s: not configured to support "
1407 "32-bit big-endian object"),
1408 input_file->filename().c_str());
89fc3421 1409#endif
89fc3421 1410 else
92f03fcb 1411#ifdef HAVE_TARGET_32_LITTLE
89fc3421 1412 obj = new Sized_pluginobj<32, false>(input_file->filename(),
0f7c0701 1413 input_file, offset, filesize);
92f03fcb
CC
1414#else
1415 gold_error(_("%s: not configured to support "
1416 "32-bit little-endian object"),
1417 input_file->filename().c_str());
89fc3421
CC
1418#endif
1419 }
029ba973 1420 else if (target.get_size() == 64)
89fc3421 1421 {
029ba973 1422 if (target.is_big_endian())
92f03fcb 1423#ifdef HAVE_TARGET_64_BIG
89fc3421 1424 obj = new Sized_pluginobj<64, true>(input_file->filename(),
0f7c0701 1425 input_file, offset, filesize);
92f03fcb
CC
1426#else
1427 gold_error(_("%s: not configured to support "
1428 "64-bit big-endian object"),
1429 input_file->filename().c_str());
89fc3421 1430#endif
89fc3421 1431 else
92f03fcb 1432#ifdef HAVE_TARGET_64_LITTLE
89fc3421 1433 obj = new Sized_pluginobj<64, false>(input_file->filename(),
0f7c0701 1434 input_file, offset, filesize);
92f03fcb
CC
1435#else
1436 gold_error(_("%s: not configured to support "
1437 "64-bit little-endian object"),
1438 input_file->filename().c_str());
89fc3421
CC
1439#endif
1440 }
1441
1442 gold_assert(obj != NULL);
89fc3421
CC
1443 return obj;
1444}
1445
1446} // End namespace gold.