]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/m32c/int.c
update copyright year range in GDB files
[thirdparty/binutils-gdb.git] / sim / m32c / int.c
CommitLineData
d45a4bef
JB
1/* int.c --- M32C interrupt handling.
2
61baf725 3Copyright (C) 2005-2017 Free Software Foundation, Inc.
d45a4bef
JB
4Contributed by Red Hat, Inc.
5
6This file is part of the GNU simulators.
7
4744ac1b
JB
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 3 of the License, or
11(at your option) any later version.
d45a4bef 12
4744ac1b
JB
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
d45a4bef
JB
17
18You should have received a copy of the GNU General Public License
4744ac1b 19along with this program. If not, see <http://www.gnu.org/licenses/>. */
d45a4bef
JB
20
21
22#include "int.h"
23#include "cpu.h"
24#include "mem.h"
25
3877a145
DD
26static void
27trigger_interrupt (int addr, int clear_u)
d45a4bef
JB
28{
29 int s = get_reg (sp);
30 int f = get_reg (flags);
31 int p = get_reg (pc);
32
3877a145
DD
33 if (clear_u)
34 set_flags (FLAGBIT_U, 0);
35 set_flags (FLAGBIT_I | FLAGBIT_D, 0);
36
d45a4bef
JB
37 if (A16)
38 {
39 s -= 4;
40 put_reg (sp, s);
41 mem_put_hi (s, p);
42 mem_put_qi (s + 2, f);
43 mem_put_qi (s + 3, ((f >> 4) & 0x0f) | (p >> 16));
44 }
45 else
46 {
47 s -= 6;
48 put_reg (sp, s);
49 mem_put_si (s, p);
50 mem_put_hi (s + 4, f);
51 }
52 put_reg (pc, mem_get_psi (addr));
3877a145
DD
53}
54
55void
56trigger_fixed_interrupt (int addr)
57{
58 trigger_interrupt (addr, 1);
d45a4bef
JB
59}
60
61void
62trigger_based_interrupt (int vector)
63{
64 int addr = get_reg (intb) + vector * 4;
3877a145
DD
65 trigger_interrupt (addr, vector <= 31);
66}
67
68void
69trigger_peripheral_interrupt (int vector, int icaddr)
70{
71 unsigned char old_ic = mem_get_qi (icaddr);
72 int addr = get_reg (intb) + vector * 4;
73 trigger_interrupt (addr, 1);
74 put_reg (flags, (get_reg (flags) & 0x8fff) | ((old_ic & 7) << 12));
bec7fb47 75 mem_put_qi (icaddr, old_ic & ~ 0x08);
d45a4bef 76}