amd64: Added Load and FrameAddr transformation. And fixed some corruption bugs w...
[libfirm] / include / libfirm / irarch.h
index d40c230..a4fdf08 100644 (file)
@@ -82,7 +82,7 @@ typedef const ir_settings_arch_dep_t *(*arch_dep_params_factory_t)(void);
 /**
  * A default parameter factory for testing purposes.
  */
-FIRM_DLL const ir_settings_arch_dep_t *arch_dep_default_factory(void);
+FIRM_API const ir_settings_arch_dep_t *arch_dep_default_factory(void);
 
 /**
  * Optimization flags.
@@ -101,13 +101,13 @@ typedef enum {
  *                  is not called, the machine dependent optimizations
  *                  are not enabled at all.
  */
-FIRM_DLL void arch_dep_init(arch_dep_params_factory_t factory);
+FIRM_API void arch_dep_init(arch_dep_params_factory_t factory);
 
 /**
  * Set the optimizations that shall be applied.
  * @param opts An optimization bit mask.
  */
-FIRM_DLL void arch_dep_set_opts(arch_dep_opts_t opts);
+FIRM_API void arch_dep_set_opts(arch_dep_opts_t opts);
 
 /**
  * Replace Muls with Lea/Shifts/Add/Subs if these
@@ -116,7 +116,7 @@ FIRM_DLL void arch_dep_set_opts(arch_dep_opts_t opts);
  * @param irn       The Firm node to inspect.
  * @return          A replacement expression for irn.
  */
-FIRM_DLL ir_node *arch_dep_replace_mul_with_shifts(ir_node *irn);
+FIRM_API ir_node *arch_dep_replace_mul_with_shifts(ir_node *irn);
 
 /**
  * Replace Divs with Shifts and Add/Subs and Mulh.
@@ -133,7 +133,7 @@ FIRM_DLL ir_node *arch_dep_replace_mul_with_shifts(ir_node *irn);
  * @param irn       The Firm node to inspect.
  * @return          A replacement expression for irn.
  */
-FIRM_DLL ir_node *arch_dep_replace_div_by_const(ir_node *irn);
+FIRM_API ir_node *arch_dep_replace_div_by_const(ir_node *irn);
 
 /**
  * Replace Mods with Shifts and Add/Subs and Mulh.
@@ -150,7 +150,7 @@ FIRM_DLL ir_node *arch_dep_replace_div_by_const(ir_node *irn);
  * @param irn       The Firm node to inspect.
  * @return          A replacement expression for irn.
  */
-FIRM_DLL ir_node *arch_dep_replace_mod_by_const(ir_node *irn);
+FIRM_API ir_node *arch_dep_replace_mod_by_const(ir_node *irn);
 
 /**
  * Replace DivMods with Shifts and Add/Subs and Mulh.
@@ -168,7 +168,7 @@ FIRM_DLL ir_node *arch_dep_replace_mod_by_const(ir_node *irn);
  * @param mod       After call contains the Firm node mod result or NULL.
  * @param irn       The Firm node to inspect.
  */
-FIRM_DLL void arch_dep_replace_divmod_by_const(ir_node **div, ir_node **mod,
+FIRM_API void arch_dep_replace_divmod_by_const(ir_node **div, ir_node **mod,
                                                ir_node *irn);
 
 #include "end.h"