1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
// inremental.h -- incremental linking support for gold -*- C++ -*-
// Copyright 2009 Free Software Foundation, Inc.
// Written by Mikolaj Zalewski <mikolajz@google.com>.
// This file is part of gold.
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
// MA 02110-1301, USA.
#ifndef GOLD_INCREMENTAL_H
#define GOLD_INCREMENTAL_H
#include <map>
#include <vector>
#include "elfcpp_file.h"
#include "stringpool.h"
#include "workqueue.h"
#include "fileread.h"
#include "output.h"
namespace gold
{
class Archive;
class Input_argument;
class Incremental_inputs_checker;
class Object;
class Output_section_data;
// Incremental input type as stored in .gnu_incremental_inputs.
enum Incremental_input_type
{
INCREMENTAL_INPUT_INVALID = 0,
INCREMENTAL_INPUT_OBJECT = 1,
INCREMENTAL_INPUT_ARCHIVE = 2,
INCREMENTAL_INPUT_SHARED_LIBRARY = 3,
INCREMENTAL_INPUT_SCRIPT = 4
};
// An object representing the ELF file we edit during an incremental build.
// Similar to Object or Dynobj, but operates on Output_file and contains
// method specific to file edition (TBD). This is the abstract parent class
// implemented in Sized_incremental_binary<size, big_endian> for a specific
// endianness and size.
class Incremental_binary
{
public:
Incremental_binary(Output_file* output, Target* target)
: output_(output), target_(target)
{ }
virtual
~Incremental_binary()
{ }
// Functions and types for the elfcpp::Elf_file interface. This
// permit us to use Incremental_binary as the File template parameter for
// elfcpp::Elf_file.
// The View class is returned by view. It must support a single
// method, data(). This is trivial, because Output_file::get_output_view
// does what we need.
class View
{
public:
View(const unsigned char* p)
: p_(p)
{ }
const unsigned char*
data() const
{ return this->p_; }
private:
const unsigned char* p_;
};
// Return a View.
View
view(off_t file_offset, section_size_type data_size)
{ return View(this->output_->get_input_view(file_offset, data_size)); }
// A location in the file.
struct Location
{
off_t file_offset;
off_t data_size;
Location(off_t fo, section_size_type ds)
: file_offset(fo), data_size(ds)
{ }
Location()
: file_offset(0), data_size(0)
{ }
};
// Get a View given a Location.
View view(Location loc)
{ return View(this->view(loc.file_offset, loc.data_size)); }
// Report an error.
void
error(const char* format, ...) const ATTRIBUTE_PRINTF_2;
// Find the .gnu_incremental_inputs section. It selects the first section
// of type SHT_GNU_INCREMENTAL_INPUTS. Returns false if such a section
// is not found.
bool
find_incremental_inputs_section(Location* location)
{ return do_find_incremental_inputs_section(location); }
protected:
// Find incremental inputs section.
virtual bool
do_find_incremental_inputs_section(Location* location) = 0;
private:
// Edited output file object.
Output_file* output_;
// Target of the output file.
Target* target_;
};
template<int size, bool big_endian>
class Sized_incremental_binary : public Incremental_binary
{
public:
Sized_incremental_binary(Output_file* output,
const elfcpp::Ehdr<size, big_endian>& ehdr,
Target* target)
: Incremental_binary(output, target), elf_file_(this, ehdr)
{ }
protected:
virtual bool
do_find_incremental_inputs_section(Location* location);
private:
// Output as an ELF file.
elfcpp::Elf_file<size, big_endian, Incremental_binary> elf_file_;
};
// Create an Incremental_binary object for FILE. Returns NULL is this is not
// possible, e.g. FILE is not an ELF file or has an unsupported target.
Incremental_binary*
open_incremental_binary(Output_file* file);
// Code invoked early during an incremental link that checks what files need
// to be relinked.
class Incremental_checker
{
public:
Incremental_checker(const char* output_name)
: output_name_(output_name)
{ }
// Analyzes the output file to check if incremental linking is possible and
// what files needs to be relinked.
bool
can_incrementally_link_output_file();
private:
const char* output_name_;
};
// This class contains the information needed during an incremental
// build about the inputs necessary to build the .gnu_incremental_inputs.
class Incremental_inputs
{
public:
Incremental_inputs()
: lock_(new Lock()), inputs_(NULL), command_line_key_(0),
strtab_(new Stringpool())
{ }
~Incremental_inputs() { delete this->strtab_; }
// Record the command line.
void
report_command_line(int argc, const char* const* argv);
// Record the input arguments obtained from parsing the command line.
void
report_inputs(const Input_arguments& inputs)
{ this->inputs_ = &inputs; }
// Record that the input argument INPUT is an archive ARCHIVE.
void
report_archive(const Input_argument* input, Archive* archive);
// Record that the input argument INPUT is to an object OBJ.
void
report_object(const Input_argument* input, Object* obj);
// Record that the input argument INPUT is to an script SCRIPT.
void
report_script(const Input_argument* input, Timespec mtime,
Script_info* script);
// Prepare for layout. Called from Layout::finalize.
void
finalize();
// Create the content of the .gnu_incremental_inputs section.
Output_section_data*
create_incremental_inputs_section_data();
// Return the .gnu_incremental_strtab stringpool.
Stringpool*
get_stringpool()
{ return this->strtab_; }
private:
// Code for each of the four possible variants of create_inputs_section_data.
template<int size, bool big_endian>
Output_section_data*
sized_create_inputs_section_data();
// Compute indexes in the order in which the inputs should appear in
// .gnu_incremental_inputs and put file names to the stringtable.
// This needs to be done after all the scripts are parsed.
void
finalize_inputs(Input_argument_list::const_iterator begin,
Input_argument_list::const_iterator end,
unsigned int* index);
// Additional data about an input needed for an incremental link.
// None of these pointers is owned by the structure.
struct Input_info
{
Input_info()
: type(INCREMENTAL_INPUT_INVALID), archive(NULL), filename_key(0),
index(0)
{ }
// Type of the file pointed by this argument.
Incremental_input_type type;
union
{
// Present if type == INCREMENTAL_INPUT_ARCHIVE.
Archive* archive;
// Present if type == INCREMENTAL_INPUT_OBJECT or
// INCREMENTAL_INPUT_SHARED_LIBRARY.
Object* object;
// Present if type == INCREMENTAL_INPUT_SCRIPT.
Script_info* script;
};
// Key of the filename string in the section stringtable.
Stringpool::Key filename_key;
// Position of the entry information in the output section.
unsigned int index;
// Last modification time of the file.
Timespec mtime;
};
typedef std::map<const Input_argument*, Input_info> Inputs_info_map;
// A lock guarding access to inputs_ during the first phase of linking, when
// report_ function may be called from multiple threads.
Lock* lock_;
// The list of input arguments obtained from parsing the command line.
const Input_arguments* inputs_;
// A map containing additional information about the input elements.
Inputs_info_map inputs_map_;
// The key of the command line string in the string pool.
Stringpool::Key command_line_key_;
// The .gnu_incremental_strtab string pool associated with the
// .gnu_incremental_inputs.
Stringpool* strtab_;
};
} // End namespace gold.
#endif // !defined(GOLD_INCREMENTAL_H)
|