crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianInstructionLib/Arm/Instructions/Arm/DataTransfer/Bases/Arm_LoadOrStore.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 using SymbianUtils.BasicTypes;
       
    21 using SymbianStructuresLib.Arm.Registers;
       
    22 using SymbianStructuresLib.Arm.Instructions;
       
    23 using SymbianInstructionLib.Arm.Instructions.Common;
       
    24 
       
    25 namespace SymbianInstructionLib.Arm.Instructions.Arm.DataTransfer
       
    26 {
       
    27     public abstract class Arm_LoadOrStore : ArmInstruction
       
    28     {
       
    29         #region Constructors
       
    30         protected Arm_LoadOrStore()
       
    31         {
       
    32             base.AIGroup = SymbianStructuresLib.Arm.Instructions.TArmInstructionGroup.EGroupDataTransfer;
       
    33         }
       
    34         #endregion
       
    35 
       
    36         #region API
       
    37         #endregion
       
    38 
       
    39         #region Properties
       
    40         public abstract TArmDataTransferType DataTransferType
       
    41         {
       
    42             get;
       
    43         }
       
    44         #endregion
       
    45 
       
    46         #region Internal methods
       
    47         #endregion
       
    48 
       
    49         #region Data members
       
    50         #endregion
       
    51     }
       
    52 }
       
    53