factor/vm/cpu-x86.hpp

45 lines
1.1 KiB
C++
Raw Normal View History

2009-05-02 05:04:19 -04:00
#include <assert.h>
2009-05-04 02:46:13 -04:00
namespace factor
{
2009-05-04 05:50:24 -04:00
#define FRAME_RETURN_ADDRESS(frame) *(void **)(frame_successor(frame) + 1)
2009-05-02 05:04:19 -04:00
2009-05-04 05:50:24 -04:00
inline static void flush_icache(cell start, cell len) {}
2009-05-02 05:04:19 -04:00
2009-05-04 05:50:24 -04:00
inline static void check_call_site(cell return_address)
2009-05-02 05:04:19 -04:00
{
/* An x86 CALL instruction looks like so:
|e8|..|..|..|..|
where the ... are a PC-relative jump address.
The return_address points to right after the
instruction. */
#ifdef FACTOR_DEBUG
assert(*(unsigned char *)(return_address - 5) == 0xe8);
#endif
}
2009-05-04 05:50:24 -04:00
inline static void *get_call_target(cell return_address)
2009-05-02 05:04:19 -04:00
{
check_call_site(return_address);
2009-05-04 05:50:24 -04:00
return (void *)(*(int *)(return_address - 4) + return_address);
2009-05-02 05:04:19 -04:00
}
2009-05-04 05:50:24 -04:00
inline static void set_call_target(cell return_address, void *target)
2009-05-02 05:04:19 -04:00
{
check_call_site(return_address);
2009-05-04 05:50:24 -04:00
*(int *)(return_address - 4) = ((cell)target - return_address);
2009-05-02 05:04:19 -04:00
}
/* Defined in assembly */
2009-05-04 05:50:24 -04:00
VM_ASM_API void c_to_factor(cell quot);
VM_ASM_API void throw_impl(cell quot, stack_frame *rewind_to);
VM_ASM_API void lazy_jit_compile(cell quot);
2009-05-02 05:04:19 -04:00
2009-05-04 05:50:24 -04:00
VM_C_API void set_callstack(stack_frame *to,
stack_frame *from,
cell length,
2009-05-02 05:04:19 -04:00
void *(*memcpy)(void*,const void*, size_t));
2009-05-04 02:46:13 -04:00
}