Added options handlingof libcore
[libfirm] / ir / common / firm.h
index a3289a3..0bfeb7c 100644 (file)
@@ -66,41 +66,55 @@ extern "C" {
 #include "ircgcons.h"      /* construct interprocedural graph */
 
 /* Optimizations */
-#include "irflag.h"        /* optimization flags */
-#include "irgopt.h"        /* optimize ir */
-#include "reassoc.h"       /* optimize ir by reassociation */
-#include "ldstopt.h"       /* optimize Load/Store */
-#include "cfopt.h"         /* optimize control flow */
-#include "tailrec.h"       /* optimize tail-recursion calls */
-#include "ircgopt.h"       /* Optimizations based on interprocedural graph */
-#include "strength_red.h"  /* Strength reduction */
+#include "irflag.h"         /* optimization flags */
+#include "irgopt.h"         /* optimize ir */
+#include "reassoc.h"        /* optimize ir by reassociation */
+#include "ldstopt.h"        /* optimize Load/Store */
+#include "cfopt.h"          /* optimize control flow */
+#include "tailrec.h"        /* optimize tail-recursion calls */
+#include "ircgopt.h"        /* Optimizations based on interprocedural graph */
+#include "strength_red.h"   /* Strength reduction */
+#include "loop_unrolling.h" /* Do loop unrolling */
+#include "ifconv.h"         /* if conversion */
+#include "funccall.h"       /* real function call optimization */
+#include "return.h"         /* Return node normalizations */
+#include "scalar_replace.h" /* Scalar replacement */
+#include "proc_cloning.h"   /* procedure cloning */
+//#include "opt_branches.h"   /* Branch optimizations */
 
 /* Analyses */
-#include "irouts.h"        /* Graph reversal / out edges. */
-#include "irdom.h"         /* Dominator analysis */
-#include "cgana.h"         /* Analysis to construct interprocedural graph */
-                           /* including some optimizations */
-#include "irloop.h"        /* loop and backedge analysis */
-#include "callgraph.h"     /* Callgraph construction */
+#include "irouts.h"         /* Graph reversal / out edges. */
+#include "trouts.h"         /* Graph reversal / out edges for types. */
+#include "irdom.h"          /* Dominator analysis */
+#include "cgana.h"          /* Analysis to construct interprocedural graph */
+                            /* including some optimizations */
+#include "irloop.h"         /* loop and backedge analysis */
+#include "callgraph.h"      /* Callgraph construction */
+#include "irconsconfirm.h"  /* Confirm nodes */
+#include "analyze_irg_args.h" /* Simple pointer parameter analysis */
 #include "interval_analysis.h"
 #include "field_temperature.h"
 #include "execution_frequency.h"
 
 /* Support */
-#include "irgmod.h"        /* Support to modify ir */
-#include "irgwalk.h"       /* Support to walk ir */
-#include "typewalk.h"      /* Support to walk type information */
-#include "typegmod.h"      /* Support to modify type graph */
-#include "type_identify.h" /* Support for type identification */
-#include "mangle.h"        /* Support for mangling ident names. */
-
-#include "irarch.h"        /* architecture dependant optimizations */
-//#include "modeconv.h"      /* architecture dependant mode conversion */
+#include "irgmod.h"         /* Support to modify ir */
+#include "irgwalk.h"        /* Support to walk ir */
+#include "typewalk.h"       /* Support to walk type information */
+#include "typegmod.h"       /* Support to modify type graph */
+#include "type_identify.h"  /* Support for type identification */
+#include "mangle.h"         /* Support for mangling ident names. */
+#include "tr_inheritance.h" /* Support to handle inheritance. */
+
+#include "irarch.h"        /* architecture dependent optimizations */
+#include "archop.h"        /* architecture dependent opcodes */
+//#include "modeconv.h"      /* architecture dependent mode conversion */
 
 #include "firmstat.h"      /* statistics */
 
 #include "irreflect.h"     /* reflection */
 
+#include "seqnumbers.h"    /* debug support */
+
 
 /* @@@ temporarily for jni builder until preprocessor works.
    Then it should be sufficient to include <file.h> instead
@@ -115,7 +129,7 @@ extern "C" {
 
 #include "iredges.h"
 
-/* Makros that define the old function names we decided to rename.
+/* Macros that define the old function names we decided to rename.
    Use for compatibility with old implementations. */
 /*#include "old_fctnames.h"*/
 
@@ -138,8 +152,9 @@ struct _firm_parameter_t {
 
   /**
    * This function is called, whenever a local variable is
-   * used before definition.  The function should either insert a default value,
-   * or raise a compiler error/warning.
+   * used before definition. The function should insert a default value,
+   * and/or raise a compiler error/warning. Note that returning
+   * an Unknown is allowed here.
    */
   uninitialized_local_variable_func_t *initialize_local_func;
 
@@ -156,32 +171,60 @@ struct _firm_parameter_t {
    */
   ident_if_t *id_if;
 
+  /**
+   * The architecture dependent opcode settings.
+   * If not set, no architecture dependent operations will be used.
+   */
+  arch_ops_info *arch_op_settings;
+
+  /**
+   * The default calling convention.
+   */
+  unsigned cc_mask;
+
+  /**
+   * The debug info that should be used for "builtin" objects.
+   */
+  dbg_info *builtin_dbg;
+
        /**
-        * The factory function for the architecture dependent
-        * optimizations.
+        * Prefix for the command line options.
+        * example: if the option is -ffirm-opt-bla, then the prefix is "-f"
+        * @note Only active, if libfirm is compiled with libcore.
         */
+       const char *arg_prefix;
 
-};
-
+       /**
+        * Number of arguments in the "command line".
+        * @note Only active, if libfirm is compiled with libcore.
+        */
+       int argc;
 
-typedef struct _firm_parameter_t firm_parameter_t;
+       /**
+        * Array of arguments.
+        * @note Only active, if libfirm is compiled with libcore.
+        */
+       const char **argv;
 
+       /**
+        * Name of ini file which is initially read.
+        * @note Only active, if libfirm is compiled with libcore.
+        */
+       const char *ini_file;
+};
 
+typedef struct _firm_parameter_t firm_parameter_t;
 
 /**
  * Initialize the firm library.
  *
  * Initializes the firm library.  Allocates default data structures.
- * Initializes configurable behaviour of the library.
+ * Initializes configurable behavior of the library.
  *
- * @param param    This function is called, whenever a local variable is
- * used before definition.  The function should either insert a default value,
- * or raise a compiler error.
+ * @param params   A structure containing the parameters of the libFirm.
  *
- * The parameter func may be NULL. In that case, the original FIRM behavior
+ * The parameter struct may be NULL. In that case, the original FIRM behavior
  * is conserved.
- *
- * @see default_initialize_local_variable_func_t
  */
 void init_firm(const firm_parameter_t *params);