ia32: Clean up ia32_get_op_estimated_cost().
[libfirm] / ir / be / ia32 / ia32_optimize.h
index 4ab5434..9a274c9 100644 (file)
@@ -1,18 +1,45 @@
-#ifndef _IA32_OPTIMIZE_H_
-#define _IA32_OPTIMIZE_H_
+/*
+ * This file is part of libFirm.
+ * Copyright (C) 2012 University of Karlsruhe.
+ */
+
+/**
+ * @file
+ * @brief       Implements several optimizations for IA32.
+ * @author      Christian Wuerdig
+ */
+#ifndef FIRM_BE_IA32_IA32_OPTIMIZE_H
+#define FIRM_BE_IA32_IA32_OPTIMIZE_H
+
+#include "irgraph.h"
+#include "bearch_ia32_t.h"
+
+/**
+ * Prepares irg for codegeneration. Places consts and transform reference mode
+ * nodes into mode_Iu nodes.
+ */
+void ia32_pre_transform_phase(ir_graph *irg);
+
+/**
+ * Performs conv and address mode optimizations.
+ * @param cg  The ia32 codegenerator object
+ */
+void ia32_optimize_graph(ir_graph *irg);
 
 /**
- * Transforms a Firm Const into an ia32 Const and places it
- * in the Block where it's used.
- * This function is called by a walker.
+ * Performs Peephole Optimizations an a graph.
+ *
+ * @param irg   the graph
+ * @param cg    the code generator object
  */
-void ia32_place_consts(ir_node *irn, void *env);
+void ia32_peephole_optimization(ir_graph *irg);
+
+/** Initialize the ia32 address mode optimizer. */
+void ia32_init_optimize(void);
 
 /**
- * Checks for address mode patterns and performs the
- * necessary transformations.
- * This function is called by a walker.
+ * Creates an immediate node.
  */
-void ia32_optimize_am(ir_node *irn, void *env);
+ir_node *ia32_immediate_from_long(long val);
 
-#endif /* _IA32_OPTIMIZE_H_ */
+#endif /* FIRM_BE_IA32_IA32_OPTIMIZE_H */