X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbearch.h;h=743b9061cf17dfd276b7c84e2e2ef3505e1ba5f0;hb=7438ae082c9ec7658ccd006b40aa62084aedca2d;hp=c9fefb31bac58b306fb4b9e8415784eacb25ecb7;hpb=841a0e3596a9ae5532c0e21d2087475ceaad4953;p=libfirm diff --git a/ir/be/bearch.h b/ir/be/bearch.h index c9fefb31b..743b9061c 100644 --- a/ir/be/bearch.h +++ b/ir/be/bearch.h @@ -1,40 +1,20 @@ #ifndef _FIRM_BEARCH_H #define _FIRM_BEARCH_H -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - +#include "firm_config.h" #ifdef WITH_LIBCORE #include #endif -#include "type.h" - -#include "irnode.h" -#include "irmode.h" +#include "firm_types.h" #include "bitset.h" -#include "hashptr.h" -#include "fourcc.h" -#include "set.h" -#include "list.h" -#include "ident.h" #include "belistsched.h" #include "beabi_t.h" - -typedef struct _arch_register_class_t arch_register_class_t; -typedef struct _arch_register_t arch_register_t; -typedef struct _arch_isa_if_t arch_isa_if_t; -typedef struct _arch_isa_t arch_isa_t; -typedef struct _arch_env_t arch_env_t; -typedef struct _arch_irn_ops_if_t arch_irn_ops_if_t; -typedef struct _arch_irn_ops_t arch_irn_ops_t; -typedef struct _arch_irn_handler_t arch_irn_handler_t; -typedef struct _arch_code_generator_t arch_code_generator_t; -typedef struct _arch_code_generator_if_t arch_code_generator_if_t; +#include "bearch_t.h" +#include "be_t.h" struct _be_node_factory_t; @@ -47,8 +27,6 @@ typedef enum _arch_register_type_t { upon a function call. It thus can be overwritten in the called function. */ arch_register_type_ignore = 4, /**< Do not consider this register when allocating. */ - arch_register_type_sp = 8, /**< This register is the stack pointer of the architecture. */ - arch_register_type_bp = 16, /**< The register is the base pointer of the architecture. */ } arch_register_type_t; /** @@ -58,7 +36,7 @@ typedef enum _arch_register_type_t { * @return 1, If register is of given kind, 0 if not. */ #define arch_register_type_is(reg, kind) \ - ((reg)->type == arch_register_type_ ## kind) + (((reg)->type & arch_register_type_ ## kind) != 0) /** * A register. @@ -179,6 +157,16 @@ typedef struct _arch_register_req_t { must be different (case must_be_different). */ } arch_register_req_t; +/** + * Format a register requirements information into a string. + * @param buf The string where to put it to. + * @param len The size of @p buf. + * @param req The requirements structure to format. + * @return A pointer to buf. + */ +extern char *arch_register_req_format(char *buf, size_t len, const arch_register_req_t *req); + + /** * Certain node classes which are relevant for the register allocator. */ @@ -199,9 +187,18 @@ typedef enum _arch_irn_flags_t { arch_irn_flags_none = 0, /**< Node flags. */ arch_irn_flags_dont_spill = 1, /**< This must not be spilled. */ arch_irn_flags_rematerializable = 2, /**< This should be replicated instead of spilled/reloaded. */ - arch_irn_flags_ignore = 4, /**< Do not consider the node during register allocation. */ + arch_irn_flags_ignore = 4, /**< Ignore node during register allocation. */ + arch_irn_flags_last = arch_irn_flags_ignore } arch_irn_flags_t; +/** + * Get the string representation of a flag. + * This functions does not handle or'ed bitmasks of flags. + * @param flag The flag. + * @return The flag as a string. + */ +extern const char *arch_irn_flag_str(arch_irn_flags_t flag); + struct _arch_irn_ops_if_t { /** @@ -252,14 +249,20 @@ struct _arch_irn_ops_if_t { arch_irn_flags_t (*get_flags)(const void *self, const ir_node *irn); /** - * Set a bias for the stack pointer. - * If the node in question uses the stack pointer for indexing, it must - * consider the value of bias additionally. + * Get the entity on the stack frame this node depends on. * @param self The this pointer. * @param irn The node in question. - * @param bias The bias. + * @return The entity on the stack frame or NULL, if the node does not has a stack frame entity. */ - void (*set_stack_bias)(const void *self, ir_node *irn, int bias); + entity *(*get_frame_entity)(const void *self, const ir_node *irn); + + /** + * Set the offset of a node carrying an entity on the stack frame. + * @param self The this pointer. + * @param irn The node. + * @param offset The offset of the node's stack frame entity. + */ + void (*set_frame_offset)(const void *self, ir_node *irn, int offset); }; /** @@ -269,8 +272,9 @@ struct _arch_irn_ops_t { const arch_irn_ops_if_t *impl; }; -extern void -arch_set_stack_bias(const arch_env_t *env, ir_node *irn, int bias); +extern void arch_set_frame_offset(const arch_env_t *env, ir_node *irn, int bias); + +extern entity *arch_get_frame_entity(const arch_env_t *env, ir_node *irn); /** * Get the register requirements for a node. @@ -411,11 +415,15 @@ struct _arch_code_generator_if_t { /** * Initialize the code generator. * @param file The file to dump to. - * @param irg The function to generate code for. - * @param env The architecture environment. + * @param birg A backend IRG session. * @return A newly created code generator. */ - void *(*init)(FILE *file, ir_graph *irg, const arch_env_t *env); + void *(*init)(FILE *file, const be_irg_t *birg); + + /** + * Called before abi introduce. + */ + void (*before_abi)(void *self); /** * Called, when the graph is being normalized. @@ -433,20 +441,9 @@ struct _arch_code_generator_if_t { void (*before_ra)(void *self); /** - * Called after register allocation to lower Spills to Stores - * @param self The code generator - * @param spill The spill node to lower - * @return The new backend node which substitutes the spill + * Called after register allocation. */ - ir_node *(*lower_spill)(void *self, ir_node *spill); - - /** - * Called after register allocation to lower Reloads to Loads - * @param self The code generator - * @param reload The reload node to lower - * @return The new backend node which substitutes the reload - */ - ir_node *(*lower_reload)(void *self, ir_node *reload); + void (*after_ra)(void *self); /** * Called after everything happened. @@ -462,9 +459,11 @@ do { \ (cg)->impl->func(cg); \ } while(0) +#define arch_code_generator_before_abi(cg) _arch_cg_call(cg, before_abi) #define arch_code_generator_prepare_graph(cg) _arch_cg_call(cg, prepare_graph) #define arch_code_generator_before_sched(cg) _arch_cg_call(cg, before_sched) #define arch_code_generator_before_ra(cg) _arch_cg_call(cg, before_ra) +#define arch_code_generator_after_ra(cg) _arch_cg_call(cg, after_ra) #define arch_code_generator_done(cg) _arch_cg_call(cg, done) /** @@ -557,6 +556,7 @@ struct _arch_isa_if_t { * @return The list scheduler selector. */ const list_sched_selector_t *(*get_list_sched_selector)(const void *self); + }; #define arch_isa_get_n_reg_class(isa) ((isa)->impl->get_n_reg_class(isa)) @@ -603,6 +603,13 @@ extern arch_env_t *arch_env_init(arch_env_t *env, const arch_isa_if_t *isa); * @param handler A node handler. * @return The environment itself. */ -extern arch_env_t *arch_env_add_irn_handler(arch_env_t *env, const arch_irn_handler_t *handler); +extern arch_env_t *arch_env_push_irn_handler(arch_env_t *env, const arch_irn_handler_t *handler); + +/** + * Remove a node handler from the handler stack. + * @param env The architecture environment. + * @return The popped handler. + */ +extern const arch_irn_handler_t *arch_env_pop_irn_handler(arch_env_t *env); #endif /* _FIRM_BEARCH_H */