adapted to new abi calls
[libfirm] / ir / be / firm / bearch_firm.c
index 42bda4d..3d76436 100644 (file)
@@ -206,8 +206,16 @@ static const arch_register_class_t *firm_get_reg_class_for_mode(const void *self
 
 static void firm_get_call_abi(const void *self, ir_type *method_type, be_abi_call_t *abi)
 {
+       static ir_type *between_type = NULL;
        const arch_register_class_t *cls = &reg_classes[CLS_DATAB];
        int i, n;
+       be_abi_call_flags_t call_flags = { 0, 0, 0, 0, 0 };
+
+       if(!between_type) {
+               between_type = new_type_class(new_id_from_str("firm_be_between"));
+               set_type_size_bytes(between_type, 0);
+       }
+
 
        for(i = 0, n = get_method_n_params(method_type); i < n; ++i) {
                ir_type *t = get_method_param_type(method_type, i);
@@ -223,7 +231,7 @@ static void firm_get_call_abi(const void *self, ir_type *method_type, be_abi_cal
                        be_abi_call_res_reg(abi, i, &cls->regs[i]);
        }
 
-       be_abi_call_set_flags(abi, BE_ABI_NONE, 0);
+       be_abi_call_set_flags(abi, call_flags, between_type);
 }
 
 
@@ -329,7 +337,13 @@ static arch_irn_flags_t firm_get_flags(const void *self, const ir_node *irn)
        return res;
 }
 
-static void firm_set_stack_bias(const void *self, ir_node *irn, int bias) {
+static void firm_set_stack_bias(const void *self, ir_node *irn, int bias)
+{
+}
+
+static entity *firm_get_frame_entity(const void *self, const ir_node *irn)
+{
+       return NULL;
 }
 
 static const arch_irn_ops_if_t firm_irn_ops_if = {
@@ -338,6 +352,7 @@ static const arch_irn_ops_if_t firm_irn_ops_if = {
        firm_get_irn_reg,
        firm_classify,
        firm_get_flags,
+       firm_get_frame_entity,
        firm_set_stack_bias
 };
 
@@ -540,8 +555,6 @@ static const arch_code_generator_if_t firm_code_gen_if = {
        firm_prepare_graph,
        firm_before_sched,
        firm_before_ra,
-       NULL,  /* lower spill */
-       NULL,  /* lower reload */
        firm_codegen_done
 };