fixed bug: Wrong opcode range was requested in be
[libfirm] / ir / be / beirg.h
index 30661f4..647480a 100644 (file)
  */
 
 /**
- * Author:      Matthias Braun
- * Date:               05.05.2006
- * Copyright:   (c) Universitaet Karlsruhe
- * License:     This file is protected by GPL -  GNU GENERAL PUBLIC LICENSE.
- *
- * Backend irg - a ir_graph with additional analysis information
+ * @file
+ * @brief       Backend irg - a ir_graph with additional analysis information.
+ * @author      Matthias Braun
+ * @date        05.05.2006
+ * @version     $Id$
  */
-#ifndef BEIRG_H
-#define BEIRG_H
+#ifndef FIRM_BE_BEIRG_H
+#define FIRM_BE_BEIRG_H
 
 #include "belive.h"
 #include "bedomfront.h"
@@ -36,6 +35,7 @@ typedef struct be_irg_t be_irg_t;
 ir_graph *be_get_birg_irg(const be_irg_t *birg);
 
 void be_assure_liveness(be_irg_t *birg);
+void be_assure_liveness_chk(be_irg_t *birg);
 void be_invalidate_liveness(be_irg_t *birg);
 be_lv_t *be_get_birg_liveness(const be_irg_t *birg);
 
@@ -53,4 +53,11 @@ ir_exec_freq *be_get_birg_exec_freq(const be_irg_t *birg);
  */
 void be_free_birg(be_irg_t *birg);
 
-#endif
+/**
+ * Compare the computed liveness information with the liveness check info.
+ * @param lv    The computed liveness.
+ * @param lvc   The liveness check information.
+ */
+void be_live_chk_compare(be_irg_t *birg);
+
+#endif /* FIRM_BE_BEIRG_H */