Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Ignatov <sergign60@mail.ru>2017-02-06 16:04:03 +0300
committerSergey Ignatov <sergign60@mail.ru>2017-02-06 16:04:03 +0300
commitd9847aff807f50e3fbd9393742ee7f9a24a21ded (patch)
treebbafdf81fb3153f50ddcc800842fac8cf53c1606 /src/Native/Runtime/regdisplay.h
parent5f49bf4ddc1c515205b400f2491bf33aff9a0106 (diff)
Deleted unneeded fields pCurrentContextPointers&volatileCurrContextPointers
Diffstat (limited to 'src/Native/Runtime/regdisplay.h')
-rw-r--r--src/Native/Runtime/regdisplay.h35
1 files changed, 1 insertions, 34 deletions
diff --git a/src/Native/Runtime/regdisplay.h b/src/Native/Runtime/regdisplay.h
index d68b84ad3..24c6c5a75 100644
--- a/src/Native/Runtime/regdisplay.h
+++ b/src/Native/Runtime/regdisplay.h
@@ -49,37 +49,7 @@ struct REGDISPLAY
#elif defined(_TARGET_ARM_)
-typedef struct _ArmVolatileContextPointer
-{
- PTR_UIntNative R0;
- PTR_UIntNative R1;
- PTR_UIntNative R2;
- PTR_UIntNative R3;
- PTR_UIntNative R12;
-} ArmVolatileContextPointer;
-
-typedef struct _ArmNonVolatileContextPointer {
- PTR_UIntNative R4;
- PTR_UIntNative R5;
- PTR_UIntNative R6;
- PTR_UIntNative R7;
- PTR_UIntNative R8;
- PTR_UIntNative R9;
- PTR_UIntNative R10;
- PTR_UIntNative R11;
- PTR_UIntNative Lr;
-
- PTR_UInt64 D8;
- PTR_UInt64 D9;
- PTR_UInt64 D10;
- PTR_UInt64 D11;
- PTR_UInt64 D12;
- PTR_UInt64 D13;
- PTR_UInt64 D14;
- PTR_UInt64 D15;
-} ArmNonVolatileContextPointer;
-
-struct REGDISPLAY
+struct REGDISPLAY
{
PTR_UIntNative pR0;
PTR_UIntNative pR1;
@@ -105,9 +75,6 @@ struct REGDISPLAY
// for EH, but not adjusted, so we only need
// their values, not their addresses
- ArmNonVolatileContextPointer *pCurrentContextPointers;
- ArmVolatileContextPointer volatileCurrContextPointers;
-
inline PCODE GetIP() { return IP; }
inline PTR_PCODE GetAddrOfIP() { return pIP; }
inline UIntNative GetSP() { return SP; }