1 ;; Machine Descriptions for R8C/M16C/M32C
3 ;; Free Software Foundation, Inc.
4 ;; Contributed by Red Hat.
6 ;; This file is part of GCC.
8 ;; GCC is free software; you can redistribute it and/or modify it
9 ;; under the terms of the GNU General Public License as published
10 ;; by the Free Software Foundation; either version 2, or (at your
11 ;; option) any later version.
13 ;; GCC is distributed in the hope that it will be useful, but WITHOUT
14 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 ;; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 ;; License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GCC; see the file COPYING. If not, write to the Free
20 ;; Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
23 ;; Prologue and epilogue patterns
25 (define_expand "prologue"
28 "m32c_emit_prologue(); DONE;"
31 ; For the next two, operands[0] is the amount of stack space we want
34 ; We assume dwarf2out will process each set in sequence.
35 (define_insn "prologue_enter_16"
36 [(set (mem:HI (pre_dec:HI (reg:HI SP_REGNO)))
38 (set (reg:HI FB_REGNO)
40 (set (reg:HI SP_REGNO)
41 (minus:HI (reg:HI SP_REGNO)
42 (match_operand 0 "const_int_operand" "i")))
48 (define_insn "prologue_enter_24"
49 [(set (mem:SI (pre_dec:PSI (reg:PSI SP_REGNO)))
51 (set (reg:PSI FB_REGNO)
53 (set (reg:PSI SP_REGNO)
54 (minus:PSI (reg:PSI SP_REGNO)
55 (match_operand 0 "const_int_operand" "i")))
61 ; Just a comment, for debugging the assembler output.
62 (define_insn "prologue_end"
63 [(unspec_volatile [(const_int 0)] UNS_PROLOGUE_END)]
70 (define_expand "epilogue"
73 "m32c_emit_epilogue(); DONE;"
76 (define_expand "eh_return"
77 [(match_operand:PSI 0 "" "")]
79 "m32c_emit_eh_epilogue(operands[0]); DONE;"
82 (define_insn "eh_epilogue"
84 (unspec_volatile [(match_operand 0 "m32c_r1_operand" "")
85 (match_operand 1 "m32c_r0_operand" "")
88 "jmp.a\t__m32c_eh_return"
91 (define_insn "epilogue_exitd"
92 [(set (reg:PSI SP_REGNO)
94 (set (reg:PSI FB_REGNO)
95 (mem:PSI (reg:PSI SP_REGNO)))
96 (set (reg:PSI SP_REGNO)
97 (plus:PSI (reg:PSI SP_REGNO)
98 (match_operand 0 "const_int_operand" "i")))
105 (define_insn "epilogue_reit"
106 [(set (reg:PSI SP_REGNO)
107 (plus:PSI (reg:PSI SP_REGNO)
108 (match_operand 0 "const_int_operand" "i")))
115 (define_insn "epilogue_rts"
122 (define_insn "epilogue_start"
123 [(unspec_volatile [(const_int 0)] UNS_EPILOGUE_START)]
125 "; start of epilogue"
129 ; These are used by the prologue/epilogue code.
132 [(unspec [(match_operand 0 "const_int_operand" "i")] UNS_PUSHM)]
137 [(unspec [(match_operand 0 "const_int_operand" "i")] UNS_POPM)]