X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbecopyilp_t.h;h=8e9ebda3f82524451702f917c391bf1394d91ba2;hb=d21205a7860d7b8a9e7370f45f9e065c77e3c611;hp=54869c592a7843217c568821cc0f196b67dda10b;hpb=cf1b80f011e13db29e6b99ac25aa4c1ad055b2ff;p=libfirm diff --git a/ir/be/becopyilp_t.h b/ir/be/becopyilp_t.h index 54869c592..8e9ebda3f 100644 --- a/ir/be/becopyilp_t.h +++ b/ir/be/becopyilp_t.h @@ -8,9 +8,11 @@ * */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif +#ifndef _BECOPYILP_T_H +#define _BECOPYILP_T_H + +#include "firm_config.h" + #ifdef HAVE_ALLOCA_H #include #endif @@ -18,24 +20,130 @@ #include #endif -#include -#include -#include -#include -#include "xmalloc.h" +#include "irnode_t.h" #include "pset.h" -#include "irprog.h" -#include "irdom_t.h" -#include "iredges_t.h" -#include "bechordal_t.h" #include "becopyopt_t.h" -#include "becopystat.h" -#include "besched_t.h" -#include "phiclass.h" -#define LPP_HOST "i44pc52" -#define LPP_SOLVER "cplex" +/****************************************************************************** + _____ _ _ _ _ + / ____(_) | | | | (_) + | (___ _ _______ _ __ ___ __| |_ _ ___| |_ _ ___ _ __ + \___ \| |_ / _ \ | '__/ _ \/ _` | | | |/ __| __| |/ _ \| '_ \ + ____) | |/ / __/ | | | __/ (_| | |_| | (__| |_| | (_) | | | | + |_____/|_/___\___| |_| \___|\__,_|\__,_|\___|\__|_|\___/|_| |_| + + *****************************************************************************/ + +typedef struct _coloring_suffix_t coloring_suffix_t; + +struct _coloring_suffix_t { + coloring_suffix_t *next; + ir_node *irn; +}; + +typedef struct _size_red_t { + copy_opt_t *co; + pset *all_removed; /**< All nodes removed during problem size reduction */ + coloring_suffix_t *col_suff; /**< Coloring suffix. Reverse would be a PEO prefix */ + struct obstack ob; +} size_red_t; + +/** + * Just prepare. Do nothing yet. + */ +size_red_t *new_size_red(copy_opt_t *co); + +/** + * Checks if a node has already been removed + */ +#define sr_is_removed(sr, irn) pset_find_ptr((sr)->all_removed, irn) + +/** + * Virtually remove all nodes not related to the problem + * (simplicial AND not adjacent to a equal-color-edge) + */ +void sr_remove(size_red_t *sr); + +/** + * Virtually reinsert the nodes removed before and color them + */ +void sr_reinsert(size_red_t *sr); + +/** + * Free all space... + */ +void free_size_red(size_red_t *sr); + +/** + * TODO: This search is necessary because during the construction of the + * units (ou's) args could be merged and weights are accumulated. + * Is this necessary? + */ +static INLINE int co_ilp_get_costs(copy_opt_t *co, ir_node *root, ir_node *arg) { + int i; + unit_t *curr; + + /* search optimization unit for phi */ + list_for_each_entry(unit_t, curr, &co->units, units) + if (curr->nodes[0] == root) { + + for (i=1; inode_count; ++i) + if (curr->nodes[i] == arg) + return curr->costs[i]; + + assert(0 && "irn must occur in this ou"); + } + + assert(0 && "phi must be found in a ou"); + return 0; +} + +/****************************************************************************** + _____ _ _____ _ _____ + / ____| (_) |_ _| | | __ \ + | | __ ___ _ __ ___ _ __ _ ___ | | | | | |__) | + | | |_ |/ _ \ '_ \ / _ \ '__| |/ __| | | | | | ___/ + | |__| | __/ | | | __/ | | | (__ _| |_| |____| | + \_____|\___|_| |_|\___|_| |_|\___| |_____|______|_| + + *****************************************************************************/ + +#include + +#define LPP_SOLVE_NET + +#ifdef LPP_SOLVE_NET +# include +#else +# include +#endif -#define MAX(a,b) ((a