X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fruntime%2Fmips-linux-os.c;h=1968c2a1f1389cdac034533dcbb6fb166ff94b8c;hb=70227794f1eefb567c13ec04f7bd6d3b6794aa29;hp=2cda92c6a3a22a8bacbc49e5cc7595087b6150e2;hpb=5e2b057871cf47c795c75106899f5fb05dc3397e;p=sbcl.git diff --git a/src/runtime/mips-linux-os.c b/src/runtime/mips-linux-os.c index 2cda92c..1968c2a 100644 --- a/src/runtime/mips-linux-os.c +++ b/src/runtime/mips-linux-os.c @@ -37,6 +37,9 @@ /* for cacheflush() */ #include +/* for BD_CAUSE */ +#include + #include "validate.h" size_t os_vm_page_size; @@ -82,9 +85,10 @@ unsigned int os_context_fp_control(os_context_t *context) { /* FIXME: Probably do something. */ + return 0; } -void +void os_restore_fp_control(os_context_t *context) { /* FIXME: Probably do something. */ @@ -101,18 +105,40 @@ os_context_bd_cause(os_context_t *context) loop" where a (BREAK 16) not in a branch delay slot would have CAUSEF_BD filled. So, we comment - #include - - return (((struct sigcontext *) &(context->uc_mcontext))->sc_cause - & CAUSEF_BD); + return (((struct sigcontext *) &(context->uc_mcontext))->sc_cause + & CAUSEF_BD); out and return 0 always. -- CSR, 2002-09-02 */ + /* Unfortunately, returning 0 fails for taken branches because + os_context_bd_cause is also used to find out if a branch + emulation is needed. We work around that by checking if the + current instruction is a jump or a branch. */ + unsigned int inst = *((unsigned int *)(unsigned int)(*os_context_pc_addr(context))); + + switch (inst >> 26) { + case 0x0: /* immediate jumps */ + switch (inst & 0x3f) { + case 0x08: + case 0x09: + return CAUSEF_BD; + } + break; + /* branches and register jumps */ + case 0x1: + case 0x2: + case 0x3: + case 0x4: + case 0x5: + case 0x6: + case 0x7: + return CAUSEF_BD; + } return 0; } -void +void os_flush_icache(os_vm_address_t address, os_vm_size_t length) { if (cacheflush(address, length, ICACHE) == -1) - perror("cacheflush"); + perror("cacheflush"); }