copy result mode on final transformations (lea->add and sub->neg-add)
[libfirm] / ir / be / be.h
index 8c37c40..3df6732 100644 (file)
@@ -2,6 +2,22 @@
 #ifndef _BE_MAIN_H
 #define _BE_MAIN_H
 
+#include <stdio.h>
+#include "dbginfo.h"
+
+/**
+ * Register the Firm backend command line options.
+ */
+void be_opt_register(void);
+
+/**
+ * Parse one backend argument.
+ */
+int be_parse_arg(const char *arg);
+
+/**
+ * Initialize the Firm backend. Must be run BEFORE init_firm()!
+ */
 void be_init(void);
 
 /**
@@ -9,6 +25,21 @@ void be_init(void);
  */
 void be_main(FILE *file_handle);
 
+/** The type of the debug info retriever function. */
+typedef const char *(*retrieve_dbg_func)(const dbg_info *dbg, unsigned *line);
+
+/**
+ * Sets a debug info retriever.
+ *
+ * @param func   the debug retriever function.
+ */
+void be_set_debug_retrieve(retrieve_dbg_func func);
+
+/**
+ * Retrieve the debug info.
+ */
+const char *be_retrieve_dbg_info(const dbg_info *dbg, unsigned *line);
+
 typedef struct _be_main_env_t be_main_env_t;
 typedef struct _be_irg_t be_irg_t;
 typedef struct _be_options_t be_options_t;