- add block Phi list resource
[libfirm] / include / libfirm / irprog.h
index 3f4f6ea..3d8abcb 100644 (file)
@@ -47,8 +47,9 @@
 #include "irgraph.h"
 
 typedef enum ir_segment_t {
+       IR_SEGMENT_FIRST,
        /** "normal" global data */
-       IR_SEGMENT_GLOBAL,
+       IR_SEGMENT_GLOBAL = IR_SEGMENT_FIRST,
        /** thread local storage segment */
        IR_SEGMENT_THREAD_LOCAL,
        /**
@@ -92,6 +93,16 @@ typedef struct ir_prog ir_prog;
  */
 extern ir_prog *irp;
 
+#ifndef NDEBUG
+void irp_reserve_resources(ir_prog *irp, ir_resources_t resources);
+void irp_free_resources(ir_prog *irp, ir_resources_t resources);
+ir_resources_t irp_resources_reserved(const ir_prog *irp);
+#else
+void irp_reserve_resources(irp, resources)
+void irp_free_resources(irp, resources)
+ir_resources_t irp_resources_reserved(irp)   0
+#endif
+
 /**
  * Returns the access points from where everything in the ir can be accessed.
  *
@@ -252,4 +263,13 @@ ir_exc_region_t get_irp_next_region_nr(void);
 /** Returns a new, unique label number. */
 ir_label_t get_irp_next_label_nr(void);
 
+/** Add a new global asm include. */
+void add_irp_asm(ident *asm_string);
+
+/** Return the number of global asm includes. */
+int get_irp_n_asms(void);
+
+/** Return the global asm include at position pos. */
+ident *get_irp_asm(int pos);
+
 #endif