Commit | Line | Data |
---|---|---|
89fc3421 CC |
1 | // plugin.h -- plugin manager for gold -*- C++ -*- |
2 | ||
82704155 | 3 | // Copyright (C) 2008-2019 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 | ||
23 | #ifndef GOLD_PLUGIN_H | |
24 | #define GOLD_PLUGIN_H | |
25 | ||
26 | #include <list> | |
27 | #include <string> | |
28 | ||
29 | #include "object.h" | |
30 | #include "plugin-api.h" | |
31 | #include "workqueue.h" | |
32 | ||
33 | namespace gold | |
34 | { | |
35 | ||
36 | class General_options; | |
37 | class Input_file; | |
38 | class Input_objects; | |
0f3b89d8 ILT |
39 | class Archive; |
40 | class Input_group; | |
41 | class Symbol; | |
89fc3421 CC |
42 | class Symbol_table; |
43 | class Layout; | |
44 | class Dirsearch; | |
45 | class Mapfile; | |
0f3b89d8 | 46 | class Task; |
89fc3421 CC |
47 | class Task_token; |
48 | class Pluginobj; | |
0f3b89d8 | 49 | class Plugin_rescan; |
291158a3 | 50 | class Plugin_recorder; |
89fc3421 CC |
51 | |
52 | // This class represents a single plugin library. | |
53 | ||
54 | class Plugin | |
55 | { | |
56 | public: | |
4674ecfc | 57 | Plugin(const char* filename) |
89fc3421 | 58 | : handle_(NULL), |
4674ecfc CC |
59 | filename_(filename), |
60 | args_(), | |
89fc3421 CC |
61 | claim_file_handler_(NULL), |
62 | all_symbols_read_handler_(NULL), | |
40f36857 | 63 | cleanup_handler_(NULL), |
c4e64843 | 64 | new_input_handler_(NULL), |
40f36857 | 65 | cleanup_done_(false) |
89fc3421 CC |
66 | { } |
67 | ||
68 | ~Plugin() | |
69 | { } | |
70 | ||
71 | // Load the library and call its entry point. | |
72 | void | |
73 | load(); | |
74 | ||
75 | // Call the claim-file handler. | |
76 | bool | |
ca09d69a | 77 | claim_file(struct ld_plugin_input_file* plugin_input_file); |
89fc3421 CC |
78 | |
79 | // Call the all-symbols-read handler. | |
80 | void | |
81 | all_symbols_read(); | |
82 | ||
c4e64843 SC |
83 | // Call the new_input handler. |
84 | void | |
85 | new_input(struct ld_plugin_input_file* plugin_input_file); | |
86 | ||
89fc3421 CC |
87 | // Call the cleanup handler. |
88 | void | |
89 | cleanup(); | |
90 | ||
91 | // Register a claim-file handler. | |
92 | void | |
93 | set_claim_file_handler(ld_plugin_claim_file_handler handler) | |
94 | { this->claim_file_handler_ = handler; } | |
95 | ||
96 | // Register an all-symbols-read handler. | |
97 | void | |
98 | set_all_symbols_read_handler(ld_plugin_all_symbols_read_handler handler) | |
99 | { this->all_symbols_read_handler_ = handler; } | |
100 | ||
101 | // Register a claim-file handler. | |
102 | void | |
103 | set_cleanup_handler(ld_plugin_cleanup_handler handler) | |
104 | { this->cleanup_handler_ = handler; } | |
105 | ||
c4e64843 SC |
106 | // Register a new_input handler. |
107 | void | |
108 | set_new_input_handler(ld_plugin_new_input_handler handler) | |
109 | { this->new_input_handler_ = handler; } | |
110 | ||
4674ecfc CC |
111 | // Add an argument |
112 | void | |
ca09d69a | 113 | add_option(const char* arg) |
4674ecfc CC |
114 | { |
115 | this->args_.push_back(arg); | |
116 | } | |
117 | ||
291158a3 CC |
118 | const std::string& |
119 | filename() const | |
120 | { return this->filename_; } | |
121 | ||
89fc3421 CC |
122 | private: |
123 | Plugin(const Plugin&); | |
124 | Plugin& operator=(const Plugin&); | |
125 | ||
126 | // The shared library handle returned by dlopen. | |
127 | void* handle_; | |
128 | // The argument string given to --plugin. | |
4674ecfc CC |
129 | std::string filename_; |
130 | // The list of argument string given to --plugin-opt. | |
131 | std::vector<std::string> args_; | |
89fc3421 CC |
132 | // The plugin's event handlers. |
133 | ld_plugin_claim_file_handler claim_file_handler_; | |
134 | ld_plugin_all_symbols_read_handler all_symbols_read_handler_; | |
135 | ld_plugin_cleanup_handler cleanup_handler_; | |
c4e64843 | 136 | ld_plugin_new_input_handler new_input_handler_; |
40f36857 CC |
137 | // TRUE if the cleanup handlers have been called. |
138 | bool cleanup_done_; | |
89fc3421 CC |
139 | }; |
140 | ||
141 | // A manager class for plugins. | |
142 | ||
143 | class Plugin_manager | |
144 | { | |
145 | public: | |
146 | Plugin_manager(const General_options& options) | |
5995b570 | 147 | : plugins_(), objects_(), deferred_layout_objects_(), input_file_(NULL), |
0f3b89d8 ILT |
148 | plugin_input_file_(), rescannable_(), undefined_symbols_(), |
149 | any_claimed_(false), in_replacement_phase_(false), any_added_(false), | |
e9552f7e | 150 | in_claim_file_handler_(false), |
0f7c0701 CC |
151 | options_(options), workqueue_(NULL), task_(NULL), input_objects_(NULL), |
152 | symtab_(NULL), layout_(NULL), dirpath_(NULL), mapfile_(NULL), | |
d37ffe25 | 153 | this_blocker_(NULL), extra_search_path_(), lock_(NULL), |
291158a3 CC |
154 | initialize_lock_(&lock_), defsym_defines_set_(), |
155 | recorder_(NULL) | |
89fc3421 CC |
156 | { this->current_ = plugins_.end(); } |
157 | ||
158 | ~Plugin_manager(); | |
159 | ||
3281b315 ST |
160 | // Returns true if the symbol name is used in the LHS of a defsym. |
161 | bool | |
162 | is_defsym_def(const char* sym_name) const | |
163 | { | |
164 | return defsym_defines_set_.find(sym_name) != defsym_defines_set_.end(); | |
165 | } | |
166 | ||
89fc3421 CC |
167 | // Add a plugin library. |
168 | void | |
4674ecfc CC |
169 | add_plugin(const char* filename) |
170 | { this->plugins_.push_back(new Plugin(filename)); } | |
171 | ||
172 | // Add an argument to the current plugin. | |
173 | void | |
174 | add_plugin_option(const char* opt) | |
175 | { | |
176 | Plugin* last = this->plugins_.back(); | |
177 | last->add_option(opt); | |
178 | } | |
89fc3421 CC |
179 | |
180 | // Load all plugin libraries. | |
181 | void | |
e9552f7e | 182 | load_plugins(Layout* layout); |
89fc3421 CC |
183 | |
184 | // Call the plugin claim-file handlers in turn to see if any claim the file. | |
185 | Pluginobj* | |
e9552f7e ST |
186 | claim_file(Input_file* input_file, off_t offset, off_t filesize, |
187 | Object* elf_object); | |
188 | ||
189 | // Get the object associated with the handle and check if it is an elf object. | |
190 | // If it is not a Pluginobj, it is an elf object. | |
191 | Object* | |
192 | get_elf_object(const void* handle); | |
193 | ||
194 | // True if the claim_file handler of the plugins is being called. | |
195 | bool | |
196 | in_claim_file_handler() | |
197 | { return in_claim_file_handler_; } | |
89fc3421 | 198 | |
0f3b89d8 ILT |
199 | // Let the plugin manager save an archive for later rescanning. |
200 | // This takes ownership of the Archive pointer. | |
201 | void | |
202 | save_archive(Archive*); | |
203 | ||
204 | // Let the plugin manager save an input group for later rescanning. | |
205 | // This takes ownership of the Input_group pointer. | |
206 | void | |
207 | save_input_group(Input_group*); | |
208 | ||
89fc3421 CC |
209 | // Call the all-symbols-read handlers. |
210 | void | |
0f7c0701 CC |
211 | all_symbols_read(Workqueue* workqueue, Task* task, |
212 | Input_objects* input_objects, Symbol_table* symtab, | |
e9552f7e | 213 | Dirsearch* dirpath, Mapfile* mapfile, |
0f7c0701 | 214 | Task_token** last_blocker); |
89fc3421 | 215 | |
0f3b89d8 ILT |
216 | // Tell the plugin manager that we've a new undefined symbol which |
217 | // may require rescanning. | |
218 | void | |
219 | new_undefined_symbol(Symbol*); | |
220 | ||
483620e8 | 221 | // Run deferred layout. |
89fc3421 | 222 | void |
483620e8 CC |
223 | layout_deferred_objects(); |
224 | ||
225 | // Call the cleanup handlers. | |
226 | void | |
227 | cleanup(); | |
89fc3421 CC |
228 | |
229 | // Register a claim-file handler. | |
230 | void | |
231 | set_claim_file_handler(ld_plugin_claim_file_handler handler) | |
232 | { | |
233 | gold_assert(this->current_ != plugins_.end()); | |
234 | (*this->current_)->set_claim_file_handler(handler); | |
235 | } | |
236 | ||
237 | // Register an all-symbols-read handler. | |
238 | void | |
239 | set_all_symbols_read_handler(ld_plugin_all_symbols_read_handler handler) | |
240 | { | |
241 | gold_assert(this->current_ != plugins_.end()); | |
242 | (*this->current_)->set_all_symbols_read_handler(handler); | |
243 | } | |
244 | ||
c4e64843 SC |
245 | // Register a new_input handler. |
246 | void | |
247 | set_new_input_handler(ld_plugin_new_input_handler handler) | |
248 | { | |
249 | gold_assert(this->current_ != plugins_.end()); | |
250 | (*this->current_)->set_new_input_handler(handler); | |
251 | } | |
252 | ||
89fc3421 CC |
253 | // Register a claim-file handler. |
254 | void | |
255 | set_cleanup_handler(ld_plugin_cleanup_handler handler) | |
256 | { | |
257 | gold_assert(this->current_ != plugins_.end()); | |
258 | (*this->current_)->set_cleanup_handler(handler); | |
259 | } | |
260 | ||
261 | // Make a new Pluginobj object. This is called when the plugin calls | |
262 | // the add_symbols API. | |
263 | Pluginobj* | |
264 | make_plugin_object(unsigned int handle); | |
265 | ||
e9552f7e ST |
266 | // Return the object associated with the given HANDLE. |
267 | Object* | |
89fc3421 CC |
268 | object(unsigned int handle) const |
269 | { | |
270 | if (handle >= this->objects_.size()) | |
271 | return NULL; | |
272 | return this->objects_[handle]; | |
273 | } | |
274 | ||
5995b570 CC |
275 | // Return TRUE if any input files have been claimed by a plugin |
276 | // and we are still in the initial input phase. | |
277 | bool | |
278 | should_defer_layout() const | |
a8279f82 | 279 | { return this->any_claimed_ && !this->in_replacement_phase_; } |
5995b570 CC |
280 | |
281 | // Add a regular object to the deferred layout list. These are | |
282 | // objects whose layout has been deferred until after the | |
283 | // replacement files have arrived. | |
284 | void | |
285 | add_deferred_layout_object(Relobj* obj) | |
286 | { this->deferred_layout_objects_.push_back(obj); } | |
287 | ||
0f7c0701 CC |
288 | // Get input file information with an open (possibly re-opened) |
289 | // file descriptor. | |
290 | ld_plugin_status | |
ca09d69a | 291 | get_input_file(unsigned int handle, struct ld_plugin_input_file* file); |
0f7c0701 | 292 | |
9c793f14 RÁE |
293 | ld_plugin_status |
294 | get_view(unsigned int handle, const void **viewp); | |
295 | ||
0f7c0701 CC |
296 | // Release an input file. |
297 | ld_plugin_status | |
298 | release_input_file(unsigned int handle); | |
299 | ||
89fc3421 CC |
300 | // Add a new input file. |
301 | ld_plugin_status | |
ca09d69a | 302 | add_input_file(const char* pathname, bool is_lib); |
89fc3421 | 303 | |
42218b9f RÁE |
304 | // Set the extra library path. |
305 | ld_plugin_status | |
ca09d69a | 306 | set_extra_library_path(const char* path); |
42218b9f | 307 | |
89fc3421 CC |
308 | // Return TRUE if we are in the replacement phase. |
309 | bool | |
310 | in_replacement_phase() const | |
311 | { return this->in_replacement_phase_; } | |
312 | ||
e9552f7e ST |
313 | Input_objects* |
314 | input_objects() const | |
315 | { return this->input_objects_; } | |
316 | ||
3c537f7f PC |
317 | Symbol_table* |
318 | symtab() | |
319 | { return this->symtab_; } | |
320 | ||
e9552f7e ST |
321 | Layout* |
322 | layout() | |
323 | { return this->layout_; } | |
324 | ||
291158a3 CC |
325 | Plugin_recorder* |
326 | recorder() const | |
327 | { return this->recorder_; } | |
328 | ||
89fc3421 CC |
329 | private: |
330 | Plugin_manager(const Plugin_manager&); | |
331 | Plugin_manager& operator=(const Plugin_manager&); | |
332 | ||
0f3b89d8 ILT |
333 | // Plugin_rescan is a Task which calls the private rescan method. |
334 | friend class Plugin_rescan; | |
335 | ||
336 | // An archive or input group which may have to be rescanned if a | |
337 | // plugin adds a new file. | |
338 | struct Rescannable | |
339 | { | |
340 | bool is_archive; | |
341 | union | |
342 | { | |
343 | Archive* archive; | |
344 | Input_group* input_group; | |
345 | } u; | |
346 | ||
347 | Rescannable(Archive* archive) | |
348 | : is_archive(true) | |
349 | { this->u.archive = archive; } | |
350 | ||
351 | Rescannable(Input_group* input_group) | |
352 | : is_archive(false) | |
353 | { this->u.input_group = input_group; } | |
354 | }; | |
355 | ||
89fc3421 | 356 | typedef std::list<Plugin*> Plugin_list; |
e9552f7e | 357 | typedef std::vector<Object*> Object_list; |
5995b570 | 358 | typedef std::vector<Relobj*> Deferred_layout_list; |
0f3b89d8 ILT |
359 | typedef std::vector<Rescannable> Rescannable_list; |
360 | typedef std::vector<Symbol*> Undefined_symbol_list; | |
361 | ||
362 | // Rescan archives for undefined symbols. | |
363 | void | |
364 | rescan(Task*); | |
365 | ||
366 | // See whether the rescannable at index I defines SYM. | |
367 | bool | |
368 | rescannable_defines(size_t i, Symbol* sym); | |
89fc3421 CC |
369 | |
370 | // The list of plugin libraries. | |
371 | Plugin_list plugins_; | |
372 | // A pointer to the current plugin. Used while loading plugins. | |
373 | Plugin_list::iterator current_; | |
374 | ||
375 | // The list of plugin objects. The index of an item in this list | |
376 | // serves as the "handle" that we pass to the plugins. | |
377 | Object_list objects_; | |
378 | ||
5995b570 CC |
379 | // The list of regular objects whose layout has been deferred. |
380 | Deferred_layout_list deferred_layout_objects_; | |
381 | ||
89fc3421 CC |
382 | // The file currently up for claim by the plugins. |
383 | Input_file* input_file_; | |
384 | struct ld_plugin_input_file plugin_input_file_; | |
385 | ||
0f3b89d8 ILT |
386 | // A list of archives and input groups being saved for possible |
387 | // later rescanning. | |
388 | Rescannable_list rescannable_; | |
389 | ||
390 | // A list of undefined symbols found in added files. | |
391 | Undefined_symbol_list undefined_symbols_; | |
392 | ||
393 | // Whether any input files have been claimed by a plugin. | |
394 | bool any_claimed_; | |
395 | ||
396 | // Set to true after the all symbols read event; indicates that we | |
397 | // are processing replacement files whose symbols should replace the | |
89fc3421 CC |
398 | // placeholder symbols from the Pluginobj objects. |
399 | bool in_replacement_phase_; | |
400 | ||
0f3b89d8 ILT |
401 | // Whether any input files or libraries were added by a plugin. |
402 | bool any_added_; | |
403 | ||
e9552f7e ST |
404 | // Set to true when the claim_file handler of a plugin is called. |
405 | bool in_claim_file_handler_; | |
406 | ||
89fc3421 CC |
407 | const General_options& options_; |
408 | Workqueue* workqueue_; | |
0f7c0701 | 409 | Task* task_; |
89fc3421 CC |
410 | Input_objects* input_objects_; |
411 | Symbol_table* symtab_; | |
412 | Layout* layout_; | |
413 | Dirsearch* dirpath_; | |
414 | Mapfile* mapfile_; | |
415 | Task_token* this_blocker_; | |
42218b9f | 416 | |
5c3024d2 | 417 | // An extra directory to search for the libraries passed by |
42218b9f RÁE |
418 | // add_input_library. |
419 | std::string extra_search_path_; | |
d37ffe25 ED |
420 | Lock* lock_; |
421 | Initialize_lock initialize_lock_; | |
3281b315 ST |
422 | |
423 | // Keep track of all symbols defined by defsym. | |
424 | typedef Unordered_set<std::string> Defsym_defines_set; | |
425 | Defsym_defines_set defsym_defines_set_; | |
291158a3 CC |
426 | |
427 | // Class to record plugin actions. | |
428 | Plugin_recorder* recorder_; | |
89fc3421 CC |
429 | }; |
430 | ||
431 | ||
432 | // An object file claimed by a plugin. This is an abstract base class. | |
433 | // The implementation is the template class Sized_pluginobj. | |
434 | ||
435 | class Pluginobj : public Object | |
436 | { | |
437 | public: | |
438 | ||
439 | typedef std::vector<Symbol*> Symbols; | |
440 | ||
0f7c0701 CC |
441 | Pluginobj(const std::string& name, Input_file* input_file, off_t offset, |
442 | off_t filesize); | |
89fc3421 CC |
443 | |
444 | // Fill in the symbol resolution status for the given plugin symbols. | |
445 | ld_plugin_status | |
3c537f7f PC |
446 | get_symbol_resolution_info(Symbol_table* symtab, |
447 | int nsyms, | |
235061c2 CC |
448 | ld_plugin_symbol* syms, |
449 | int version) const; | |
89fc3421 | 450 | |
89fc3421 CC |
451 | // Store the incoming symbols from the plugin for later processing. |
452 | void | |
453 | store_incoming_symbols(int nsyms, const struct ld_plugin_symbol* syms) | |
454 | { | |
455 | this->nsyms_ = nsyms; | |
456 | this->syms_ = syms; | |
457 | } | |
458 | ||
459 | // Return TRUE if the comdat group with key COMDAT_KEY from this object | |
460 | // should be kept. | |
461 | bool | |
462 | include_comdat_group(std::string comdat_key, Layout* layout); | |
463 | ||
0f7c0701 CC |
464 | // Return the filename. |
465 | const std::string& | |
466 | filename() const | |
467 | { return this->input_file()->filename(); } | |
468 | ||
469 | // Return the file descriptor. | |
470 | int | |
471 | descriptor() | |
472 | { return this->input_file()->file().descriptor(); } | |
473 | ||
474 | // Return the size of the file or archive member. | |
475 | off_t | |
476 | filesize() | |
477 | { return this->filesize_; } | |
478 | ||
48058663 L |
479 | // Return the word size of the object file. |
480 | int | |
481 | elfsize() const | |
482 | { gold_unreachable(); } | |
483 | ||
484 | // Return TRUE if this is a big-endian object file. | |
485 | bool | |
486 | is_big_endian() const | |
487 | { gold_unreachable(); } | |
488 | ||
89fc3421 CC |
489 | protected: |
490 | // Return TRUE if this is an object claimed by a plugin. | |
491 | virtual Pluginobj* | |
492 | do_pluginobj() | |
493 | { return this; } | |
494 | ||
89fc3421 CC |
495 | // The number of symbols provided by the plugin. |
496 | int nsyms_; | |
43819297 | 497 | |
89fc3421 CC |
498 | // The symbols provided by the plugin. |
499 | const struct ld_plugin_symbol* syms_; | |
500 | ||
501 | // The entries in the symbol table for the external symbols. | |
502 | Symbols symbols_; | |
503 | ||
504 | private: | |
0f7c0701 CC |
505 | // Size of the file (or archive member). |
506 | off_t filesize_; | |
89fc3421 CC |
507 | // Map a comdat key symbol to a boolean indicating whether the comdat |
508 | // group in this object with that key should be kept. | |
509 | typedef Unordered_map<std::string, bool> Comdat_map; | |
510 | Comdat_map comdat_map_; | |
511 | }; | |
512 | ||
513 | // A plugin object, size-specific version. | |
514 | ||
515 | template<int size, bool big_endian> | |
516 | class Sized_pluginobj : public Pluginobj | |
517 | { | |
518 | public: | |
519 | Sized_pluginobj(const std::string& name, Input_file* input_file, | |
0f7c0701 | 520 | off_t offset, off_t filesize); |
89fc3421 CC |
521 | |
522 | // Read the symbols. | |
523 | void | |
524 | do_read_symbols(Read_symbols_data*); | |
525 | ||
526 | // Lay out the input sections. | |
527 | void | |
528 | do_layout(Symbol_table*, Layout*, Read_symbols_data*); | |
529 | ||
530 | // Add the symbols to the symbol table. | |
531 | void | |
f488e4b0 | 532 | do_add_symbols(Symbol_table*, Read_symbols_data*, Layout*); |
89fc3421 | 533 | |
b0193076 | 534 | Archive::Should_include |
88a4108b | 535 | do_should_include_member(Symbol_table* symtab, Layout*, Read_symbols_data*, |
b0193076 RÁE |
536 | std::string* why); |
537 | ||
e0c52780 CC |
538 | // Iterate over global symbols, calling a visitor class V for each. |
539 | void | |
540 | do_for_all_global_symbols(Read_symbols_data* sd, | |
541 | Library_base::Symbol_visitor_base* v); | |
542 | ||
cdc29364 CC |
543 | // Iterate over local symbols, calling a visitor class V for each GOT offset |
544 | // associated with a local symbol. | |
545 | void | |
546 | do_for_all_local_got_entries(Got_offset_list::Visitor* v) const; | |
547 | ||
89fc3421 CC |
548 | // Get the size of a section. |
549 | uint64_t | |
550 | do_section_size(unsigned int shndx); | |
551 | ||
552 | // Get the name of a section. | |
553 | std::string | |
54674d38 | 554 | do_section_name(unsigned int shndx) const; |
89fc3421 CC |
555 | |
556 | // Return a view of the contents of a section. | |
c1027032 CC |
557 | const unsigned char* |
558 | do_section_contents(unsigned int shndx, section_size_type* plen, | |
559 | bool cache); | |
89fc3421 CC |
560 | |
561 | // Return section flags. | |
562 | uint64_t | |
563 | do_section_flags(unsigned int shndx); | |
564 | ||
ef15dade ST |
565 | // Return section entsize. |
566 | uint64_t | |
567 | do_section_entsize(unsigned int shndx); | |
568 | ||
89fc3421 CC |
569 | // Return section address. |
570 | uint64_t | |
571 | do_section_address(unsigned int shndx); | |
572 | ||
573 | // Return section type. | |
574 | unsigned int | |
575 | do_section_type(unsigned int shndx); | |
576 | ||
577 | // Return the section link field. | |
578 | unsigned int | |
579 | do_section_link(unsigned int shndx); | |
580 | ||
581 | // Return the section link field. | |
582 | unsigned int | |
583 | do_section_info(unsigned int shndx); | |
584 | ||
585 | // Return the section alignment. | |
586 | uint64_t | |
587 | do_section_addralign(unsigned int shndx); | |
588 | ||
589 | // Return the Xindex structure to use. | |
590 | Xindex* | |
591 | do_initialize_xindex(); | |
592 | ||
593 | // Get symbol counts. | |
594 | void | |
595 | do_get_global_symbol_counts(const Symbol_table*, size_t*, size_t*) const; | |
596 | ||
dde3f402 ILT |
597 | // Get global symbols. |
598 | const Symbols* | |
599 | do_get_global_symbols() const; | |
600 | ||
89fc3421 CC |
601 | // Add placeholder symbols from a claimed file. |
602 | ld_plugin_status | |
603 | add_symbols_from_plugin(int nsyms, const ld_plugin_symbol* syms); | |
604 | ||
605 | protected: | |
606 | ||
607 | private: | |
608 | }; | |
609 | ||
89fc3421 CC |
610 | // This Task handles handles the "all symbols read" event hook. |
611 | // The plugin may add additional input files at this time, which must | |
612 | // be queued for reading. | |
613 | ||
614 | class Plugin_hook : public Task | |
615 | { | |
616 | public: | |
617 | Plugin_hook(const General_options& options, Input_objects* input_objects, | |
43819297 | 618 | Symbol_table* symtab, Layout* /*layout*/, Dirsearch* dirpath, |
89fc3421 CC |
619 | Mapfile* mapfile, Task_token* this_blocker, |
620 | Task_token* next_blocker) | |
621 | : options_(options), input_objects_(input_objects), symtab_(symtab), | |
43819297 | 622 | dirpath_(dirpath), mapfile_(mapfile), |
89fc3421 CC |
623 | this_blocker_(this_blocker), next_blocker_(next_blocker) |
624 | { } | |
625 | ||
626 | ~Plugin_hook(); | |
627 | ||
628 | // The standard Task methods. | |
629 | ||
630 | Task_token* | |
631 | is_runnable(); | |
632 | ||
633 | void | |
634 | locks(Task_locker*); | |
635 | ||
636 | void | |
637 | run(Workqueue*); | |
638 | ||
639 | std::string | |
640 | get_name() const | |
641 | { return "Plugin_hook"; } | |
642 | ||
643 | private: | |
89fc3421 CC |
644 | const General_options& options_; |
645 | Input_objects* input_objects_; | |
646 | Symbol_table* symtab_; | |
89fc3421 CC |
647 | Dirsearch* dirpath_; |
648 | Mapfile* mapfile_; | |
649 | Task_token* this_blocker_; | |
650 | Task_token* next_blocker_; | |
651 | }; | |
652 | ||
653 | } // End namespace gold. | |
654 | ||
655 | #endif // !defined(GOLD_PLUGIN_H) |