rename be_pos_XXX to n_be_XXX to be consistent with the architecture specific constants
[libfirm] / ir / be / amd64 / bearch_amd64_t.h
index 6880d83..23ebab8 100644 (file)
 #include "set.h"
 
 typedef struct amd64_isa_t            amd64_isa_t;
-typedef struct amd64_code_gen_t       amd64_code_gen_t;
 typedef struct amd64_transform_env_t  amd64_transform_env_t;
 
-struct amd64_code_gen_t {
-       const arch_code_generator_if_t *impl;           /**< implementation */
-       ir_graph                       *irg;            /**< current irg */
-       amd64_isa_t                    *isa;            /**< the isa instance */
-       be_irg_t                       *birg;           /**< The be-irg (contains additional information about the irg) */
-       char                            dump;           /**< set to 1 if graphs should be dumped */
-};
+typedef struct amd64_irg_data_t {
+       ir_graph    *irg;            /**< current irg */
+       amd64_isa_t *isa;            /**< the isa instance */
+       char         dump;           /**< set to 1 if graphs should be dumped */
+       ir_node     *noreg_gp;       /**< unique NoReg_GP node */
+} amd64_irg_data_t;
 
 struct amd64_isa_t {
-       arch_env_t  arch_env;      /**< must be derived from arch_isa */
+       arch_env_t  base;      /**< must be derived from arch_isa */
 };
 
 /**
@@ -59,4 +57,11 @@ struct amd64_transform_env_t {
        ir_mode  *mode;     /**< The mode of the irn */
 };
 
+static inline amd64_irg_data_t *amd64_get_irg_data(const ir_graph *irg)
+{
+       return (amd64_irg_data_t*) be_birg_from_irg(irg)->isa_link;
+}
+
+ir_node *amd64_new_NoReg_gp(ir_graph *irg);
+
 #endif