X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Farm%2Farm_new_nodes.h;h=d2a2dcb079a4c484e3a95407416cc2cfbb24d47d;hb=1a2cd36eecb45a8b1b0cbc22eefd757b05f4e3f8;hp=ba0a81202fd220b1101e24fb4bbc5f82b900583e;hpb=e87ac5865f7932014b7434960085b0bc04dbf6bb;p=libfirm diff --git a/ir/be/arm/arm_new_nodes.h b/ir/be/arm/arm_new_nodes.h index ba0a81202..d2a2dcb07 100644 --- a/ir/be/arm/arm_new_nodes.h +++ b/ir/be/arm/arm_new_nodes.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. * @@ -53,10 +53,10 @@ arm_SymConst_attr_t *get_arm_SymConst_attr(ir_node *node); const arm_SymConst_attr_t *get_arm_SymConst_attr_const(const ir_node *node); /** - * Returns the attributes of an ARM CompareAndBranch node. + * Returns the attributes of an ARM CondJmp node. */ -arm_CondJmp_attr_t *get_arm_CmpBra_attr(ir_node *node); -const arm_CondJmp_attr_t *get_arm_CmpBra_attr_const(const ir_node *node); +arm_CondJmp_attr_t *get_arm_CondJmp_attr(ir_node *node); +const arm_CondJmp_attr_t *get_arm_CondJmp_attr_const(const ir_node *node); /** * Returns the attributes of an ARM SwitchJmp node. @@ -134,12 +134,6 @@ const arch_register_t *get_arm_out_reg(const ir_node *node, int pos); */ int get_arm_n_res(const ir_node *node); -/** - * Set the ARM machine node attributes to default values. - */ -void init_arm_attributes(ir_node *node, int flags, const arch_register_req_t ** in_reqs, - const arch_register_req_t ** out_reqs, const be_execution_unit_t ***execution_units, int n_res, unsigned latency); - /** * Sets the flags for the n'th out. */ @@ -151,14 +145,24 @@ void set_arm_out_flags(ir_node *node, arch_irn_flags_t flags, int pos); arch_irn_flags_t get_arm_out_flags(const ir_node *node, int pos); /** - * Returns the tarval + * Returns the immediate value */ -tarval *get_arm_value(const ir_node *node); +long get_arm_imm_value(const ir_node *node); /** - * Sets the tarval + * Sets the immediate value */ -void set_arm_value(ir_node *node, tarval *tv); +void set_arm_imm_value(ir_node *node, long imm_value); + +/** +* Return the tarval of a fpaConst +*/ +tarval *get_fpaConst_value(const ir_node *node); + +/** + * Sets the tarval of a fpaConst + */ +void set_fpaConst_value(ir_node *node, tarval *tv); /** * Returns the proj num @@ -201,11 +205,6 @@ void set_arm_SwitchJmp_default_proj_num(ir_node *node, long default_proj_num); */ arm_shift_modifier get_arm_shift_modifier(const ir_node *node); -/** - * Decode an immediate with shifter operand - */ -unsigned int arm_decode_imm_w_shift(tarval *tv); - /* Include the generated headers */ #include "gen_arm_new_nodes.h"