forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChakraCoreSettings.cs
More file actions
102 lines (92 loc) · 2.23 KB
/
ChakraCoreSettings.cs
File metadata and controls
102 lines (92 loc) · 2.23 KB
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
102
using System;
using JavaScriptEngineSwitcher.Core.Utilities;
namespace JavaScriptEngineSwitcher.ChakraCore
{
/// <summary>
/// Settings of the ChakraCore JS engine
/// </summary>
public sealed class ChakraCoreSettings
{
/// <summary>
/// Gets or sets a flag for whether to disable any background work (such as garbage collection)
/// on background threads
/// </summary>
public bool DisableBackgroundWork
{
get;
set;
}
/// <summary>
/// Gets or sets a flag for whether to disable calls of <code>eval</code> function
/// </summary>
public bool DisableEval
{
get;
set;
}
/// <summary>
/// Gets or sets a flag for whether to disable executable page allocation
/// </summary>
/// <remarks>
/// <para>
/// This also implies that Native Code generation will be turned off.
/// </para>
/// <para>
/// Note that this will break JavaScript stack decoding in tools like WPA since they
/// rely on allocation of unique thunks to interpret each function and allocation of
/// those thunks will be disabled as well.
/// </para>
/// </remarks>
public bool DisableExecutablePageAllocation
{
get;
set;
}
/// <summary>
/// Gets or sets a flag for whether to disable native code generation
/// </summary>
public bool DisableNativeCodeGeneration
{
get;
set;
}
/// <summary>
/// Gets or sets a flag for whether to disable Failfast fatal error on OOM
/// </summary>
public bool DisableFatalOnOOM
{
get;
set;
}
/// <summary>
/// Gets or sets a flag for whether to enable all experimental features
/// </summary>
public bool EnableExperimentalFeatures
{
get;
set;
}
/// <summary>
/// Gets or sets a current memory limit for a runtime in bytes
/// </summary>
public UIntPtr MemoryLimit
{
get;
set;
}
/// <summary>
/// Constructs an instance of the ChakraCore settings
/// </summary>
public ChakraCoreSettings()
{
DisableBackgroundWork = false;
DisableEval = false;
DisableExecutablePageAllocation = false;
DisableNativeCodeGeneration = false;
DisableFatalOnOOM = false;
EnableExperimentalFeatures = false;
MemoryLimit = Utils.Is64BitProcess() ?
new UIntPtr(ulong.MaxValue) : new UIntPtr(uint.MaxValue);
}
}
}