becopyilp: Make new_size_red(), sr_remove(), sr_reinsert() and free_size_red() static.
[libfirm] / ir / be / becopyilp_t.h
1 /*
2  * This file is part of libFirm.
3  * Copyright (C) 2012 University of Karlsruhe.
4  */
5
6 /**
7  * @file
8  * @brief       Common stuff used by all ILP formulations.
9  * @author      Daniel Grund
10  * @date        28.02.2006
11  */
12 #ifndef FIRM_BE_BECOPYILP_T_H
13 #define FIRM_BE_BECOPYILP_T_H
14
15 #include "firm_types.h"
16 #include "pset.h"
17 #include "becopyopt_t.h"
18
19 /******************************************************************************
20     _____ _                        _            _   _
21    / ____(_)                      | |          | | (_)
22   | (___  _ _______   _ __ ___  __| |_   _  ___| |_ _  ___  _ __
23    \___ \| |_  / _ \ | '__/ _ \/ _` | | | |/ __| __| |/ _ \| '_ \
24    ____) | |/ /  __/ | | |  __/ (_| | |_| | (__| |_| | (_) | | | |
25   |_____/|_/___\___| |_|  \___|\__,_|\__,_|\___|\__|_|\___/|_| |_|
26
27  *****************************************************************************/
28
29 typedef struct coloring_suffix_t coloring_suffix_t;
30
31 struct coloring_suffix_t {
32         coloring_suffix_t *next;
33         ir_node           *irn;
34 };
35
36 typedef struct size_red_t {
37         copy_opt_t        *co;
38         pset              *all_removed;   /**< All nodes removed during problem size reduction */
39         coloring_suffix_t *col_suff;      /**< Coloring suffix. Reverse would be a PEO prefix */
40         struct obstack    ob;
41 } size_red_t;
42
43 /**
44  * Checks if a node has already been removed
45  */
46 #define sr_is_removed(sr, irn)   pset_find_ptr((sr)->all_removed, irn)
47
48 /**
49  * TODO: This search is necessary because during the construction of the
50  *       units (ou's) args could be merged and weights are accumulated.
51  *       Is this necessary?
52  */
53 static inline int co_ilp_get_costs(copy_opt_t *co, ir_node *root, ir_node *arg) {
54         int i;
55
56         /* search optimization unit for phi */
57         list_for_each_entry(unit_t, curr, &co->units, units)
58                 if (curr->nodes[0] == root) {
59
60                         for (i = 1; i < curr->node_count; ++i)
61                                 if (curr->nodes[i] == arg)
62                                         return curr->costs[i];
63
64                                 assert(0 && "irn must occur in this ou");
65                 }
66
67         assert(0 && "phi must be found in a ou");
68         return 0;
69 }
70
71 /******************************************************************************
72     _____                      _        _____ _      _____
73    / ____|                    (_)      |_   _| |    |  __ \
74   | |  __  ___ _ __   ___ _ __ _  ___    | | | |    | |__) |
75   | | |_ |/ _ \ '_ \ / _ \ '__| |/ __|   | | | |    |  ___/
76   | |__| |  __/ | | |  __/ |  | | (__   _| |_| |____| |
77    \_____|\___|_| |_|\___|_|  |_|\___| |_____|______|_|
78
79  *****************************************************************************/
80
81 #include "lpp.h"
82 #include "lpp_net.h"
83
84 #define EPSILON 0.00001
85
86 typedef struct ilp_env_t ilp_env_t;
87
88 typedef void(*ilp_callback)(ilp_env_t*);
89
90 struct ilp_env_t {
91         const copy_opt_t *co;   /**< the copy opt problem */
92         size_red_t       *sr;   /**< problem size reduction. removes simple nodes */
93         lpp_t            *lp;   /**< the linear programming problem */
94         void             *env;
95         ilp_callback     build;
96         ilp_callback     apply;
97 };
98
99 ilp_env_t *new_ilp_env(copy_opt_t *co, ilp_callback build, ilp_callback apply, void *env);
100
101 lpp_sol_state_t ilp_go(ilp_env_t *ienv);
102
103 void free_ilp_env(ilp_env_t *ienv);
104
105 #endif