]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/mips/sim-main.h
42d8db37c4bfa19d76ed60664a110ebe5646ebe7
[thirdparty/binutils-gdb.git] / sim / mips / sim-main.h
1 /* MIPS Simulator definition.
2 Copyright (C) 1997-2015 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
4
5 This file is part of the MIPS sim.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) 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
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/>. */
19
20 #ifndef SIM_MAIN_H
21 #define SIM_MAIN_H
22
23 /* hobble some common features for moment */
24 #define WITH_WATCHPOINTS 1
25 #define WITH_MODULO_MEMORY 1
26
27
28 #define SIM_CORE_SIGNAL(SD,CPU,CIA,MAP,NR_BYTES,ADDR,TRANSFER,ERROR) \
29 mips_core_signal ((SD), (CPU), (CIA), (MAP), (NR_BYTES), (ADDR), (TRANSFER), (ERROR))
30
31 #include "sim-basics.h"
32 #include "sim-base.h"
33 #include "bfd.h"
34
35 /* Deprecated macros and types for manipulating 64bit values. Use
36 ../common/sim-bits.h and ../common/sim-endian.h macros instead. */
37
38 typedef signed64 word64;
39 typedef unsigned64 uword64;
40
41 #define WORD64LO(t) (unsigned int)((t)&0xFFFFFFFF)
42 #define WORD64HI(t) (unsigned int)(((uword64)(t))>>32)
43 #define SET64LO(t) (((uword64)(t))&0xFFFFFFFF)
44 #define SET64HI(t) (((uword64)(t))<<32)
45 #define WORD64(h,l) ((word64)((SET64HI(h)|SET64LO(l))))
46 #define UWORD64(h,l) (SET64HI(h)|SET64LO(l))
47
48 /* Check if a value will fit within a halfword: */
49 #define NOTHALFWORDVALUE(v) ((((((uword64)(v)>>16) == 0) && !((v) & ((unsigned)1 << 15))) || (((((uword64)(v)>>32) == 0xFFFFFFFF) && ((((uword64)(v)>>16) & 0xFFFF) == 0xFFFF)) && ((v) & ((unsigned)1 << 15)))) ? (1 == 0) : (1 == 1))
50
51
52 typedef enum {
53 cp0_dmfc0,
54 cp0_dmtc0,
55 cp0_mfc0,
56 cp0_mtc0,
57 cp0_tlbr,
58 cp0_tlbwi,
59 cp0_tlbwr,
60 cp0_tlbp,
61 cp0_cache,
62 cp0_eret,
63 cp0_deret,
64 cp0_rfe
65 } CP0_operation;
66
67 /* Floating-point operations: */
68
69 #include "sim-fpu.h"
70 #include "cp1.h"
71
72 /* FPU registers must be one of the following types. All other values
73 are reserved (and undefined). */
74 typedef enum {
75 fmt_single = 0,
76 fmt_double = 1,
77 fmt_word = 4,
78 fmt_long = 5,
79 fmt_ps = 6,
80 /* The following are well outside the normal acceptable format
81 range, and are used in the register status vector. */
82 fmt_unknown = 0x10000000,
83 fmt_uninterpreted = 0x20000000,
84 fmt_uninterpreted_32 = 0x40000000,
85 fmt_uninterpreted_64 = 0x80000000U,
86 } FP_formats;
87
88 /* For paired word (pw) operations, the opcode representation is fmt_word,
89 but register transfers (StoreFPR, ValueFPR, etc.) are done as fmt_long. */
90 #define fmt_pw fmt_long
91
92 /* This should be the COC1 value at the start of the preceding
93 instruction: */
94 #define PREVCOC1() ((STATE & simPCOC1) ? 1 : 0)
95
96 #ifdef TARGET_ENABLE_FR
97 /* FIXME: this should be enabled for all targets, but needs testing first. */
98 #define SizeFGR() (((WITH_TARGET_FLOATING_POINT_BITSIZE) == 64) \
99 ? ((SR & status_FR) ? 64 : 32) \
100 : (WITH_TARGET_FLOATING_POINT_BITSIZE))
101 #else
102 #define SizeFGR() (WITH_TARGET_FLOATING_POINT_BITSIZE)
103 #endif
104
105
106
107
108
109 /* HI/LO register accesses */
110
111 /* For some MIPS targets, the HI/LO registers have certain timing
112 restrictions in that, for instance, a read of a HI register must be
113 separated by at least three instructions from a preceeding read.
114
115 The struct below is used to record the last access by each of A MT,
116 MF or other OP instruction to a HI/LO register. See mips.igen for
117 more details. */
118
119 typedef struct _hilo_access {
120 signed64 timestamp;
121 address_word cia;
122 } hilo_access;
123
124 typedef struct _hilo_history {
125 hilo_access mt;
126 hilo_access mf;
127 hilo_access op;
128 } hilo_history;
129
130
131
132
133 /* Integer ALU operations: */
134
135 #include "sim-alu.h"
136
137 #define ALU32_END(ANS) \
138 if (ALU32_HAD_OVERFLOW) \
139 SignalExceptionIntegerOverflow (); \
140 (ANS) = (signed32) ALU32_OVERFLOW_RESULT
141
142
143 #define ALU64_END(ANS) \
144 if (ALU64_HAD_OVERFLOW) \
145 SignalExceptionIntegerOverflow (); \
146 (ANS) = ALU64_OVERFLOW_RESULT;
147
148
149
150
151
152 /* The following is probably not used for MIPS IV onwards: */
153 /* Slots for delayed register updates. For the moment we just have a
154 fixed number of slots (rather than a more generic, dynamic
155 system). This keeps the simulator fast. However, we only allow
156 for the register update to be delayed for a single instruction
157 cycle. */
158 #define PSLOTS (8) /* Maximum number of instruction cycles */
159
160 typedef struct _pending_write_queue {
161 int in;
162 int out;
163 int total;
164 int slot_delay[PSLOTS];
165 int slot_size[PSLOTS];
166 int slot_bit[PSLOTS];
167 void *slot_dest[PSLOTS];
168 unsigned64 slot_value[PSLOTS];
169 } pending_write_queue;
170
171 #ifndef PENDING_TRACE
172 #define PENDING_TRACE 0
173 #endif
174 #define PENDING_IN ((CPU)->pending.in)
175 #define PENDING_OUT ((CPU)->pending.out)
176 #define PENDING_TOTAL ((CPU)->pending.total)
177 #define PENDING_SLOT_SIZE ((CPU)->pending.slot_size)
178 #define PENDING_SLOT_BIT ((CPU)->pending.slot_bit)
179 #define PENDING_SLOT_DELAY ((CPU)->pending.slot_delay)
180 #define PENDING_SLOT_DEST ((CPU)->pending.slot_dest)
181 #define PENDING_SLOT_VALUE ((CPU)->pending.slot_value)
182
183 /* Invalidate the pending write queue, all pending writes are
184 discarded. */
185
186 #define PENDING_INVALIDATE() \
187 memset (&(CPU)->pending, 0, sizeof ((CPU)->pending))
188
189 /* Schedule a write to DEST for N cycles time. For 64 bit
190 destinations, schedule two writes. For floating point registers,
191 the caller should schedule a write to both the dest register and
192 the FPR_STATE register. When BIT is non-negative, only BIT of DEST
193 is updated. */
194
195 #define PENDING_SCHED(DEST,VAL,DELAY,BIT) \
196 do { \
197 if (PENDING_SLOT_DEST[PENDING_IN] != NULL) \
198 sim_engine_abort (SD, CPU, cia, \
199 "PENDING_SCHED - buffer overflow\n"); \
200 if (PENDING_TRACE) \
201 sim_io_eprintf (SD, "PENDING_SCHED - 0x%lx - dest 0x%lx, val 0x%lx, bit %d, size %d, pending_in %d, pending_out %d, pending_total %d\n", \
202 (unsigned long) cia, (unsigned long) &(DEST), \
203 (unsigned long) (VAL), (BIT), (int) sizeof (DEST),\
204 PENDING_IN, PENDING_OUT, PENDING_TOTAL); \
205 PENDING_SLOT_DELAY[PENDING_IN] = (DELAY) + 1; \
206 PENDING_SLOT_DEST[PENDING_IN] = &(DEST); \
207 PENDING_SLOT_VALUE[PENDING_IN] = (VAL); \
208 PENDING_SLOT_SIZE[PENDING_IN] = sizeof (DEST); \
209 PENDING_SLOT_BIT[PENDING_IN] = (BIT); \
210 PENDING_IN = (PENDING_IN + 1) % PSLOTS; \
211 PENDING_TOTAL += 1; \
212 } while (0)
213
214 #define PENDING_WRITE(DEST,VAL,DELAY) PENDING_SCHED(DEST,VAL,DELAY,-1)
215 #define PENDING_BIT(DEST,VAL,DELAY,BIT) PENDING_SCHED(DEST,VAL,DELAY,BIT)
216
217 #define PENDING_TICK() pending_tick (SD, CPU, cia)
218
219 #define PENDING_FLUSH() abort () /* think about this one */
220 #define PENDING_FP() abort () /* think about this one */
221
222 /* For backward compatibility */
223 #define PENDING_FILL(R,VAL) \
224 do { \
225 if ((R) >= FGR_BASE && (R) < FGR_BASE + NR_FGR) \
226 { \
227 PENDING_SCHED(FGR[(R) - FGR_BASE], VAL, 1, -1); \
228 PENDING_SCHED(FPR_STATE[(R) - FGR_BASE], fmt_uninterpreted, 1, -1); \
229 } \
230 else \
231 PENDING_SCHED(GPR[(R)], VAL, 1, -1); \
232 } while (0)
233
234
235 enum float_operation
236 {
237 FLOP_ADD, FLOP_SUB, FLOP_MUL, FLOP_MADD,
238 FLOP_MSUB, FLOP_MAX=10, FLOP_MIN, FLOP_ABS,
239 FLOP_ITOF0=14, FLOP_FTOI0=18, FLOP_NEG=23
240 };
241
242
243 /* The internal representation of an MDMX accumulator.
244 Note that 24 and 48 bit accumulator elements are represented in
245 32 or 64 bits. Since the accumulators are 2's complement with
246 overflow suppressed, high-order bits can be ignored in most contexts. */
247
248 typedef signed32 signed24;
249 typedef signed64 signed48;
250
251 typedef union {
252 signed24 ob[8];
253 signed48 qh[4];
254 } MDMX_accumulator;
255
256
257 /* Conventional system arguments. */
258 #define SIM_STATE sim_cpu *cpu, address_word cia
259 #define SIM_ARGS CPU, cia
260
261 struct _sim_cpu {
262
263
264 /* The following are internal simulator state variables: */
265 address_word dspc; /* delay-slot PC */
266 #define DSPC ((CPU)->dspc)
267
268 #define DELAY_SLOT(TARGET) NIA = delayslot32 (SD_, (TARGET))
269 #define NULLIFY_NEXT_INSTRUCTION() NIA = nullify_next_insn32 (SD_)
270
271
272 /* State of the simulator */
273 unsigned int state;
274 unsigned int dsstate;
275 #define STATE ((CPU)->state)
276 #define DSSTATE ((CPU)->dsstate)
277
278 /* Flags in the "state" variable: */
279 #define simHALTEX (1 << 2) /* 0 = run; 1 = halt on exception */
280 #define simHALTIN (1 << 3) /* 0 = run; 1 = halt on interrupt */
281 #define simTRACE (1 << 8) /* 0 = do nothing; 1 = trace address activity */
282 #define simPCOC0 (1 << 17) /* COC[1] from current */
283 #define simPCOC1 (1 << 18) /* COC[1] from previous */
284 #define simDELAYSLOT (1 << 24) /* 0 = do nothing; 1 = delay slot entry exists */
285 #define simSKIPNEXT (1 << 25) /* 0 = do nothing; 1 = skip instruction */
286 #define simSIGINT (1 << 28) /* 0 = do nothing; 1 = SIGINT has occured */
287 #define simJALDELAYSLOT (1 << 29) /* 1 = in jal delay slot */
288
289 #ifndef ENGINE_ISSUE_PREFIX_HOOK
290 #define ENGINE_ISSUE_PREFIX_HOOK() \
291 { \
292 /* Perform any pending writes */ \
293 PENDING_TICK(); \
294 /* Set previous flag, depending on current: */ \
295 if (STATE & simPCOC0) \
296 STATE |= simPCOC1; \
297 else \
298 STATE &= ~simPCOC1; \
299 /* and update the current value: */ \
300 if (GETFCC(0)) \
301 STATE |= simPCOC0; \
302 else \
303 STATE &= ~simPCOC0; \
304 }
305 #endif /* ENGINE_ISSUE_PREFIX_HOOK */
306
307
308 /* This is nasty, since we have to rely on matching the register
309 numbers used by GDB. Unfortunately, depending on the MIPS target
310 GDB uses different register numbers. We cannot just include the
311 relevant "gdb/tm.h" link, since GDB may not be configured before
312 the sim world, and also the GDB header file requires too much other
313 state. */
314
315 #ifndef TM_MIPS_H
316 #define LAST_EMBED_REGNUM (96)
317 #define NUM_REGS (LAST_EMBED_REGNUM + 1)
318
319 #define FP0_REGNUM 38 /* Floating point register 0 (single float) */
320 #define FCRCS_REGNUM 70 /* FP control/status */
321 #define FCRIR_REGNUM 71 /* FP implementation/revision */
322 #endif
323
324
325 /* To keep this default simulator simple, and fast, we use a direct
326 vector of registers. The internal simulator engine then uses
327 manifests to access the correct slot. */
328
329 unsigned_word registers[LAST_EMBED_REGNUM + 1];
330
331 int register_widths[NUM_REGS];
332 #define REGISTERS ((CPU)->registers)
333
334 #define GPR (&REGISTERS[0])
335 #define GPR_SET(N,VAL) (REGISTERS[(N)] = (VAL))
336
337 #define LO (REGISTERS[33])
338 #define HI (REGISTERS[34])
339 #define PCIDX 37
340 #define PC (REGISTERS[PCIDX])
341 #define CAUSE (REGISTERS[36])
342 #define SRIDX (32)
343 #define SR (REGISTERS[SRIDX]) /* CPU status register */
344 #define FCR0IDX (71)
345 #define FCR0 (REGISTERS[FCR0IDX]) /* really a 32bit register */
346 #define FCR31IDX (70)
347 #define FCR31 (REGISTERS[FCR31IDX]) /* really a 32bit register */
348 #define FCSR (FCR31)
349 #define Debug (REGISTERS[86])
350 #define DEPC (REGISTERS[87])
351 #define EPC (REGISTERS[88])
352 #define ACX (REGISTERS[89])
353
354 #define AC0LOIDX (33) /* Must be the same register as LO */
355 #define AC0HIIDX (34) /* Must be the same register as HI */
356 #define AC1LOIDX (90)
357 #define AC1HIIDX (91)
358 #define AC2LOIDX (92)
359 #define AC2HIIDX (93)
360 #define AC3LOIDX (94)
361 #define AC3HIIDX (95)
362
363 #define DSPLO(N) (REGISTERS[DSPLO_REGNUM[N]])
364 #define DSPHI(N) (REGISTERS[DSPHI_REGNUM[N]])
365
366 #define DSPCRIDX (96) /* DSP control register */
367 #define DSPCR (REGISTERS[DSPCRIDX])
368
369 #define DSPCR_POS_SHIFT (0)
370 #define DSPCR_POS_MASK (0x3f)
371 #define DSPCR_POS_SMASK (DSPCR_POS_MASK << DSPCR_POS_SHIFT)
372
373 #define DSPCR_SCOUNT_SHIFT (7)
374 #define DSPCR_SCOUNT_MASK (0x3f)
375 #define DSPCR_SCOUNT_SMASK (DSPCR_SCOUNT_MASK << DSPCR_SCOUNT_SHIFT)
376
377 #define DSPCR_CARRY_SHIFT (13)
378 #define DSPCR_CARRY_MASK (1)
379 #define DSPCR_CARRY_SMASK (DSPCR_CARRY_MASK << DSPCR_CARRY_SHIFT)
380 #define DSPCR_CARRY (1 << DSPCR_CARRY_SHIFT)
381
382 #define DSPCR_EFI_SHIFT (14)
383 #define DSPCR_EFI_MASK (1)
384 #define DSPCR_EFI_SMASK (DSPCR_EFI_MASK << DSPCR_EFI_SHIFT)
385 #define DSPCR_EFI (1 << DSPCR_EFI_MASK)
386
387 #define DSPCR_OUFLAG_SHIFT (16)
388 #define DSPCR_OUFLAG_MASK (0xff)
389 #define DSPCR_OUFLAG_SMASK (DSPCR_OUFLAG_MASK << DSPCR_OUFLAG_SHIFT)
390 #define DSPCR_OUFLAG4 (1 << (DSPCR_OUFLAG_SHIFT + 4))
391 #define DSPCR_OUFLAG5 (1 << (DSPCR_OUFLAG_SHIFT + 5))
392 #define DSPCR_OUFLAG6 (1 << (DSPCR_OUFLAG_SHIFT + 6))
393 #define DSPCR_OUFLAG7 (1 << (DSPCR_OUFLAG_SHIFT + 7))
394
395 #define DSPCR_CCOND_SHIFT (24)
396 #define DSPCR_CCOND_MASK (0xf)
397 #define DSPCR_CCOND_SMASK (DSPCR_CCOND_MASK << DSPCR_CCOND_SHIFT)
398
399 /* All internal state modified by signal_exception() that may need to be
400 rolled back for passing moment-of-exception image back to gdb. */
401 unsigned_word exc_trigger_registers[LAST_EMBED_REGNUM + 1];
402 unsigned_word exc_suspend_registers[LAST_EMBED_REGNUM + 1];
403 int exc_suspended;
404
405 #define SIM_CPU_EXCEPTION_TRIGGER(SD,CPU,CIA) mips_cpu_exception_trigger(SD,CPU,CIA)
406 #define SIM_CPU_EXCEPTION_SUSPEND(SD,CPU,EXC) mips_cpu_exception_suspend(SD,CPU,EXC)
407 #define SIM_CPU_EXCEPTION_RESUME(SD,CPU,EXC) mips_cpu_exception_resume(SD,CPU,EXC)
408
409 unsigned_word c0_config_reg;
410 #define C0_CONFIG ((CPU)->c0_config_reg)
411
412 /* The following are pseudonyms for standard registers */
413 #define ZERO (REGISTERS[0])
414 #define V0 (REGISTERS[2])
415 #define A0 (REGISTERS[4])
416 #define A1 (REGISTERS[5])
417 #define A2 (REGISTERS[6])
418 #define A3 (REGISTERS[7])
419 #define T8IDX 24
420 #define T8 (REGISTERS[T8IDX])
421 #define SPIDX 29
422 #define SP (REGISTERS[SPIDX])
423 #define RAIDX 31
424 #define RA (REGISTERS[RAIDX])
425
426 /* While space is allocated in the main registers arrray for some of
427 the COP0 registers, that space isn't sufficient. Unknown COP0
428 registers overflow into the array below */
429
430 #define NR_COP0_GPR 32
431 unsigned_word cop0_gpr[NR_COP0_GPR];
432 #define COP0_GPR ((CPU)->cop0_gpr)
433 #define COP0_BADVADDR (COP0_GPR[8])
434
435 /* While space is allocated for the floating point registers in the
436 main registers array, they are stored separatly. This is because
437 their size may not necessarily match the size of either the
438 general-purpose or system specific registers. */
439 #define NR_FGR (32)
440 #define FGR_BASE FP0_REGNUM
441 fp_word fgr[NR_FGR];
442 #define FGR ((CPU)->fgr)
443
444 /* Keep the current format state for each register: */
445 FP_formats fpr_state[32];
446 #define FPR_STATE ((CPU)->fpr_state)
447
448 pending_write_queue pending;
449
450 /* The MDMX accumulator (used only for MDMX ASE). */
451 MDMX_accumulator acc;
452 #define ACC ((CPU)->acc)
453
454 /* LLBIT = Load-Linked bit. A bit of "virtual" state used by atomic
455 read-write instructions. It is set when a linked load occurs. It
456 is tested and cleared by the conditional store. It is cleared
457 (during other CPU operations) when a store to the location would
458 no longer be atomic. In particular, it is cleared by exception
459 return instructions. */
460 int llbit;
461 #define LLBIT ((CPU)->llbit)
462
463
464 /* The HIHISTORY and LOHISTORY timestamps are used to ensure that
465 corruptions caused by using the HI or LO register too close to a
466 following operation is spotted. See mips.igen for more details. */
467
468 hilo_history hi_history;
469 #define HIHISTORY (&(CPU)->hi_history)
470 hilo_history lo_history;
471 #define LOHISTORY (&(CPU)->lo_history)
472
473
474 sim_cpu_base base;
475 };
476
477
478 /* MIPS specific simulator watch config */
479
480 void watch_options_install (SIM_DESC sd);
481
482 struct swatch {
483 sim_event *pc;
484 sim_event *clock;
485 sim_event *cycles;
486 };
487
488
489 /* FIXME: At present much of the simulator is still static */
490 struct sim_state {
491
492 struct swatch watch;
493
494 sim_cpu *cpu[MAX_NR_PROCESSORS];
495
496 /* microMIPS ISA mode. */
497 int isa_mode;
498
499 sim_state_base base;
500 };
501
502
503
504 /* Status information: */
505
506 /* TODO : these should be the bitmasks for these bits within the
507 status register. At the moment the following are VR4300
508 bit-positions: */
509 #define status_KSU_mask (0x18) /* mask for KSU bits */
510 #define status_KSU_shift (3) /* shift for field */
511 #define ksu_kernel (0x0)
512 #define ksu_supervisor (0x1)
513 #define ksu_user (0x2)
514 #define ksu_unknown (0x3)
515
516 #define SR_KSU ((SR & status_KSU_mask) >> status_KSU_shift)
517
518 #define status_IE (1 << 0) /* Interrupt enable */
519 #define status_EIE (1 << 16) /* Enable Interrupt Enable */
520 #define status_EXL (1 << 1) /* Exception level */
521 #define status_RE (1 << 25) /* Reverse Endian in user mode */
522 #define status_FR (1 << 26) /* enables MIPS III additional FP registers */
523 #define status_SR (1 << 20) /* soft reset or NMI */
524 #define status_BEV (1 << 22) /* Location of general exception vectors */
525 #define status_TS (1 << 21) /* TLB shutdown has occurred */
526 #define status_ERL (1 << 2) /* Error level */
527 #define status_IM7 (1 << 15) /* Timer Interrupt Mask */
528 #define status_RP (1 << 27) /* Reduced Power mode */
529
530 /* Specializations for TX39 family */
531 #define status_IEc (1 << 0) /* Interrupt enable (current) */
532 #define status_KUc (1 << 1) /* Kernel/User mode */
533 #define status_IEp (1 << 2) /* Interrupt enable (previous) */
534 #define status_KUp (1 << 3) /* Kernel/User mode */
535 #define status_IEo (1 << 4) /* Interrupt enable (old) */
536 #define status_KUo (1 << 5) /* Kernel/User mode */
537 #define status_IM_mask (0xff) /* Interrupt mask */
538 #define status_IM_shift (8)
539 #define status_NMI (1 << 20) /* NMI */
540 #define status_NMI (1 << 20) /* NMI */
541
542 /* Status bits used by MIPS32/MIPS64. */
543 #define status_UX (1 << 5) /* 64-bit user addrs */
544 #define status_SX (1 << 6) /* 64-bit supervisor addrs */
545 #define status_KX (1 << 7) /* 64-bit kernel addrs */
546 #define status_TS (1 << 21) /* TLB shutdown has occurred */
547 #define status_PX (1 << 23) /* Enable 64 bit operations */
548 #define status_MX (1 << 24) /* Enable MDMX resources */
549 #define status_CU0 (1 << 28) /* Coprocessor 0 usable */
550 #define status_CU1 (1 << 29) /* Coprocessor 1 usable */
551 #define status_CU2 (1 << 30) /* Coprocessor 2 usable */
552 #define status_CU3 (1 << 31) /* Coprocessor 3 usable */
553 /* Bits reserved for implementations: */
554 #define status_SBX (1 << 16) /* Enable SiByte SB-1 extensions. */
555
556 #define cause_BD ((unsigned)1 << 31) /* L1 Exception in branch delay slot */
557 #define cause_BD2 (1 << 30) /* L2 Exception in branch delay slot */
558 #define cause_CE_mask 0x30000000 /* Coprocessor exception */
559 #define cause_CE_shift 28
560 #define cause_EXC2_mask 0x00070000
561 #define cause_EXC2_shift 16
562 #define cause_IP7 (1 << 15) /* Interrupt pending */
563 #define cause_SIOP (1 << 12) /* SIO pending */
564 #define cause_IP3 (1 << 11) /* Int 0 pending */
565 #define cause_IP2 (1 << 10) /* Int 1 pending */
566
567 #define cause_EXC_mask (0x1c) /* Exception code */
568 #define cause_EXC_shift (2)
569
570 #define cause_SW0 (1 << 8) /* Software interrupt 0 */
571 #define cause_SW1 (1 << 9) /* Software interrupt 1 */
572 #define cause_IP_mask (0x3f) /* Interrupt pending field */
573 #define cause_IP_shift (10)
574
575 #define cause_set_EXC(x) CAUSE = (CAUSE & ~cause_EXC_mask) | ((x << cause_EXC_shift) & cause_EXC_mask)
576 #define cause_set_EXC2(x) CAUSE = (CAUSE & ~cause_EXC2_mask) | ((x << cause_EXC2_shift) & cause_EXC2_mask)
577
578
579 /* NOTE: We keep the following status flags as bit values (1 for true,
580 0 for false). This allows them to be used in binary boolean
581 operations without worrying about what exactly the non-zero true
582 value is. */
583
584 /* UserMode */
585 #ifdef SUBTARGET_R3900
586 #define UserMode ((SR & status_KUc) ? 1 : 0)
587 #else
588 #define UserMode ((((SR & status_KSU_mask) >> status_KSU_shift) == ksu_user) ? 1 : 0)
589 #endif /* SUBTARGET_R3900 */
590
591 /* BigEndianMem */
592 /* Hardware configuration. Affects endianness of LoadMemory and
593 StoreMemory and the endianness of Kernel and Supervisor mode
594 execution. The value is 0 for little-endian; 1 for big-endian. */
595 #define BigEndianMem (CURRENT_TARGET_BYTE_ORDER == BIG_ENDIAN)
596 /*(state & simBE) ? 1 : 0)*/
597
598 /* ReverseEndian */
599 /* This mode is selected if in User mode with the RE bit being set in
600 SR (Status Register). It reverses the endianness of load and store
601 instructions. */
602 #define ReverseEndian (((SR & status_RE) && UserMode) ? 1 : 0)
603
604 /* BigEndianCPU */
605 /* The endianness for load and store instructions (0=little;1=big). In
606 User mode this endianness may be switched by setting the state_RE
607 bit in the SR register. Thus, BigEndianCPU may be computed as
608 (BigEndianMem EOR ReverseEndian). */
609 #define BigEndianCPU (BigEndianMem ^ ReverseEndian) /* Already bits */
610
611
612
613 /* Exceptions: */
614
615 /* NOTE: These numbers depend on the processor architecture being
616 simulated: */
617 enum ExceptionCause {
618 Interrupt = 0,
619 TLBModification = 1,
620 TLBLoad = 2,
621 TLBStore = 3,
622 AddressLoad = 4,
623 AddressStore = 5,
624 InstructionFetch = 6,
625 DataReference = 7,
626 SystemCall = 8,
627 BreakPoint = 9,
628 ReservedInstruction = 10,
629 CoProcessorUnusable = 11,
630 IntegerOverflow = 12, /* Arithmetic overflow (IDT monitor raises SIGFPE) */
631 Trap = 13,
632 FPE = 15,
633 DebugBreakPoint = 16, /* Impl. dep. in MIPS32/MIPS64. */
634 MDMX = 22,
635 Watch = 23,
636 MCheck = 24,
637 CacheErr = 30,
638 NMIReset = 31, /* Reserved in MIPS32/MIPS64. */
639
640
641 /* The following exception code is actually private to the simulator
642 world. It is *NOT* a processor feature, and is used to signal
643 run-time errors in the simulator. */
644 SimulatorFault = 0xFFFFFFFF
645 };
646
647 #define TLB_REFILL (0)
648 #define TLB_INVALID (1)
649
650
651 /* The following break instructions are reserved for use by the
652 simulator. The first is used to halt the simulation. The second
653 is used by gdb for break-points. NOTE: Care must be taken, since
654 this value may be used in later revisions of the MIPS ISA. */
655 #define HALT_INSTRUCTION_MASK (0x03FFFFC0)
656
657 #define HALT_INSTRUCTION (0x03ff000d)
658 #define HALT_INSTRUCTION2 (0x0000ffcd)
659
660
661 #define BREAKPOINT_INSTRUCTION (0x0005000d)
662 #define BREAKPOINT_INSTRUCTION2 (0x0000014d)
663
664
665
666 void interrupt_event (SIM_DESC sd, void *data);
667
668 void signal_exception (SIM_DESC sd, sim_cpu *cpu, address_word cia, int exception, ...);
669 #define SignalException(exc,instruction) signal_exception (SD, CPU, cia, (exc), (instruction))
670 #define SignalExceptionInterrupt(level) signal_exception (SD, CPU, cia, Interrupt, level)
671 #define SignalExceptionInstructionFetch() signal_exception (SD, CPU, cia, InstructionFetch)
672 #define SignalExceptionAddressStore() signal_exception (SD, CPU, cia, AddressStore)
673 #define SignalExceptionAddressLoad() signal_exception (SD, CPU, cia, AddressLoad)
674 #define SignalExceptionDataReference() signal_exception (SD, CPU, cia, DataReference)
675 #define SignalExceptionSimulatorFault(buf) signal_exception (SD, CPU, cia, SimulatorFault, buf)
676 #define SignalExceptionFPE() signal_exception (SD, CPU, cia, FPE)
677 #define SignalExceptionIntegerOverflow() signal_exception (SD, CPU, cia, IntegerOverflow)
678 #define SignalExceptionCoProcessorUnusable(cop) signal_exception (SD, CPU, cia, CoProcessorUnusable)
679 #define SignalExceptionNMIReset() signal_exception (SD, CPU, cia, NMIReset)
680 #define SignalExceptionTLBRefillStore() signal_exception (SD, CPU, cia, TLBStore, TLB_REFILL)
681 #define SignalExceptionTLBRefillLoad() signal_exception (SD, CPU, cia, TLBLoad, TLB_REFILL)
682 #define SignalExceptionTLBInvalidStore() signal_exception (SD, CPU, cia, TLBStore, TLB_INVALID)
683 #define SignalExceptionTLBInvalidLoad() signal_exception (SD, CPU, cia, TLBLoad, TLB_INVALID)
684 #define SignalExceptionTLBModification() signal_exception (SD, CPU, cia, TLBModification)
685 #define SignalExceptionMDMX() signal_exception (SD, CPU, cia, MDMX)
686 #define SignalExceptionWatch() signal_exception (SD, CPU, cia, Watch)
687 #define SignalExceptionMCheck() signal_exception (SD, CPU, cia, MCheck)
688 #define SignalExceptionCacheErr() signal_exception (SD, CPU, cia, CacheErr)
689
690 /* Co-processor accesses */
691
692 /* XXX FIXME: For now, assume that FPU (cp1) is always usable. */
693 #define COP_Usable(coproc_num) (coproc_num == 1)
694
695 void cop_lw (SIM_DESC sd, sim_cpu *cpu, address_word cia, int coproc_num, int coproc_reg, unsigned int memword);
696 void cop_ld (SIM_DESC sd, sim_cpu *cpu, address_word cia, int coproc_num, int coproc_reg, uword64 memword);
697 unsigned int cop_sw (SIM_DESC sd, sim_cpu *cpu, address_word cia, int coproc_num, int coproc_reg);
698 uword64 cop_sd (SIM_DESC sd, sim_cpu *cpu, address_word cia, int coproc_num, int coproc_reg);
699
700 #define COP_LW(coproc_num,coproc_reg,memword) \
701 cop_lw (SD, CPU, cia, coproc_num, coproc_reg, memword)
702 #define COP_LD(coproc_num,coproc_reg,memword) \
703 cop_ld (SD, CPU, cia, coproc_num, coproc_reg, memword)
704 #define COP_SW(coproc_num,coproc_reg) \
705 cop_sw (SD, CPU, cia, coproc_num, coproc_reg)
706 #define COP_SD(coproc_num,coproc_reg) \
707 cop_sd (SD, CPU, cia, coproc_num, coproc_reg)
708
709
710 void decode_coproc (SIM_DESC sd, sim_cpu *cpu, address_word cia,
711 unsigned int instruction, int coprocnum, CP0_operation op,
712 int rt, int rd, int sel);
713 #define DecodeCoproc(instruction,coprocnum,op,rt,rd,sel) \
714 decode_coproc (SD, CPU, cia, (instruction), (coprocnum), (op), \
715 (rt), (rd), (sel))
716
717 int sim_monitor (SIM_DESC sd, sim_cpu *cpu, address_word cia, unsigned int arg);
718
719
720 /* FPR access. */
721 unsigned64 value_fpr (SIM_STATE, int fpr, FP_formats);
722 #define ValueFPR(FPR,FMT) value_fpr (SIM_ARGS, (FPR), (FMT))
723 void store_fpr (SIM_STATE, int fpr, FP_formats fmt, unsigned64 value);
724 #define StoreFPR(FPR,FMT,VALUE) store_fpr (SIM_ARGS, (FPR), (FMT), (VALUE))
725 unsigned64 ps_lower (SIM_STATE, unsigned64 op);
726 #define PSLower(op) ps_lower (SIM_ARGS, op)
727 unsigned64 ps_upper (SIM_STATE, unsigned64 op);
728 #define PSUpper(op) ps_upper (SIM_ARGS, op)
729 unsigned64 pack_ps (SIM_STATE, unsigned64 op1, unsigned64 op2, FP_formats from);
730 #define PackPS(op1,op2) pack_ps (SIM_ARGS, op1, op2, fmt_single)
731
732
733 /* FCR access. */
734 unsigned_word value_fcr (SIM_STATE, int fcr);
735 #define ValueFCR(FCR) value_fcr (SIM_ARGS, (FCR))
736 void store_fcr (SIM_STATE, int fcr, unsigned_word value);
737 #define StoreFCR(FCR,VALUE) store_fcr (SIM_ARGS, (FCR), (VALUE))
738 void test_fcsr (SIM_STATE);
739 #define TestFCSR() test_fcsr (SIM_ARGS)
740
741
742 /* FPU operations. */
743 void fp_cmp (SIM_STATE, unsigned64 op1, unsigned64 op2, FP_formats fmt, int abs, int cond, int cc);
744 #define Compare(op1,op2,fmt,cond,cc) fp_cmp(SIM_ARGS, op1, op2, fmt, 0, cond, cc)
745 unsigned64 fp_abs (SIM_STATE, unsigned64 op, FP_formats fmt);
746 #define AbsoluteValue(op,fmt) fp_abs(SIM_ARGS, op, fmt)
747 unsigned64 fp_neg (SIM_STATE, unsigned64 op, FP_formats fmt);
748 #define Negate(op,fmt) fp_neg(SIM_ARGS, op, fmt)
749 unsigned64 fp_add (SIM_STATE, unsigned64 op1, unsigned64 op2, FP_formats fmt);
750 #define Add(op1,op2,fmt) fp_add(SIM_ARGS, op1, op2, fmt)
751 unsigned64 fp_sub (SIM_STATE, unsigned64 op1, unsigned64 op2, FP_formats fmt);
752 #define Sub(op1,op2,fmt) fp_sub(SIM_ARGS, op1, op2, fmt)
753 unsigned64 fp_mul (SIM_STATE, unsigned64 op1, unsigned64 op2, FP_formats fmt);
754 #define Multiply(op1,op2,fmt) fp_mul(SIM_ARGS, op1, op2, fmt)
755 unsigned64 fp_div (SIM_STATE, unsigned64 op1, unsigned64 op2, FP_formats fmt);
756 #define Divide(op1,op2,fmt) fp_div(SIM_ARGS, op1, op2, fmt)
757 unsigned64 fp_recip (SIM_STATE, unsigned64 op, FP_formats fmt);
758 #define Recip(op,fmt) fp_recip(SIM_ARGS, op, fmt)
759 unsigned64 fp_sqrt (SIM_STATE, unsigned64 op, FP_formats fmt);
760 #define SquareRoot(op,fmt) fp_sqrt(SIM_ARGS, op, fmt)
761 unsigned64 fp_rsqrt (SIM_STATE, unsigned64 op, FP_formats fmt);
762 #define RSquareRoot(op,fmt) fp_rsqrt(SIM_ARGS, op, fmt)
763 unsigned64 fp_madd (SIM_STATE, unsigned64 op1, unsigned64 op2,
764 unsigned64 op3, FP_formats fmt);
765 #define MultiplyAdd(op1,op2,op3,fmt) fp_madd(SIM_ARGS, op1, op2, op3, fmt)
766 unsigned64 fp_msub (SIM_STATE, unsigned64 op1, unsigned64 op2,
767 unsigned64 op3, FP_formats fmt);
768 #define MultiplySub(op1,op2,op3,fmt) fp_msub(SIM_ARGS, op1, op2, op3, fmt)
769 unsigned64 fp_nmadd (SIM_STATE, unsigned64 op1, unsigned64 op2,
770 unsigned64 op3, FP_formats fmt);
771 #define NegMultiplyAdd(op1,op2,op3,fmt) fp_nmadd(SIM_ARGS, op1, op2, op3, fmt)
772 unsigned64 fp_nmsub (SIM_STATE, unsigned64 op1, unsigned64 op2,
773 unsigned64 op3, FP_formats fmt);
774 #define NegMultiplySub(op1,op2,op3,fmt) fp_nmsub(SIM_ARGS, op1, op2, op3, fmt)
775 unsigned64 convert (SIM_STATE, int rm, unsigned64 op, FP_formats from, FP_formats to);
776 #define Convert(rm,op,from,to) convert (SIM_ARGS, rm, op, from, to)
777 unsigned64 convert_ps (SIM_STATE, int rm, unsigned64 op, FP_formats from,
778 FP_formats to);
779 #define ConvertPS(rm,op,from,to) convert_ps (SIM_ARGS, rm, op, from, to)
780
781
782 /* MIPS-3D ASE operations. */
783 #define CompareAbs(op1,op2,fmt,cond,cc) \
784 fp_cmp(SIM_ARGS, op1, op2, fmt, 1, cond, cc)
785 unsigned64 fp_add_r (SIM_STATE, unsigned64 op1, unsigned64 op2, FP_formats fmt);
786 #define AddR(op1,op2,fmt) fp_add_r(SIM_ARGS, op1, op2, fmt)
787 unsigned64 fp_mul_r (SIM_STATE, unsigned64 op1, unsigned64 op2, FP_formats fmt);
788 #define MultiplyR(op1,op2,fmt) fp_mul_r(SIM_ARGS, op1, op2, fmt)
789 unsigned64 fp_recip1 (SIM_STATE, unsigned64 op, FP_formats fmt);
790 #define Recip1(op,fmt) fp_recip1(SIM_ARGS, op, fmt)
791 unsigned64 fp_recip2 (SIM_STATE, unsigned64 op1, unsigned64 op2, FP_formats fmt);
792 #define Recip2(op1,op2,fmt) fp_recip2(SIM_ARGS, op1, op2, fmt)
793 unsigned64 fp_rsqrt1 (SIM_STATE, unsigned64 op, FP_formats fmt);
794 #define RSquareRoot1(op,fmt) fp_rsqrt1(SIM_ARGS, op, fmt)
795 unsigned64 fp_rsqrt2 (SIM_STATE, unsigned64 op1, unsigned64 op2, FP_formats fmt);
796 #define RSquareRoot2(op1,op2,fmt) fp_rsqrt2(SIM_ARGS, op1, op2, fmt)
797
798
799 /* MDMX access. */
800
801 typedef unsigned int MX_fmtsel; /* MDMX format select field (5 bits). */
802 #define ob_fmtsel(sel) (((sel)<<1)|0x0)
803 #define qh_fmtsel(sel) (((sel)<<2)|0x1)
804
805 #define fmt_mdmx fmt_uninterpreted
806
807 #define MX_VECT_AND (0)
808 #define MX_VECT_NOR (1)
809 #define MX_VECT_OR (2)
810 #define MX_VECT_XOR (3)
811 #define MX_VECT_SLL (4)
812 #define MX_VECT_SRL (5)
813 #define MX_VECT_ADD (6)
814 #define MX_VECT_SUB (7)
815 #define MX_VECT_MIN (8)
816 #define MX_VECT_MAX (9)
817 #define MX_VECT_MUL (10)
818 #define MX_VECT_MSGN (11)
819 #define MX_VECT_SRA (12)
820 #define MX_VECT_ABSD (13) /* SB-1 only. */
821 #define MX_VECT_AVG (14) /* SB-1 only. */
822
823 unsigned64 mdmx_cpr_op (SIM_STATE, int op, unsigned64 op1, int vt, MX_fmtsel fmtsel);
824 #define MX_Add(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_ADD, op1, vt, fmtsel)
825 #define MX_And(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_AND, op1, vt, fmtsel)
826 #define MX_Max(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_MAX, op1, vt, fmtsel)
827 #define MX_Min(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_MIN, op1, vt, fmtsel)
828 #define MX_Msgn(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_MSGN, op1, vt, fmtsel)
829 #define MX_Mul(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_MUL, op1, vt, fmtsel)
830 #define MX_Nor(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_NOR, op1, vt, fmtsel)
831 #define MX_Or(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_OR, op1, vt, fmtsel)
832 #define MX_ShiftLeftLogical(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_SLL, op1, vt, fmtsel)
833 #define MX_ShiftRightArith(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_SRA, op1, vt, fmtsel)
834 #define MX_ShiftRightLogical(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_SRL, op1, vt, fmtsel)
835 #define MX_Sub(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_SUB, op1, vt, fmtsel)
836 #define MX_Xor(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_XOR, op1, vt, fmtsel)
837 #define MX_AbsDiff(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_ABSD, op1, vt, fmtsel)
838 #define MX_Avg(op1,vt,fmtsel) mdmx_cpr_op(SIM_ARGS, MX_VECT_AVG, op1, vt, fmtsel)
839
840 #define MX_C_EQ 0x1
841 #define MX_C_LT 0x4
842
843 void mdmx_cc_op (SIM_STATE, int cond, unsigned64 op1, int vt, MX_fmtsel fmtsel);
844 #define MX_Comp(op1,cond,vt,fmtsel) mdmx_cc_op(SIM_ARGS, cond, op1, vt, fmtsel)
845
846 unsigned64 mdmx_pick_op (SIM_STATE, int tf, unsigned64 op1, int vt, MX_fmtsel fmtsel);
847 #define MX_Pick(tf,op1,vt,fmtsel) mdmx_pick_op(SIM_ARGS, tf, op1, vt, fmtsel)
848
849 #define MX_VECT_ADDA (0)
850 #define MX_VECT_ADDL (1)
851 #define MX_VECT_MULA (2)
852 #define MX_VECT_MULL (3)
853 #define MX_VECT_MULS (4)
854 #define MX_VECT_MULSL (5)
855 #define MX_VECT_SUBA (6)
856 #define MX_VECT_SUBL (7)
857 #define MX_VECT_ABSDA (8) /* SB-1 only. */
858
859 void mdmx_acc_op (SIM_STATE, int op, unsigned64 op1, int vt, MX_fmtsel fmtsel);
860 #define MX_AddA(op1,vt,fmtsel) mdmx_acc_op(SIM_ARGS, MX_VECT_ADDA, op1, vt, fmtsel)
861 #define MX_AddL(op1,vt,fmtsel) mdmx_acc_op(SIM_ARGS, MX_VECT_ADDL, op1, vt, fmtsel)
862 #define MX_MulA(op1,vt,fmtsel) mdmx_acc_op(SIM_ARGS, MX_VECT_MULA, op1, vt, fmtsel)
863 #define MX_MulL(op1,vt,fmtsel) mdmx_acc_op(SIM_ARGS, MX_VECT_MULL, op1, vt, fmtsel)
864 #define MX_MulS(op1,vt,fmtsel) mdmx_acc_op(SIM_ARGS, MX_VECT_MULS, op1, vt, fmtsel)
865 #define MX_MulSL(op1,vt,fmtsel) mdmx_acc_op(SIM_ARGS, MX_VECT_MULSL, op1, vt, fmtsel)
866 #define MX_SubA(op1,vt,fmtsel) mdmx_acc_op(SIM_ARGS, MX_VECT_SUBA, op1, vt, fmtsel)
867 #define MX_SubL(op1,vt,fmtsel) mdmx_acc_op(SIM_ARGS, MX_VECT_SUBL, op1, vt, fmtsel)
868 #define MX_AbsDiffC(op1,vt,fmtsel) mdmx_acc_op(SIM_ARGS, MX_VECT_ABSDA, op1, vt, fmtsel)
869
870 #define MX_FMT_OB (0)
871 #define MX_FMT_QH (1)
872
873 /* The following codes chosen to indicate the units of shift. */
874 #define MX_RAC_L (0)
875 #define MX_RAC_M (1)
876 #define MX_RAC_H (2)
877
878 unsigned64 mdmx_rac_op (SIM_STATE, int, int);
879 #define MX_RAC(op,fmt) mdmx_rac_op(SIM_ARGS, op, fmt)
880
881 void mdmx_wacl (SIM_STATE, int, unsigned64, unsigned64);
882 #define MX_WACL(fmt,vs,vt) mdmx_wacl(SIM_ARGS, fmt, vs, vt)
883 void mdmx_wach (SIM_STATE, int, unsigned64);
884 #define MX_WACH(fmt,vs) mdmx_wach(SIM_ARGS, fmt, vs)
885
886 #define MX_RND_AS (0)
887 #define MX_RND_AU (1)
888 #define MX_RND_ES (2)
889 #define MX_RND_EU (3)
890 #define MX_RND_ZS (4)
891 #define MX_RND_ZU (5)
892
893 unsigned64 mdmx_round_op (SIM_STATE, int, int, MX_fmtsel);
894 #define MX_RNAS(vt,fmt) mdmx_round_op(SIM_ARGS, MX_RND_AS, vt, fmt)
895 #define MX_RNAU(vt,fmt) mdmx_round_op(SIM_ARGS, MX_RND_AU, vt, fmt)
896 #define MX_RNES(vt,fmt) mdmx_round_op(SIM_ARGS, MX_RND_ES, vt, fmt)
897 #define MX_RNEU(vt,fmt) mdmx_round_op(SIM_ARGS, MX_RND_EU, vt, fmt)
898 #define MX_RZS(vt,fmt) mdmx_round_op(SIM_ARGS, MX_RND_ZS, vt, fmt)
899 #define MX_RZU(vt,fmt) mdmx_round_op(SIM_ARGS, MX_RND_ZU, vt, fmt)
900
901 unsigned64 mdmx_shuffle (SIM_STATE, int, unsigned64, unsigned64);
902 #define MX_SHFL(shop,op1,op2) mdmx_shuffle(SIM_ARGS, shop, op1, op2)
903
904
905
906 /* Memory accesses */
907
908 /* The following are generic to all versions of the MIPS architecture
909 to date: */
910
911 /* Memory Access Types (for CCA): */
912 #define Uncached (0)
913 #define CachedNoncoherent (1)
914 #define CachedCoherent (2)
915 #define Cached (3)
916
917 #define isINSTRUCTION (1 == 0) /* FALSE */
918 #define isDATA (1 == 1) /* TRUE */
919 #define isLOAD (1 == 0) /* FALSE */
920 #define isSTORE (1 == 1) /* TRUE */
921 #define isREAL (1 == 0) /* FALSE */
922 #define isRAW (1 == 1) /* TRUE */
923 /* The parameter HOST (isTARGET / isHOST) is ignored */
924 #define isTARGET (1 == 0) /* FALSE */
925 /* #define isHOST (1 == 1) TRUE */
926
927 /* The "AccessLength" specifications for Loads and Stores. NOTE: This
928 is the number of bytes minus 1. */
929 #define AccessLength_BYTE (0)
930 #define AccessLength_HALFWORD (1)
931 #define AccessLength_TRIPLEBYTE (2)
932 #define AccessLength_WORD (3)
933 #define AccessLength_QUINTIBYTE (4)
934 #define AccessLength_SEXTIBYTE (5)
935 #define AccessLength_SEPTIBYTE (6)
936 #define AccessLength_DOUBLEWORD (7)
937 #define AccessLength_QUADWORD (15)
938
939 #define LOADDRMASK (WITH_TARGET_WORD_BITSIZE == 64 \
940 ? AccessLength_DOUBLEWORD /*7*/ \
941 : AccessLength_WORD /*3*/)
942 #define PSIZE (WITH_TARGET_ADDRESS_BITSIZE)
943
944
945 INLINE_SIM_MAIN (int) address_translation (SIM_DESC sd, sim_cpu *, address_word cia, address_word vAddr, int IorD, int LorS, address_word *pAddr, int *CCA, int raw);
946 #define AddressTranslation(vAddr,IorD,LorS,pAddr,CCA,host,raw) \
947 address_translation (SD, CPU, cia, vAddr, IorD, LorS, pAddr, CCA, raw)
948
949 INLINE_SIM_MAIN (void) load_memory (SIM_DESC sd, sim_cpu *cpu, address_word cia, uword64* memvalp, uword64* memval1p, int CCA, unsigned int AccessLength, address_word pAddr, address_word vAddr, int IorD);
950 #define LoadMemory(memvalp,memval1p,CCA,AccessLength,pAddr,vAddr,IorD,raw) \
951 load_memory (SD, CPU, cia, memvalp, memval1p, CCA, AccessLength, pAddr, vAddr, IorD)
952
953 INLINE_SIM_MAIN (void) store_memory (SIM_DESC sd, sim_cpu *cpu, address_word cia, int CCA, unsigned int AccessLength, uword64 MemElem, uword64 MemElem1, address_word pAddr, address_word vAddr);
954 #define StoreMemory(CCA,AccessLength,MemElem,MemElem1,pAddr,vAddr,raw) \
955 store_memory (SD, CPU, cia, CCA, AccessLength, MemElem, MemElem1, pAddr, vAddr)
956
957 INLINE_SIM_MAIN (void) cache_op (SIM_DESC sd, sim_cpu *cpu, address_word cia, int op, address_word pAddr, address_word vAddr, unsigned int instruction);
958 #define CacheOp(op,pAddr,vAddr,instruction) \
959 cache_op (SD, CPU, cia, op, pAddr, vAddr, instruction)
960
961 INLINE_SIM_MAIN (void) sync_operation (SIM_DESC sd, sim_cpu *cpu, address_word cia, int stype);
962 #define SyncOperation(stype) \
963 sync_operation (SD, CPU, cia, (stype))
964
965 INLINE_SIM_MAIN (void) prefetch (SIM_DESC sd, sim_cpu *cpu, address_word cia, int CCA, address_word pAddr, address_word vAddr, int DATA, int hint);
966 #define Prefetch(CCA,pAddr,vAddr,DATA,hint) \
967 prefetch (SD, CPU, cia, CCA, pAddr, vAddr, DATA, hint)
968
969 void unpredictable_action (sim_cpu *cpu, address_word cia);
970 #define NotWordValue(val) not_word_value (SD_, (val))
971 #define Unpredictable() unpredictable (SD_)
972 #define UnpredictableResult() /* For now, do nothing. */
973
974 INLINE_SIM_MAIN (unsigned32) ifetch32 (SIM_DESC sd, sim_cpu *cpu, address_word cia, address_word vaddr);
975 #define IMEM32(CIA) ifetch32 (SD, CPU, (CIA), (CIA))
976 INLINE_SIM_MAIN (unsigned16) ifetch16 (SIM_DESC sd, sim_cpu *cpu, address_word cia, address_word vaddr);
977 #define IMEM16(CIA) ifetch16 (SD, CPU, (CIA), ((CIA) & ~1))
978 #define IMEM16_IMMED(CIA,NR) ifetch16 (SD, CPU, (CIA), ((CIA) & ~1) + 2 * (NR))
979 #define IMEM32_MICROMIPS(CIA) \
980 (ifetch16 (SD, CPU, (CIA), (CIA)) << 16 | ifetch16 (SD, CPU, (CIA + 2), \
981 (CIA + 2)))
982 #define IMEM16_MICROMIPS(CIA) ifetch16 (SD, CPU, (CIA), ((CIA)))
983
984 #define MICROMIPS_MINOR_OPCODE(INSN) ((INSN & 0x1C00) >> 10)
985
986 #define MICROMIPS_DELAYSLOT_SIZE_ANY 0
987 #define MICROMIPS_DELAYSLOT_SIZE_16 2
988 #define MICROMIPS_DELAYSLOT_SIZE_32 4
989
990 extern int isa_mode;
991
992 #define ISA_MODE_MIPS32 0
993 #define ISA_MODE_MICROMIPS 1
994
995 address_word micromips_instruction_decode (SIM_DESC sd, sim_cpu * cpu,
996 address_word cia,
997 int instruction_size);
998
999 #if WITH_TRACE_ANY_P
1000 void dotrace (SIM_DESC sd, sim_cpu *cpu, FILE *tracefh, int type, SIM_ADDR address, int width, char *comment, ...);
1001 extern FILE *tracefh;
1002 #else
1003 #define dotrace(sd, cpu, tracefh, type, address, width, comment, ...)
1004 #endif
1005
1006 extern int DSPLO_REGNUM[4];
1007 extern int DSPHI_REGNUM[4];
1008
1009 INLINE_SIM_MAIN (void) pending_tick (SIM_DESC sd, sim_cpu *cpu, address_word cia);
1010 extern SIM_CORE_SIGNAL_FN mips_core_signal;
1011
1012 char* pr_addr (SIM_ADDR addr);
1013 char* pr_uword64 (uword64 addr);
1014
1015
1016 #define GPR_CLEAR(N) do { GPR_SET((N),0); } while (0)
1017
1018 void mips_cpu_exception_trigger(SIM_DESC sd, sim_cpu* cpu, address_word pc);
1019 void mips_cpu_exception_suspend(SIM_DESC sd, sim_cpu* cpu, int exception);
1020 void mips_cpu_exception_resume(SIM_DESC sd, sim_cpu* cpu, int exception);
1021
1022 #ifdef MIPS_MACH_MULTI
1023 extern int mips_mach_multi(SIM_DESC sd);
1024 #define MIPS_MACH(SD) mips_mach_multi(SD)
1025 #else
1026 #define MIPS_MACH(SD) MIPS_MACH_DEFAULT
1027 #endif
1028
1029 /* Macros for determining whether a MIPS IV or MIPS V part is subject
1030 to the hi/lo restrictions described in mips.igen. */
1031
1032 #define MIPS_MACH_HAS_MT_HILO_HAZARD(SD) \
1033 (MIPS_MACH (SD) != bfd_mach_mips5500)
1034
1035 #define MIPS_MACH_HAS_MULT_HILO_HAZARD(SD) \
1036 (MIPS_MACH (SD) != bfd_mach_mips5500)
1037
1038 #define MIPS_MACH_HAS_DIV_HILO_HAZARD(SD) \
1039 (MIPS_MACH (SD) != bfd_mach_mips5500)
1040
1041 #if H_REVEALS_MODULE_P (SIM_MAIN_INLINE)
1042 #include "sim-main.c"
1043 #endif
1044
1045 #endif