X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Fbe.h;h=59a47c1c314d510eab6b97fae4593dd03f411a63;hb=901bb930a86871ff22dd4aa1c34424a3083ef5fa;hp=a44df48855910a2074da6841e90ff600d1c77d7e;hpb=e98f25e8d5846ba4e1382c6fa47a3e50b763cf5f;p=libfirm diff --git a/include/libfirm/be.h b/include/libfirm/be.h index a44df4885..59a47c1c3 100644 --- a/include/libfirm/be.h +++ b/include/libfirm/be.h @@ -48,6 +48,18 @@ typedef enum { ASM_CONSTRAINT_FLAG_INVALID = 0x8000 } asm_constraint_flags_t; +/** + * Build a Trampoline for the closure. + * @param block the block where to build the trampoline + * @param mem memory + * @param trampoline address of a trampoline region + * @param env address of the environment + * @param callee address of the function to call + * + * @return modified memory + */ +typedef ir_node *(create_trampoline_fkt)(ir_node *block, ir_node *mem, ir_node *trampoline, ir_node *env, ir_node *callee); + /** * This structure contains parameters that should be * propagated to the libFirm parameter set. @@ -57,8 +69,6 @@ typedef struct backend_params { unsigned do_dw_lowering:1; /** If set, the backend supports inline assembly. */ unsigned support_inline_asm:1; - /** If set, the target architecture use an immediate floating point mode. */ - unsigned has_imm_fp_mode:1; /** Settings for architecture dependent optimizations. */ const ir_settings_arch_dep_t *dep_param; @@ -72,9 +82,23 @@ typedef struct backend_params { /** Backend settings for if-conversion. */ const ir_settings_if_conv_t *if_conv_info; - /** The immediate floating point mode. Temporaries are calculated using - * this mode. */ - ir_mode *imm_fp_mode; + /** + * some backends like x87 can only do arithmetic in a specific float + * mode (but convert to/from other float modes). + */ + ir_mode *mode_float_arithmetic; + + /** Size of the trampoline code. */ + unsigned trampoline_size; + + /** Alignment of the trampoline code. */ + unsigned trampoline_align; + + /** If non-zero, build the trampoline. */ + create_trampoline_fkt *build_trampoline; + + /** Alignment of stack parameters */ + unsigned stack_param_align; } backend_params; /**