added prototype for firm_init_flags(),
[libfirm] / ir / ir / irnode_t.h
index 6599ead..eb141a1 100644 (file)
@@ -48,8 +48,8 @@ typedef struct {
   ir_graph *irg;
   unsigned long block_visited;  /**< for the walker that walks over all blocks. */
   /* Attributes private to construction: */
-  int matured:1;                /**< if set, all in-nodes of the block are fixed */
-  int dead:1;                   /**< if set, the block is dead (and could be replace by a Bad */
+  unsigned matured:1;         /**< if set, all in-nodes of the block are fixed */
+  unsigned dead:1;            /**< if set, the block is dead (and could be replace by a Bad */
   struct ir_node **graph_arr; /**< array to store all parameters */
   /* Attributes holding analyses information */
   struct dom_info dom;        /**< Datastructure that holds information about dominators.
@@ -80,9 +80,9 @@ typedef struct {
 
 /** Cond attributes */
 typedef struct {
-  cond_kind kind;    /**< flavor of Cond */
-  long default_proj; /**< for optimization: biggest Proj number, i.e. the one
-                          used for default. */
+  cond_kind kind;           /**< flavor of Cond */
+  long default_proj;        /**< only for non-binary Conds: biggest Proj number, i.e. the one used for default. */
+  cond_jmp_predicate pred;  /**< only for binary Conds: The jump predication. */
 } cond_attr;
 
 /** Const attributes */
@@ -153,29 +153,34 @@ typedef struct {
 
 /** CallBegin attributes */
 typedef struct {
-  ir_node * call;            /**< associated Call-operation */
+  ir_node * call;               /**< associated Call-operation */
 } callbegin_attr;
 
 /** Cast attributes */
 typedef struct {
-  type *totype;
+  type *totype;                 /**< type of the casted node */
 } cast_attr;
 
 /** Load attributes */
 typedef struct {
   except_attr    exc;           /**< the exception attribute. MUST be the first one. */
   ir_mode        *load_mode;    /**< the mode of this Load operation */
-  ent_volatility volatility;   /**< the volatility of a Load/Store operation */
+  ent_volatility volatility;     /**< the volatility of a Load/Store operation */
 } load_attr;
 
 /** Store attributes */
 typedef struct {
   except_attr    exc;           /**< the exception attribute. MUST be the first one. */
-  ent_volatility volatility;   /**< the volatility of a Store operation */
+  ent_volatility volatility;     /**< the volatility of a Store operation */
 } store_attr;
 
 typedef pn_Cmp confirm_attr;    /**< Attribute to hold compare operation */
 
+typedef struct {
+  except_attr    exc;           /**< the exception attribute. MUST be the first one. */
+  type           *data_type;    /**< type of the copied entity */
+} copyb_attr;
+
 /**
  * Edge info to put into an irn.
  */
@@ -185,7 +190,7 @@ typedef struct _irn_edge_info_t {
 } irn_edge_info_t;
 
 
-/** Some irnodes just have one attribute, these are stored here,
+/** Some IR-nodes just have one attribute, these are stored here,
    some have more. Their name is 'irnodename_attr' */
 typedef union {
   start_attr     start; /**< For Start */
@@ -211,11 +216,12 @@ typedef union {
   int *phi_backedge;    /**< For Phi after construction.
                           Field n set to true if pred n is backedge.
                           @todo Ev. replace by bitfield! */
-  long           proj;  /**< For Proj: contains the result position to project */
+  long           proj;          /**< For Proj: contains the result position to project */
   confirm_attr   confirm_cmp;   /**< For Confirm: compare operation */
-  filter_attr    filter;    /**< For Filter */
-  end_attr       end;       /**< For EndReg, EndExcept */
-  except_attr    except; /**< For Phi node construction in case of exceptions */
+  filter_attr    filter;        /**< For Filter */
+  end_attr       end;           /**< For EndReg, EndExcept */
+  except_attr    except;        /**< For Phi node construction in case of exceptions */
+  copyb_attr     copyb;         /**< For CopyB operation */
 } attr;
 
 
@@ -282,8 +288,16 @@ except_attr   get_irn_except_attr   (ir_node *node);
  */
 extern unsigned firm_add_node_size;
 
-/** Set the get_type operation of an ir_op. */
-ir_op *firm_set_default_get_type(ir_op *op);
+/**
+ * Sets the get_type operation for an ir_op_ops.
+ *
+ * @param code   the opcode for the default operation
+ * @param ops    the operations initialized
+ *
+ * @return
+ *    The operations.
+ */
+ir_op_ops *firm_set_default_get_type(opcode code, ir_op_ops *ops);
 
 /*-------------------------------------------------------------------*/
 /*  These function are most used in libfirm.  Give them as static    */
@@ -316,7 +330,7 @@ copy_node_attr(const ir_node *old_node, ir_node *new_node) {
   ir_op *op = _get_irn_op(old_node);
 
   /* must always exist */
-  op->copy_attr(old_node, new_node);
+  op->ops.copy_attr(old_node, new_node);
 }
 
 /**
@@ -483,7 +497,7 @@ _set_irn_link(ir_node *node, void *link) {
   assert (node);
   /* Link field is used for Phi construction and various optimizations
      in iropt. */
-  assert(get_irg_phase_state(current_ir_graph) != phase_building);
+  assert(get_irg_phase_state(get_irn_irg(node)) != phase_building);
 
   node->link = link;
 }
@@ -578,6 +592,25 @@ _get_Block_cfgpred (ir_node *node, int pos) {
   return _get_irn_n(node, pos);
 }
 
+/* Get the predecessor block.
+ *
+ *  Returns the block corresponding to the predecessor pos.
+ *
+ *  There are several ambiguities we resolve with this function:
+ *  - The direct predecessor can be a Proj, which is not pinned.
+ *    We walk from the predecessor to the next pinned node
+ *    (skip_Proj) and return the block that node is in.
+ *  - If we encounter the Bad node, this function does not return
+ *    Start, but the Bad node.
+ */
+static INLINE ir_node  *
+_get_Block_cfgpred_block(ir_node *node, int pos) {
+  ir_node *res = skip_Proj(get_Block_cfgpred(node, pos));
+  if (!is_Bad(res))
+    res = get_nodes_block(res);
+  return res;
+}
+
 static INLINE unsigned long
 _get_Block_block_visited (ir_node *node) {
   assert (node->op == op_Block);
@@ -641,8 +674,26 @@ static INLINE cnst_classify_t _classify_Const(ir_node *node) {
   return CNST_NO_CONST;
 }
 
+static INLINE int _is_irn_forking(const ir_node *node) {
+  return is_op_forking(_get_irn_op(node));
+}
+
 static INLINE type *_get_irn_type(ir_node *node) {
-  return _get_irn_op(node)->get_type(node);
+  return _get_irn_op(node)->ops.get_type(node);
+}
+
+static INLINE int _is_irn_constlike(const ir_node *node) {
+  return is_op_constlike(_get_irn_op(node));
+}
+
+static INLINE cond_jmp_predicate _get_Cond_jmp_pred(ir_node *node) {
+  assert (_get_irn_op(node) == op_Cond);
+  return node->attr.c.pred;
+}
+
+static INLINE void _set_Cond_jmp_pred(ir_node *node, cond_jmp_predicate pred) {
+  assert (_get_irn_op(node) == op_Cond);
+  node->attr.c.pred = pred;
 }
 
 /* this section MUST contain all inline functions */
@@ -675,6 +726,7 @@ static INLINE type *_get_irn_type(ir_node *node) {
 #define is_Block(node)                        _is_Block(node)
 #define get_Block_n_cfgpreds(node)            _get_Block_n_cfgpreds(node)
 #define get_Block_cfgpred(node, pos)          _get_Block_cfgpred(node, pos)
+#define get_Block_cfgpred_block(node, pos)    _get_Block_cfgpred_block(node, pos)
 #define get_Block_block_visited(node)         _get_Block_block_visited(node)
 #define set_Block_block_visited(node, visit)  _set_Block_block_visited(node, visit)
 #define mark_Block_block_visited(node)        _mark_Block_block_visited(node)
@@ -683,6 +735,10 @@ static INLINE type *_get_irn_type(ir_node *node) {
 #define is_Block_dead(block)                  _is_Block_dead(block)
 #define get_Const_tarval(node)                _get_Const_tarval(node)
 #define classify_Const(node)                  _classify_Const(node)
+#define is_irn_forking(node)                  _is_irn_forking(node)
 #define get_irn_type(node)                    _get_irn_type(node)
+#define is_irn_constlike(node)                _is_irn_constlike(node)
+#define get_Cond_jmp_pred(node)               _get_Cond_jmp_pred(node)
+#define set_Cond_jmp_pred(node, pred)         _set_Cond_jmp_pred(node, pred)
 
 # endif /* _IRNODE_T_H_ */