2012-03-30 01:25:46 +00:00
|
|
|
/*
|
|
|
|
* UAE - The Un*x Amiga Emulator
|
|
|
|
*
|
|
|
|
* MC68000 emulation
|
|
|
|
*
|
|
|
|
* Copyright 1995 Bernd Schmidt
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
1999-10-03 14:16:26 +00:00
|
|
|
|
2000-09-22 17:21:45 +00:00
|
|
|
#ifndef NEWCPU_H
|
|
|
|
#define NEWCPU_H
|
|
|
|
|
2002-09-17 16:05:39 +00:00
|
|
|
#ifndef FLIGHT_RECORDER
|
|
|
|
#define FLIGHT_RECORDER 0
|
|
|
|
#endif
|
|
|
|
|
2002-09-01 15:17:13 +00:00
|
|
|
#include "m68k.h"
|
|
|
|
#include "readcpu.h"
|
|
|
|
#include "spcflags.h"
|
2017-09-01 14:47:22 +00:00
|
|
|
|
|
|
|
#if ENABLE_MON
|
|
|
|
#include "mon.h"
|
|
|
|
#include "mon_disass.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1999-10-03 14:16:26 +00:00
|
|
|
extern int areg_byteinc[];
|
|
|
|
extern int imm8_table[];
|
|
|
|
|
|
|
|
extern int movem_index1[256];
|
|
|
|
extern int movem_index2[256];
|
|
|
|
extern int movem_next[256];
|
|
|
|
|
|
|
|
extern int broken_in;
|
|
|
|
|
2002-09-01 15:17:13 +00:00
|
|
|
#ifdef X86_ASSEMBLY
|
|
|
|
/* This hack seems to force all register saves (pushl %reg) to be moved to the
|
|
|
|
begining of the function, thus making it possible to cpuopti to remove them
|
|
|
|
since m68k_run_1 will save those registers before calling the instruction
|
|
|
|
handler */
|
|
|
|
# define cpuop_tag(tag) __asm__ __volatile__ ( "#cpuop_" tag )
|
|
|
|
#else
|
|
|
|
# define cpuop_tag(tag) ;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define cpuop_begin() do { cpuop_tag("begin"); } while (0)
|
2002-11-02 18:13:29 +00:00
|
|
|
#define cpuop_end() do { cpuop_tag("end"); } while (0)
|
1999-10-03 14:16:26 +00:00
|
|
|
|
2002-11-02 18:13:29 +00:00
|
|
|
typedef void REGPARAM2 cpuop_func (uae_u32) REGPARAM;
|
2002-09-01 15:17:13 +00:00
|
|
|
|
1999-10-03 14:16:26 +00:00
|
|
|
struct cputbl {
|
|
|
|
cpuop_func *handler;
|
2002-09-01 15:17:13 +00:00
|
|
|
uae_u16 specific;
|
1999-10-03 14:16:26 +00:00
|
|
|
uae_u16 opcode;
|
|
|
|
};
|
|
|
|
|
2015-08-06 07:54:21 +00:00
|
|
|
extern cpuop_func *cpufunctbl[65536] ASM_SYM("cpufunctbl");
|
2002-09-17 16:05:39 +00:00
|
|
|
|
|
|
|
#if USE_JIT
|
|
|
|
typedef void compop_func (uae_u32) REGPARAM;
|
|
|
|
|
|
|
|
struct comptbl {
|
|
|
|
compop_func *handler;
|
|
|
|
uae_u32 specific;
|
|
|
|
uae_u32 opcode;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2002-11-02 18:13:29 +00:00
|
|
|
extern void REGPARAM2 op_illg (uae_u32) REGPARAM;
|
2017-09-01 14:47:22 +00:00
|
|
|
extern void m68k_dumpstate(uaecptr *nextpc);
|
1999-10-03 14:16:26 +00:00
|
|
|
|
|
|
|
typedef char flagtype;
|
|
|
|
|
2002-09-01 15:17:13 +00:00
|
|
|
struct regstruct {
|
|
|
|
uae_u32 regs[16];
|
1999-10-03 14:16:26 +00:00
|
|
|
|
2002-09-01 15:17:13 +00:00
|
|
|
uae_u32 pc;
|
|
|
|
uae_u8 * pc_p;
|
|
|
|
uae_u8 * pc_oldp;
|
1999-10-03 14:16:26 +00:00
|
|
|
|
2002-09-01 15:17:13 +00:00
|
|
|
spcflags_t spcflags;
|
|
|
|
int intmask;
|
1999-10-03 14:16:26 +00:00
|
|
|
|
2002-09-01 15:17:13 +00:00
|
|
|
uae_u32 vbr, sfc, dfc;
|
|
|
|
uaecptr usp, isp, msp;
|
|
|
|
uae_u16 sr;
|
|
|
|
flagtype t1;
|
|
|
|
flagtype t0;
|
|
|
|
flagtype s;
|
|
|
|
flagtype m;
|
|
|
|
flagtype x;
|
|
|
|
flagtype stopped;
|
1999-10-03 14:16:26 +00:00
|
|
|
|
2002-09-01 15:17:13 +00:00
|
|
|
#if USE_PREFETCH_BUFFER
|
1999-10-03 14:16:26 +00:00
|
|
|
/* Fellow sources say this is 4 longwords. That's impossible. It needs
|
|
|
|
* to be at least a longword. The HRM has some cryptic comment about two
|
|
|
|
* instructions being on the same longword boundary.
|
|
|
|
* The way this is implemented now seems like a good compromise.
|
|
|
|
*/
|
|
|
|
uae_u32 prefetch;
|
2002-09-01 15:17:13 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
extern regstruct regs, lastint_regs;
|
1999-10-03 14:16:26 +00:00
|
|
|
|
|
|
|
#define m68k_dreg(r,num) ((r).regs[(num)])
|
|
|
|
#define m68k_areg(r,num) (((r).regs + 8)[(num)])
|
|
|
|
|
|
|
|
#define get_ibyte(o) do_get_mem_byte((uae_u8 *)(regs.pc_p + (o) + 1))
|
|
|
|
#define get_iword(o) do_get_mem_word((uae_u16 *)(regs.pc_p + (o)))
|
|
|
|
#define get_ilong(o) do_get_mem_long((uae_u32 *)(regs.pc_p + (o)))
|
|
|
|
|
|
|
|
#ifdef HAVE_GET_WORD_UNSWAPPED
|
|
|
|
#define GET_OPCODE (do_get_mem_word_unswapped (regs.pc_p))
|
|
|
|
#else
|
|
|
|
#define GET_OPCODE (get_iword (0))
|
|
|
|
#endif
|
|
|
|
|
2002-09-01 15:17:13 +00:00
|
|
|
#if USE_PREFETCH_BUFFER
|
1999-10-03 14:16:26 +00:00
|
|
|
static __inline__ uae_u32 get_ibyte_prefetch (uae_s32 o)
|
|
|
|
{
|
|
|
|
if (o > 3 || o < 0)
|
|
|
|
return do_get_mem_byte((uae_u8 *)(regs.pc_p + o + 1));
|
|
|
|
|
|
|
|
return do_get_mem_byte((uae_u8 *)(((uae_u8 *)®s.prefetch) + o + 1));
|
|
|
|
}
|
|
|
|
static __inline__ uae_u32 get_iword_prefetch (uae_s32 o)
|
|
|
|
{
|
|
|
|
if (o > 3 || o < 0)
|
|
|
|
return do_get_mem_word((uae_u16 *)(regs.pc_p + o));
|
|
|
|
|
|
|
|
return do_get_mem_word((uae_u16 *)(((uae_u8 *)®s.prefetch) + o));
|
|
|
|
}
|
|
|
|
static __inline__ uae_u32 get_ilong_prefetch (uae_s32 o)
|
|
|
|
{
|
|
|
|
if (o > 3 || o < 0)
|
|
|
|
return do_get_mem_long((uae_u32 *)(regs.pc_p + o));
|
|
|
|
if (o == 0)
|
|
|
|
return do_get_mem_long(®s.prefetch);
|
|
|
|
return (do_get_mem_word (((uae_u16 *)®s.prefetch) + 1) << 16) | do_get_mem_word ((uae_u16 *)(regs.pc_p + 4));
|
|
|
|
}
|
2002-09-01 15:17:13 +00:00
|
|
|
#endif
|
1999-10-03 14:16:26 +00:00
|
|
|
|
|
|
|
static __inline__ void fill_prefetch_0 (void)
|
|
|
|
{
|
2000-09-22 17:21:45 +00:00
|
|
|
#if USE_PREFETCH_BUFFER
|
1999-10-03 14:16:26 +00:00
|
|
|
uae_u32 r;
|
|
|
|
#ifdef UNALIGNED_PROFITABLE
|
|
|
|
r = *(uae_u32 *)regs.pc_p;
|
|
|
|
regs.prefetch = r;
|
|
|
|
#else
|
|
|
|
r = do_get_mem_long ((uae_u32 *)regs.pc_p);
|
|
|
|
do_put_mem_long (®s.prefetch, r);
|
|
|
|
#endif
|
2000-09-22 17:21:45 +00:00
|
|
|
#endif
|
1999-10-03 14:16:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static __inline__ void fill_prefetch_2 (void)
|
|
|
|
{
|
|
|
|
uae_u32 r = do_get_mem_long (®s.prefetch) << 16;
|
|
|
|
uae_u32 r2 = do_get_mem_word (((uae_u16 *)regs.pc_p) + 1);
|
|
|
|
r |= r2;
|
|
|
|
do_put_mem_long (®s.prefetch, r);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define fill_prefetch_2 fill_prefetch_0
|
|
|
|
#endif
|
|
|
|
|
2017-09-01 14:47:22 +00:00
|
|
|
static __inline__ uaecptr m68k_getpc (void)
|
|
|
|
{
|
|
|
|
#if REAL_ADDRESSING || DIRECT_ADDRESSING
|
|
|
|
return get_virtual_address(regs.pc_p);
|
|
|
|
#else
|
|
|
|
return regs.pc + ((char *)regs.pc_p - (char *)regs.pc_oldp);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline__ void m68k_setpc (uaecptr newpc)
|
|
|
|
{
|
|
|
|
#if ENABLE_MON
|
|
|
|
uae_u32 previous_pc = m68k_getpc();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if REAL_ADDRESSING || DIRECT_ADDRESSING
|
|
|
|
regs.pc_p = get_real_address(newpc);
|
|
|
|
#else
|
|
|
|
regs.pc_p = regs.pc_oldp = get_real_address(newpc);
|
|
|
|
regs.pc = newpc;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLE_MON
|
2017-09-04 18:21:16 +00:00
|
|
|
if (IS_BREAK_POINT(newpc)) {
|
2017-09-01 14:47:22 +00:00
|
|
|
printf("Stopped at break point address: %08lx. Last PC: %08lx\n", newpc, previous_pc);
|
|
|
|
m68k_dumpstate(NULL);
|
2017-12-02 17:21:13 +00:00
|
|
|
const char *arg[4] = {"mon", "-m", "-r", NULL};
|
2017-09-01 14:47:22 +00:00
|
|
|
mon(3, arg);
|
|
|
|
}
|
|
|
|
#endif // end of #if ENABLE_MON
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline__ void m68k_incpc (uae_s32 delta)
|
|
|
|
{
|
|
|
|
#if ENABLE_MON
|
|
|
|
uae_u32 previous_pc = m68k_getpc();
|
|
|
|
#endif
|
|
|
|
regs.pc_p += (delta);
|
|
|
|
#if ENABLE_MON
|
|
|
|
uaecptr next_pc = m68k_getpc();
|
2017-09-04 18:21:16 +00:00
|
|
|
if (IS_BREAK_POINT(next_pc)) {
|
2017-09-01 14:47:22 +00:00
|
|
|
printf("Stopped at break point address: %08lx. Last PC: %08lx\n", next_pc, previous_pc);
|
|
|
|
m68k_dumpstate(NULL);
|
2017-12-02 17:21:13 +00:00
|
|
|
const char *arg[4] = {"mon", "-m", "-r", NULL};
|
2017-09-01 14:47:22 +00:00
|
|
|
mon(3, arg);
|
|
|
|
}
|
|
|
|
#endif // end of #if ENABLE_MON
|
|
|
|
}
|
|
|
|
|
1999-10-03 14:16:26 +00:00
|
|
|
/* These are only used by the 68020/68881 code, and therefore don't
|
|
|
|
* need to handle prefetch. */
|
|
|
|
static __inline__ uae_u32 next_ibyte (void)
|
|
|
|
{
|
|
|
|
uae_u32 r = get_ibyte (0);
|
|
|
|
m68k_incpc (2);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline__ uae_u32 next_iword (void)
|
|
|
|
{
|
|
|
|
uae_u32 r = get_iword (0);
|
|
|
|
m68k_incpc (2);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline__ uae_u32 next_ilong (void)
|
|
|
|
{
|
|
|
|
uae_u32 r = get_ilong (0);
|
|
|
|
m68k_incpc (4);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define m68k_setpc_fast m68k_setpc
|
|
|
|
#define m68k_setpc_bcc m68k_setpc
|
|
|
|
#define m68k_setpc_rte m68k_setpc
|
|
|
|
|
2001-03-20 17:35:46 +00:00
|
|
|
static __inline__ void m68k_do_rts(void)
|
|
|
|
{
|
|
|
|
m68k_setpc(get_long(m68k_areg(regs, 7)));
|
|
|
|
m68k_areg(regs, 7) += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline__ void m68k_do_bsr(uaecptr oldpc, uae_s32 offset)
|
|
|
|
{
|
|
|
|
m68k_areg(regs, 7) -= 4;
|
|
|
|
put_long(m68k_areg(regs, 7), oldpc);
|
|
|
|
m68k_incpc(offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline__ void m68k_do_jsr(uaecptr oldpc, uaecptr dest)
|
|
|
|
{
|
|
|
|
m68k_areg(regs, 7) -= 4;
|
|
|
|
put_long(m68k_areg(regs, 7), oldpc);
|
|
|
|
m68k_setpc(dest);
|
|
|
|
}
|
|
|
|
|
1999-10-03 14:16:26 +00:00
|
|
|
static __inline__ void m68k_setstopped (int stop)
|
|
|
|
{
|
|
|
|
regs.stopped = stop;
|
2002-03-23 13:57:38 +00:00
|
|
|
/* A traced STOP instruction drops through immediately without
|
|
|
|
actually stopping. */
|
|
|
|
if (stop && (regs.spcflags & SPCFLAG_DOTRACE) == 0)
|
2002-09-01 15:17:13 +00:00
|
|
|
SPCFLAGS_SET( SPCFLAG_STOP );
|
1999-10-03 14:16:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extern uae_u32 get_disp_ea_020 (uae_u32 base, uae_u32 dp);
|
|
|
|
extern uae_u32 get_disp_ea_000 (uae_u32 base, uae_u32 dp);
|
|
|
|
|
|
|
|
extern uae_s32 ShowEA (int reg, amodes mode, wordsizes size, char *buf);
|
|
|
|
|
|
|
|
extern void MakeSR (void);
|
|
|
|
extern void MakeFromSR (void);
|
|
|
|
extern void Exception (int, uaecptr);
|
|
|
|
extern void dump_counts (void);
|
2001-07-13 10:13:58 +00:00
|
|
|
extern int m68k_move2c (int, uae_u32 *);
|
|
|
|
extern int m68k_movec2 (int, uae_u32 *);
|
1999-10-03 14:16:26 +00:00
|
|
|
extern void m68k_divl (uae_u32, uae_u32, uae_u16, uaecptr);
|
|
|
|
extern void m68k_mull (uae_u32, uae_u32, uae_u16);
|
2002-09-01 15:17:13 +00:00
|
|
|
extern void m68k_emulop (uae_u32);
|
|
|
|
extern void m68k_emulop_return (void);
|
1999-10-03 14:16:26 +00:00
|
|
|
extern void init_m68k (void);
|
2000-09-05 16:52:34 +00:00
|
|
|
extern void exit_m68k (void);
|
1999-10-03 14:16:26 +00:00
|
|
|
extern void m68k_dumpstate (uaecptr *);
|
|
|
|
extern void m68k_disasm (uaecptr, uaecptr *, int);
|
|
|
|
extern void m68k_reset (void);
|
|
|
|
extern void m68k_enter_debugger(void);
|
2002-09-01 15:17:13 +00:00
|
|
|
extern int m68k_do_specialties(void);
|
1999-10-03 14:16:26 +00:00
|
|
|
|
|
|
|
extern void mmu_op (uae_u32, uae_u16);
|
|
|
|
|
|
|
|
/* Opcode of faulting instruction */
|
|
|
|
extern uae_u16 last_op_for_exception_3;
|
|
|
|
/* PC at fault time */
|
|
|
|
extern uaecptr last_addr_for_exception_3;
|
|
|
|
/* Address that generated the exception */
|
|
|
|
extern uaecptr last_fault_for_exception_3;
|
|
|
|
|
|
|
|
#define CPU_OP_NAME(a) op ## a
|
|
|
|
|
|
|
|
/* 68020 + 68881 */
|
2002-09-01 15:17:13 +00:00
|
|
|
extern struct cputbl op_smalltbl_0_ff[];
|
1999-10-03 14:16:26 +00:00
|
|
|
/* 68020 */
|
2002-09-01 15:17:13 +00:00
|
|
|
extern struct cputbl op_smalltbl_1_ff[];
|
1999-10-03 14:16:26 +00:00
|
|
|
/* 68010 */
|
2002-09-01 15:17:13 +00:00
|
|
|
extern struct cputbl op_smalltbl_2_ff[];
|
1999-10-03 14:16:26 +00:00
|
|
|
/* 68000 */
|
2002-09-01 15:17:13 +00:00
|
|
|
extern struct cputbl op_smalltbl_3_ff[];
|
1999-10-03 14:16:26 +00:00
|
|
|
/* 68000 slow but compatible. */
|
2002-09-01 15:17:13 +00:00
|
|
|
extern struct cputbl op_smalltbl_4_ff[];
|
1999-10-03 14:16:26 +00:00
|
|
|
|
2002-09-17 16:05:39 +00:00
|
|
|
#if FLIGHT_RECORDER
|
2005-06-04 16:47:14 +00:00
|
|
|
extern void m68k_record_step(uaecptr) REGPARAM;
|
2002-09-17 16:05:39 +00:00
|
|
|
#endif
|
2002-09-01 15:17:13 +00:00
|
|
|
extern void m68k_do_execute(void);
|
|
|
|
extern void m68k_execute(void);
|
2002-09-17 16:05:39 +00:00
|
|
|
#if USE_JIT
|
|
|
|
extern void m68k_compile_execute(void);
|
|
|
|
#endif
|
2005-06-11 06:43:24 +00:00
|
|
|
#ifdef USE_CPU_EMUL_SERVICES
|
|
|
|
extern int32 emulated_ticks;
|
|
|
|
extern void cpu_do_check_ticks(void);
|
|
|
|
|
|
|
|
static inline void cpu_check_ticks(void)
|
|
|
|
{
|
|
|
|
if (--emulated_ticks <= 0)
|
|
|
|
cpu_do_check_ticks();
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define cpu_check_ticks()
|
|
|
|
#define cpu_do_check_ticks()
|
|
|
|
#endif
|
2002-09-01 15:17:13 +00:00
|
|
|
|
2000-09-22 17:21:45 +00:00
|
|
|
#endif /* NEWCPU_H */
|