2006-12-01 00:52:50 +01:00
|
|
|
// main.cc -- gold main function.
|
|
|
|
|
2007-09-22 23:02:10 +02:00
|
|
|
// Copyright 2006, 2007 Free Software Foundation, Inc.
|
|
|
|
// Written by Ian Lance Taylor <iant@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.
|
|
|
|
|
2006-12-01 00:52:50 +01:00
|
|
|
#include "gold.h"
|
|
|
|
|
2007-10-12 07:51:25 +02:00
|
|
|
#ifdef HAVE_MALLINFO
|
|
|
|
#include <malloc.h>
|
|
|
|
#endif
|
|
|
|
#include "libiberty.h"
|
|
|
|
|
2006-12-01 00:52:50 +01:00
|
|
|
#include "options.h"
|
2007-09-21 09:20:01 +02:00
|
|
|
#include "parameters.h"
|
2007-10-14 08:49:14 +02:00
|
|
|
#include "errors.h"
|
2006-12-01 00:52:50 +01:00
|
|
|
#include "dirsearch.h"
|
|
|
|
#include "workqueue.h"
|
|
|
|
#include "object.h"
|
|
|
|
#include "symtab.h"
|
|
|
|
#include "layout.h"
|
|
|
|
|
|
|
|
using 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);
|
|
|
|
|
|
|
|
program_name = argv[0];
|
|
|
|
|
2007-10-14 08:49:14 +02:00
|
|
|
Errors errors(program_name);
|
|
|
|
|
2007-10-27 02:29:34 +02:00
|
|
|
// Initialize the global parameters, to let random code get to the
|
|
|
|
// errors object.
|
|
|
|
initialize_parameters(&errors);
|
|
|
|
|
2006-12-01 00:52:50 +01:00
|
|
|
// Handle the command line options.
|
|
|
|
Command_line command_line;
|
|
|
|
command_line.process(argc - 1, argv + 1);
|
2007-10-12 07:51:25 +02:00
|
|
|
|
|
|
|
long start_time = 0;
|
|
|
|
if (command_line.options().print_stats())
|
|
|
|
start_time = get_run_time();
|
|
|
|
|
2007-10-27 02:29:34 +02:00
|
|
|
// Store some options in the globally accessible parameters.
|
|
|
|
set_parameters_from_options(&command_line.options());
|
2006-12-01 00:52:50 +01:00
|
|
|
|
|
|
|
// The work queue.
|
|
|
|
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;
|
2007-10-04 07:49:04 +02:00
|
|
|
search_path.initialize(&workqueue, &command_line.options().search_path());
|
2006-12-01 00:52:50 +01:00
|
|
|
|
|
|
|
// Queue up the first set of tasks.
|
|
|
|
queue_initial_tasks(command_line.options(), search_path,
|
|
|
|
command_line, &workqueue, &input_objects,
|
|
|
|
&symtab, &layout);
|
|
|
|
|
|
|
|
// Run the main task processing loop.
|
|
|
|
workqueue.process();
|
|
|
|
|
2007-10-12 07:51:25 +02:00
|
|
|
if (command_line.options().print_stats())
|
|
|
|
{
|
|
|
|
long run_time = get_run_time() - start_time;
|
|
|
|
fprintf(stderr, _("%s: total run time: %ld.%06ld seconds\n"),
|
|
|
|
program_name, run_time / 1000000, run_time % 1000000);
|
|
|
|
#ifdef HAVE_MALLINFO
|
|
|
|
struct mallinfo m = mallinfo();
|
|
|
|
fprintf(stderr, _("%s: total space allocated by malloc: %d bytes\n"),
|
|
|
|
program_name, m.arena);
|
|
|
|
#endif
|
|
|
|
File_read::print_stats();
|
|
|
|
fprintf(stderr, _("%s: output file size: %lld bytes\n"),
|
|
|
|
program_name, static_cast<long long>(layout.output_file_size()));
|
2007-12-05 00:11:35 +01:00
|
|
|
symtab.print_stats();
|
2007-12-05 01:48:49 +01:00
|
|
|
layout.print_stats();
|
2007-10-12 07:51:25 +02:00
|
|
|
}
|
|
|
|
|
2007-10-14 08:49:14 +02:00
|
|
|
gold_exit(errors.error_count() == 0);
|
2006-12-01 00:52:50 +01:00
|
|
|
}
|