- add FE support for MS _AddressOfReturnAddress()
[cparser] / driver / firm_cmdline.h
index 95b90e0..484cb52 100644 (file)
@@ -63,6 +63,7 @@ struct a_firm_opt {
   a_byte   deconv;          /**< enable conv node optimization */
   a_byte   cc_opt;          /**< optimize calling conventions */
   a_byte   bool_opt;        /**< perform bool simplification */
+  a_byte   shape_blocks;    /**< block shaping */
   a_byte   freestanding;    /**< if set, freestanding mode is enabled */
   a_byte   fp_model;        /**< fp model */
   a_byte   lower_ll;        /**< lower double word access */
@@ -77,6 +78,8 @@ struct a_firm_opt {
   char     *ycomp_host;     /**< The host, yComp is running on */
   int      ycomp_port;      /**< The port, yComp is listening on */
   int      clone_threshold; /**< The threshold value for procedure cloning. */
+  unsigned inline_maxsize;  /**< Maximum function size for inlining. */
+  unsigned inline_threshold;/**< Inlining benefice threshold. */
   a_byte   vrfy_edges;      /**< verify edges */
   a_byte   grs_simd_opt;
   a_byte   grs_create_pattern;
@@ -135,11 +138,6 @@ extern struct a_firm_dump firm_dump;
 extern struct a_firm_ext_grs firm_ext_grs;
 
 
-/**
- * prints the firm version number
- */
-void print_firm_version(FILE *f);
-
 /**
  * called by the generic command line parser
  * to handle the --firm= or -f options