- fixed r22803
[libfirm] / ir / be / bespilloptions.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Option handling for spiller.
23  * @author      Daniel Grund, Sebastian Hack, Matthias Braun
24  * @date        29.09.2005
25  * @version     $Id$
26  */
27 #include "config.h"
28
29 #include "irtools.h"
30
31 #include "bespilloptions.h"
32 #include "bemodule.h"
33 #include "be.h"
34
35 #include "lc_opts.h"
36 #include "lc_opts_enum.h"
37
38 int be_coalesce_spill_slots = 1;
39 int be_do_remats = 1;
40
41 static const lc_opt_table_entry_t be_spill_options[] = {
42         LC_OPT_ENT_BOOL ("coalesce_slots", "coalesce the spill slots", &be_coalesce_spill_slots),
43         LC_OPT_ENT_BOOL ("remat", "try to rematerialize values instead of reloading", &be_do_remats),
44         LC_OPT_LAST
45 };
46
47 static be_module_list_entry_t *spillers = NULL;
48 static const be_spiller_t *selected_spiller = NULL;
49
50 void be_register_spiller(const char *name, be_spiller_t *spiller)
51 {
52         if (selected_spiller == NULL)
53                 selected_spiller = spiller;
54         be_add_module_to_list(&spillers, name, spiller);
55 }
56
57 void be_do_spill(be_irg_t *birg, const arch_register_class_t *cls)
58 {
59         assert(selected_spiller != NULL);
60         if (selected_spiller != NULL) {
61                 selected_spiller->spill(birg, cls);
62         }
63 }
64
65 void be_init_spilloptions(void)
66 {
67         lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");
68         lc_opt_entry_t *spill_grp = lc_opt_get_grp(be_grp, "spill");
69
70         lc_opt_add_table(spill_grp, be_spill_options);
71         be_add_module_list_opt(spill_grp, "spiller", "spill algorithm",
72                                &spillers, (void**) &selected_spiller);
73 }
74
75 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_spilloptions);