factor/vm/cpu-ppc.hpp

18 lines
403 B
C++
Raw Normal View History

2009-05-04 02:46:13 -04:00
namespace factor
{
2009-05-02 05:04:19 -04:00
#define FACTOR_CPU_STRING "ppc"
#define VM_ASM_API
2009-05-02 05:04:19 -04:00
register CELL ds asm("r29");
register CELL rs asm("r30");
void c_to_factor(CELL quot);
void undefined(CELL word);
void set_callstack(F_STACK_FRAME *to, F_STACK_FRAME *from, CELL length, void *memcpy);
void throw_impl(CELL quot, F_STACK_FRAME *rewind);
void lazy_jit_compile(CELL quot);
void flush_icache(CELL start, CELL len);
2009-05-04 02:46:13 -04:00
}