From Andrew Chatham and Craig Silverstein: Add support for version
[external/binutils.git] / gold / main.cc
1 // main.cc -- gold main function.
2
3 // Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
5
6 // This file is part of gold.
7
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.
12
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.
17
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.
22
23 #include "gold.h"
24
25 #ifdef HAVE_MALLINFO
26 #include <malloc.h>
27 #endif
28 #include "libiberty.h"
29
30 #include "script.h"
31 #include "options.h"
32 #include "parameters.h"
33 #include "errors.h"
34 #include "dirsearch.h"
35 #include "workqueue.h"
36 #include "object.h"
37 #include "symtab.h"
38 #include "layout.h"
39
40 using namespace gold;
41
42 int
43 main(int argc, char** argv)
44 {
45 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
46   setlocale (LC_MESSAGES, "");
47 #endif
48 #if defined (HAVE_SETLOCALE)
49   setlocale (LC_CTYPE, "");
50 #endif
51   bindtextdomain (PACKAGE, LOCALEDIR);
52   textdomain (PACKAGE);
53
54   program_name = argv[0];
55
56   Errors errors(program_name);
57
58   // Initialize the global parameters, to let random code get to the
59   // errors object.
60   initialize_parameters(&errors);
61
62   // Options which may be set by the command line or by linker
63   // scripts.
64   Script_options script_options;
65
66   // Handle the command line options.
67   Command_line command_line(&script_options);
68   command_line.process(argc - 1, argv + 1);
69
70   long start_time = 0;
71   if (command_line.options().print_stats())
72     start_time = get_run_time();
73
74   // Store some options in the globally accessible parameters.
75   set_parameters_from_options(&command_line.options());
76
77   // The work queue.
78   Workqueue workqueue(command_line.options());
79
80   // The list of input objects.
81   Input_objects input_objects;
82
83   // The symbol table.  We're going to guess here how many symbols
84   // we're going to see based on the number of input files.  Even when
85   // this is off, it means at worse we don't quite optimize hashtable
86   // resizing as well as we could have (perhap using more memory).
87   Symbol_table symtab(command_line.number_of_input_files() * 1024,
88                       command_line.options().version_script());
89
90   // The layout object.
91   Layout layout(command_line.options(), &script_options);
92
93   // Get the search path from the -L options.
94   Dirsearch search_path;
95   search_path.initialize(&workqueue, &command_line.options().search_path());
96
97   // Queue up the first set of tasks.
98   queue_initial_tasks(command_line.options(), search_path,
99                       command_line, &workqueue, &input_objects,
100                       &symtab, &layout);
101
102   // Run the main task processing loop.
103   workqueue.process(0);
104
105   if (command_line.options().print_stats())
106     {
107       long run_time = get_run_time() - start_time;
108       fprintf(stderr, _("%s: total run time: %ld.%06ld seconds\n"),
109               program_name, run_time / 1000000, run_time % 1000000);
110 #ifdef HAVE_MALLINFO
111       struct mallinfo m = mallinfo();
112       fprintf(stderr, _("%s: total space allocated by malloc: %d bytes\n"),
113               program_name, m.arena);
114 #endif
115       File_read::print_stats();
116       fprintf(stderr, _("%s: output file size: %lld bytes\n"),
117               program_name, static_cast<long long>(layout.output_file_size()));
118       symtab.print_stats();
119       layout.print_stats();
120     }
121
122   gold_exit(errors.error_count() == 0);
123 }