-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathV8Isolate.h
101 lines (81 loc) · 3.68 KB
/
V8Isolate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once
//-----------------------------------------------------------------------------
// V8Isolate
//-----------------------------------------------------------------------------
class V8Isolate: public WeakRefTarget<V8Isolate>, public IV8Entity
{
public:
enum class TaskKind: uint16_t
{
Worker,
DelayedWorker,
Foreground,
DelayedForeground,
NonNestableForeground,
NonNestableDelayedForeground,
Count
};
enum class Flags : int32_t
{
// IMPORTANT: maintain bitwise equivalence with managed enum V8.V8RuntimeFlags
None = 0,
EnableDebugging = 0x00000001,
EnableRemoteDebugging = 0x00000002,
EnableDynamicModuleImports = 0x00000004
};
struct Options final
{
double HeapExpansionMultiplier = 0;
size_t MaxArrayBufferAllocation = SIZE_MAX;
Flags Flags = Flags::None;
int DebugPort = 0;
};
struct Statistics final
{
using TaskCounts = std::array<size_t, static_cast<size_t>(TaskKind::Count)>;
void BumpPostedTaskCount(TaskKind kind)
{
++PostedTaskCounts[static_cast<size_t>(kind)];
}
void BumpInvokedTaskCount(TaskKind kind)
{
++InvokedTaskCounts[static_cast<size_t>(kind)];
}
size_t ScriptCount = 0;
size_t ScriptCacheSize = 0;
size_t ModuleCount = 0;
TaskCounts PostedTaskCounts = {};
TaskCounts InvokedTaskCounts = {};
};
static V8Isolate* Create(const StdString& name, const v8::ResourceConstraints* pConstraints, const Options& options);
static size_t GetInstanceCount();
virtual size_t GetMaxHeapSize() = 0;
virtual void SetMaxHeapSize(size_t value) = 0;
virtual double GetHeapSizeSampleInterval() = 0;
virtual void SetHeapSizeSampleInterval(double value) = 0;
virtual size_t GetMaxStackUsage() = 0;
virtual void SetMaxStackUsage(size_t value) = 0;
virtual void AwaitDebuggerAndPause() = 0;
virtual void CancelAwaitDebugger() = 0;
virtual V8ScriptHolder* Compile(const V8DocumentInfo& documentInfo, StdString&& code) = 0;
virtual V8ScriptHolder* Compile(const V8DocumentInfo& documentInfo, StdString&& code, V8CacheKind cacheKind, std::vector<uint8_t>& cacheBytes) = 0;
virtual V8ScriptHolder* Compile(const V8DocumentInfo& documentInfo, StdString&& code, V8CacheKind cacheKind, const std::vector<uint8_t>& cacheBytes, bool& cacheAccepted) = 0;
virtual V8ScriptHolder* Compile(const V8DocumentInfo& documentInfo, StdString&& code, V8CacheKind cacheKind, std::vector<uint8_t>& cacheBytes, V8CacheResult& cacheResult) = 0;
virtual bool GetEnableInterruptPropagation() = 0;
virtual void SetEnableInterruptPropagation(bool value) = 0;
virtual bool GetDisableHeapSizeViolationInterrupt() = 0;
virtual void SetDisableHeapSizeViolationInterrupt(bool value) = 0;
virtual void GetHeapStatistics(v8::HeapStatistics& heapStatistics) = 0;
virtual Statistics GetStatistics() = 0;
virtual void CollectGarbage(bool exhaustive) = 0;
typedef void CpuProfileCallback(const v8::CpuProfile& profile, void* pvArg);
virtual bool BeginCpuProfile(const StdString& name, v8::CpuProfilingMode mode, bool recordSamples) = 0;
virtual bool EndCpuProfile(const StdString& name, CpuProfileCallback* pCallback, void* pvArg) = 0;
virtual void CollectCpuProfileSample() = 0;
virtual uint32_t GetCpuProfileSampleInterval() = 0;
virtual void SetCpuProfileSampleInterval(uint32_t value) = 0;
virtual void WriteHeapSnapshot(void* pvStream) = 0;
virtual ~V8Isolate() {}
};