crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianInstructionLib/Arm/Instructions/Arm/Arm_Unknown.cs
changeset 0 818e61de6cd1
equal deleted inserted replaced
-1:000000000000 0:818e61de6cd1
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 * 
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 using System;
       
    18 using System.Collections.Generic;
       
    19 using System.Text;
       
    20 
       
    21 namespace SymbianInstructionLib.Arm.Instructions.Arm
       
    22 {
       
    23     public class Arm_Unknown : ArmInstruction
       
    24     {
       
    25         #region Constructors
       
    26         public Arm_Unknown()
       
    27         {
       
    28         }
       
    29         #endregion
       
    30 
       
    31         #region API
       
    32         public override bool Matches( uint aOpCode )
       
    33         {
       
    34             // Matches everything
       
    35             return true;
       
    36         }
       
    37         #endregion
       
    38 
       
    39         #region Properties
       
    40         #endregion
       
    41 
       
    42         #region From System.Object
       
    43         #endregion
       
    44 
       
    45         #region From IArmInstruction
       
    46         public new bool AIIsUnknown
       
    47         {
       
    48             get { return true; }
       
    49         }
       
    50         #endregion
       
    51 
       
    52         #region From ArmBaseInstruction
       
    53         internal override int SortOrder
       
    54         {
       
    55             get { return int.MinValue; }
       
    56         }
       
    57         #endregion
       
    58 
       
    59         #region Data members
       
    60         #endregion
       
    61     }
       
    62 }
       
    63