diff -r a179b74831c9 -r c1f20ce4abcf kernel/eka/nkern/arm/ncmonitor.cpp --- a/kernel/eka/nkern/arm/ncmonitor.cpp Thu Aug 19 11:14:22 2010 +0300 +++ b/kernel/eka/nkern/arm/ncmonitor.cpp Tue Aug 31 16:34:26 2010 +0300 @@ -22,31 +22,9 @@ #include "nk_priv.h" #include -EXPORT_C void Monitor::DisplayNThreadInfo(NThread* pT) +void DisplayNThreadPlatformSpecific(Monitor& m, NThread* pT) { - TBuf8<80> buf=_L8("NThread @ "); - buf.AppendNumFixedWidth((TUint)pT,EHex,8); - buf+=_L8(" Pri "); - buf.AppendNum((TUint)pT->iPriority); - buf+=_L8(" NState "); - switch (pT->iSpare1) - { - case NThread::EReady: buf+=_L8("READY"); break; - case NThread::ESuspended: buf+=_L8("SUSPENDED"); break; - case NThread::EWaitFastSemaphore: buf+=_L8("WAITFSEM "); buf.AppendNumFixedWidth((TUint)pT->iWaitObj,EHex,8); break; - case NThread::ESleep: buf+=_L8("SLEEP"); break; - case NThread::EBlocked: buf+=_L8("BLOCKED"); break; - case NThread::EDead: buf+=_L8("DEAD"); break; - case NThread::EWaitDfc: buf+=_L8("WAITDFC"); break; - default: buf+=_L8("??"); buf.AppendNumFixedWidth((TUint)pT->iSpare1,EHex,8); break; - } - PrintLine(buf); - Printf("Next=%08x Prev=%08x Att=%02x iUserContextType=%02x\r\n",pT->iNext,pT->iPrev,pT->iSpare2,pT->iSpare3); - Printf("HeldFM=%08x WaitFM=%08x AddrSp=%08x\r\n",pT->iHeldFastMutex,pT->iWaitFastMutex,pT->iAddressSpace); - Printf("Time=%d Timeslice=%d ReqCount=%d\r\n",pT->iTime,pT->iTimeslice,pT->iRequestSemaphore.iCount); - Printf("SuspendCount=%d CsCount=%d CsFunction=%08x\r\n",pT->iSuspendCount,pT->iCsCount,pT->iCsFunction); - Printf("SavedSP=%08x ExtraContext=%08x ExtraContextSize=%04x\r\n",pT->iSavedSP,pT->iExtraContext,pT->iExtraContextSize); - Printf("iUserModeCallbacks=%08x iSpare7=%08x iSpare8=%08x\r\n", pT->iUserModeCallbacks, pT->iSpare7, pT->iSpare8); + m.Printf("iUserContextType=%02x ExtraContext=%08x ExtraContextSize=%04x\r\n",pT->iSpare3,pT->iExtraContext,pT->iExtraContextSize); if (pT != TScheduler::Ptr()->iCurrentThread) { TUint32* pS=(TUint32*)pT->iSavedSP; @@ -56,51 +34,26 @@ { TUint32* pR=reg; #ifdef __CPU_SUPPORT_THUMB2EE - Printf("TEEHBR %08x ",*pR++); + m.Printf("TEEHBR %08x ",*pR++); #endif #ifdef __CPU_HAS_CP15_THREAD_ID_REG - Printf("RWRWTID %08x ",*pR++); + m.Printf("RWRWTID %08x ",*pR++); #endif #ifdef __CPU_HAS_VFP - Printf("FPEXC %08x ",*pR++); + m.Printf("FPEXC %08x ",*pR++); #endif #ifdef __CPU_HAS_COPROCESSOR_ACCESS_REG - Printf("CAR %08x ",*pR++); + m.Printf("CAR %08x ",*pR++); #endif #ifdef __CPU_ARM_USE_DOMAINS - Printf("DACR %08x\r\n",*pR++); + m.Printf("DACR %08x\r\n",*pR++); #endif - Printf("R13_USR %08x R14_USR %08x SPSR_SVC %08x\r\n",pR[0],pR[1],pR[2]); - Printf(" R4 %08x R5 %08x R6 %08x R7 %08x\r\n",pR[3],pR[4],pR[5],pR[6]); - Printf(" R8 %08x R9 %08x R10 %08x R11 %08x\r\n",pR[7],pR[8],pR[9],pR[10]); - Printf(" PC %08x\r\n",pR[11]); + m.Printf("R13_USR %08x R14_USR %08x SPSR_SVC %08x\r\n",pR[0],pR[1],pR[2]); + m.Printf(" R4 %08x R5 %08x R6 %08x R7 %08x\r\n",pR[3],pR[4],pR[5],pR[6]); + m.Printf(" R8 %08x R9 %08x R10 %08x R11 %08x\r\n",pR[7],pR[8],pR[9],pR[10]); + m.Printf(" PC %08x\r\n",pR[11]); } } - NewLine(); - } - -void Monitor::DisplayNFastSemInfo(NFastSemaphore* pS) - { - Printf("NFastSemaphore @ %08x Count %d OwningThread %08x\r\n",pS,pS->iCount,pS->iOwningThread); - } - -void Monitor::DisplayNFastMutexInfo(NFastMutex* pM) - { - Printf("NFastMutex @ %08x HoldingThread %08x iWaiting %08x\r\n",pM,pM->iHoldingThread,pM->iWaiting); - } - -void Monitor::DisplaySchedulerInfo() - { - TScheduler* pS=TScheduler::Ptr(); - Printf("SCHEDULER @%08x: CurrentThread %08x\r\n",pS,pS->iCurrentThread); - Printf("RescheduleNeeded=%02x DfcPending=%02x KernCSLocked=%08x\r\n",pS->iRescheduleNeededFlag,pS->iDfcPendingFlag,pS->iKernCSLocked); - Printf("DFCS: next %08x prev %08x\r\n",pS->iDfcs.iA.iNext,pS->iDfcs.iA.iPrev); - Printf("ProcessHandler=%08x, AddressSpace=%08x\r\n",pS->iProcessHandler,pS->iAddressSpace); - Printf("SYSLOCK: HoldingThread %08x iWaiting %08x\r\n",pS->iLock.iHoldingThread,pS->iLock.iWaiting); - Printf("Extras 0: %08x 1: %08x 2: %08x 3: %08x\r\n",pS->iExtras[0],pS->iExtras[1],pS->iExtras[2],pS->iExtras[3]); - Printf("Extras 4: %08x 5: %08x 6: %08x 7: %08x\r\n",pS->iExtras[4],pS->iExtras[5],pS->iExtras[6],pS->iExtras[7]); - Printf("Extras 8: %08x 9: %08x A: %08x B: %08x\r\n",pS->iExtras[8],pS->iExtras[9],pS->iExtras[10],pS->iExtras[11]); - Printf("Extras C: %08x D: %08x E: %08x F: %08x\r\n",pS->iExtras[12],pS->iExtras[13],pS->iExtras[14],pS->iExtras[15]); } void DumpRegisters(Monitor& m, SFullArmRegSet& a)