adapted to new code generator callback (spill)
authorChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Tue, 12 Dec 2006 15:34:24 +0000 (15:34 +0000)
committerChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Tue, 12 Dec 2006 15:34:24 +0000 (15:34 +0000)
ir/be/arm/bearch_arm.c
ir/be/firm/bearch_firm.c
ir/be/ia32/bearch_ia32.c
ir/be/mips/bearch_mips.c
ir/be/ppc32/bearch_ppc32.c

index e2812ef..48334f4 100644 (file)
@@ -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 */
index a8128e2..dad3b64 100644 (file)
@@ -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,
index 342fd03..67b61cc 100644 (file)
@@ -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 */
index 6b86b10..b93ca39 100644 (file)
@@ -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,
index 9ef9baf..b88bbda 100644 (file)
@@ -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,