diff -r 000000000000 -r 818e61de6cd1 crashanalysercmd/Libraries/Engine/CrashItemLib/Engine/ProblemDetectors/Stack/CIPDStackDataValidator.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/crashanalysercmd/Libraries/Engine/CrashItemLib/Engine/ProblemDetectors/Stack/CIPDStackDataValidator.cs Thu Feb 11 15:50:58 2010 +0200 @@ -0,0 +1,82 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ +using System; +using System.Text; +using System.Collections.Generic; +using CrashItemLib.Crash.Container; +using CrashItemLib.Crash.Stacks; +using CrashItemLib.Crash.Registers; +using CrashItemLib.Crash.Base; +using CrashItemLib.Crash.Messages; +using CrashItemLib.Crash.Summarisable; +using SymbianStructuresLib.Arm.Registers; +using SymbianUtils.Range; + +namespace CrashItemLib.Engine.ProblemDetectors.Stack +{ + internal class CIPDStackDataValidator : CIProblemDetector + { + #region Constructors + public CIPDStackDataValidator() + { + } + #endregion + + #region From CIProblemDetector + public override void Check( CIContainer aContainer ) + { + CISummarisableEntityList list = aContainer.Summaries; + foreach ( CISummarisableEntity entry in list ) + { + bool stackAvailable = entry.IsAvailable( CISummarisableEntity.TElement.EElementStack ); + bool regsAvailable = entry.IsAvailable( CISummarisableEntity.TElement.EElementRegisters ); + if ( stackAvailable && regsAvailable ) + { + CIStack stack = entry.Stack; + // + bool pointerAvailable = stack.Registers.Contains( TArmRegisterType.EArmReg_SP ); + if ( pointerAvailable ) + { + CIRegister regSP = stack.Pointer; + AddressRange stackDataRange = stack.RawDataRange; + // + if ( !stackDataRange.Contains( regSP ) ) + { + base.CreateWarning( aContainer, stack, + LibResources.CPIDStackDataValidator_Title, + string.Format( LibResources.CPIDStackDataValidator_Description, base.CreateIdentifierText( entry ) ) + ); + } + } + } + } + } + #endregion + + #region Properties + #endregion + + #region Internal methods + #endregion + + #region From System.Object + #endregion + + #region Data members + #endregion + } +}