X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fsparc%2Fsparc_nodes_attr.h;h=8a82bf40f55e8e78cfaefe237492f455ff25baed;hb=1b3cdecf879a62c32a40b4df17562b6eea4ec498;hp=b7f4aa45df26d5973d22fad3b8b5b009aeef81e0;hpb=f89fe6bdc4d0f139557986320adfa37ea02d32b3;p=libfirm diff --git a/ir/be/sparc/sparc_nodes_attr.h b/ir/be/sparc/sparc_nodes_attr.h index b7f4aa45d..8a82bf40f 100644 --- a/ir/be/sparc/sparc_nodes_attr.h +++ b/ir/be/sparc/sparc_nodes_attr.h @@ -26,6 +26,7 @@ #define FIRM_BE_SPARC_SPARC_NODES_ATTR_H #include "../bearch.h" +#include typedef struct sparc_attr_t sparc_attr_t; @@ -36,10 +37,14 @@ struct sparc_attr_t { except_attr exc; /**< the exception attribute. MUST be the first one. */ const arch_register_req_t **in_req; /**< register requirements for arguments */ - int immediate_value; /* immediate values */ - bool is_load_store; + int32_t immediate_value; /* immediate values */ + ir_entity *immediate_value_entity; +}; - ir_entity *immediate_value_entity; /* hack for now */ +enum sparc_arch_irn_flags_t { + sparc_arch_irn_flag_modifies_flags = arch_irn_flags_backend << 0, + sparc_arch_irn_flag_modifies_fp_flags = arch_irn_flags_backend << 1, + sparc_arch_irn_flag_needs_64bit_spillslot = arch_irn_flags_backend << 2, }; /** @@ -74,20 +79,8 @@ typedef struct sparc_load_store_attr_t sparc_load_store_attr_t; struct sparc_load_store_attr_t { sparc_attr_t base; /**< generic attribute */ ir_mode *load_store_mode; - ir_entity *entity; - int entity_sign; - long offset; - bool is_frame_entity; -}; - -/** - * attributes for SymConsts - */ -typedef struct sparc_symconst_attr_t sparc_symconst_attr_t; -struct sparc_symconst_attr_t { - sparc_attr_t base; /**< generic attribute */ - ir_entity *entity; - int fp_offset; + bool is_frame_entity : 1; + bool is_reg_reg : 1; }; /** @@ -96,18 +89,18 @@ struct sparc_symconst_attr_t { typedef struct sparc_jmp_cond_attr_t sparc_jmp_cond_attr_t; struct sparc_jmp_cond_attr_t { sparc_attr_t base; /**< generic attribute */ - int proj_num; + pn_Cmp pnc; bool is_unsigned : 1; }; /** * attributes for switch jumps */ -typedef struct sparc_jmp_switch_attr_t sparc_jmp_switch_attr_t; -struct sparc_jmp_switch_attr_t { +typedef struct sparc_switch_jmp_attr_t sparc_switch_jmp_attr_t; +struct sparc_switch_jmp_attr_t { sparc_attr_t base; /**< generic attribute */ - int n_projs; long default_proj_num; + ir_entity *jump_table; }; #endif