diff options
author | ciceron <ciceron@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-07 10:00:30 +0000 |
---|---|---|
committer | ciceron <ciceron@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-07 10:00:30 +0000 |
commit | da383a3d1be88d085d945e8676d771d0a992e12a (patch) | |
tree | dd50c116b1a367e9af99451afd2bbfc84beb6dff /gcc/config/m68hc11/m68hc11.c | |
parent | 6ac09a46a2734b077e63159cfdb94c0059dec00b (diff) | |
download | gcc-da383a3d1be88d085d945e8676d771d0a992e12a.tar.gz |
* config/m68hc11/m68hc11.c (m68hc11_gen_movhi): Use 2,-sp to push
the stack register.
(expand_prologue): Don't make an interrupt or a trap handler a far
symbol.
(m68hc11_initial_elimination_offset): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79058 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/m68hc11/m68hc11.c')
-rw-r--r-- | gcc/config/m68hc11/m68hc11.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/gcc/config/m68hc11/m68hc11.c b/gcc/config/m68hc11/m68hc11.c index cca40ed2be0..9fb9060555f 100644 --- a/gcc/config/m68hc11/m68hc11.c +++ b/gcc/config/m68hc11/m68hc11.c @@ -1402,15 +1402,19 @@ m68hc11_initial_elimination_offset (int from, int to) /* For a trap handler, we must take into account the registers which are pushed on the stack during the trap (except the PC). */ func_attr = TYPE_ATTRIBUTES (TREE_TYPE (current_function_decl)); + current_function_interrupt = lookup_attribute ("interrupt", + func_attr) != NULL_TREE; + trap_handler = lookup_attribute ("trap", func_attr) != NULL_TREE; if (lookup_attribute ("far", func_attr) != 0) current_function_far = 1; else if (lookup_attribute ("near", func_attr) != 0) current_function_far = 0; else - current_function_far = TARGET_LONG_CALLS != 0; + current_function_far = (TARGET_LONG_CALLS != 0 + && !current_function_interrupt + && !trap_handler); - trap_handler = lookup_attribute ("trap", func_attr) != NULL_TREE; if (trap_handler && from == ARG_POINTER_REGNUM) size = 7; @@ -1690,7 +1694,9 @@ expand_prologue (void) else if (lookup_attribute ("near", func_attr) != NULL_TREE) current_function_far = 0; else - current_function_far = TARGET_LONG_CALLS != 0; + current_function_far = (TARGET_LONG_CALLS != 0 + && !current_function_interrupt + && !current_function_trap); /* Get the scratch register to build the frame and push registers. If the first argument is a 32-bit quantity, the D+X registers @@ -3235,7 +3241,7 @@ m68hc11_gen_movhi (rtx insn, rtx *operands) output_asm_insn ("psh%1", operands); break; case HARD_SP_REGNUM: - output_asm_insn ("sts\t-2,sp", operands); + output_asm_insn ("sts\t2,-sp", operands); break; default: abort (); |