convert bitfield initializer tarvals before using them
[libfirm] / ir / be / ppc32 / bearch_ppc32_t.h
index 9c5a074..9c40a17 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.
  *
@@ -29,7 +29,7 @@
 #include "debug.h"
 #include "bearch_ppc32.h"
 #include "ppc32_nodes_attr.h"
-#include "../be.h"
+#include "be.h"
 #include "../beemitter.h"
 #include "pset.h"
 #include "set.h"
@@ -42,7 +42,7 @@ typedef struct _ppc32_code_gen_t {
        const arch_env_t               *arch_env;         /**< the arch env */
        set                            *reg_set;          /**< set to memorize registers for FIRM nodes (e.g. phi) */
        ppc32_isa_t                    *isa;              /**< the isa instance */
-       const be_irg_t                 *birg;             /**< The be-irg (contains additional information about the irg) */
+       be_irg_t                       *birg;             /**< The be-irg (contains additional information about the irg) */
        unsigned                        area_size;        /**< size of call area for the current irg */
        ir_entity                      *area;             /**< the entity representing the call area or NULL for leaf functions */
        ir_node                        *start_succ_block; /**< the block succeeding the start block in the cfg */
@@ -52,18 +52,11 @@ typedef struct _ppc32_code_gen_t {
 
 
 struct _ppc32_isa_t {
-       arch_isa_t             arch_isa;      /**< must be derived from arch_isa_t */
-       be_emit_env_t          emit;          /**< An emitter environment for the GAS emitter. */
+       arch_env_t             arch_env;      /**< must be derived from arch_env_t */
        pset                   *symbol_set;   /**< A set containing the indirect symbols. */
 };
 
 
-typedef struct _ppc32_irn_ops_t {
-       const arch_irn_ops_if_t *impl;
-       ppc32_code_gen_t     *cg;
-} ppc32_irn_ops_t;
-
-
 /** this is a struct to minimize the number of parameters
    for transformation walker */
 typedef struct _ppc32_transform_env_t {