X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbearch.h;h=e14d3c5b933fd13ed7868cc9f664a038249dede1;hb=5474a1c188c9d59eea2c915515980cd9cbab58d8;hp=79bbe84607f190de13b91d347e5110f44a33ddea;hpb=5530877cfe293d952cef32d005c457409f2a2150;p=libfirm diff --git a/ir/be/bearch.h b/ir/be/bearch.h index 79bbe8460..e14d3c5b9 100644 --- a/ir/be/bearch.h +++ b/ir/be/bearch.h @@ -212,13 +212,10 @@ static inline unsigned arch_get_irn_n_outs(const ir_node *node) } /** - * Initialize the architecture environment struct. - * @param isa The isa which shall be put into the environment. - * @param file_handle The file handle - * @return The environment. + * Start codegeneration */ -extern arch_env_t *arch_env_init(const arch_isa_if_t *isa, - be_main_env_t *main_env); +arch_env_t *arch_env_begin_codegeneration(const arch_isa_if_t *isa, + be_main_env_t *main_env); /** * Register an instruction set architecture @@ -435,11 +432,20 @@ struct arch_irn_ops_t { */ struct arch_isa_if_t { /** - * Initialize the isa interface. - * @param file_handle the file handle to write the output to - * @return a new isa instance + * Initializes the isa interface. This is necessary before calling any + * other functions from this interface. + */ + void (*init)(void); + + /** + * Fress resources allocated by this isa interface. + */ + void (*finish)(void); + + /** + * Returns the frontend settings needed for this backend. */ - arch_env_t *(*init)(const be_main_env_t *env); + const backend_params *(*get_params)(void); /** * lowers current program for target. See the documentation for @@ -447,16 +453,35 @@ struct arch_isa_if_t { */ void (*lower_for_target)(void); + /** + * parse an assembler constraint part and set flags according to its nature + * advances the *c pointer to point to the last parsed character (so if you + * parse a single character don't advance c) + */ + asm_constraint_flags_t (*parse_asm_constraint)(const char **c); + + /** + * returns true if the string is a valid clobbered (register) in this + * backend + */ + int (*is_valid_clobber)(const char *clobber); + + /** + * Start codegeneration + * @return a new isa instance + */ + arch_env_t *(*begin_codegeneration)(const be_main_env_t *env); + /** * Free the isa instance. */ - void (*done)(void *self); + void (*end_codegeneration)(void *self); /** - * Called directly after initialization. Backend should handle all - * intrinsics here. + * Initialize the code generator for a graph + * @param irg A graph */ - void (*handle_intrinsics)(void); + void (*init_graph)(ir_graph *irg); /** * Get the ABI restrictions for procedure calls. @@ -466,40 +491,47 @@ struct arch_isa_if_t { void (*get_call_abi)(ir_type *call_type, be_abi_call_t *abi); /** - * A "static" function, returns the frontend settings - * needed for this backend. + * mark node as rematerialized */ - const backend_params *(*get_params)(void); + void (*mark_remat)(ir_node *node); /** - * mark node as rematerialized + * return node used as base in pic code addresses */ - void (*mark_remat)(ir_node *node); + ir_node* (*get_pic_base)(ir_graph *irg); /** - * parse an assembler constraint part and set flags according to its nature - * advances the *c pointer to point to the last parsed character (so if you - * parse a single character don't advance c) + * Create a spill instruction. We assume that spill instructions + * do not need any additional registers and do not affect cpu-flags in any + * way. + * Construct a sequence of instructions after @p after (the resulting nodes + * are already scheduled). + * Returns a mode_M value which is used as input for a reload instruction. */ - asm_constraint_flags_t (*parse_asm_constraint)(const char **c); + ir_node *(*new_spill)(ir_node *value, ir_node *after); /** - * returns true if the string is a valid clobbered (register) in this - * backend + * Create a reload instruction. We assume that reload instructions do not + * need any additional registers and do not affect cpu-flags in any way. + * Constructs a sequence of instruction before @p before (the resulting + * nodes are already scheduled). A rewiring of users is not performed in + * this function. + * Returns a value representing the restored value. */ - int (*is_valid_clobber)(const char *clobber); + ir_node *(*new_reload)(ir_node *value, ir_node *spilled_value, + ir_node *before); /** - * Initialize the code generator. - * @param irg A graph - * @return A newly created code generator. + * Checks if the given register is callee/caller saved. + * @deprecated, only necessary if backend still uses beabi functions */ - void (*init_graph)(ir_graph *irg); + int (*register_saved_by)(const arch_register_t *reg, int callee); /** - * return node used as base in pic code addresses + * Called directly after initialization. Backend should handle all + * intrinsics here. */ - ir_node* (*get_pic_base)(ir_graph *irg); + void (*handle_intrinsics)(void); /** * Called before abi introduce. @@ -520,44 +552,16 @@ struct arch_isa_if_t { * Called directly before done is called. This should be the last place * where the irg is modified. */ - void (*finish)(ir_graph *irg); + void (*finish_graph)(ir_graph *irg); /** * Called after everything happened. This call should emit the final * assembly code but avoid changing the irg. - * The code generator must also be de-allocated here. */ void (*emit)(ir_graph *irg); - - /** - * Checks if the given register is callee/caller saved. - * @deprecated, only necessary if backend still uses beabi functions - */ - int (*register_saved_by)(const arch_register_t *reg, int callee); - - /** - * Create a spill instruction. We assume that spill instructions - * do not need any additional registers and do not affect cpu-flags in any - * way. - * Construct a sequence of instructions after @p after (the resulting nodes - * are already scheduled). - * Returns a mode_M value which is used as input for a reload instruction. - */ - ir_node *(*new_spill)(ir_node *value, ir_node *after); - - /** - * Create a reload instruction. We assume that reload instructions do not - * need any additional registers and do not affect cpu-flags in any way. - * Constructs a sequence of instruction before @p before (the resulting - * nodes are already scheduled). A rewiring of users is not performed in - * this function. - * Returns a value representing the restored value. - */ - ir_node *(*new_reload)(ir_node *value, ir_node *spilled_value, - ir_node *before); }; -#define arch_env_done(env) ((env)->impl->done(env)) +#define arch_env_end_codegeneration(env) ((env)->impl->end_codegeneration(env)) #define arch_env_handle_intrinsics(env) \ do { if((env)->impl->handle_intrinsics != NULL) (env)->impl->handle_intrinsics(); } while(0) #define arch_env_get_call_abi(env,tp,abi) ((env)->impl->get_call_abi((tp), (abi)))