added Makefile for make environment
[libfirm] / ir / be / ia32 / ia32_new_nodes.c
index 5a39c5c..e6bf205 100644 (file)
@@ -185,8 +185,8 @@ static int dump_node_ia32(ir_node *n, FILE *F, dump_reason_t reason) {
 
                case dump_node_nodeattr_txt:
                        if (is_ia32_ImmConst(n) || is_ia32_ImmSymConst(n)) {
-                               char *pref = is_ia32_ImmSymConst(n) ? "SymC" : "";
-                               char *cnst = get_ia32_cnst(n);
+                               char       *pref = is_ia32_ImmSymConst(n) ? "SymC" : "";
+                               const char *cnst = get_ia32_cnst(n);
 
                                fprintf(F, "[%s%s]", pref, cnst ? cnst : "NONE");
                        }
@@ -537,6 +537,46 @@ void sub_ia32_am_offs(ir_node *node, const char *offset) {
        extend_ia32_am_offs(node, (char *)offset, '-');
 }
 
+/**
+ * Returns the symconst ident associated to addrmode.
+ */
+ident *get_ia32_am_sc(const ir_node *node) {
+       ia32_attr_t *attr = get_ia32_attr(node);
+       return attr->am_sc;
+}
+
+/**
+ * Sets the symconst ident associated to addrmode.
+ */
+void set_ia32_am_sc(ir_node *node, ident *sc) {
+       ia32_attr_t *attr = get_ia32_attr(node);
+       attr->am_sc       = sc;
+}
+
+/**
+ * Sets the sign bit for address mode symconst.
+ */
+void set_ia32_am_sc_sign(ir_node *node) {
+       ia32_attr_t *attr     = get_ia32_attr(node);
+       attr->data.am_sc_sign = 1;
+}
+
+/**
+ * Clears the sign bit for address mode symconst.
+ */
+void clear_ia32_am_sc_sign(ir_node *node) {
+       ia32_attr_t *attr     = get_ia32_attr(node);
+       attr->data.am_sc_sign = 0;
+}
+
+/**
+ * Returns the sign bit for address mode symconst.
+ */
+int is_ia32_am_sc_sign(const ir_node *node) {
+       ia32_attr_t *attr = get_ia32_attr(node);
+       return attr->data.am_sc_sign;
+}
+
 /**
  * Gets the addr mode const.
  */
@@ -669,6 +709,30 @@ int is_ia32_commutative(const ir_node *node) {
        return attr->data.is_commutative;
 }
 
+/**
+ * Sets node emit_cl.
+ */
+void set_ia32_emit_cl(ir_node *node) {
+       ia32_attr_t *attr  = get_ia32_attr(node);
+       attr->data.emit_cl = 1;
+}
+
+/**
+ * Clears node emit_cl.
+ */
+void clear_ia32_emit_cl(ir_node *node) {
+       ia32_attr_t *attr  = get_ia32_attr(node);
+       attr->data.emit_cl = 0;
+}
+
+/**
+ * Checks if node is commutative.
+ */
+int is_ia32_emit_cl(const ir_node *node) {
+       ia32_attr_t *attr = get_ia32_attr(node);
+       return attr->data.emit_cl;
+}
+
 /**
  * Gets the mode of the stored/loaded value (only set for Store/Load)
  */