2015-07-17 19:07:03 +00:00
|
|
|
|
/*
|
2019-08-18 11:21:00 +00:00
|
|
|
|
Copyright 2017 Wolfgang Thaller.
|
2015-07-17 19:07:03 +00:00
|
|
|
|
|
2019-08-18 11:21:00 +00:00
|
|
|
|
This file is part of Retro68.
|
2015-07-17 19:07:03 +00:00
|
|
|
|
|
2019-08-18 11:21:00 +00:00
|
|
|
|
Retro68 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 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
2015-07-17 19:07:03 +00:00
|
|
|
|
|
2019-08-18 11:21:00 +00:00
|
|
|
|
Retro68 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.
|
2015-07-17 19:07:03 +00:00
|
|
|
|
|
2019-08-18 11:21:00 +00:00
|
|
|
|
Under Section 7 of GPL version 3, you are granted additional
|
|
|
|
|
permissions described in the GCC Runtime Library Exception, version
|
|
|
|
|
3.1, as published by the Free Software Foundation.
|
2015-07-17 19:07:03 +00:00
|
|
|
|
|
2019-08-18 11:21:00 +00:00
|
|
|
|
You should have received a copy of the GNU General Public License and
|
|
|
|
|
a copy of the GCC Runtime Library Exception along with this program;
|
|
|
|
|
see the files COPYING and COPYING.RUNTIME respectively. If not, see
|
|
|
|
|
<http://www.gnu.org/licenses/>.
|
2015-07-17 19:07:03 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2017-09-26 00:38:05 +00:00
|
|
|
|
#include <stdint.h>
|
2017-09-26 22:30:06 +00:00
|
|
|
|
#include <Types.h>
|
2017-09-26 00:38:05 +00:00
|
|
|
|
|
2015-07-20 00:02:28 +00:00
|
|
|
|
#define _RETRO68_GET_DISPLACEMENT(DISPLACEMENT, STRIP) \
|
2019-08-18 11:21:00 +00:00
|
|
|
|
do { \
|
|
|
|
|
char *virtualstart, *realstart; \
|
|
|
|
|
__asm__( "1:\n" \
|
|
|
|
|
"\tmove.l #1b, %0\n" \
|
|
|
|
|
"\tlea (1b:w,%%pc), %1" \
|
|
|
|
|
: "=r"(virtualstart) , "=a"(realstart) ); \
|
|
|
|
|
DISPLACEMENT = STRIP(realstart) - virtualstart; \
|
|
|
|
|
} while(0)
|
2015-07-17 19:07:03 +00:00
|
|
|
|
|
2015-07-20 00:02:28 +00:00
|
|
|
|
#define RETRO68_GET_DISPLACEMENT(DISPLACEMENT) \
|
2019-08-18 11:21:00 +00:00
|
|
|
|
_RETRO68_GET_DISPLACEMENT(DISPLACEMENT, )
|
2015-07-20 00:02:28 +00:00
|
|
|
|
|
2017-04-11 18:42:12 +00:00
|
|
|
|
// Calls to the StripAddress() trap are supposed to make sure addresses are 32-bit clean.
|
|
|
|
|
// But this trap doesn’t exist on old ROMs and old system versions,
|
|
|
|
|
// so programs built with StripAddress will mysteriously crash.
|
|
|
|
|
// Those systems always run in 24-bit mode, so we can just take the lower 24
|
|
|
|
|
// bits of the 32 bit address.
|
|
|
|
|
// StripAddress24 must not be used on 32-bit systems, or the resulting crashes
|
|
|
|
|
// will be even more mysterious.
|
|
|
|
|
|
|
|
|
|
#define StripAddress24(x) ((char*) ((unsigned long)(x) & 0x00FFFFFF))
|
|
|
|
|
#define RETRO68_GET_DISPLACEMENT_STRIP24(DISPLACEMENT) \
|
2019-08-18 11:21:00 +00:00
|
|
|
|
_RETRO68_GET_DISPLACEMENT(DISPLACEMENT, StripAddress24)
|
2017-04-11 18:42:12 +00:00
|
|
|
|
|
|
|
|
|
// original StripAddress
|
2015-07-20 00:02:28 +00:00
|
|
|
|
#define RETRO68_GET_DISPLACEMENT_STRIP(DISPLACEMENT) \
|
2019-08-18 11:21:00 +00:00
|
|
|
|
_RETRO68_GET_DISPLACEMENT(DISPLACEMENT, StripAddress)
|
2017-04-11 18:42:12 +00:00
|
|
|
|
|
2015-07-17 19:07:03 +00:00
|
|
|
|
#define RETRO68_CALL_UNRELOCATED(FUN,ARGS) \
|
2019-08-18 11:21:00 +00:00
|
|
|
|
do { \
|
|
|
|
|
long displacement; \
|
|
|
|
|
RETRO68_GET_DISPLACEMENT(displacement); \
|
|
|
|
|
(*(typeof(&FUN)) ((char*)(&FUN) + displacement)) ARGS; \
|
|
|
|
|
} while(0)
|
2015-07-17 19:07:03 +00:00
|
|
|
|
|
2022-12-05 10:23:46 +00:00
|
|
|
|
void Retro68Relocate(void);
|
|
|
|
|
void Retro68CallConstructors(void);
|
|
|
|
|
void Retro68CallDestructors(void);
|
|
|
|
|
void Retro68FreeGlobals(void);
|
|
|
|
|
void Retro68InitMultisegApp(void);
|
2017-09-26 00:38:05 +00:00
|
|
|
|
void Retro68ApplyRelocations(uint8_t *base, uint32_t size, void *relocations, uint32_t displacements[]);
|
2015-07-17 19:07:03 +00:00
|
|
|
|
|
|
|
|
|
#define RETRO68_RELOCATE() RETRO68_CALL_UNRELOCATED(Retro68Relocate,())
|
2017-09-26 22:30:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
struct object is an internal data structure in libgcc.
|
|
|
|
|
Comments in unwind-dw2-fde.h imply that it will not
|
|
|
|
|
increase in size.
|
|
|
|
|
*/
|
|
|
|
|
struct object { long space[8]; };
|
|
|
|
|
|
|
|
|
|
extern void __register_frame_info (const void *, struct object *)
|
2019-08-18 11:21:00 +00:00
|
|
|
|
__attribute__ ((weak));
|
2017-09-26 22:30:06 +00:00
|
|
|
|
extern void *__deregister_frame_info (const void *)
|
2019-08-18 11:21:00 +00:00
|
|
|
|
__attribute__ ((weak));
|
2017-09-26 22:30:06 +00:00
|
|
|
|
|
|
|
|
|
typedef struct Retro68RelocState
|
|
|
|
|
{
|
2019-08-18 11:21:00 +00:00
|
|
|
|
Ptr bssPtr;
|
|
|
|
|
Handle codeHandle;
|
|
|
|
|
char hasStripAddr;
|
|
|
|
|
char hasFlushCodeCache;
|
2017-09-26 22:30:06 +00:00
|
|
|
|
} Retro68RelocState;
|
|
|
|
|
|
|
|
|
|
extern Retro68RelocState relocState;
|