crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianStructuresLib/Arm/Registers/VFP/ArmVectorFloatingPointRegisters.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 SymbianStructuresLib.Arm.Registers;
       
    21 
       
    22 namespace SymbianStructuresLib.Arm.Registers.VFP
       
    23 {
       
    24     public enum TArmRegisterTypeVFP
       
    25     {
       
    26         // Double prevision
       
    27         D00 = 0,
       
    28         D01,
       
    29         D02,
       
    30         D03,
       
    31         D04,
       
    32         D05,
       
    33         D06,
       
    34         D07,
       
    35         D08,
       
    36         D09,
       
    37         D10,
       
    38         D11,
       
    39         D12,
       
    40         D13,
       
    41         D14,
       
    42         D15,
       
    43 
       
    44         // Single precision
       
    45         S00 = 100,
       
    46         S01,
       
    47         S02,
       
    48         S03,
       
    49         S04,
       
    50         S05,
       
    51         S06,
       
    52         S07,
       
    53         S08,
       
    54         S09,
       
    55         S10,
       
    56         S11,
       
    57         S12,
       
    58         S13,
       
    59         S14,
       
    60         S15,
       
    61         S16,
       
    62         S17,
       
    63         S18,
       
    64         S19,
       
    65         S20,
       
    66         S21,
       
    67         S22,
       
    68         S23,
       
    69         S24,
       
    70         S25,
       
    71         S26,
       
    72         S27,
       
    73         S28,
       
    74         S29,
       
    75         S30,
       
    76         S31,
       
    77     }
       
    78 }