- propagate r23142 changes to all backends
[libfirm] / ir / be / arm / arm_new_nodes.h
index 6fe6a7b..411bccd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -100,55 +100,24 @@ void set_arm_req_out_all(ir_node *node, const arch_register_req_t **reqs);
 void set_arm_req_in(ir_node *node, const arch_register_req_t *req, int pos);
 
 /**
- * Returns the register flag of an arm node.
+ * Returns the immediate value
  */
-arch_irn_flags_t get_arm_flags(const ir_node *node);
+long get_arm_imm_value(const ir_node *node);
 
 /**
- * Sets the register flag of an arm node.
+ * Sets the immediate value
  */
-void set_arm_flags(ir_node *node, arch_irn_flags_t flags);
+void set_arm_imm_value(ir_node *node, long imm_value);
 
 /**
- * Returns the result register slots of an arm node.
- */
-const arch_register_t **get_arm_slots(const ir_node *node);
-
-/**
- * Returns the name of the OUT register at position pos.
- */
-const char *get_arm_out_reg_name(const ir_node *node, int pos);
-
-/**
- * Returns the index of the OUT register at position pos within its register class.
- */
-int get_arm_out_regnr(const ir_node *node, int pos);
-
-/**
- * Returns the OUT register at position pos.
- */
-const arch_register_t *get_arm_out_reg(const ir_node *node, int pos);
-
-/**
- * Returns the number of results.
- */
-int get_arm_n_res(const ir_node *node);
-
-/**
- * Set the ARM machine node attributes to default values.
- */
-void init_arm_attributes(ir_node *node, int flags, const arch_register_req_t ** in_reqs,
-                         const arch_register_req_t ** out_reqs, const be_execution_unit_t ***execution_units, int n_res, unsigned latency);
+* Return the tarval of a fpaConst
+*/
+tarval *get_fpaConst_value(const ir_node *node);
 
 /**
- * Returns the tarval
+ * Sets the tarval of a fpaConst
  */
-tarval *get_arm_value(const ir_node *node);
-
-/**
- * Sets the tarval
- */
-void set_arm_value(ir_node *node, tarval *tv);
+void set_fpaConst_value(ir_node *node, tarval *tv);
 
 /**
  * Returns the proj num
@@ -191,11 +160,6 @@ void set_arm_SwitchJmp_default_proj_num(ir_node *node, long default_proj_num);
  */
 arm_shift_modifier get_arm_shift_modifier(const ir_node *node);
 
-/**
- * Decode an immediate with shifter operand
- */
-unsigned int arm_decode_imm_w_shift(tarval *tv);
-
 /* Include the generated headers */
 #include "gen_arm_new_nodes.h"