// ld.c -- linker main function #include "gold.h" #include #include #include #include #include "options.h" #include "workqueue.h" #include "dirsearch.h" #include "readsyms.h" #include "symtab.h" #include "object.h" #include "layout.h" #include "reloc.h" namespace gold { const char* program_name; void gold_exit(bool status) { exit(status ? EXIT_SUCCESS : EXIT_FAILURE); } void gold_fatal(const char* msg, bool perrno) { fprintf(stderr, "%s: ", program_name); if (perrno) perror(msg); else fprintf(stderr, "%s\n", msg); gold_exit(false); } void gold_nomem() { // We are out of memory, so try hard to print a reasonable message. // Note that we don't try to translate this message, since the // translation process itself will require memory. write(2, program_name, strlen(program_name)); const char* const s = ": out of memory\n"; write(2, s, strlen(s)); gold_exit(false); } void gold_unreachable() { abort(); } } // End namespace gold. namespace { using namespace gold; // Queue up the initial set of tasks for this link job. void queue_initial_tasks(const General_options& options, const Dirsearch& search_path, const Command_line::Input_argument_list& inputs, Workqueue* workqueue, Input_objects* input_objects, Symbol_table* symtab, Layout* layout) { if (inputs.empty()) gold_fatal(_("no input files"), false); // Read the input files. We have to add the symbols to the symbol // table in order. We do this by creating a separate blocker for // each input file. We associate the blocker with the following // input file, to give us a convenient place to delete it. Task_token* this_blocker = NULL; for (Command_line::Input_argument_list::const_iterator p = inputs.begin(); p != inputs.end(); ++p) { Task_token* next_blocker = new Task_token(); next_blocker->add_blocker(); workqueue->queue(new Read_symbols(options, input_objects, symtab, layout, search_path, *p, this_blocker, next_blocker)); this_blocker = next_blocker; } workqueue->queue(new Layout_task(options, input_objects, symtab, layout, this_blocker)); } } // end anonymous namespace. namespace gold { // Queue up the final set of tasks. This is called at the end of // Layout_task. void queue_final_tasks(const General_options& options, const Input_objects* input_objects, const Symbol_table* symtab, const Layout* layout, Workqueue* workqueue, Output_file* of) { // Use a blocker to block the final cleanup task. Task_token* final_blocker = new Task_token(); // Queue a task for each input object to relocate the sections and // write out the local symbols. for (Input_objects::Object_list::const_iterator p = input_objects->begin(); p != input_objects->end(); ++p) { final_blocker->add_blocker(); workqueue->queue(new Relocate_task(options, symtab, layout->sympool(), *p, of, final_blocker)); } // Queue a task to write out the symbol table. final_blocker->add_blocker(); workqueue->queue(new Write_symbols_task(symtab, input_objects->target(), layout->sympool(), of, final_blocker)); // Queue a task to write out everything else. final_blocker->add_blocker(); workqueue->queue(new Write_data_task(layout, of, final_blocker)); // Queue a task to close the output file. This will be blocked by // FINAL_BLOCKER. workqueue->queue(new Close_task(of, final_blocker)); } } // End namespace gold. int main(int argc, char** argv) { #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES) setlocale (LC_MESSAGES, ""); #endif #if defined (HAVE_SETLOCALE) setlocale (LC_CTYPE, ""); #endif bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); gold::program_name = argv[0]; // Handle the command line options. gold::Command_line command_line; command_line.process(argc - 1, argv + 1); // The work queue. gold::Workqueue workqueue(command_line.options()); // The list of input objects. Input_objects input_objects; // The symbol table. Symbol_table symtab; // The layout object. Layout layout(command_line.options()); // Get the search path from the -L options. Dirsearch search_path; search_path.add(&workqueue, command_line.options().search_path()); // Queue up the first set of tasks. queue_initial_tasks(command_line.options(), search_path, command_line.inputs(), &workqueue, &input_objects, &symtab, &layout); // Run the main task processing loop. workqueue.process(); gold::gold_exit(true); }