1 # Simulator main loop for m32rx. -*- C -*-
2 # Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
4 # This file is part of the GNU Simulators.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with this program; if not, write to the Free Software Foundation, Inc.,
18 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 # /bin/sh mainloop.in init|support|{full,fast}-{extract,exec}-{scache,noscache}
23 # ??? After a few more ports are done, revisit.
24 # Will eventually need to machine generate a lot of this.
40 ARGBUF abufs[MAX_PARALLEL_INSNS];
41 PAREXEC pbufs[MAX_PARALLEL_INSNS];
46 xfull-extract-* | xfast-extract-*)
50 PCADDR pc = CPU (h_pc);
52 /* ??? This code isn't very fast. Let's get it working first. */
56 USI insn = GETIMEMUHI (current_cpu, pc);
58 d1 = m32rx_decode (current_cpu, pc, insn);
61 abufs[0].addr = pc; /* FIXME: wip */
66 USI insn = GETIMEMUSI (current_cpu, pc);
69 d1 = m32rx_decode (current_cpu, pc, insn >> 16);
72 abufs[0].addr = pc; /* FIXME: wip */
79 d1 = m32rx_decode (current_cpu, pc, insn >> 16);
80 abufs[0].insn = insn >> 16;
82 abufs[0].addr = pc; /* FIXME: wip */
83 d2 = m32rx_decode (current_cpu, pc + 2, insn & 0x7fff);
84 abufs[1].insn = insn & 0x7fff;
86 abufs[1].addr = pc + 2; /* FIXME: wip */
91 d1 = m32rx_decode (current_cpu, pc, insn >> 16);
92 abufs[0].insn = insn >> 16;
94 abufs[0].addr = pc; /* FIXME: wip */
101 int icount2 = icount;
102 USI insn = abufs[0].insn;
103 const IDESC *decode = d1;
104 /* decode, par_exec, and insn are refered to by readx.c. */
105 PAREXEC *par_exec = &pbufs[0];
108 #define DEFINE_SWITCH
112 insn = abufs[1].insn;
115 while (--icount2 != 0);
122 xfull-exec-* | xfast-exec-*)
126 SEM_ARG sem_arg = &abufs[0];
127 PAREXEC *par_exec = &pbufs[0];
131 /* If doing parallel execution, verify insns are in the right pipeline. */
138 m32r_model_init_insn_cycles (current_cpu, 1);
139 TRACE_INSN_INIT (current_cpu, 1);
140 TRACE_INSN (current_cpu, d1->opcode, sem_arg, CPU (h_pc));
141 new_pc = (*d1->sem_full) (current_cpu, sem_arg, par_exec);
142 m32r_model_update_insn_cycles (current_cpu, icount == 1);
143 TRACE_INSN_FINI (current_cpu, icount == 1);
145 /* The result of the semantic fn is one of:
146 - next address, branch only
147 - NEW_PC_SKIP, sc/snc insn
148 - NEW_PC_2, 2 byte non-branch non-sc/snc insn
149 - NEW_PC_4, 4 byte non-branch insn
152 /* The tests are ordered to try to favor the more frequent cases, while
153 keeping the over all costs down. */
154 if (new_pc == NEW_PC_4)
156 else if (icount == 2)
158 /* Note that we only get here if doing parallel execution. */
160 if (new_pc == NEW_PC_SKIP)
162 /* ??? Need generic notion of bypassing an insn for the name of
163 this macro. Annulled? On the otherhand such tracing can go
164 in the sc/snc semantic fn. */
165 ; /*TRACE_INSN_SKIPPED (current_cpu);*/
174 m32r_model_init_insn_cycles (current_cpu, 0);
175 TRACE_INSN_INIT (current_cpu, 0);
176 TRACE_INSN (current_cpu, d2->opcode, sem_arg, CPU (h_pc) + 2);
177 /* pc2 isn't used. It's assigned a value for debugging. */
178 pc2 = (*d2->sem_full) (current_cpu, sem_arg, par_exec);
179 m32r_model_update_insn_cycles (current_cpu, 1);
180 TRACE_INSN_FINI (current_cpu, 1);
182 if (NEW_PC_BRANCH_P (new_pc))
188 /* Update count of parallel insns executed. */
189 PROFILE_COUNT_PARINSNS (current_cpu);
191 else if (NEW_PC_BRANCH_P (new_pc))
201 echo "Invalid argument to mainloop.in: $1" >&2