irop: Provide macro wrappers for [gs]et_generic_function_ptr_().
[libfirm] / ir / ir / irop_t.h
index 863ad34..d70964d 100644 (file)
@@ -21,7 +21,6 @@
  * @file
  * @brief    Representation of opcode of intermediate operation -- private header.
  * @author   Christian Schaefer, Goetz Lindenmaier, Michael Beck
- * @version  $Id$
  */
 #ifndef FIRM_IR_IROP_T_H
 #define FIRM_IR_IROP_T_H
 #include "irtypes.h"
 #include "tv.h"
 
+#define get_op_code(op)         get_op_code_(op)
+#define get_op_ident(op)        get_op_ident_(op)
+#define get_op_pinned(op)       get_op_pinned_(op)
+#define get_op_ops(op)          get_op_ops_(op)
+#define set_op_tag(op, tag)     set_op_tag_((op), (tag))
+#define get_op_tag(op)          get_op_tag_(op)
+#define set_op_attr(op, attr)   set_op_attr_((op), (attr))
+#define get_op_attr(op)         get_op_attr_(op)
+
+#define set_generic_function_ptr(op, func) set_generic_function_ptr_((op), (op_func)(func))
+#define get_generic_function_ptr(type, op) ((type*)get_generic_function_ptr_((op)))
+
 /**
  * Frees a newly created ir operation.
  */
 void free_ir_op(ir_op *code);
 
 /** Initialize the irop module. */
-void init_op(void);
-
-/** Free memory used by irop module. */
-void finish_op(void);
+void firm_init_op(void);
 
-/**
- * Copies simply all attributes stored in the old node to the new node.
- * Assumes both have the same opcode and sufficient size.
- *
- * @param old_node  the old node from which the attributes are read
- * @param new_node  the new node to which the attributes are written
- */
-void default_copy_attr(ir_graph *irg, const ir_node *old_node,
-                       ir_node *new_node);
+/** frees memory allocated by irop module */
+void firm_finish_op(void);
 
 /**
  * Returns the attribute size of nodes of this opcode.
@@ -112,12 +113,6 @@ static inline bool is_op_uses_memory(const ir_op *op)
        return op->flags & irop_flag_uses_memory;
 }
 
-/** Returns non-zero if operation must always be optimized */
-static inline bool is_op_always_opt(const ir_op *op)
-{
-       return op->flags & irop_flag_always_opt;
-}
-
 /** Returns non-zero if operation is a keep-like op */
 static inline bool is_op_keep(const ir_op *op)
 {
@@ -130,30 +125,12 @@ static inline bool is_op_start_block_placed(const ir_op *op)
        return op->flags & irop_flag_start_block;
 }
 
-/** Returns non-zero if operation is a machine operation */
-static inline bool is_op_machine(const ir_op *op)
-{
-       return op->flags & irop_flag_machine;
-}
-
-/** Returns non-zero if operation is a machine operand */
-static inline bool is_op_machine_operand(const ir_op *op)
-{
-       return op->flags & irop_flag_machine_op;
-}
-
 /** Returns non-zero if operation is CSE neutral */
 static inline bool is_op_cse_neutral(const ir_op *op)
 {
        return op->flags & irop_flag_cse_neutral;
 }
 
-/** Returns non-zero if operation is a machine user op number n */
-static inline bool is_op_machine_user(const ir_op *op, unsigned n)
-{
-       return op->flags & (irop_flag_user << n);
-}
-
 static inline unsigned get_op_code_(const ir_op *op)
 {
        return op->code;
@@ -179,7 +156,7 @@ static inline op_func get_generic_function_ptr_(const ir_op *op)
        return op->ops.generic;
 }
 
-static inline const ir_op_ops *get_op_ops_(const ir_op *op)
+static inline ir_op_ops *get_op_ops_(ir_op *op)
 {
        return &op->ops;
 }
@@ -204,13 +181,4 @@ static inline void *get_op_attr_(const ir_op *op)
        return op->attr;
 }
 
-#define get_op_code(op)         get_op_code_(op)
-#define get_op_ident(op)        get_op_ident_(op)
-#define get_op_pinned(op)       get_op_pinned_(op)
-#define get_op_ops(op)          get_op_ops_(op)
-#define set_op_tag(op, tag)     set_op_tag_((op), (tag))
-#define get_op_tag(op)          get_op_tag_(op)
-#define set_op_attr(op, attr)   set_op_attr_((op), (attr))
-#define get_op_attr(op)         get_op_attr_(op)
-
 #endif