X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeinsn_t.h;h=703d2c2e01e39cab27451a9a561fdbd123b595bb;hb=5bb8cd35a8074112fa2da8b8f68d7c77918119e5;hp=a2493b8dcabc1052b45fe61a71fd452c1466fd1e;hpb=39f3a8dbd0f00f90b7b12a849d1bf7b9c1329479;p=libfirm diff --git a/ir/be/beinsn_t.h b/ir/be/beinsn_t.h index a2493b8dc..703d2c2e0 100644 --- a/ir/be/beinsn_t.h +++ b/ir/be/beinsn_t.h @@ -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. * @@ -26,7 +26,7 @@ #ifndef FIRM_BE_BEINSN_T_H #define FIRM_BE_BEINSN_T_H -#include "irnode.h" +#include "firm_types.h" #include "bitset.h" #include "obst.h" @@ -38,8 +38,8 @@ typedef struct _be_insn_t be_insn_t; typedef struct _be_insn_env_t be_insn_env_t; struct _be_operand_t { - ir_node *irn; /**< firm node of the insn this operand blongs to */ - ir_node *carrier; /**< node representing the operand value (proj or the node itself for defs, the value itself for uses */ + ir_node *irn; /**< Firm node of the insn this operand belongs to */ + ir_node *carrier; /**< node representing the operand value (Proj or the node itself for defs, the value itself for uses */ be_operand_t *partner; /**< used in bechordal later... (TODO what does it do?) */ bitset_t *regs; /**< admissible register bitset */ int pos; /**< pos of the operand (0 to n are inputs, -1 to -n are outputs) */ @@ -54,7 +54,7 @@ struct _be_insn_t { [use_start-n_ops) uses */ ir_node *next_insn; /**< next instruction in schedule */ ir_node *irn; /**< ir_node of the instruction */ - unsigned in_constraints : 1; /**< instruction has input contraints */ + unsigned in_constraints : 1; /**< instruction has input constraints */ unsigned out_constraints : 1; /**< instruction has output constraints */ unsigned has_constraints : 1; /**< in_constraints or out_constraints true */ unsigned pre_colored : 1; /**< all defined values already have a register assigned */ @@ -62,7 +62,6 @@ struct _be_insn_t { struct _be_insn_env_t { struct obstack *obst; - const arch_env_t *aenv; const arch_register_class_t *cls; bitset_t *ignore_colors; };