]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/cpu-x86.hpp
webapps.wiki: adding search bar
[factor.git] / vm / cpu-x86.hpp
index 349548f1ca32d2881bfc7f73b5dd968d4af850ab..a0d83b5d78d3b5ea2a82827133eb28c37960cced 100644 (file)
@@ -1,88 +1,70 @@
-#include <assert.h>
+namespace factor {
 
-namespace factor
-{
+#define CALLSTACK_BOTTOM(ctx) \
+  (ctx->callstack_seg->end - sizeof(cell) * 5)
 
-#define FRAME_RETURN_ADDRESS(frame,vm) *(void **)(vm->frame_successor(frame) + 1)
+inline static void flush_icache(cell start, cell len) { (void)start; (void)len; }
 
-inline static void flush_icache(cell start, cell len) {}
+// In the instruction sequence:
 
-/* In the instruction sequence:
+// MOV EBX,...
+// JMP blah
 
-   MOV EBX,...
-   JMP blah
-
-   the offset from the immediate operand to MOV to the instruction after
-   the jump is a cell for the immediate operand, 4 bytes for the JMP
-   destination, and one byte for the JMP opcode. */
+// the offset from the immediate operand to MOV to the instruction after
+// the jump is a cell for the immediate operand, 4 bytes for the JMP
+// destination, and one byte for the JMP opcode.
 static const fixnum xt_tail_pic_offset = 4 + 1;
 
 static const unsigned char call_opcode = 0xe8;
 static const unsigned char jmp_opcode = 0xe9;
 
-inline static unsigned char call_site_opcode(cell return_address)
-{
-       return *(unsigned char *)(return_address - 5);
+inline static unsigned char call_site_opcode(cell return_address) {
+  return *(unsigned char*)(return_address - 5);
 }
 
-inline static void check_call_site(cell return_address)
-{
-#ifdef FACTOR_DEBUG
-       unsigned char opcode = call_site_opcode(return_address);
-       assert(opcode == call_opcode || opcode == jmp_opcode);
-#endif
+inline static void check_call_site(cell return_address) {
+  unsigned char opcode = call_site_opcode(return_address);
+  FACTOR_ASSERT(opcode == call_opcode || opcode == jmp_opcode);
+  (void)opcode; // suppress warning when compiling without assertions
 }
 
-inline static void *get_call_target(cell return_address)
-{
-       check_call_site(return_address);
-       return (void *)(*(int *)(return_address - 4) + return_address);
+inline static void* get_call_target(cell return_address) {
+  check_call_site(return_address);
+  return (void*)(*(int*)(return_address - 4) + return_address);
 }
 
-inline static void set_call_target(cell return_address, void *target)
-{
-       check_call_site(return_address);
-       *(int *)(return_address - 4) = ((cell)target - return_address);
+inline static void set_call_target(cell return_address, cell target) {
+  check_call_site(return_address);
+  *(int*)(return_address - 4) = (uint32_t)(target - return_address);
 }
 
-inline static bool tail_call_site_p(cell return_address)
-{
-       switch(call_site_opcode(return_address))
-       {
-       case jmp_opcode: return true;
-       case call_opcode: return false;
-       default: abort(); return false;
-       }
+inline static bool tail_call_site_p(cell return_address) {
+  switch (call_site_opcode(return_address)) {
+    case jmp_opcode:
+      return true;
+    case call_opcode:
+      return false;
+    default:
+      abort();
+      return false;
+  }
 }
 
-inline static unsigned int fpu_status(unsigned int status)
-{
-        unsigned int r = 0;
-       
-        if (status & 0x01)
-               r |= FP_TRAP_INVALID_OPERATION;
-        if (status & 0x04)
-               r |= FP_TRAP_ZERO_DIVIDE;
-        if (status & 0x08)
-               r |= FP_TRAP_OVERFLOW;
-        if (status & 0x10)
-               r |= FP_TRAP_UNDERFLOW;
-        if (status & 0x20)
-               r |= FP_TRAP_INEXACT;
-
-        return r;
+inline static unsigned int fpu_status(unsigned int status) {
+  unsigned int r = 0;
+
+  if (status & 0x01)
+    r |= FP_TRAP_INVALID_OPERATION;
+  if (status & 0x04)
+    r |= FP_TRAP_ZERO_DIVIDE;
+  if (status & 0x08)
+    r |= FP_TRAP_OVERFLOW;
+  if (status & 0x10)
+    r |= FP_TRAP_UNDERFLOW;
+  if (status & 0x20)
+    r |= FP_TRAP_INEXACT;
+
+  return r;
 }
 
-/* Defined in assembly */
-VM_C_API void c_to_factor(cell quot, void *vm);
-VM_C_API void throw_impl(cell quot, void *new_stack, void *vm);
-VM_C_API void lazy_jit_compile_impl(cell quot, void *vm);
-
-VM_C_API void set_callstack(
-       void *vm,
-       stack_frame *to,
-       stack_frame *from,
-       cell length,
-       void *(*memcpy)(void*,const void*, size_t));
-
 }