X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeabi.h;h=e364bedfc2229ee935880d4922b7f2f96baba23d;hb=b9d45e08e23bcf058fa8f2d9e18dd78e8cccd044;hp=7aa4dfc0e599061bc5d9eaece20fff751bd10e04;hpb=b71eb461afcc67cf09b606d42db1125b03e001e6;p=libfirm diff --git a/ir/be/beabi.h b/ir/be/beabi.h index 7aa4dfc0e..e364bedfc 100644 --- a/ir/be/beabi.h +++ b/ir/be/beabi.h @@ -128,4 +128,31 @@ ir_node *be_abi_get_callee_save_irn(be_abi_irg_t *abi, const arch_register_t *re #define be_abi_reg_map_get(map, reg) pmap_get((map), (void *) (reg)) #define be_abi_reg_map_set(map, reg, irn) pmap_insert((map), (void *) (reg), (irn)) +#define N_FRAME_TYPES 3 + +/** + * This type describes the stack layout. + * The stack is divided into 3 parts: + * - arg_type: A struct type describing the stack arguments and it's order. + * - between_type: A struct type describing the stack layout between arguments + * and frame type + * - frame_type: A class type describing the frame layout + */ +struct _be_stack_layout_t { + ir_type *arg_type; /**< A type describing the stack argument layout. */ + ir_type *between_type; /**< A type describing the "between" layout. */ + ir_type *frame_type; /**< The frame type. */ + + ir_type *order[N_FRAME_TYPES]; /**< arg, between and frame types ordered. */ + + int initial_offset; + int stack_dir; /**< -1 for decreasing, 1 for increasing. */ + entity **param_map; /**< An array mapping type parameters to arg_type entries */ +}; + +/** + * Returns the stack layout from a abi environment. + */ +const be_stack_layout_t *be_abi_get_stack_layout(const be_abi_irg_t *abi); + #endif /* _BEABI_H */