1 // readsyms.cc -- read input file symbols for gold
19 // Class read_symbols.
21 Read_symbols::~Read_symbols()
23 // The this_blocker_ and next_blocker_ pointers are passed on to the
27 // Return whether a Read_symbols task is runnable. We can read an
28 // ordinary input file immediately. For an archive specified using
29 // -l, we have to wait until the search path is complete.
31 Task::Is_runnable_type
32 Read_symbols::is_runnable(Workqueue*)
34 if (this->input_argument_->is_file()
35 && this->input_argument_->file().is_lib()
36 && this->dirpath_.token().is_blocked())
42 // Return a Task_locker for a Read_symbols task. We don't need any
46 Read_symbols::locks(Workqueue*)
51 // Run a Read_symbols task. This is where we actually read the
52 // symbols and relocations.
55 Read_symbols::run(Workqueue* workqueue)
57 if (this->input_argument_->is_group())
59 gold_assert(this->input_group_ == NULL);
60 this->do_group(workqueue);
64 Input_file* input_file = new Input_file(this->input_argument_->file());
65 input_file->open(this->options_, this->dirpath_);
67 // Read enough of the file to pick up the entire ELF header.
69 int ehdr_size = elfcpp::Elf_sizes<64>::ehdr_size;
71 const unsigned char* p = input_file->file().get_view(0, ehdr_size, &bytes);
74 static unsigned char elfmagic[4] =
76 elfcpp::ELFMAG0, elfcpp::ELFMAG1,
77 elfcpp::ELFMAG2, elfcpp::ELFMAG3
79 if (memcmp(p, elfmagic, 4) == 0)
81 // This is an ELF object.
83 Object* obj = make_elf_object(input_file->filename(),
84 input_file, 0, p, bytes);
86 // We don't have a way to record a non-archive in an input
87 // group. If this is an ordinary object file, we can't
88 // include it more than once anyhow. If this is a dynamic
89 // object, then including it a second time changes nothing.
90 if (this->input_group_ != NULL && !obj->is_dynamic())
93 _("%s: %s: ordinary object found in input group\n"),
94 program_name, input_file->name());
98 Read_symbols_data* sd = new Read_symbols_data;
99 obj->read_symbols(sd);
100 workqueue->queue_front(new Add_symbols(this->options_,
101 this->input_objects_,
102 this->symtab_, this->layout_,
105 this->next_blocker_));
107 // Opening the file locked it, so now we need to unlock it.
108 input_file->file().unlock();
114 if (bytes >= Archive::sarmag)
116 if (memcmp(p, Archive::armag, Archive::sarmag) == 0)
118 // This is an archive.
119 Archive* arch = new Archive(this->input_argument_->file().name(),
122 workqueue->queue(new Add_archive_symbols(this->options_,
125 this->input_objects_,
129 this->next_blocker_));
136 fprintf(stderr, _("%s: %s: file is empty\n"),
137 program_name, input_file->file().filename().c_str());
141 // Try to parse this file as a script.
142 if (read_input_script(workqueue, this->options_, this->symtab_,
143 this->layout_, this->dirpath_, this->input_objects_,
144 this->input_group_, this->input_argument_, input_file,
145 p, bytes, this->this_blocker_, this->next_blocker_))
148 // Here we have to handle any other input file types we need.
149 fprintf(stderr, _("%s: %s: not an object or archive\n"),
150 program_name, input_file->file().filename().c_str());
154 // Handle a group. We need to walk through the arguments over and
155 // over until we don't see any new undefined symbols. We do this by
156 // setting off Read_symbols Tasks as usual, but recording the archive
157 // entries instead of deleting them. We also start a Finish_group
158 // Task which runs after we've read all the symbols. In that task we
159 // process the archives in a loop until we are done.
162 Read_symbols::do_group(Workqueue* workqueue)
164 Input_group* input_group = new Input_group();
166 const Input_file_group* group = this->input_argument_->group();
167 Task_token* this_blocker = this->this_blocker_;
168 for (Input_file_group::const_iterator p = group->begin();
172 const Input_argument* arg = &*p;
173 gold_assert(arg->is_file());
175 Task_token* next_blocker = new Task_token();
176 next_blocker->add_blocker();
177 workqueue->queue(new Read_symbols(this->options_, this->input_objects_,
178 this->symtab_, this->layout_,
179 this->dirpath_, arg, input_group,
180 this_blocker, next_blocker));
181 this_blocker = next_blocker;
184 const int saw_undefined = this->symtab_->saw_undefined();
185 workqueue->queue(new Finish_group(this->options_,
186 this->input_objects_,
192 this->next_blocker_));
195 // Class Add_symbols.
197 Add_symbols::~Add_symbols()
199 if (this->this_blocker_ != NULL)
200 delete this->this_blocker_;
201 // next_blocker_ is deleted by the task associated with the next
205 // We are blocked by this_blocker_. We block next_blocker_. We also
208 Task::Is_runnable_type
209 Add_symbols::is_runnable(Workqueue*)
211 if (this->this_blocker_ != NULL && this->this_blocker_->is_blocked())
213 if (this->object_->is_locked())
218 class Add_symbols::Add_symbols_locker : public Task_locker
221 Add_symbols_locker(Task_token& token, Workqueue* workqueue,
223 : blocker_(token, workqueue), objlock_(*object)
227 Task_locker_block blocker_;
228 Task_locker_obj<Object> objlock_;
232 Add_symbols::locks(Workqueue* workqueue)
234 return new Add_symbols_locker(*this->next_blocker_, workqueue,
238 // Add the symbols in the object to the symbol table.
241 Add_symbols::run(Workqueue*)
243 this->input_objects_->add_object(this->object_);
244 this->object_->layout(this->options_, this->symtab_, this->layout_,
246 this->object_->add_symbols(this->symtab_, this->sd_);
251 // Class Finish_group.
253 Finish_group::~Finish_group()
255 if (this->this_blocker_ != NULL)
256 delete this->this_blocker_;
257 // next_blocker_ is deleted by the task associated with the next
258 // input file following the group.
261 // We need to wait for THIS_BLOCKER_ and unblock NEXT_BLOCKER_.
263 Task::Is_runnable_type
264 Finish_group::is_runnable(Workqueue*)
266 if (this->this_blocker_ != NULL && this->this_blocker_->is_blocked())
272 Finish_group::locks(Workqueue* workqueue)
274 return new Task_locker_block(*this->next_blocker_, workqueue);
277 // Loop over the archives until there are no new undefined symbols.
280 Finish_group::run(Workqueue*)
282 int saw_undefined = this->saw_undefined_;
283 while (saw_undefined != this->symtab_->saw_undefined())
285 saw_undefined = this->symtab_->saw_undefined();
287 for (Input_group::const_iterator p = this->input_group_->begin();
288 p != this->input_group_->end();
291 Task_lock_obj<Archive> tl(**p);
293 (*p)->add_symbols(this->options_, this->symtab_, this->layout_,
294 this->input_objects_);
298 // Delete all the archives now that we no longer need them.
299 for (Input_group::const_iterator p = this->input_group_->begin();
300 p != this->input_group_->end();
303 delete this->input_group_;
306 } // End namespace gold.