diff options
Diffstat (limited to 'src/ToolBox/superpmi/superpmi-shim-simple/jithost.cpp')
-rw-r--r-- | src/ToolBox/superpmi/superpmi-shim-simple/jithost.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/ToolBox/superpmi/superpmi-shim-simple/jithost.cpp b/src/ToolBox/superpmi/superpmi-shim-simple/jithost.cpp new file mode 100644 index 0000000000..01bff37a01 --- /dev/null +++ b/src/ToolBox/superpmi/superpmi-shim-simple/jithost.cpp @@ -0,0 +1,40 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. +// + +#include "standardpch.h" +#include "runtimedetails.h" +#include "spmiutil.h" +#include "jithost.h" + +JitHost* g_ourJitHost; + +JitHost::JitHost(ICorJitHost* wrappedHost) : wrappedHost(wrappedHost) +{ +} + +void* JitHost::allocateMemory(size_t size, bool usePageAllocator) +{ + return wrappedHost->allocateMemory(size, usePageAllocator); +} + +void JitHost::freeMemory(void* block, bool usePageAllocator) +{ + return wrappedHost->freeMemory(block, usePageAllocator); +} + +int JitHost::getIntConfigValue(const wchar_t* key, int defaultValue) +{ + return wrappedHost->getIntConfigValue(key, defaultValue); +} + +const wchar_t* JitHost::getStringConfigValue(const wchar_t* key) +{ + return wrappedHost->getStringConfigValue(key); +} + +void JitHost::freeStringConfigValue(const wchar_t* value) +{ + wrappedHost->freeStringConfigValue(value); +} |