X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeabi.h;h=54e4e5acbef178d9791949201391a13864d77a4c;hb=e9e538b53d0d890d5037faf17f0865299a75dd28;hp=4bab8f8242cbe8117d40f03d3f6be0f9f5d5737e;hpb=f8cc15664f571aa7ef89d6f6bc8d5bd2b8ca7d53;p=libfirm diff --git a/ir/be/beabi.h b/ir/be/beabi.h index 4bab8f824..54e4e5acb 100644 --- a/ir/be/beabi.h +++ b/ir/be/beabi.h @@ -25,30 +25,15 @@ #ifndef FIRM_BE_BEABI_H #define FIRM_BE_BEABI_H -#include "firm_types.h" - -#include "pset.h" -#include "pmap.h" -#include "bitset.h" +#include -#include "be.h" -#include "beirg.h" -#include "bearch.h" -#include "beabi.h" -#include "beabihelper.h" - -struct be_abi_call_flags_bits_t { - unsigned store_args_sequential : 1; /**< Use sequential stores for arguments. */ - unsigned try_omit_fp : 1; /**< Try to omit the frame pointer. */ - unsigned fp_free : 1; /**< The function can use any register as frame pointer. */ - unsigned call_has_imm : 1; /**< A call can take the callee's address as an immediate. */ - unsigned irg_is_leaf : 1; /**< 1, if the IRG is a leaf function. */ - unsigned frame_is_setup_on_call : 1; /**< Set to one, if there is already enough room on the stack for call args. */ -}; +#include "be_types.h" +#include "firm_types.h" -union be_abi_call_flags_t { - be_abi_call_flags_bits_t bits; - unsigned val; +struct be_abi_call_flags_t { + bool try_omit_fp : 1; /**< Try to omit the frame pointer. */ + bool call_has_imm : 1; /**< A call can take the callee's address as an + immediate. */ }; struct be_abi_callbacks_t { @@ -74,13 +59,6 @@ void be_abi_call_set_flags(be_abi_call_t *call, be_abi_call_flags_t flags, const */ void be_abi_call_set_pop(be_abi_call_t *call, int pop); -/** - * Set register class for call address. - * @param call The call. - * @param cls The register class for call address. - */ -void be_abi_call_set_call_address_reg_class(be_abi_call_t *call, const arch_register_class_t *cls); - /** * The ABI can change when we call a function vs. when we have * been called. @@ -136,15 +114,6 @@ void be_abi_call_res_reg(be_abi_call_t *call, int pos, */ be_abi_call_flags_t be_abi_call_get_flags(const be_abi_call_t *call); -/** - * Get the method type of an ABI call object. - * @param call The call object. - * @return The method type for that call object. - */ -ir_type *be_abi_call_get_method_type(const be_abi_call_t *call); - void be_abi_introduce(ir_graph *irg); -void be_abi_free(ir_graph *irg); - #endif