added context parameter for create_intrinsic_fkt
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 15 May 2006 12:04:06 +0000 (12:04 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 15 May 2006 12:04:06 +0000 (12:04 +0000)
ir/be/TEMPLATE/bearch_TEMPLATE.c
ir/be/arm/bearch_arm.c
ir/be/firm/bearch_firm.c
ir/be/mips/bearch_mips.c
ir/be/ppc32/bearch_ppc32.c

index 83136e0..c75080f 100644 (file)
@@ -547,6 +547,30 @@ static int TEMPLATE_get_reg_class_alignment(const void *self, const arch_registe
        return get_mode_size_bytes(mode);
 }
 
+/**
+ * Returns the libFirm configuration parameter for this backend.
+ */
+static const backend_params *TEMPLATE_get_libfirm_params(void) {
+       static arch_dep_params_t ad = {
+               1,  /* allow subs */
+               0,  /* Muls are fast enough on Firm */
+               31, /* shift would be ok */
+               0,  /* no Mulhs */
+               0,  /* no Mulhu */
+               0,  /* no Mulh */
+       };
+       static backend_params p = {
+               NULL,  /* no additional opcodes */
+               NULL,  /* will be set later */
+               0,     /* no dword lowering */
+               NULL,  /* no creator function */
+               NULL,  /* context for create_intrinsic_fkt */
+       };
+
+       p.dep_param = &ad;
+       return &p;
+}
+
 #ifdef WITH_LIBCORE
 static void TEMPLATE_register_options(lc_opt_entry_t *ent)
 {
@@ -564,6 +588,7 @@ const arch_isa_if_t TEMPLATE_isa_if = {
        TEMPLATE_get_code_generator_if,
        TEMPLATE_get_list_sched_selector,
        TEMPLATE_get_reg_class_alignment,
+        TEMPLETE_get_libfirm_params,
 #ifdef WITH_LIBCORE
        TEMPLATE_register_options
 #endif
index c825bbf..3914f4a 100644 (file)
@@ -1077,6 +1077,7 @@ static const backend_params *arm_get_libfirm_params(void) {
                NULL,  /* will be set later */
                1,     /* need dword lowering */
                NULL,  /* but yet no creator function */
+               NULL,  /* context for create_intrinsic_fkt */
        };
 
        p.dep_param = &ad;
index a61efbf..42af293 100644 (file)
@@ -618,6 +618,7 @@ static const backend_params *firm_get_libfirm_params(void) {
                NULL,  /* will be set later */
                0,     /* no dword lowering */
                NULL,  /* no creator function */
+               NULL,  /* context for create_intrinsic_fkt */
        };
 
        p.dep_param = &ad;
index a40fa99..b41aa31 100644 (file)
@@ -935,6 +935,7 @@ static const backend_params *mips_get_libfirm_params(void) {
                NULL,  /* will be set later */
                1,     /* need dword lowering */
                NULL,  /* but yet no creator function */
+               NULL,  /* context for create_intrinsic_fkt */
        };
 
        p.dep_param = &ad;
index ec5319c..09b5276 100644 (file)
@@ -866,6 +866,7 @@ static const backend_params *ppc32_get_libfirm_params(void) {
                NULL,  /* will be set later */
                1,     /* need dword lowering */
                NULL,  /* but yet no creator function */
+               NULL,  /* context for create_intrinsic_fkt */
        };
 
        p.dep_param = &ad;