1 // archive.h -- archive support for gold -*- C++ -*-
3 // Copyright 2006, 2007, 2008, 2010, 2011 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
23 #ifndef GOLD_ARCHIVE_H
24 #define GOLD_ARCHIVE_H
30 #include "workqueue.h"
43 class Read_symbols_data;
45 class Incremental_archive_entry;
47 // An entry in the archive map of offsets to members.
51 : obj_(NULL), sd_(NULL), arg_serial_(0)
53 Archive_member(Object* obj, Read_symbols_data* sd)
54 : obj_(obj), sd_(sd), arg_serial_(0)
58 // The data to pass from read_symbols() to add_symbols().
59 Read_symbols_data* sd_;
60 // The serial number of the file in the argument list.
61 unsigned int arg_serial_;
64 // This class serves as a base class for Archive and Lib_group objects.
69 Library_base(Task* task)
70 : task_(task), incremental_info_(NULL)
80 { return this->do_filename(); }
82 // The modification time of the archive file.
85 { return this->do_get_mtime(); }
87 // When we see a symbol in an archive we might decide to include the member,
88 // not include the member or be undecided. This enum represents these
95 SHOULD_INCLUDE_UNKNOWN
99 should_include_member(Symbol_table* symtab, Layout*, const char* sym_name,
100 Symbol** symp, std::string* why, char** tmpbufp,
103 // Store a pointer to the incremental link info for the library.
105 set_incremental_info(Incremental_archive_entry* info)
106 { this->incremental_info_ = info; }
108 // Return the pointer to the incremental link info for the library.
109 Incremental_archive_entry*
110 incremental_info() const
111 { return this->incremental_info_; }
113 // Abstract base class for processing unused symbols.
114 class Symbol_visitor_base
117 Symbol_visitor_base()
121 ~Symbol_visitor_base()
124 // This function will be called for each unused global
125 // symbol in a library, with a pointer to the symbol name.
127 visit(const char* /* name */) = 0;
130 // Iterator for unused global symbols in the library.
131 // Calls v->visit() for each global symbol defined
132 // in each unused library member, passing a pointer to
135 for_all_unused_symbols(Symbol_visitor_base* v) const
136 { this->do_for_all_unused_symbols(v); }
139 // The task reading this archive.
144 virtual const std::string&
145 do_filename() const = 0;
147 // Return the modification time of the archive file.
151 // Iterator for unused global symbols in the library.
153 do_for_all_unused_symbols(Symbol_visitor_base* v) const = 0;
155 // The incremental link information for this archive.
156 Incremental_archive_entry* incremental_info_;
159 // This class represents an archive--generally a libNAME.a file.
160 // Archives have a symbol table and a list of objects.
162 class Archive : public Library_base
165 Archive(const std::string& name, Input_file* input_file,
166 bool is_thin_archive, Dirsearch* dirpath, Task* task);
168 // The length of the magic string at the start of an archive.
169 static const int sarmag = 8;
171 // The magic string at the start of an archive.
172 static const char armag[sarmag];
173 static const char armagt[sarmag];
175 // The string expected at the end of an archive member header.
176 static const char arfmag[2];
178 // The name of the object. This is the name used on the command
179 // line; e.g., if "-lgcc" is on the command line, this will be
183 { return this->name_; }
188 { return this->input_file_; }
190 // Set up the archive: read the symbol map.
194 // Get a reference to the underlying file.
197 { return this->input_file_->file(); }
201 { return this->input_file_->file(); }
203 // Lock the underlying file.
206 { this->input_file_->file().lock(t); }
208 // Unlock the underlying file.
210 unlock(const Task* t)
211 { this->input_file_->file().unlock(t); }
213 // Return whether the underlying file is locked.
216 { return this->input_file_->file().is_locked(); }
218 // Return the token, so that the task can be queued.
221 { return this->input_file_->file().token(); }
223 // Release the underlying file.
226 { this->input_file_->file().release(); }
228 // Clear uncached views in the underlying file.
230 clear_uncached_views()
231 { this->input_file_->file().clear_uncached_views(); }
233 // Whether this is a thin archive.
235 is_thin_archive() const
236 { return this->is_thin_archive_; }
238 // Unlock any nested archives.
240 unlock_nested_archives();
242 // Select members from the archive as needed and add them to the
245 add_symbols(Symbol_table*, Layout*, Input_objects*, Mapfile*);
247 // Return whether the archive defines the symbol.
249 defines_symbol(Symbol*) const;
251 // Dump statistical information to stderr.
255 // Return the number of members in the archive.
259 // Return the no-export flag.
262 { return this->no_export_; }
265 Archive(const Archive&);
266 Archive& operator=(const Archive&);
271 { return this->input_file_->filename(); }
273 // The modification time of the archive file.
276 { return this->file().get_mtime(); }
278 struct Archive_header;
280 // Total number of archives seen.
281 static unsigned int total_archives;
282 // Total number of archive members seen.
283 static unsigned int total_members;
284 // Number of archive members loaded.
285 static unsigned int total_members_loaded;
287 // Get a view into the underlying file.
289 get_view(off_t start, section_size_type size, bool aligned, bool cache)
290 { return this->input_file_->file().get_view(0, start, size, aligned, cache); }
292 // Read the archive symbol map.
294 read_armap(off_t start, section_size_type size);
296 // Read an archive member header at OFF. CACHE is whether to cache
297 // the file view. Return the size of the member, and set *PNAME to
300 read_header(off_t off, bool cache, std::string* pname, off_t* nested_off);
302 // Interpret an archive header HDR at OFF. Return the size of the
303 // member, and set *PNAME to the name.
305 interpret_header(const Archive_header* hdr, off_t off, std::string* pname,
306 off_t* nested_off) const;
308 // Get the file and offset for an archive member, which may be an
309 // external member of a thin archive. Set *INPUT_FILE to the
310 // file containing the actual member, *MEMOFF to the offset
311 // within that file (0 if not a nested archive), and *MEMBER_NAME
312 // to the name of the archive member. Return TRUE on success.
314 get_file_and_offset(off_t off, Input_file** input_file, off_t* memoff,
315 off_t* memsize, std::string* member_name);
317 // Return an ELF object for the member at offset OFF.
319 get_elf_object_for_member(off_t off, bool*);
321 // Read the symbols from all the archive members in the link.
325 // Read the symbols from an archive member in the link. OFF is the file
326 // offset of the member header.
328 read_symbols(off_t off);
330 // Include all the archive members in the link.
332 include_all_members(Symbol_table*, Layout*, Input_objects*, Mapfile*);
334 // Include an archive member in the link.
336 include_member(Symbol_table*, Layout*, Input_objects*, off_t off,
337 Mapfile*, Symbol*, const char* why);
339 // Return whether we found this archive by searching a directory.
342 { return this->input_file_->will_search_for(); }
344 // Iterate over archive members.
345 class const_iterator;
353 friend class const_iterator;
355 // Iterator for unused global symbols in the library.
357 do_for_all_unused_symbols(Symbol_visitor_base* v) const;
359 // An entry in the archive map of symbols to object files.
362 // The offset to the symbol name in armap_names_.
364 // The file offset to the object in the archive.
368 // A simple hash code for off_t values.
372 size_t operator()(off_t val) const
373 { return static_cast<size_t>(val); }
376 // For keeping track of open nested archives in a thin archive file.
377 typedef Unordered_map<std::string, Archive*> Nested_archive_table;
379 // Name of object as printed to user.
381 // For reading the file.
382 Input_file* input_file_;
384 std::vector<Armap_entry> armap_;
385 // The names in the archive map.
386 std::string armap_names_;
387 // The extended name table.
388 std::string extended_names_;
389 // Track which symbols in the archive map are for elements which are
390 // defined or which have already been included in the link.
391 std::vector<bool> armap_checked_;
392 // Track which elements have been included by offset.
393 Unordered_set<off_t, Seen_hash> seen_offsets_;
394 // Table of objects whose symbols have been pre-read.
395 std::map<off_t, Archive_member> members_;
396 // True if this is a thin archive.
397 const bool is_thin_archive_;
398 // True if we have included at least one object from this archive.
399 bool included_member_;
400 // Table of nested archives, indexed by filename.
401 Nested_archive_table nested_archives_;
402 // The directory search path.
404 // Number of members in this archive;
405 unsigned int num_members_;
406 // True if we exclude this library archive from automatic export.
410 // This class is used to read an archive and pick out the desired
411 // elements and add them to the link.
413 class Add_archive_symbols : public Task
416 Add_archive_symbols(Symbol_table* symtab, Layout* layout,
417 Input_objects* input_objects, Dirsearch* dirpath,
418 int dirindex, Mapfile* mapfile,
419 const Input_argument* input_argument,
420 Archive* archive, Input_group* input_group,
421 Task_token* this_blocker,
422 Task_token* next_blocker)
423 : symtab_(symtab), layout_(layout), input_objects_(input_objects),
424 dirpath_(dirpath), dirindex_(dirindex), mapfile_(mapfile),
425 input_argument_(input_argument), archive_(archive),
426 input_group_(input_group), this_blocker_(this_blocker),
427 next_blocker_(next_blocker)
430 ~Add_archive_symbols();
432 // The standard Task methods.
446 if (this->archive_ == NULL)
447 return "Add_archive_symbols";
448 return "Add_archive_symbols " + this->archive_->file().filename();
452 Symbol_table* symtab_;
454 Input_objects* input_objects_;
458 const Input_argument* input_argument_;
460 Input_group* input_group_;
461 Task_token* this_blocker_;
462 Task_token* next_blocker_;
465 // This class represents the files surrounded by a --start-lib ... --end-lib.
467 class Lib_group : public Library_base
470 Lib_group(const Input_file_lib* lib, Task* task);
472 // Select members from the lib group as needed and add them to the link.
474 add_symbols(Symbol_table*, Layout*, Input_objects*);
476 // Include a member of the lib group in the link.
478 include_member(Symbol_table*, Layout*, Input_objects*, const Archive_member&);
483 return &this->members_[i];
486 // Total number of archives seen.
487 static unsigned int total_lib_groups;
488 // Total number of archive members seen.
489 static unsigned int total_members;
490 // Number of archive members loaded.
491 static unsigned int total_members_loaded;
493 // Dump statistical information to stderr.
502 // A Lib_group does not have a modification time, since there is no
503 // real library file.
506 { return Timespec(0, 0); }
508 // Iterator for unused global symbols in the library.
510 do_for_all_unused_symbols(Symbol_visitor_base*) const;
512 // For reading the files.
513 const Input_file_lib* lib_;
514 // Table of the objects in the group.
515 std::vector<Archive_member> members_;
518 // This class is used to pick out the desired elements and add them to the link.
520 class Add_lib_group_symbols : public Task
523 Add_lib_group_symbols(Symbol_table* symtab, Layout* layout,
524 Input_objects* input_objects,
525 Lib_group* lib, Task_token* next_blocker)
526 : symtab_(symtab), layout_(layout), input_objects_(input_objects),
527 lib_(lib), readsyms_blocker_(NULL), this_blocker_(NULL),
528 next_blocker_(next_blocker)
531 ~Add_lib_group_symbols();
533 // The standard Task methods.
544 // Set the blocker to use for this task.
546 set_blocker(Task_token* readsyms_blocker, Task_token* this_blocker)
548 gold_assert(this->readsyms_blocker_ == NULL && this->this_blocker_ == NULL);
549 this->readsyms_blocker_ = readsyms_blocker;
550 this->this_blocker_ = this_blocker;
556 return "Add_lib_group_symbols";
560 Symbol_table* symtab_;
562 Input_objects* input_objects_;
564 Task_token* readsyms_blocker_;
565 Task_token* this_blocker_;
566 Task_token* next_blocker_;
569 } // End namespace gold.
571 #endif // !defined(GOLD_ARCHIVE_H)