Changeset 3b712407 in mainline


Ignore:
Timestamp:
2006-03-23T21:15:59Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e1be3b6
Parents:
38ee55b
Message:

Fixed bad rflags masking in amd64.
Added TLS get address instruction emulation for mips.

Location:
arch
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • arch/amd64/src/userspace.c

    r38ee55b r3b712407  
    4747
    4848        /* Clear CF,PF,AF,ZF,SF,DF,OF */
    49         ipl &= ~ (0xbc4);
     49        ipl &= ~(0xcd4);
    5050
    5151        __asm__ volatile (""
  • arch/ia32/src/ia32.c

    r38ee55b r3b712407  
    112112/** Set Thread-local-storeage pointer
    113113 *
    114  * TLS pointer is set in FS register. Unfortunately the 64-bit
    115  * part can be set only in CPL0 mode.
    116  *
    117  * The specs says, that on %fs:0 there is stored contents of %fs register,
    118  * we need not to go to CPL0 to read it.
     114 * TLS pointer is set in GS register. That means, the GS contains
     115 * selector, and the descriptor->base is the correct address.
    119116 */
    120117__native sys_tls_set(__native addr)
  • arch/mips32/src/exception.c

    r38ee55b r3b712407  
    8484}
    8585
     86static void reserved_instr_exception(int n, istate_t *istate)
     87{
     88        if (*((__u32 *)istate->epc) == 0x7c03e83b) {
     89                ASSERT(THREAD);
     90                istate->epc += 4;
     91                istate->v1 = istate->k1;
     92        } else {
     93                print_regdump(istate);
     94                panic("reserved instruction");
     95        }
     96}
     97
    8698static void breakpoint_exception(int n, istate_t *istate)
    8799{
     
    143155                exc_register(i, "undef", (iroutine) unhandled_exception);
    144156        exc_register(EXC_Bp, "bkpoint", (iroutine) breakpoint_exception);
     157        exc_register(EXC_RI, "resinstr", (iroutine) reserved_instr_exception);
    145158        exc_register(EXC_Mod, "tlb_mod", (iroutine) tlbmod_exception);
    146159        exc_register(EXC_TLBL, "tlbinvl", (iroutine) tlbinv_exception);
Note: See TracChangeset for help on using the changeset viewer.