mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-28 07:29:57 +00:00
20db0c7260
- fixed possible crash in driver_window dtor (image data would be freed twice, once by XDestroyImage() and once in driver_base dtor) - fixed compilation problems with banked memory - fixed typos
212 lines
5.9 KiB
C
212 lines
5.9 KiB
C
/*
|
|
* UAE - The Un*x Amiga Emulator
|
|
*
|
|
* memory management
|
|
*
|
|
* Copyright 1995 Bernd Schmidt
|
|
*/
|
|
|
|
#ifndef UAE_MEMORY_H
|
|
#define UAE_MEMORY_H
|
|
|
|
#if !DIRECT_ADDRESSING && !REAL_ADDRESSING
|
|
|
|
/* Enabling this adds one additional native memory reference per 68k memory
|
|
* access, but saves one shift (on the x86). Enabling this is probably
|
|
* better for the cache. My favourite benchmark (PP2) doesn't show a
|
|
* difference, so I leave this enabled. */
|
|
|
|
#if 1 || defined SAVE_MEMORY
|
|
#define SAVE_MEMORY_BANKS
|
|
#endif
|
|
|
|
typedef uae_u32 (REGPARAM2 *mem_get_func)(uaecptr) REGPARAM;
|
|
typedef void (REGPARAM2 *mem_put_func)(uaecptr, uae_u32) REGPARAM;
|
|
typedef uae_u8 *(REGPARAM2 *xlate_func)(uaecptr) REGPARAM;
|
|
typedef int (REGPARAM2 *check_func)(uaecptr, uae_u32) REGPARAM;
|
|
|
|
#undef DIRECT_MEMFUNCS_SUCCESSFUL
|
|
|
|
#ifndef CAN_MAP_MEMORY
|
|
#undef USE_COMPILER
|
|
#endif
|
|
|
|
#if defined(USE_COMPILER) && !defined(USE_MAPPED_MEMORY)
|
|
#define USE_MAPPED_MEMORY
|
|
#endif
|
|
|
|
typedef struct {
|
|
/* These ones should be self-explanatory... */
|
|
mem_get_func lget, wget, bget;
|
|
mem_put_func lput, wput, bput;
|
|
/* Use xlateaddr to translate an Amiga address to a uae_u8 * that can
|
|
* be used to address memory without calling the wget/wput functions.
|
|
* This doesn't work for all memory banks, so this function may call
|
|
* abort(). */
|
|
xlate_func xlateaddr;
|
|
/* To prevent calls to abort(), use check before calling xlateaddr.
|
|
* It checks not only that the memory bank can do xlateaddr, but also
|
|
* that the pointer points to an area of at least the specified size.
|
|
* This is used for example to translate bitplane pointers in custom.c */
|
|
check_func check;
|
|
} addrbank;
|
|
|
|
extern uae_u8 filesysory[65536];
|
|
|
|
extern addrbank ram_bank; // Mac RAM
|
|
extern addrbank rom_bank; // Mac ROM
|
|
extern addrbank frame_bank; // Frame buffer
|
|
|
|
/* Default memory access functions */
|
|
|
|
extern int REGPARAM2 default_check(uaecptr addr, uae_u32 size) REGPARAM;
|
|
extern uae_u8 *REGPARAM2 default_xlate(uaecptr addr) REGPARAM;
|
|
|
|
#define bankindex(addr) (((uaecptr)(addr)) >> 16)
|
|
|
|
#ifdef SAVE_MEMORY_BANKS
|
|
extern addrbank *mem_banks[65536];
|
|
#define get_mem_bank(addr) (*mem_banks[bankindex(addr)])
|
|
#define put_mem_bank(addr, b) (mem_banks[bankindex(addr)] = (b))
|
|
#else
|
|
extern addrbank mem_banks[65536];
|
|
#define get_mem_bank(addr) (mem_banks[bankindex(addr)])
|
|
#define put_mem_bank(addr, b) (mem_banks[bankindex(addr)] = *(b))
|
|
#endif
|
|
|
|
extern void memory_init(void);
|
|
extern void map_banks(addrbank *bank, int first, int count);
|
|
|
|
#ifndef NO_INLINE_MEMORY_ACCESS
|
|
|
|
#define longget(addr) (call_mem_get_func(get_mem_bank(addr).lget, addr))
|
|
#define wordget(addr) (call_mem_get_func(get_mem_bank(addr).wget, addr))
|
|
#define byteget(addr) (call_mem_get_func(get_mem_bank(addr).bget, addr))
|
|
#define longput(addr,l) (call_mem_put_func(get_mem_bank(addr).lput, addr, l))
|
|
#define wordput(addr,w) (call_mem_put_func(get_mem_bank(addr).wput, addr, w))
|
|
#define byteput(addr,b) (call_mem_put_func(get_mem_bank(addr).bput, addr, b))
|
|
|
|
#else
|
|
|
|
extern uae_u32 alongget(uaecptr addr);
|
|
extern uae_u32 awordget(uaecptr addr);
|
|
extern uae_u32 longget(uaecptr addr);
|
|
extern uae_u32 wordget(uaecptr addr);
|
|
extern uae_u32 byteget(uaecptr addr);
|
|
extern void longput(uaecptr addr, uae_u32 l);
|
|
extern void wordput(uaecptr addr, uae_u32 w);
|
|
extern void byteput(uaecptr addr, uae_u32 b);
|
|
|
|
#endif
|
|
|
|
#ifndef MD_HAVE_MEM_1_FUNCS
|
|
|
|
#define longget_1 longget
|
|
#define wordget_1 wordget
|
|
#define byteget_1 byteget
|
|
#define longput_1 longput
|
|
#define wordput_1 wordput
|
|
#define byteput_1 byteput
|
|
|
|
#endif
|
|
|
|
#endif /* !DIRECT_ADDRESSING && !REAL_ADDRESSING */
|
|
|
|
#if REAL_ADDRESSING
|
|
const uintptr MEMBaseDiff = 0;
|
|
#endif
|
|
#if DIRECT_ADDRESSING
|
|
extern uintptr MEMBaseDiff;
|
|
#endif
|
|
|
|
#if REAL_ADDRESSING || DIRECT_ADDRESSING
|
|
static __inline__ uae_u8 *do_get_real_address(uaecptr addr)
|
|
{
|
|
return (uae_u8 *)MEMBaseDiff + addr;
|
|
}
|
|
static __inline__ uae_u32 do_get_virtual_address(uae_u8 *addr)
|
|
{
|
|
return (uintptr)addr - MEMBaseDiff;
|
|
}
|
|
static __inline__ uae_u32 get_long(uaecptr addr)
|
|
{
|
|
uae_u32 * const m = (uae_u32 *)do_get_real_address(addr);
|
|
return do_get_mem_long(m);
|
|
}
|
|
static __inline__ uae_u32 get_word(uaecptr addr)
|
|
{
|
|
uae_u16 * const m = (uae_u16 *)do_get_real_address(addr);
|
|
return do_get_mem_word(m);
|
|
}
|
|
static __inline__ uae_u32 get_byte(uaecptr addr)
|
|
{
|
|
uae_u8 * const m = (uae_u8 *)do_get_real_address(addr);
|
|
return do_get_mem_byte(m);
|
|
}
|
|
static __inline__ void put_long(uaecptr addr, uae_u32 l)
|
|
{
|
|
uae_u32 * const m = (uae_u32 *)do_get_real_address(addr);
|
|
do_put_mem_long(m, l);
|
|
}
|
|
static __inline__ void put_word(uaecptr addr, uae_u32 w)
|
|
{
|
|
uae_u16 * const m = (uae_u16 *)do_get_real_address(addr);
|
|
do_put_mem_word(m, w);
|
|
}
|
|
static __inline__ void put_byte(uaecptr addr, uae_u32 b)
|
|
{
|
|
uae_u8 * const m = (uae_u8 *)do_get_real_address(addr);
|
|
do_put_mem_byte(m, b);
|
|
}
|
|
static __inline__ uae_u8 *get_real_address(uaecptr addr)
|
|
{
|
|
return do_get_real_address(addr);
|
|
}
|
|
static __inline__ uae_u32 get_virtual_address(uae_u8 *addr)
|
|
{
|
|
return do_get_virtual_address(addr);
|
|
}
|
|
static __inline__ int valid_address(uaecptr addr, uae_u32 size)
|
|
{
|
|
return 1;
|
|
}
|
|
#else
|
|
static __inline__ uae_u32 get_long(uaecptr addr)
|
|
{
|
|
return longget_1(addr);
|
|
}
|
|
static __inline__ uae_u32 get_word(uaecptr addr)
|
|
{
|
|
return wordget_1(addr);
|
|
}
|
|
static __inline__ uae_u32 get_byte(uaecptr addr)
|
|
{
|
|
return byteget_1(addr);
|
|
}
|
|
static __inline__ void put_long(uaecptr addr, uae_u32 l)
|
|
{
|
|
longput_1(addr, l);
|
|
}
|
|
static __inline__ void put_word(uaecptr addr, uae_u32 w)
|
|
{
|
|
wordput_1(addr, w);
|
|
}
|
|
static __inline__ void put_byte(uaecptr addr, uae_u32 b)
|
|
{
|
|
byteput_1(addr, b);
|
|
}
|
|
static __inline__ uae_u8 *get_real_address(uaecptr addr)
|
|
{
|
|
return get_mem_bank(addr).xlateaddr(addr);
|
|
}
|
|
/* gb-- deliberately not implemented since it shall not be used... */
|
|
extern uae_u32 get_virtual_address(uae_u8 *addr);
|
|
static __inline__ int valid_address(uaecptr addr, uae_u32 size)
|
|
{
|
|
return get_mem_bank(addr).check(addr, size);
|
|
}
|
|
#endif /* DIRECT_ADDRESSING || REAL_ADDRESSING */
|
|
|
|
#endif /* MEMORY_H */
|
|
|