From: Christian Würdig Date: Tue, 12 Dec 2006 15:34:24 +0000 (+0000) Subject: adapted to new code generator callback (spill) X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=fe2856f2a2568057faeda34f68326a79794d9abf;p=libfirm adapted to new code generator callback (spill) --- diff --git a/ir/be/arm/bearch_arm.c b/ir/be/arm/bearch_arm.c index e2812ef66..48334f45b 100644 --- a/ir/be/arm/bearch_arm.c +++ b/ir/be/arm/bearch_arm.c @@ -543,6 +543,7 @@ static const arch_code_generator_if_t arm_code_gen_if = { arm_cg_init, arm_before_abi, /* before abi introduce */ arm_prepare_graph, + NULL, /* spill */ arm_before_sched, /* before scheduling hook */ arm_before_ra, /* before register allocation hook */ NULL, /* after register allocation */ diff --git a/ir/be/firm/bearch_firm.c b/ir/be/firm/bearch_firm.c index a8128e222..dad3b64a4 100644 --- a/ir/be/firm/bearch_firm.c +++ b/ir/be/firm/bearch_firm.c @@ -578,6 +578,7 @@ static const arch_code_generator_if_t firm_code_gen_if = { firm_cg_init, NULL, firm_prepare_graph, + NULL, /* spill */ firm_before_sched, firm_before_ra, firm_after_ra, diff --git a/ir/be/ia32/bearch_ia32.c b/ir/be/ia32/bearch_ia32.c index 342fd03b1..67b61cc8d 100644 --- a/ir/be/ia32/bearch_ia32.c +++ b/ir/be/ia32/bearch_ia32.c @@ -1325,6 +1325,7 @@ static const arch_code_generator_if_t ia32_code_gen_if = { ia32_cg_init, NULL, /* before abi introduce hook */ ia32_prepare_graph, + NULL, /* spill */ ia32_before_sched, /* before scheduling hook */ ia32_before_ra, /* before register allocation hook */ ia32_after_ra, /* after register allocation hook */ diff --git a/ir/be/mips/bearch_mips.c b/ir/be/mips/bearch_mips.c index 6b86b106c..b93ca39d1 100644 --- a/ir/be/mips/bearch_mips.c +++ b/ir/be/mips/bearch_mips.c @@ -523,6 +523,7 @@ static const arch_code_generator_if_t mips_code_gen_if = { mips_cg_init, NULL, /* before abi introduce */ mips_prepare_graph, + NULL, /* spill */ mips_before_sched, /* before scheduling hook */ mips_before_ra, /* before register allocation hook */ mips_after_ra, diff --git a/ir/be/ppc32/bearch_ppc32.c b/ir/be/ppc32/bearch_ppc32.c index 9ef9baf60..b88bbda68 100644 --- a/ir/be/ppc32/bearch_ppc32.c +++ b/ir/be/ppc32/bearch_ppc32.c @@ -612,6 +612,7 @@ static const arch_code_generator_if_t ppc32_code_gen_if = { ppc32_cg_init, ppc32_before_abi, ppc32_prepare_graph, + NULL, /* spill */ ppc32_before_sched, /* before scheduling hook */ ppc32_before_ra, /* before register allocation hook */ ppc32_after_ra,