fixed svn properties
[libfirm] / ir / ir / irop_t.h
index 0c2c8e2..0016bed 100644 (file)
 
 #include "firm_config.h"
 #include "irop.h"
+#include "irtypes.h"
 #include "tv.h"
-#include "irnode.h"
-
-
-/** The type of an ir_op. */
-struct ir_op {
-       unsigned code;          /**< The unique opcode of the op. */
-       ident *name;            /**< The name of the op. */
-       size_t attr_size;       /**< Space needed in memory for private attributes. */
-       op_pin_state op_pin_state_pinned; /**< How to deal with the node in CSE, PRE. */
-       op_arity opar;          /**< The arity of operator. */
-       int op_index;           /**< The index of the first data operand, 0 for most cases, 1 for Div etc. */
-       unsigned flags;         /**< Flags describing the behavior of the ir_op, a bitmasks of irop_flags. */
-       void *tag;              /**< Some custom pointer the op's creator can attach stuff to. */
-
-       ir_op_ops ops;          /**< The operations of the this op. */
-};
 
 /**
  * Frees a newly created ir operation.
@@ -177,11 +162,21 @@ static INLINE void *_get_op_tag(const ir_op *op) {
        return op->tag;
 }
 
+static INLINE void _set_op_attr(ir_op *op, void *attr) {
+       op->attr = attr;
+}
+
+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