| 123456789101112131415161718192021222324252627 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- #include "Backend.h"
- CodeGenAllocators::CodeGenAllocators(AllocationPolicyManager * policyManager, Js::ScriptContext * scriptContext)
- : pageAllocator(policyManager, Js::Configuration::Global.flags, PageAllocatorType_BGJIT, 0)
- , allocator(L"NativeCode", &pageAllocator, Js::Throw::OutOfMemory)
- , emitBufferManager(&allocator, scriptContext->GetThreadContext()->GetCodePageAllocators(), scriptContext, L"JIT code buffer")
- #if !_M_X64_OR_ARM64 && _CONTROL_FLOW_GUARD
- , canCreatePreReservedSegment(false)
- #endif
- {
- }
- CodeGenAllocators::~CodeGenAllocators()
- {
- }
- #if DBG
- void
- CodeGenAllocators::ClearConcurrentThreadId()
- {
- this->pageAllocator.ClearConcurrentThreadId();
- }
- #endif
|