summaryrefslogtreecommitdiff
path: root/src/inc/nativevaraccessors.h
diff options
context:
space:
mode:
authorJiyoung Yun <jy910.yun@samsung.com>2016-11-23 19:09:09 +0900
committerJiyoung Yun <jy910.yun@samsung.com>2016-11-23 19:09:09 +0900
commit4b4aad7217d3292650e77eec2cf4c198ea9c3b4b (patch)
tree98110734c91668dfdbb126fcc0e15ddbd93738ca /src/inc/nativevaraccessors.h
parentfa45f57ed55137c75ac870356a1b8f76c84b229c (diff)
downloadcoreclr-4b4aad7217d3292650e77eec2cf4c198ea9c3b4b.tar.gz
coreclr-4b4aad7217d3292650e77eec2cf4c198ea9c3b4b.tar.bz2
coreclr-4b4aad7217d3292650e77eec2cf4c198ea9c3b4b.zip
Imported Upstream version 1.1.0upstream/1.1.0
Diffstat (limited to 'src/inc/nativevaraccessors.h')
-rw-r--r--src/inc/nativevaraccessors.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/inc/nativevaraccessors.h b/src/inc/nativevaraccessors.h
new file mode 100644
index 0000000000..b3ee7bba0b
--- /dev/null
+++ b/src/inc/nativevaraccessors.h
@@ -0,0 +1,48 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+//*****************************************************************************
+// The following are used to read and write data given NativeVarInfo
+// for primitive types. Don't use these for VALUECLASSes.
+//*****************************************************************************
+
+
+#ifndef _NATIVE_VAR_ACCESSORS_H_
+#define _NATIVE_VAR_ACCESSORS_H_
+
+#include "corjit.h"
+
+bool operator ==(const ICorDebugInfo::VarLoc &varLoc1,
+ const ICorDebugInfo::VarLoc &varLoc2);
+
+#define MAX_NATIVE_VAR_LOCS 2
+
+SIZE_T GetRegOffsInCONTEXT(ICorDebugInfo::RegNum regNum);
+
+struct NativeVarLocation
+{
+ ULONG64 addr;
+ TADDR size;
+ bool contextReg;
+};
+
+ULONG NativeVarLocations(const ICorDebugInfo::VarLoc & varLoc,
+ PT_CONTEXT pCtx,
+ ULONG numLocs,
+ NativeVarLocation* locs);
+
+SIZE_T *NativeVarStackAddr(const ICorDebugInfo::VarLoc & varLoc,
+ PT_CONTEXT pCtx);
+
+bool GetNativeVarVal(const ICorDebugInfo::VarLoc & varLoc,
+ PT_CONTEXT pCtx,
+ SIZE_T * pVal1,
+ SIZE_T * pVal2
+ WIN64_ARG(SIZE_T cbSize));
+
+bool SetNativeVarVal(const ICorDebugInfo::VarLoc & varLoc,
+ PT_CONTEXT pCtx,
+ SIZE_T val1,
+ SIZE_T val2
+ WIN64_ARG(SIZE_T cbSize));
+#endif // #ifndef _NATIVE_VAR_ACCESSORS_H_