📄 excarchlib.c
字号:
/* excArchLib.c - i80X86 exception handling facilities *//* Copyright 1984-1993 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01h,29jul96,sbs Made windview conditionally compile.01g,15nov94,hdn WindView instrumetation.01f,01nov94,hdn added X86CPU_PENTIUM of sysProcessor.01e,29may94,hdn changed I80486 to sysProcessor.01d,14nov93,hdn deleted excExcepHook.01c,03jun93,hdn updated to 5.1 -changed functions to ansi style -changed includes to have absolute path from h/ -fixed #else and #endif -changed READ, WRITE and UPDATE to O_RDONLY O_WRONLY O_RDWR -changed VOID to void -changed copyright notice01b,26mar93,hdn supported 486's exception, alignment check.01a,28feb92,hdn written based on TRON, 68k version.*//*This module contains I80X86 architecture dependent portions of theexception handling facilities. See excLib for the portions that arearchitecture independent.SEE ALSO: dbgLib, sigLib, intLib, "Debugging"*/#include "vxWorks.h"#include "esf.h"#include "iv.h"#include "sysLib.h"#include "intLib.h"#include "taskLib.h"#include "qLib.h"#include "errno.h"#include "string.h"#include "vxLib.h"#include "logLib.h"#include "rebootLib.h"#include "private/funcBindP.h"#include "private/kernelLibP.h"#include "private/taskLibP.h"#include "private/sigLibP.h"/* global variables */IMPORT UINT sysProcessor; /* 0=386, 1=486, 2=Pentium */IMPORT char excCallTbl []; /* table of Calls in excALib.s */IMPORT UINT sysIntIdtType; /* interrupt or trap gate */UINT excIdtType = 0x0000ee00; /* interrupt or trap gate *//* local variables *//* forward static functions */LOCAL void excGetInfoFromESF (int vecNum, ESF0 *pEsf, REG_SET *pRegs, EXC_INFO *pExcInfo);LOCAL BOOL programError (int vecNum);/********************************************************************************* excVecInit - initialize the exception/interrupt vectors** This routine sets all exception vectors to point to the appropriate* default exception handlers. These handlers will safely trap and report* exceptions caused by program errors or unexpected hardware interrupts.* All vectors from vector 0 (address 0x0000) to 255 (address 0x07f8) are* initialized.** WHEN TO CALL* This routine is usually called from the system start-up routine* usrInit() in usrConfig, before interrupts are enabled.** RETURNS: OK (always).*/STATUS excVecInit (void) { FAST int vecNum; FUNCPTR *vector; /* make all exception vectors point to either generic exception or * interrupt trap handler */ for (vecNum = LOW_VEC; vecNum <= HIGH_VEC; ++vecNum) { vector = (FUNCPTR *)((int)INUM_TO_IVEC(vecNum) + (int)intVecBaseGet()); *(int *)(vector + 1) = programError (vecNum) ? excIdtType : sysIntIdtType; intVecSet ((FUNCPTR *)INUM_TO_IVEC (vecNum), (FUNCPTR) &excCallTbl[vecNum * 5]); } return (OK); }/********************************************************************************* excExcHandle - interrupt level handling of exceptions** This routine handles exception traps. It is never to be called except* from the special assembly language interrupt stub routine.** It prints out a bunch of pertinent information about the trap that* occurred via excTask.** Note that this routine runs in the context of the task that got the exception.** NOMANUAL*/void excExcHandle ( int vecNum, /* exception vector number */ ESF0 * pEsf, /* pointer to exception stack frame */ REG_SET * pRegs /* pointer to register info on stack */ ) { EXC_INFO excInfo; excGetInfoFromESF (vecNum, pEsf, pRegs, &excInfo); /* fill excInfo/pRegs */ if ((_func_excBaseHook != NULL) && /* user hook around? */ ((* _func_excBaseHook) (vecNum, pEsf, pRegs, &excInfo))) return; /* user hook fixed it */#ifdef WV_INSTRUMENTATION /* windview - level 3 event logging */ EVT_CTX_1(EVENT_EXCEPTION, vecNum);#endif /* WV_INSTRUMENTATION */ /* if exception occured in an isr or before multi tasking then reboot */ if ((INT_CONTEXT ()) || (Q_FIRST (&activeQHead) == NULL)) { if (_func_excPanicHook != NULL) /* panic hook? */ (*_func_excPanicHook) (vecNum, pEsf, pRegs, &excInfo); reboot (BOOT_WARM_AUTOBOOT); return; /* reboot returns?! */ } /* task caused exception */ taskIdCurrent->pExcRegSet = pRegs; /* for taskRegs[GS]et */ taskIdDefault ((int)taskIdCurrent); /* update default tid */ bcopy ((char *) &excInfo, (char *) &(taskIdCurrent->excInfo), sizeof (EXC_INFO)); /* copy in exc info */ if (_func_sigExcKill != NULL) /* signals installed? */ (*_func_sigExcKill) (vecNum, INUM_TO_IVEC(vecNum), pRegs); if (_func_excInfoShow != NULL) /* default show rtn? */ (*_func_excInfoShow) (&excInfo, TRUE); if (excExcepHook != NULL) /* 5.0.2 hook? */ (* excExcepHook) (taskIdCurrent, vecNum, pEsf); taskSuspend (0); /* whoa partner... */ taskIdCurrent->pExcRegSet = (REG_SET *) NULL; /* invalid after rts */ }/********************************************************************************* excIntHandle - interrupt level handling of interrupts** This routine handles interrupts. It is never to be called except* from the special assembly language interrupt stub routine.** It prints out a bunch of pertinent information about the trap that* occurred via excTask().** NOMANUAL*/void excIntHandle ( int vecNum, /* exception vector number */ ESF0 * pEsf, /* pointer to exception stack frame */ REG_SET * pRegs /* pointer to register info on stack */ ) { EXC_INFO excInfo; excGetInfoFromESF (vecNum, pEsf, pRegs, &excInfo); /* fill excInfo/pRegs */#ifdef WV_INSTRUMENTATION /* windview - level 3 event logging */ EVT_CTX_1(EVENT_EXCEPTION, vecNum);#endif /* WV_INSTRUMENTATION */ if (_func_excIntHook != NULL) (*_func_excIntHook) (vecNum, pEsf, pRegs, &excInfo); if (Q_FIRST (&activeQHead) == NULL) /* pre kernel */ reboot (BOOT_WARM_AUTOBOOT); /* better reboot */ }/******************************************************************************* excGetInfoFromESF - get relevent info from exception stack frame**/LOCAL void excGetInfoFromESF ( FAST int vecNum, /* vector number */ FAST ESF0 * pEsf, /* pointer to exception stack frame */ REG_SET * pRegs, /* pointer to register info on stack */ EXC_INFO * pExcInfo /* where to fill in exception info */ ) { int size; pExcInfo->valid = EXC_VEC_NUM; pExcInfo->vecNum = vecNum; /* switch on ESF type */ if (((vecNum >= 10) && (vecNum <= 14)) || (vecNum == 8) || ((vecNum == 17) && (sysProcessor != X86CPU_386))) { pExcInfo->valid |= EXC_ERROR_CODE; pExcInfo->errCode = ((ESF1 *)pEsf)->errCode; pExcInfo->pc = ((ESF1 *)pEsf)->pc; pExcInfo->statusReg = ((ESF1 *)pEsf)->eflags; size = sizeof (ESF1); } else { pExcInfo->pc = pEsf->pc; pExcInfo->statusReg = pEsf->eflags; size = sizeof (ESF0); } pRegs->spReg = (ULONG)((char *) pEsf + size); /* bump up stack ptr */ }/********************************************************************************* programError - determine if exception is program error** RETURNS:* TRUE if exception indicates program error,* FALSE if hardware interrupt or failure.*/LOCAL BOOL programError ( int vecNum /* exception vector number */ ) { if (sysProcessor != X86CPU_386) /* is the CPU 486 or Pentium ? */ return (vecNum <= IN_ALIGNMENT); else return (vecNum <= IN_CP_ERROR); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -