]> gitweb.factorcode.org Git - factor.git/blob - vm/cpu-x86.hpp
Merge branch 'master' of git://factorcode.org/git/factor
[factor.git] / vm / cpu-x86.hpp
1 #include <assert.h>
2
3 namespace factor
4 {
5
6 #define FRAME_RETURN_ADDRESS(frame,vm) *(void **)(vm->frame_successor(frame) + 1)
7
8 inline static void flush_icache(cell start, cell len) {}
9
10 /* In the instruction sequence:
11
12    MOV EBX,...
13    JMP blah
14
15    the offset from the immediate operand to MOV to the instruction after
16    the jump is a cell for the immediate operand, 4 bytes for the JMP
17    destination, and one byte for the JMP opcode. */
18 static const fixnum xt_tail_pic_offset = 4 + 1;
19
20 static const unsigned char call_opcode = 0xe8;
21 static const unsigned char jmp_opcode = 0xe9;
22
23 inline static unsigned char call_site_opcode(cell return_address)
24 {
25         return *(unsigned char *)(return_address - 5);
26 }
27
28 inline static void check_call_site(cell return_address)
29 {
30         unsigned char opcode = call_site_opcode(return_address);
31         assert(opcode == call_opcode || opcode == jmp_opcode);
32 }
33
34 inline static void *get_call_target(cell return_address)
35 {
36         check_call_site(return_address);
37         return (void *)(*(int *)(return_address - 4) + return_address);
38 }
39
40 inline static void set_call_target(cell return_address, void *target)
41 {
42         check_call_site(return_address);
43         *(int *)(return_address - 4) = (u32)((cell)target - return_address);
44 }
45
46 inline static bool tail_call_site_p(cell return_address)
47 {
48         switch(call_site_opcode(return_address))
49         {
50         case jmp_opcode: return true;
51         case call_opcode: return false;
52         default: abort(); return false;
53         }
54 }
55
56 inline static unsigned int fpu_status(unsigned int status)
57 {
58         unsigned int r = 0;
59         
60         if (status & 0x01)
61                 r |= FP_TRAP_INVALID_OPERATION;
62         if (status & 0x04)
63                 r |= FP_TRAP_ZERO_DIVIDE;
64         if (status & 0x08)
65                 r |= FP_TRAP_OVERFLOW;
66         if (status & 0x10)
67                 r |= FP_TRAP_UNDERFLOW;
68         if (status & 0x20)
69                 r |= FP_TRAP_INEXACT;
70
71         return r;
72 }
73
74 }