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:
authorAndrew Au <andrewau@microsoft.com>2017-10-06 21:37:59 +0300
committerAndrew Au <andrewau@microsoft.com>2017-10-06 21:37:59 +0300
commit94cb735024ea103e54ad3385d2002b6b8759723d (patch)
tree239fafe666486a3a688a392eb81b2102c40879b1 /src/Native
parentad066ef1adabbffffb7af5af2d86b8c5174cf1d9 (diff)
FuncEvalVirtualDispatch - Enable doing real virtual function dispatch in FuncEval.
[tfs-changeset: 1677518]
Diffstat (limited to 'src/Native')
-rw-r--r--src/Native/Runtime/Debug.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Native/Runtime/Debug.h b/src/Native/Runtime/Debug.h
index 76c219296..9b7e7dbcf 100644
--- a/src/Native/Runtime/Debug.h
+++ b/src/Native/Runtime/Debug.h
@@ -9,6 +9,12 @@
// team to make sure that your changes are not going to prevent the debugger
// from working.
+enum FuncEvalEntryPointMode : uint32_t
+{
+ FixedAddress = 0,
+ VirtualMethodSlotOnly = 1,
+};
+
enum FuncEvalMode : uint32_t
{
CallParameterizedFunction = 1,