becopyopt: Replace is_Reg_Phi() by just is_Phi().
[libfirm] / ir / be / becopyopt_t.h
index d899e6c..d7f0c77 100644 (file)
-/**
- * Author:      Daniel Grund
- * Date:               12.04.2005
- * Copyright:   (c) Universitaet Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
- *
- * Internal header for copy optimization problem.
+/*
+ * This file is part of libFirm.
+ * Copyright (C) 2012 University of Karlsruhe.
  */
 
-#ifndef _BECOPYOPT_T_H
-#define _BECOPYOPT_T_H
+/**
+ * @file
+ * @brief       Internal header for copy optimization problem.
+ * @author      Daniel Grund
+ * @date        12.04.2005
+ */
+#ifndef FIRM_BE_BECOPYOPT_T_H
+#define FIRM_BE_BECOPYOPT_T_H
 
+#include "obst.h"
 #include "list.h"
+#include "set.h"
+#include "irnode_t.h"
+
 #include "bearch.h"
 #include "bechordal_t.h"
 #include "becopyopt.h"
 
-#define MIS_HEUR_TRIGGER 8
-
 /**
  * Data representing the problem of copy minimization.
  */
-struct _copy_opt_t {
-       be_chordal_env_t *cenv;
+struct copy_opt_t {
+       be_chordal_env_t            *cenv;
        const arch_register_class_t *cls;
-       const arch_env_t *aenv;
-       ir_graph *irg;
-       char *name;                                             /**< ProgName__IrgName__RegClassName */
+       ir_graph                    *irg;
+       cost_fct_t                  get_costs;   /**< function ptr used to get costs for copies */
+
+       /** Representation as optimization units */
+       struct list_head units;  /**< all units to optimize in specific order */
 
-       struct list_head units;                 /**< all units to optimize in specific order */
-       cost_fct_t get_costs;                   /**< function ptr used to get costs for copies */
-       struct obstack ob;
+       /** Representation in graph structure. Only build on demand */
+       struct obstack obst;
+       set    *nodes;
 };
 
-/**
- * A single unit of optimization. Lots of these form a copy-opt problem
- */
-typedef struct _unit_t {
-       struct list_head units;         /**< chain for all units */
-       copy_opt_t *co;                         /**< the copy_opt this unit belongs to */
-       int node_count;                         /**< size of the nodes array */
-       ir_node **nodes;                        /**< [0] is the root-node, others are non interfering args of it. */
-       int *costs;                                     /**< costs[i] are incurred, if nodes[i] has a different color */
-       int inevitable_costs;           /**< sum of costs of all args interfering with root */
-       int all_nodes_costs;            /**< sum of all costs[i] */
-       int min_nodes_costs;            /**< a lower bound for the costs in costs[], determined by a max indep. set */
-       int sort_key;                           /**< maximum costs. controls the order of ou's in the struct list_head units. */
+/* Helpers */
+#define ASSERT_OU_AVAIL(co)     assert((co)->units.next && "Representation as optimization-units not built")
+#define ASSERT_GS_AVAIL(co)     assert((co)->nodes && "Representation as graph not built")
+
+static inline unsigned get_irn_col(const ir_node *node)
+{
+       return arch_get_irn_register(node)->index;
+}
+
+static inline void set_irn_col(const arch_register_class_t *cls, ir_node *node,
+                               unsigned color)
+{
+       const arch_register_t *reg = arch_register_for_index(cls, color);
+       arch_set_irn_register(node, reg);
+}
+
+#define list_entry_units(lh) list_entry(lh, unit_t, units)
+
+#define get_Perm_src(irn) (get_irn_n(get_Proj_pred(irn), get_Proj_proj(irn)))
+#define is_Perm_Proj(irn) (is_Proj(irn) && be_is_Perm(get_Proj_pred(irn)))
+
+/******************************************************************************
+   ____        _   _    _       _ _          _____ _
+  / __ \      | | | |  | |     (_) |        / ____| |
+ | |  | |_ __ | |_| |  | |_ __  _| |_ ___  | (___ | |_ ___  _ __ __ _  __ _  ___
+ | |  | | '_ \| __| |  | | '_ \| | __/ __|  \___ \| __/ _ \| '__/ _` |/ _` |/ _ \
+ | |__| | |_) | |_| |__| | | | | | |_\__ \  ____) | || (_) | | | (_| | (_| |  __/
+  \____/| .__/ \__|\____/|_| |_|_|\__|___/ |_____/ \__\___/|_|  \__,_|\__, |\___|
+        | |                                                            __/ |
+        |_|                                                           |___/
+ ******************************************************************************/
+
+#define MIS_HEUR_TRIGGER 8
+
+typedef struct unit_t {
+       struct list_head units;              /**< chain for all units */
+       int              node_count;         /**< size of the nodes array */
+       ir_node          **nodes;            /**< [0] is the root-node, others are non interfering args of it. */
+       int              *costs;             /**< costs[i] are incurred, if nodes[i] has a different color */
+       int              inevitable_costs;   /**< sum of costs of all args interfering with root */
+       int              all_nodes_costs;    /**< sum of all costs[i] */
+       int              min_nodes_costs;    /**< a lower bound for the costs in costs[], determined by a max independent set */
+       int              sort_key;           /**< maximum costs. controls the order of ou's in the struct list_head units. */
 
        /* for heuristic */
-       struct list_head queue;         /**< list of qn's sorted by weight of qn-mis */
+       struct list_head queue;              /**< list of qn's sorted by weight of qn-mis */
 } unit_t;
 
-/* Helpers */
-#define get_irn_col(co, irn)           arch_register_get_index(arch_get_irn_register((co)->aenv, irn))
-#define set_irn_col(co, irn, col)      arch_set_irn_register((co)->aenv, irn, arch_register_for_index((co)->cls, col))
-#define is_curr_reg_class(co, irn)     (arch_get_irn_reg_class((co)->aenv, irn, -1) == (co)->cls)
 
-#define MIN(a,b) ((a<b)?(a):(b))
-#define MAX(a,b) ((a<b)?(b):(a))
 
-#define list_entry_units(lh) list_entry(lh, unit_t, units)
+/******************************************************************************
+   _____                 _        _____ _
+  / ____|               | |      / ____| |
+ | |  __ _ __ __ _ _ __ | |__   | (___ | |_ ___  _ __ __ _  __ _  ___
+ | | |_ | '__/ _` | '_ \| '_ \   \___ \| __/ _ \| '__/ _` |/ _` |/ _ \
+ | |__| | | | (_| | |_) | | | |  ____) | || (_) | | | (_| | (_| |  __/
+  \_____|_|  \__,_| .__/|_| |_| |_____/ \__\___/|_|  \__,_|\__, |\___|
+                  | |                                       __/ |
+                  |_|                                      |___/
+ ******************************************************************************/
 
-#define get_Copy_src(irn)                   (get_irn_n(get_Proj_pred(irn), get_Proj_proj(irn)))
-#define is_Perm(arch_env, irn)                         (arch_irn_classify(arch_env, irn) == arch_irn_class_perm)
-#define is_Reg_Phi(irn)                                                (is_Phi(irn) && mode_is_data(get_irn_mode(irn)))
-#define is_Perm_Proj(arch_env, irn)                    (is_Proj(irn) && is_Perm(arch_env, get_Proj_pred(irn)))
-#define is_2addr_code(arch_env, irn, req)      (arch_get_register_req(arch_env, req, irn, -1)->type == arch_register_req_type_should_be_same)
+typedef struct neighb_t neighb_t;
+typedef struct affinity_node_t affinity_node_t;
 
-/**
- * Checks if a node is optimizable, viz. has somthing to do with coalescing
- * @param arch The architecture environment
- * @param irn  The irn to check
- * @param req  A register_requirement structure (used to check for 2-addr-code)
- */
-#define co_is_optimizable(arch, irn, req) (!arch_irn_is_ignore(arch, irn) && (is_Reg_Phi(irn) || is_Perm_Proj(arch, irn) || is_2addr_code(arch, irn, req)))
+struct neighb_t {
+       neighb_t *next;   /** the next neighbour entry*/
+       const ir_node  *irn;    /** the neighbour itself */
+       int      costs;   /** the costs of the edge (affinity_node_t->irn, neighb_t->irn) */
+};
 
-/**
- * Checks if the irn is a non-interfering argument of a node which 'is_optimizable'
- */
-int co_is_optimizable_arg(const copy_opt_t *co, ir_node *irn);
+struct affinity_node_t {
+       const ir_node  *irn;          /** a node with affinity edges */
      neighb_t *neighbours;   /** a linked list of all affinity neighbours */
+};
 
-/**
- * Returns the maximal costs possible, i.e. the costs if all
- * pairs would be assigned different registers.
- */
-int co_get_max_copy_costs(const copy_opt_t *co);
 
-/**
- * Returns the inevitable costs, i.e. the costs of
- * all copy pairs which interfere.
- */
-int co_get_inevit_copy_costs(const copy_opt_t *co);
+static inline affinity_node_t *get_affinity_info(const copy_opt_t *co, const ir_node *irn)
+{
+       affinity_node_t find;
 
-/**
- * Returns the current costs the copies are causing.
- * The result includes inevitable costs and the costs
- * of the copies regarding the current register allocation
- */
-int co_get_copy_costs(const copy_opt_t *co);
+       ASSERT_GS_AVAIL(co);
 
-/**
- * Returns a lower bound for the costs of copies in this ou.
- * The result includes inevitable costs and the costs of a
- * minimal costs caused by the nodes of the ou.
- */
-int co_get_lower_bound(const copy_opt_t *co);
+       find.irn = irn;
+       return set_find(affinity_node_t, co->nodes, &find, sizeof(find), hash_irn(irn));
+}
 
+#define co_gs_foreach_aff_node(co, aff_node)     foreach_set((co)->nodes, affinity_node_t, (aff_node))
+#define co_gs_foreach_neighb(aff_node, neighb)   for (neighb_t *neighb = aff_node->neighbours; neighb; neighb = neighb->next)
 
-#endif
+#endif /* FIRM_BE_BECOPYOPT_T_H */