]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/cr16/interp.c
Power10 bignum operands
[thirdparty/binutils-gdb.git] / sim / cr16 / interp.c
CommitLineData
fee8ec00 1/* Simulation code for the CR16 processor.
3666a048 2 Copyright (C) 2008-2021 Free Software Foundation, Inc.
fee8ec00
SR
3 Contributed by M Ranga Swami Reddy <MR.Swami.Reddy@nsc.com>
4
5 This file is part of GDB, the GNU debugger.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
dc3cf14f 9 the Free Software Foundation; either version 3, or (at your option)
fee8ec00
SR
10 any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
052d9a54
SR
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
fee8ec00 19
26687999 20#include "config.h"
5aedb83b 21#include <inttypes.h>
fee8ec00 22#include <signal.h>
26687999
MF
23#include <stdlib.h>
24#include <string.h>
fee8ec00
SR
25#include "bfd.h"
26#include "gdb/callback.h"
27#include "gdb/remote-sim.h"
28
247ac9ee
MF
29#include "sim-main.h"
30#include "sim-options.h"
31
fee8ec00
SR
32#include "gdb/sim-cr16.h"
33#include "gdb/signals.h"
34#include "opcode/cr16.h"
35
7eb99e5e
MF
36struct _state State;
37
fee8ec00
SR
38int cr16_debug;
39
fee8ec00
SR
40uint32 OP[4];
41uint32 sign_flag;
42
267b3b8e 43static struct hash_entry *lookup_hash (SIM_DESC, SIM_CPU *, uint64 ins, int size);
bdca5ee4 44static void get_operands (operand_desc *s, uint64 mcode, int isize, int nops);
fee8ec00 45
052d9a54
SR
46#define MAX_HASH 16
47
48struct hash_entry
49{
50 struct hash_entry *next;
51 uint32 opcode;
52 uint32 mask;
53 int format;
54 int size;
55 struct simops *ops;
56};
57
58struct hash_entry hash_table[MAX_HASH+1];
59
60INLINE static long
61hash(unsigned long long insn, int format)
62{
63 unsigned int i = 4, tmp;
64 if (format)
65 {
66 while ((insn >> i) != 0) i +=4;
67
68 return ((insn >> (i-4)) & 0xf); /* Use last 4 bits as hask key. */
69 }
70 return ((insn & 0xF)); /* Use last 4 bits as hask key. */
71}
72
73
74INLINE static struct hash_entry *
267b3b8e 75lookup_hash (SIM_DESC sd, SIM_CPU *cpu, uint64 ins, int size)
052d9a54
SR
76{
77 uint32 mask;
78 struct hash_entry *h;
79
80 h = &hash_table[hash(ins,1)];
81
82
83 mask = (((1 << (32 - h->mask)) -1) << h->mask);
84
85 /* Adjuest mask for branch with 2 word instructions. */
86 if ((h->ops->mnimonic != NULL) &&
87 ((streq(h->ops->mnimonic,"b") && h->size == 2)))
88 mask = 0xff0f0000;
89
90
91 while ((ins & mask) != (BIN(h->opcode, h->mask)))
92 {
93 if (h->next == NULL)
0ef7f981 94 sim_engine_halt (sd, cpu, NULL, PC, sim_stopped, SIM_SIGILL);
052d9a54
SR
95 h = h->next;
96
97 mask = (((1 << (32 - h->mask)) -1) << h->mask);
98 /* Adjuest mask for branch with 2 word instructions. */
99 if ((streq(h->ops->mnimonic,"b")) && h->size == 2)
100 mask = 0xff0f0000;
101
102 }
103 return (h);
104}
fee8ec00
SR
105
106INLINE static void
052d9a54 107get_operands (operand_desc *s, uint64 ins, int isize, int nops)
fee8ec00
SR
108{
109 uint32 i, opn = 0, start_bit = 0, op_type = 0;
110 int32 op_size = 0, mask = 0;
111
112 if (isize == 1) /* Trunkcate the extra 16 bits of INS. */
113 ins = ins >> 16;
114
052d9a54 115 for (i=0; i < 4; ++i,++opn)
fee8ec00 116 {
052d9a54 117 if (s[opn].op_type == dummy) break;
fee8ec00 118
052d9a54 119 op_type = s[opn].op_type;
fee8ec00
SR
120 start_bit = s[opn].shift;
121 op_size = cr16_optab[op_type].bit_size;
122
123 switch (op_type)
052d9a54 124 {
fee8ec00 125 case imm3: case imm4: case imm5: case imm6:
052d9a54
SR
126 {
127 if (isize == 1)
128 OP[i] = ((ins >> 4) & ((1 << op_size) -1));
fee8ec00 129 else
052d9a54
SR
130 OP[i] = ((ins >> (32 - start_bit)) & ((1 << op_size) -1));
131
132 if (OP[i] & ((long)1 << (op_size -1)))
133 {
134 sign_flag = 1;
135 OP[i] = ~(OP[i]) + 1;
136 }
137 OP[i] = (unsigned long int)(OP[i] & (((long)1 << op_size) -1));
fee8ec00 138 }
052d9a54 139 break;
fee8ec00
SR
140
141 case uimm3: case uimm3_1: case uimm4_1:
052d9a54
SR
142 switch (isize)
143 {
144 case 1:
145 OP[i] = ((ins >> 4) & ((1 << op_size) -1)); break;
146 case 2:
147 OP[i] = ((ins >> (32 - start_bit)) & ((1 << op_size) -1));break;
148 default: /* for case 3. */
149 OP[i] = ((ins >> (16 + start_bit)) & ((1 << op_size) -1)); break;
150 break;
151 }
152 break;
fee8ec00
SR
153
154 case uimm4:
052d9a54
SR
155 switch (isize)
156 {
157 case 1:
158 if (start_bit == 20)
159 OP[i] = ((ins >> 4) & ((1 << op_size) -1));
160 else
161 OP[i] = (ins & ((1 << op_size) -1));
162 break;
163 case 2:
164 OP[i] = ((ins >> start_bit) & ((1 << op_size) -1));
165 break;
166 case 3:
167 OP[i] = ((ins >> (start_bit + 16)) & ((1 << op_size) -1));
168 break;
169 default:
170 OP[i] = ((ins >> start_bit) & ((1 << op_size) -1));
171 break;
172 }
173 break;
fee8ec00
SR
174
175 case imm16: case uimm16:
176 OP[i] = ins & 0xFFFF;
052d9a54 177 break;
fee8ec00
SR
178
179 case uimm20: case imm20:
052d9a54
SR
180 OP[i] = ins & (((long)1 << op_size) - 1);
181 break;
fee8ec00
SR
182
183 case imm32: case uimm32:
184 OP[i] = ins & 0xFFFFFFFF;
052d9a54 185 break;
fee8ec00 186
052d9a54 187 case uimm5: break; /*NOT USED. */
fee8ec00
SR
188 OP[i] = ins & ((1 << op_size) - 1); break;
189
190 case disps5:
191 OP[i] = (ins >> 4) & ((1 << 4) - 1);
192 OP[i] = (OP[i] * 2) + 2;
052d9a54
SR
193 if (OP[i] & ((long)1 << 5))
194 {
195 sign_flag = 1;
196 OP[i] = ~(OP[i]) + 1;
197 OP[i] = (unsigned long int)(OP[i] & 0x1F);
198 }
199 break;
200
201 case dispe9:
202 OP[i] = ((((ins >> 8) & 0xf) << 4) | (ins & 0xf));
203 OP[i] <<= 1;
204 if (OP[i] & ((long)1 << 8))
205 {
206 sign_flag = 1;
207 OP[i] = ~(OP[i]) + 1;
208 OP[i] = (unsigned long int)(OP[i] & 0xFF);
209 }
210 break;
211
212 case disps17:
213 OP[i] = (ins & 0xFFFF);
214 if (OP[i] & 1)
215 {
216 OP[i] = (OP[i] & 0xFFFE);
217 sign_flag = 1;
218 OP[i] = ~(OP[i]) + 1;
219 OP[i] = (unsigned long int)(OP[i] & 0xFFFF);
fee8ec00 220 }
052d9a54
SR
221 break;
222
223 case disps25:
224 if (isize == 2)
225 OP[i] = (ins & 0xFFFFFF);
226 else
227 OP[i] = (ins & 0xFFFF) | (((ins >> 24) & 0xf) << 16) |
228 (((ins >> 16) & 0xf) << 20);
229
230 if (OP[i] & 1)
231 {
232 OP[i] = (OP[i] & 0xFFFFFE);
233 sign_flag = 1;
234 OP[i] = ~(OP[i]) + 1;
235 OP[i] = (unsigned long int)(OP[i] & 0xFFFFFF);
fee8ec00 236 }
052d9a54 237 break;
fee8ec00
SR
238
239 case abs20:
052d9a54 240 if (isize == 3)
fee8ec00 241 OP[i] = (ins) & 0xFFFFF;
052d9a54 242 else
fee8ec00 243 OP[i] = (ins >> start_bit) & 0xFFFFF;
052d9a54 244 break;
fee8ec00 245 case abs24:
052d9a54
SR
246 if (isize == 3)
247 OP[i] = ((ins & 0xFFFF) | (((ins >> 16) & 0xf) << 20)
248 | (((ins >> 24) & 0xf) << 16));
249 else
250 OP[i] = (ins >> 16) & 0xFFFFFF;
251 break;
fee8ec00
SR
252
253 case rra:
254 case rbase: break; /* NOT USED. */
255 case rbase_disps20: case rbase_dispe20:
256 case rpbase_disps20: case rpindex_disps20:
052d9a54
SR
257 OP[i] = ((((ins >> 24)&0xf) << 16)|((ins) & 0xFFFF));
258 OP[++i] = (ins >> 16) & 0xF; /* get 4 bit for reg. */
259 break;
fee8ec00 260 case rpbase_disps0:
052d9a54
SR
261 OP[i] = 0; /* 4 bit disp const. */
262 OP[++i] = (ins) & 0xF; /* get 4 bit for reg. */
263 break;
fee8ec00 264 case rpbase_dispe4:
052d9a54
SR
265 OP[i] = ((ins >> 8) & 0xF) * 2; /* 4 bit disp const. */
266 OP[++i] = (ins) & 0xF; /* get 4 bit for reg. */
267 break;
fee8ec00 268 case rpbase_disps4:
052d9a54
SR
269 OP[i] = ((ins >> 8) & 0xF); /* 4 bit disp const. */
270 OP[++i] = (ins) & 0xF; /* get 4 bit for reg. */
271 break;
fee8ec00 272 case rpbase_disps16:
052d9a54
SR
273 OP[i] = (ins) & 0xFFFF;
274 OP[++i] = (ins >> 16) & 0xF; /* get 4 bit for reg. */
275 break;
fee8ec00 276 case rpindex_disps0:
052d9a54
SR
277 OP[i] = 0;
278 OP[++i] = (ins >> 4) & 0xF; /* get 4 bit for reg. */
279 OP[++i] = (ins >> 8) & 0x1; /* get 1 bit for index-reg. */
280 break;
fee8ec00 281 case rpindex_disps14:
052d9a54
SR
282 OP[i] = (ins) & 0x3FFF;
283 OP[++i] = (ins >> 14) & 0x1; /* get 1 bit for index-reg. */
284 OP[++i] = (ins >> 16) & 0xF; /* get 4 bit for reg. */
fee8ec00
SR
285 case rindex7_abs20:
286 case rindex8_abs20:
052d9a54
SR
287 OP[i] = (ins) & 0xFFFFF;
288 OP[++i] = (ins >> 24) & 0x1; /* get 1 bit for index-reg. */
289 OP[++i] = (ins >> 20) & 0xF; /* get 4 bit for reg. */
290 break;
fee8ec00 291 case regr: case regp: case pregr: case pregrp:
052d9a54
SR
292 switch(isize)
293 {
294 case 1:
295 if (start_bit == 20) OP[i] = (ins >> 4) & 0xF;
296 else if (start_bit == 16) OP[i] = ins & 0xF;
297 break;
298 case 2: OP[i] = (ins >> start_bit) & 0xF; break;
299 case 3: OP[i] = (ins >> (start_bit + 16)) & 0xF; break;
300 }
301 break;
fee8ec00 302 case cc:
052d9a54
SR
303 {
304 if (isize == 1) OP[i] = (ins >> 4) & 0xF;
305 else if (isize == 2) OP[i] = (ins >> start_bit) & 0xF;
306 else OP[i] = (ins >> (start_bit + 16)) & 0xF;
307 break;
308 }
309 default: break;
310 }
fee8ec00 311
052d9a54 312 /* For ESC on uimm4_1 operand. */
fee8ec00 313 if (op_type == uimm4_1)
052d9a54
SR
314 if (OP[i] == 9)
315 OP[i] = -1;
316
317 /* For increment by 1. */
318 if ((op_type == pregr) || (op_type == pregrp))
319 OP[i] += 1;
fee8ec00
SR
320 }
321 /* FIXME: for tracing, update values that need to be updated each
322 instruction decode cycle */
fee8ec00 323 State.trace.psw = PSR;
fee8ec00
SR
324}
325
052d9a54 326static int
267b3b8e 327do_run (SIM_DESC sd, SIM_CPU *cpu, uint64 mcode)
fee8ec00 328{
052d9a54 329 struct hash_entry *h;
0ef7f981 330
fee8ec00
SR
331#ifdef DEBUG
332 if ((cr16_debug & DEBUG_INSTRUCTION) != 0)
9db36cf8 333 sim_io_printf (sd, "do_long 0x%x\n", mcode);
fee8ec00 334#endif
267b3b8e
MF
335
336 h = lookup_hash (sd, cpu, mcode, 1);
052d9a54 337
5aedb83b
MF
338 if ((h == NULL) || (h->opcode == 0))
339 return 0;
052d9a54 340
761e171a
MF
341 if (h->size == 3)
342 mcode = (mcode << 16) | RW (PC + 4);
052d9a54
SR
343
344 /* Re-set OP list. */
fee8ec00
SR
345 OP[0] = OP[1] = OP[2] = OP[3] = sign_flag = 0;
346
052d9a54
SR
347 /* for push/pop/pushrtn with RA instructions. */
348 if ((h->format & REG_LIST) && (mcode & 0x800000))
349 OP[2] = 1; /* Set 1 for RA operand. */
fee8ec00 350
052d9a54
SR
351 /* numops == 0 means, no operands. */
352 if (((h->ops) != NULL) && (((h->ops)->numops) != 0))
353 get_operands ((h->ops)->operands, mcode, h->size, (h->ops)->numops);
fee8ec00 354
052d9a54
SR
355 //State.ins_type = h->flags;
356
267b3b8e 357 (h->ops->func) (sd, cpu);
052d9a54
SR
358
359 return h->size;
fee8ec00
SR
360}
361
27b97b40
MF
362static sim_cia
363cr16_pc_get (sim_cpu *cpu)
364{
365 return PC;
366}
367
368static void
369cr16_pc_set (sim_cpu *cpu, sim_cia pc)
370{
267b3b8e 371 SIM_DESC sd = CPU_STATE (cpu);
27b97b40
MF
372 SET_PC (pc);
373}
374
247ac9ee
MF
375static void
376free_state (SIM_DESC sd)
377{
378 if (STATE_MODULES (sd) != NULL)
379 sim_module_uninstall (sd);
380 sim_cpu_free_all (sd);
381 sim_state_free (sd);
382}
383
c2270cd8
MF
384static int cr16_reg_fetch (SIM_CPU *, int, unsigned char *, int);
385static int cr16_reg_store (SIM_CPU *, int, unsigned char *, int);
386
fee8ec00 387SIM_DESC
2e3d4f4d
MF
388sim_open (SIM_OPEN_KIND kind, struct host_callback_struct *cb,
389 struct bfd *abfd, char * const *argv)
fee8ec00
SR
390{
391 struct simops *s;
052d9a54 392 struct hash_entry *h;
fee8ec00
SR
393 static int init_p = 0;
394 char **p;
247ac9ee
MF
395 int i;
396 SIM_DESC sd = sim_state_alloc (kind, cb);
397 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
398
399 /* The cpu data is kept in a separately allocated chunk of memory. */
400 if (sim_cpu_alloc_all (sd, 1, /*cgen_cpu_max_extra_bytes ()*/0) != SIM_RC_OK)
401 {
402 free_state (sd);
403 return 0;
404 }
405
406 if (sim_pre_argv_init (sd, argv[0]) != SIM_RC_OK)
407 {
408 free_state (sd);
409 return 0;
410 }
411
77cf2ef5 412 /* The parser will print an error message for us, so we silently return. */
247ac9ee
MF
413 if (sim_parse_args (sd, argv) != SIM_RC_OK)
414 {
415 free_state (sd);
416 return 0;
417 }
418
419 /* Check for/establish the a reference program image. */
420 if (sim_analyze_program (sd,
421 (STATE_PROG_ARGV (sd) != NULL
422 ? *STATE_PROG_ARGV (sd)
423 : NULL), abfd) != SIM_RC_OK)
424 {
425 free_state (sd);
426 return 0;
427 }
428
429 /* Configure/verify the target byte order and other runtime
430 configuration options. */
431 if (sim_config (sd) != SIM_RC_OK)
432 {
433 sim_module_uninstall (sd);
434 return 0;
435 }
436
437 if (sim_post_argv_init (sd) != SIM_RC_OK)
438 {
439 /* Uninstall the modules to avoid memory leaks,
440 file descriptor leaks, etc. */
441 sim_module_uninstall (sd);
442 return 0;
443 }
fee8ec00 444
27b97b40
MF
445 /* CPU specific initialization. */
446 for (i = 0; i < MAX_NR_PROCESSORS; ++i)
447 {
448 SIM_CPU *cpu = STATE_CPU (sd, i);
449
c2270cd8
MF
450 CPU_REG_FETCH (cpu) = cr16_reg_fetch;
451 CPU_REG_STORE (cpu) = cr16_reg_store;
27b97b40
MF
452 CPU_PC_FETCH (cpu) = cr16_pc_get;
453 CPU_PC_STORE (cpu) = cr16_pc_set;
454 }
455
761e171a
MF
456 /* The CR16 has an interrupt controller at 0xFC00, but we don't currently
457 handle that. Revisit if anyone ever implements operating mode. */
458 /* cr16 memory: There are three separate cr16 memory regions IMEM,
459 UMEM and DMEM. The IMEM and DMEM are further broken down into
460 blocks (very like VM pages). This might not match the hardware,
461 but it matches what the toolchain currently expects. Ugh. */
462 sim_do_commandf (sd, "memory-size %#x", 20 * 1024 * 1024);
463
052d9a54
SR
464 /* put all the opcodes in the hash table. */
465 if (!init_p++)
466 {
467 for (s = Simops; s->func; s++)
468 {
469 switch(32 - s->mask)
470 {
471 case 0x4:
472 h = &hash_table[hash(s->opcode, 0)];
473 break;
474
475 case 0x7:
476 if (((s->opcode << 1) >> 4) != 0)
477 h = &hash_table[hash((s->opcode << 1) >> 4, 0)];
478 else
479 h = &hash_table[hash((s->opcode << 1), 0)];
480 break;
481
482 case 0x8:
483 if ((s->opcode >> 4) != 0)
484 h = &hash_table[hash(s->opcode >> 4, 0)];
485 else
486 h = &hash_table[hash(s->opcode, 0)];
487 break;
488
489 case 0x9:
490 if (((s->opcode >> 1) >> 4) != 0)
491 h = &hash_table[hash((s->opcode >>1) >> 4, 0)];
492 else
493 h = &hash_table[hash((s->opcode >> 1), 0)];
494 break;
495
496 case 0xa:
497 if ((s->opcode >> 8) != 0)
498 h = &hash_table[hash(s->opcode >> 8, 0)];
499 else if ((s->opcode >> 4) != 0)
500 h = &hash_table[hash(s->opcode >> 4, 0)];
501 else
502 h = &hash_table[hash(s->opcode, 0)];
503 break;
504
505 case 0xc:
506 if ((s->opcode >> 8) != 0)
507 h = &hash_table[hash(s->opcode >> 8, 0)];
508 else if ((s->opcode >> 4) != 0)
509 h = &hash_table[hash(s->opcode >> 4, 0)];
510 else
511 h = &hash_table[hash(s->opcode, 0)];
512 break;
513
514 case 0xd:
515 if (((s->opcode >> 1) >> 8) != 0)
516 h = &hash_table[hash((s->opcode >>1) >> 8, 0)];
517 else if (((s->opcode >> 1) >> 4) != 0)
518 h = &hash_table[hash((s->opcode >>1) >> 4, 0)];
519 else
520 h = &hash_table[hash((s->opcode >>1), 0)];
521 break;
522
523 case 0x10:
524 if ((s->opcode >> 0xc) != 0)
525 h = &hash_table[hash(s->opcode >> 12, 0)];
526 else if ((s->opcode >> 8) != 0)
527 h = &hash_table[hash(s->opcode >> 8, 0)];
528 else if ((s->opcode >> 4) != 0)
529 h = &hash_table[hash(s->opcode >> 4, 0)];
530 else
531 h = &hash_table[hash(s->opcode, 0)];
532 break;
533
534 case 0x14:
535 if ((s->opcode >> 16) != 0)
536 h = &hash_table[hash(s->opcode >> 16, 0)];
537 else if ((s->opcode >> 12) != 0)
538 h = &hash_table[hash(s->opcode >> 12, 0)];
539 else if ((s->opcode >> 8) != 0)
540 h = &hash_table[hash(s->opcode >> 8, 0)];
541 else if ((s->opcode >> 4) != 0)
542 h = &hash_table[hash(s->opcode >> 4, 0)];
543 else
544 h = &hash_table[hash(s->opcode, 0)];
545 break;
546 default:
547 break;
548 }
549
550 /* go to the last entry in the chain. */
551 while (h->next)
552 h = h->next;
553
554 if (h->ops)
555 {
556 h->next = (struct hash_entry *) calloc(1,sizeof(struct hash_entry));
557 if (!h->next)
558 perror ("malloc failure");
559
560 h = h->next;
561 }
562 h->ops = s;
563 h->mask = s->mask;
564 h->opcode = s->opcode;
565 h->format = s->format;
566 h->size = s->size;
567 }
568 }
569
247ac9ee 570 return sd;
fee8ec00
SR
571}
572
0ef7f981
MF
573static void
574step_once (SIM_DESC sd, SIM_CPU *cpu)
fee8ec00 575{
0ef7f981
MF
576 uint32 curr_ins_size = 0;
577 uint64 mcode = RLW (PC);
fee8ec00 578
0ef7f981
MF
579 State.pc_changed = 0;
580
581 curr_ins_size = do_run (sd, cpu, mcode);
582
583#if CR16_DEBUG
9db36cf8 584 sim_io_printf (sd, "INS: PC=0x%X, mcode=0x%X\n", PC, mcode);
0ef7f981
MF
585#endif
586
587 if (curr_ins_size == 0)
588 sim_engine_halt (sd, cpu, NULL, PC, sim_exited, GPR (2));
589 else if (!State.pc_changed)
590 SET_PC (PC + (curr_ins_size * 2)); /* For word instructions. */
591
592#if 0
593 /* Check for a breakpoint trap on this instruction. This
594 overrides any pending branches or loops */
595 if (PSR_DB && PC == DBS)
596 {
597 SET_BPC (PC);
598 SET_BPSR (PSR);
599 SET_PC (SDBT_VECTOR_START);
600 }
601#endif
602
603 /* Writeback all the DATA / PC changes */
604 SLOT_FLUSH ();
605}
fee8ec00 606
fee8ec00 607void
0ef7f981
MF
608sim_engine_run (SIM_DESC sd,
609 int next_cpu_nr, /* ignore */
610 int nr_cpus, /* ignore */
611 int siggnal)
fee8ec00 612{
0ef7f981 613 sim_cpu *cpu;
fee8ec00 614
0ef7f981 615 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
fee8ec00 616
0ef7f981 617 cpu = STATE_CPU (sd, 0);
fee8ec00
SR
618
619 switch (siggnal)
620 {
621 case 0:
622 break;
0ef7f981
MF
623 case GDB_SIGNAL_BUS:
624 case GDB_SIGNAL_SEGV:
fee8ec00
SR
625 SET_PC (PC);
626 SET_PSR (PSR);
627 JMP (AE_VECTOR_START);
628 SLOT_FLUSH ();
629 break;
0ef7f981 630 case GDB_SIGNAL_ILL:
fee8ec00
SR
631 SET_PC (PC);
632 SET_PSR (PSR);
633 SET_HW_PSR ((PSR & (PSR_C_BIT)));
634 JMP (RIE_VECTOR_START);
635 SLOT_FLUSH ();
636 break;
637 default:
638 /* just ignore it */
639 break;
640 }
641
0ef7f981 642 while (1)
fee8ec00 643 {
0ef7f981
MF
644 step_once (sd, cpu);
645 if (sim_events_tick (sd))
646 sim_events_process (sd);
fee8ec00 647 }
fee8ec00
SR
648}
649
fee8ec00 650SIM_RC
2e3d4f4d
MF
651sim_create_inferior (SIM_DESC sd, struct bfd *abfd,
652 char * const *argv, char * const *env)
fee8ec00
SR
653{
654 bfd_vma start_address;
655
656 /* reset all state information */
761e171a 657 memset (&State, 0, sizeof (State));
fee8ec00
SR
658
659 /* There was a hack here to copy the values of argc and argv into r0
660 and r1. The values were also saved into some high memory that
661 won't be overwritten by the stack (0x7C00). The reason for doing
662 this was to allow the 'run' program to accept arguments. Without
663 the hack, this is not possible anymore. If the simulator is run
664 from the debugger, arguments cannot be passed in, so this makes
665 no difference. */
666
667 /* set PC */
668 if (abfd != NULL)
669 start_address = bfd_get_start_address (abfd);
670 else
671 start_address = 0x0;
672#ifdef DEBUG
673 if (cr16_debug)
9db36cf8 674 sim_io_printf (sd, "sim_create_inferior: PC=0x%lx\n", (long) start_address);
fee8ec00 675#endif
267b3b8e
MF
676 {
677 SIM_CPU *cpu = STATE_CPU (sd, 0);
678 SET_CREG (PC_CR, start_address);
679 }
fee8ec00
SR
680
681 SLOT_FLUSH ();
682 return SIM_RC_OK;
683}
684
c2270cd8
MF
685static uint32
686cr16_extract_unsigned_integer (unsigned char *addr, int len)
687{
688 uint32 retval;
689 unsigned char * p;
690 unsigned char * startaddr = (unsigned char *)addr;
691 unsigned char * endaddr = startaddr + len;
692
693 retval = 0;
694
695 for (p = endaddr; p > startaddr;)
696 retval = (retval << 8) | *--p;
697
698 return retval;
699}
700
701static void
702cr16_store_unsigned_integer (unsigned char *addr, int len, uint32 val)
703{
704 unsigned char *p;
705 unsigned char *startaddr = addr;
706 unsigned char *endaddr = startaddr + len;
707
708 for (p = startaddr; p < endaddr;)
709 {
710 *p++ = val & 0xff;
711 val >>= 8;
712 }
713}
714
715static int
716cr16_reg_fetch (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
fee8ec00
SR
717{
718 int size;
719 switch ((enum sim_cr16_regs) rn)
720 {
721 case SIM_CR16_R0_REGNUM:
722 case SIM_CR16_R1_REGNUM:
723 case SIM_CR16_R2_REGNUM:
724 case SIM_CR16_R3_REGNUM:
725 case SIM_CR16_R4_REGNUM:
726 case SIM_CR16_R5_REGNUM:
727 case SIM_CR16_R6_REGNUM:
728 case SIM_CR16_R7_REGNUM:
729 case SIM_CR16_R8_REGNUM:
730 case SIM_CR16_R9_REGNUM:
731 case SIM_CR16_R10_REGNUM:
732 case SIM_CR16_R11_REGNUM:
c2270cd8 733 cr16_store_unsigned_integer (memory, 2, GPR (rn - SIM_CR16_R0_REGNUM));
fee8ec00
SR
734 size = 2;
735 break;
736 case SIM_CR16_R12_REGNUM:
737 case SIM_CR16_R13_REGNUM:
738 case SIM_CR16_R14_REGNUM:
739 case SIM_CR16_R15_REGNUM:
c2270cd8 740 cr16_store_unsigned_integer (memory, 4, GPR (rn - SIM_CR16_R0_REGNUM));
fee8ec00
SR
741 size = 4;
742 break;
743 case SIM_CR16_PC_REGNUM:
744 case SIM_CR16_ISP_REGNUM:
745 case SIM_CR16_USP_REGNUM:
746 case SIM_CR16_INTBASE_REGNUM:
747 case SIM_CR16_PSR_REGNUM:
748 case SIM_CR16_CFG_REGNUM:
749 case SIM_CR16_DBS_REGNUM:
750 case SIM_CR16_DCR_REGNUM:
751 case SIM_CR16_DSR_REGNUM:
752 case SIM_CR16_CAR0_REGNUM:
753 case SIM_CR16_CAR1_REGNUM:
c2270cd8 754 cr16_store_unsigned_integer (memory, 4, CREG (rn - SIM_CR16_PC_REGNUM));
fee8ec00
SR
755 size = 4;
756 break;
757 default:
758 size = 0;
759 break;
760 }
761 return size;
762}
c2270cd8
MF
763
764static int
765cr16_reg_store (SIM_CPU *cpu, int rn, unsigned char *memory, int length)
fee8ec00 766{
267b3b8e 767 SIM_DESC sd = CPU_STATE (cpu);
fee8ec00
SR
768 int size;
769 switch ((enum sim_cr16_regs) rn)
770 {
771 case SIM_CR16_R0_REGNUM:
772 case SIM_CR16_R1_REGNUM:
773 case SIM_CR16_R2_REGNUM:
774 case SIM_CR16_R3_REGNUM:
775 case SIM_CR16_R4_REGNUM:
776 case SIM_CR16_R5_REGNUM:
777 case SIM_CR16_R6_REGNUM:
778 case SIM_CR16_R7_REGNUM:
779 case SIM_CR16_R8_REGNUM:
780 case SIM_CR16_R9_REGNUM:
781 case SIM_CR16_R10_REGNUM:
782 case SIM_CR16_R11_REGNUM:
c2270cd8 783 SET_GPR (rn - SIM_CR16_R0_REGNUM, cr16_extract_unsigned_integer (memory, 2));
fee8ec00
SR
784 size = 2;
785 break;
786 case SIM_CR16_R12_REGNUM:
787 case SIM_CR16_R13_REGNUM:
788 case SIM_CR16_R14_REGNUM:
789 case SIM_CR16_R15_REGNUM:
c2270cd8 790 SET_GPR32 (rn - SIM_CR16_R0_REGNUM, cr16_extract_unsigned_integer (memory, 2));
fee8ec00
SR
791 size = 4;
792 break;
793 case SIM_CR16_PC_REGNUM:
794 case SIM_CR16_ISP_REGNUM:
795 case SIM_CR16_USP_REGNUM:
796 case SIM_CR16_INTBASE_REGNUM:
797 case SIM_CR16_PSR_REGNUM:
798 case SIM_CR16_CFG_REGNUM:
799 case SIM_CR16_DBS_REGNUM:
800 case SIM_CR16_DCR_REGNUM:
801 case SIM_CR16_DSR_REGNUM:
802 case SIM_CR16_CAR0_REGNUM:
803 case SIM_CR16_CAR1_REGNUM:
c2270cd8 804 SET_CREG (rn - SIM_CR16_PC_REGNUM, cr16_extract_unsigned_integer (memory, 4));
fee8ec00
SR
805 size = 4;
806 break;
807 default:
808 size = 0;
809 break;
810 }
811 SLOT_FLUSH ();
812 return size;
813}