Reuse already fetched values.
[libfirm] / ir / be / arm / bearch_arm_t.h
index 386784b..a136787 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.
  *
@@ -139,7 +139,6 @@ enum arm_processor_types {
 typedef struct _arm_code_gen_t {
        const arch_code_generator_if_t *impl;           /**< implementation */
        ir_graph                       *irg;            /**< current irg */
-       const arch_env_t               *arch_env;       /**< the arch env */
        set                            *reg_set;        /**< set to memorize registers for FIRM nodes (e.g. phi) */
        arm_isa_t                      *isa;            /**< the isa instance */
        be_irg_t                       *birg;           /**< The be-irg (contains additional information about the irg) */
@@ -153,18 +152,10 @@ typedef struct _arm_code_gen_t {
 
 
 struct _arm_isa_t {
-       arch_isa_t     arch_isa;      /**< must be derived from arch_isa_t */
+       arch_env_t     arch_env;      /**< must be derived from arch_env_t */
        int            gen_reg_names; /**< use generic register names instead of SP, LR, PC */
        int            fpu_arch;      /**< FPU architecture */
        arm_code_gen_t *cg;           /**< current code generator */
-       be_emit_env_t  emit;          /**< An emitter environment for the GAS emitter. */
 };
 
-
-typedef struct _arm_irn_ops_t {
-       const arch_irn_ops_if_t *impl;
-       arm_code_gen_t          *cg;
-} arm_irn_ops_t;
-
-
 #endif