summaryrefslogtreecommitdiff
path: root/src/zap
diff options
context:
space:
mode:
authorRama Krishnan Raghupathy <ramarag@microsoft.com>2016-03-30 20:00:57 -0700
committerRama Krishnan Raghupathy <ramarag@microsoft.com>2016-03-30 20:00:57 -0700
commit6a2e3b34c3c9ac32456d38567b9f44ab6aea2f63 (patch)
treeb044645e19e8ea90373d9259cb9c3706ae632c9c /src/zap
parenta62cb372fb7edf1cf7d7b783bfa653f58dc68a7a (diff)
downloadcoreclr-6a2e3b34c3c9ac32456d38567b9f44ab6aea2f63.tar.gz
coreclr-6a2e3b34c3c9ac32456d38567b9f44ab6aea2f63.tar.bz2
coreclr-6a2e3b34c3c9ac32456d38567b9f44ab6aea2f63.zip
Getting SOS to work on ARm64:
This mainly involved DACizing the VM code. A bulk edit for changing RUNTIME_FUNCTION to T_RUNTIME_FUNCTION [tfs-changeset: 1591667]
Diffstat (limited to 'src/zap')
-rw-r--r--src/zap/zapcode.cpp2
-rw-r--r--src/zap/zapcode.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/zap/zapcode.cpp b/src/zap/zapcode.cpp
index 2e7f21590a..ca1c023f20 100644
--- a/src/zap/zapcode.cpp
+++ b/src/zap/zapcode.cpp
@@ -1291,7 +1291,7 @@ ZapGCInfo * ZapGCInfoTable::GetGCInfo(PVOID pBlob, SIZE_T cbBlob)
void ZapUnwindInfo::Save(ZapWriter * pZapWriter)
{
- RUNTIME_FUNCTION runtimeFunction;
+ T_RUNTIME_FUNCTION runtimeFunction;
#if defined(_TARGET_ARM_)
RUNTIME_FUNCTION__SetBeginAddress(&runtimeFunction, GetStartAddress());
diff --git a/src/zap/zapcode.h b/src/zap/zapcode.h
index d68f9028c1..ed8cc2d807 100644
--- a/src/zap/zapcode.h
+++ b/src/zap/zapcode.h
@@ -427,7 +427,7 @@ public:
virtual DWORD GetSize()
{
- return sizeof(RUNTIME_FUNCTION);
+ return sizeof(T_RUNTIME_FUNCTION);
}
virtual ZapNodeType GetType()