rename lower_Switch to lower_switch to be consistent with the rest
[libfirm] / include / libfirm / lowering.h
index 0def121..3c3111f 100644 (file)
@@ -144,6 +144,21 @@ typedef struct {
  */
 void lower_calls_with_compounds(const lower_params_t *params);
 
+/**
+ *  * Lower CopyB nodes of size smaller that max_size into Loads/Stores
+ */
+void lower_CopyB(ir_graph *irg, unsigned max_size, unsigned native_mode_bytes);
+
+/**
+ * Lowers all Switches (Cond nodes with non-boolean mode) depending on spare_size.
+ * They will either remain the same or be converted into if-cascades.
+ *
+ * @param irg        The ir graph to be lowered.
+ * @param spare_size Allowed spare size for table switches in machine words.
+ *                   (Default in edgfe: 128)
+ */
+void lower_switch(ir_graph *irg, unsigned spare_size);
+
 /**
  * A callback type for creating an intrinsic entity for a given opcode.
  *
@@ -208,6 +223,11 @@ void lower_highlevel_graph(ir_graph *irg, int lower_bitfields);
  */
 void lower_highlevel(int lower_bitfields);
 
+/**
+ * does the same as lower_highlevel for all nodes on the const code irg
+ */
+void lower_const_code(void);
+
 typedef struct lower_mode_b_config_t {
        /* mode that is used to transport 0/1 values */
        ir_mode *lowered_mode;