FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ClearScript/ClearScript/V8/ClearScriptV8/V8IsolateImpl.h at master · phxnsharp/ClearScript · GitHub
phxnsharp
/
ClearScript
Public
forked from
ClearFoundry/ClearScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ClearScript
/
ClearScript
/
V8
/
ClearScriptV8
/
V8IsolateImpl.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
582 lines (460 loc) · 18.9 KB
Breadcrumbs
ClearScript
/
ClearScript
/
V8
/
ClearScriptV8
/
V8IsolateImpl.h
Copy path
File metadata and controls
582 lines (460 loc) · 18.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
//
Copyright (c) Microsoft Corporation. All rights reserved.
//
Licensed under the MIT license.
#
pragma
once
//
-----------------------------------------------------------------------------
//
forward declarations
//
-----------------------------------------------------------------------------
class
V8ContextImpl
;
//
-----------------------------------------------------------------------------
//
V8IsolateImpl
//
-----------------------------------------------------------------------------
class
V8IsolateImpl
final
: public V8Isolate, public v8_inspector::V8InspectorClient, public v8_inspector::V8Inspector::Channel
{
PROHIBIT_COPY
(V8IsolateImpl)
class
NativeScope
final
{
PROHIBIT_COPY
(NativeScope)
PROHIBIT_HEAP
(NativeScope)
public:
explicit
NativeScope
(V8IsolateImpl& isolateImpl):
m_IsolateImpl(isolateImpl),
m_LockScope(m_IsolateImpl.m_upIsolate.get()),
m_IsolateScope(m_IsolateImpl.m_upIsolate.get()),
m_HandleScope(m_IsolateImpl.m_upIsolate.get())
{
m_IsolateImpl.
ProcessCallWithLockQueue
();
}
~NativeScope
()
{
m_IsolateImpl.
ProcessCallWithLockQueue
();
}
private:
V8IsolateImpl& m_IsolateImpl;
v8::Locker m_LockScope;
v8::Isolate::Scope m_IsolateScope;
v8::HandleScope m_HandleScope;
};
public:
using
CallWithLockCallback = std::function<
void
(V8IsolateImpl*)>;
class
Scope
final
{
PROHIBIT_COPY
(Scope)
PROHIBIT_HEAP
(Scope)
public:
explicit
Scope
(V8IsolateImpl& isolateImpl):
m_MutexLock(isolateImpl.m_Mutex),
m_NativeScope(isolateImpl)
{
}
private:
MutexLock<RecursiveMutex> m_MutexLock;
NativeScope m_NativeScope;
};
class
ExecutionScope
final
{
PROHIBIT_COPY
(ExecutionScope)
PROHIBIT_HEAP
(ExecutionScope)
public:
explicit
ExecutionScope
(V8IsolateImpl& isolateImpl):
m_IsolateImpl(isolateImpl),
m_ExecutionStarted(
false
)
{
m_pPreviousExecutionScope = m_IsolateImpl.
EnterExecutionScope
(
this
,
reinterpret_cast
<
size_t
*>(
this
));
}
void
OnExecutionStarted
()
{
m_ExecutionStarted =
true
;
}
bool
ExecutionStarted
()
const
{
return
m_ExecutionStarted;
}
~ExecutionScope
()
{
m_IsolateImpl.
ExitExecutionScope
(m_pPreviousExecutionScope);
}
private:
V8IsolateImpl& m_IsolateImpl;
ExecutionScope* m_pPreviousExecutionScope;
bool
m_ExecutionStarted;
};
class
DocumentScope
final
{
PROHIBIT_COPY
(DocumentScope)
PROHIBIT_HEAP
(DocumentScope)
public:
DocumentScope
(V8IsolateImpl& isolateImpl,
const
V8DocumentInfo& documentInfo):
m_IsolateImpl
(isolateImpl)
{
m_pPreviousDocumentInfo = m_IsolateImpl.
m_pDocumentInfo
;
m_IsolateImpl.
m_pDocumentInfo
= &documentInfo;
}
~DocumentScope
()
{
m_IsolateImpl.
m_pDocumentInfo
= m_pPreviousDocumentInfo;
}
private:
V8IsolateImpl& m_IsolateImpl;
const
V8DocumentInfo* m_pPreviousDocumentInfo;
};
class
TryCatch
final
: public v8::TryCatch
{
PROHIBIT_COPY
(TryCatch)
PROHIBIT_HEAP
(TryCatch)
public:
explicit
TryCatch
(V8IsolateImpl& isolateImpl):
v8::TryCatch(isolateImpl.m_upIsolate.get())
{
}
};
V8IsolateImpl
(
const
StdString& name,
const
v8::ResourceConstraints* pConstraints,
const
Options& options);
static
V8IsolateImpl*
GetInstanceFromIsolate
(v8::Isolate* pIsolate);
static
size_t
GetInstanceCount
();
const
StdString&
GetName
()
const
{
return
m_Name; }
const
Persistent<v8::Private>&
GetHostObjectHolderKey
()
const
{
return
m_hHostObjectHolderKey; }
const
V8DocumentInfo*
GetDocumentInfo
()
const
{
return
m_pDocumentInfo; }
v8::Local<v8::Context>
CreateContext
(v8::ExtensionConfiguration* pExtensionConfiguation =
nullptr
, v8::Local<v8::ObjectTemplate> hGlobalTemplate = v8::Local<v8::ObjectTemplate>(), v8::Local<v8::Value> hGlobalObject = v8::Local<v8::Value>())
{
return
v8::Context::New
(m_upIsolate.
get
(), pExtensionConfiguation, hGlobalTemplate, hGlobalObject);
}
v8::Local<v8::Primitive>
GetUndefined
()
{
return
v8::Undefined
(m_upIsolate.
get
());
}
v8::Local<v8::Primitive>
GetNull
()
{
return
v8::Null
(m_upIsolate.
get
());
}
v8::Local<v8::Boolean>
GetTrue
()
{
return
v8::True
(m_upIsolate.
get
());
}
v8::Local<v8::Boolean>
GetFalse
()
{
return
v8::False
(m_upIsolate.
get
());
}
bool
BooleanValue
(v8::Local<v8::Value> hValue)
{
return
hValue->
BooleanValue
(m_upIsolate.
get
());
}
v8::Local<v8::Symbol>
GetIteratorSymbol
()
{
return
v8::Symbol::GetIterator
(m_upIsolate.
get
());
}
v8::Local<v8::Object>
CreateObject
()
{
return
v8::Object::New
(m_upIsolate.
get
());
}
v8::Local<v8::Number>
CreateNumber
(
double
value)
{
return
v8::Number::New
(m_upIsolate.
get
(), value);
}
v8::Local<v8::Integer>
CreateInteger
(
int32_t
value)
{
return
v8::Int32::New
(m_upIsolate.
get
(), value);
}
v8::Local<v8::Integer>
CreateInteger
(
uint32_t
value)
{
return
v8::Uint32::NewFromUnsigned
(m_upIsolate.
get
(), value);
}
v8::Local<v8::BigInt>
CreateBigInt
(
int64_t
value)
{
return
v8::BigInt::New
(m_upIsolate.
get
(), value);
}
v8::Local<v8::BigInt>
CreateBigInt
(
uint64_t
value)
{
return
v8::BigInt::NewFromUnsigned
(m_upIsolate.
get
(), value);
}
v8::MaybeLocal<v8::String>
CreateString
(
const
StdString& value, v8::NewStringType type = v8::NewStringType::
kNormal
)
{
return
value.
ToV8String
(m_upIsolate.
get
(), type);
}
StdString
CreateStdString
(v8::Local<v8::Value> hValue)
{
return
StdString
(m_upIsolate.
get
(), hValue);
}
v8::Local<v8::Symbol>
CreateSymbol
(v8::Local<v8::String> hName = v8::Local<v8::String>())
{
return
v8::Symbol::New
(m_upIsolate.
get
(), hName);
}
v8::Local<v8::Private>
CreatePrivate
(v8::Local<v8::String> hName = v8::Local<v8::String>())
{
return
v8::Private::New
(m_upIsolate.
get
(), hName);
}
v8::Local<v8::Array>
CreateArray
(
int
length =
0
)
{
return
v8::Array::New
(m_upIsolate.
get
(), length);
}
v8::Local<v8::PrimitiveArray>
CreatePrimitiveArray
(
int
length)
{
return
v8::PrimitiveArray::New
(m_upIsolate.
get
(), length);
}
void
SetPrimitiveArrayItem
(v8::Local<v8::PrimitiveArray> hArray,
int
index, v8::Local<v8::Primitive> hItem)
{
hArray->
Set
(m_upIsolate.
get
(), index, hItem);
}
v8::Local<v8::Primitive>
GetPrimitiveArrayItem
(v8::Local<v8::PrimitiveArray> hArray,
int
index)
{
return
hArray->
Get
(m_upIsolate.
get
(), index);
}
v8::Local<v8::External>
CreateExternal
(
void
* pvValue)
{
return
v8::External::New
(m_upIsolate.
get
(), pvValue);
}
v8::Local<v8::ObjectTemplate>
CreateObjectTemplate
()
{
return
v8::ObjectTemplate::New
(m_upIsolate.
get
());
}
v8::Local<v8::FunctionTemplate>
CreateFunctionTemplate
(v8::FunctionCallback callback =
0
, v8::Local<v8::Value> data = v8::Local<v8::Value>(), v8::Local<v8::Signature> signature = v8::Local<v8::Signature>(), int length = 0)
{
return
v8::FunctionTemplate::New
(m_upIsolate.
get
(), callback, data, signature, length);
}
v8::MaybeLocal<v8::UnboundScript>
CompileUnboundScript
(v8::ScriptCompiler::Source* pSource, v8::ScriptCompiler::CompileOptions options = v8::ScriptCompiler::
kNoCompileOptions
, v8::ScriptCompiler::NoCacheReason noCacheReason = v8::ScriptCompiler::
kNoCacheNoReason
)
{
auto
result =
v8::ScriptCompiler::CompileUnboundScript
(m_upIsolate.
get
(), pSource, options, noCacheReason);
if
(!result.
IsEmpty
())
{
++m_Statistics.
ScriptCount
;
}
return
result;
}
v8::MaybeLocal<v8::Module>
CompileModule
(v8::ScriptCompiler::Source* pSource, v8::ScriptCompiler::CompileOptions options = v8::ScriptCompiler::
kNoCompileOptions
, v8::ScriptCompiler::NoCacheReason noCacheReason = v8::ScriptCompiler::
kNoCacheNoReason
)
{
auto
result =
v8::ScriptCompiler::CompileModule
(m_upIsolate.
get
(), pSource, options, noCacheReason);
if
(!result.
IsEmpty
())
{
++m_Statistics.
ModuleCount
;
}
return
result;
}
template
<
typename
T>
v8::Local<T>
CreateLocal
(v8::Local<T> hTarget)
{
return
v8::Local<T>::
New
(m_upIsolate.
get
(), hTarget);
}
template
<
typename
T>
v8::Local<T>
CreateLocal
(Persistent<T> hTarget)
{
return
hTarget.
CreateLocal
(m_upIsolate.
get
());
}
template
<
typename
T>
Persistent<T>
CreatePersistent
(v8::Local<T> hTarget)
{
return
Persistent<T>::
New
(m_upIsolate.
get
(), hTarget);
}
template
<
typename
T>
Persistent<T>
CreatePersistent
(Persistent<T> hTarget)
{
return
Persistent<T>::
New
(m_upIsolate.
get
(), hTarget);
}
template
<
typename
T,
typename
TArg1,
typename
TArg2>
Persistent<T>
MakeWeak
(Persistent<T> hTarget, TArg1* pArg1, TArg2* pArg2,
void
(*pCallback)(v8::Isolate*, Persistent<T>*, TArg1*, TArg2*))
{
return
hTarget.
MakeWeak
(m_upIsolate.
get
(), pArg1, pArg2, pCallback);
}
template
<
typename
T>
void
ClearWeak
(Persistent<T> hTarget)
{
return
hTarget.
ClearWeak
();
}
template
<
typename
T>
void
Dispose
(Persistent<T> hTarget)
{
hTarget.
Dispose
();
}
v8::Local<v8::Value>
ThrowException
(v8::Local<v8::Value> hException)
{
return
m_upIsolate->
ThrowException
(hException);
}
bool
IsDebuggingEnabled
()
{
return
m_DebuggingEnabled;
}
void
TerminateExecution
()
{
BEGIN_MUTEX_SCOPE
(m_DataMutex)
if
(m_AwaitingDebugger)
{
m_AbortMessageLoop =
true
;
m_CallWithLockQueueChanged.
notify_one
();
return
;
}
END_MUTEX_SCOPE
m_upIsolate->
TerminateExecution
();
m_IsExecutionTerminating =
true
;
}
bool
IsExecutionTerminating
()
{
return
m_upIsolate->
IsExecutionTerminating
() || m_IsExecutionTerminating;
}
void
CancelTerminateExecution
()
{
m_upIsolate->
CancelTerminateExecution
();
m_IsExecutionTerminating =
false
;
}
int
ContextDisposedNotification
()
{
return
m_upIsolate->
ContextDisposedNotification
();
}
bool
IdleNotificationDeadline
(
double
deadlineInSeconds)
{
return
m_upIsolate->
IdleNotificationDeadline
(deadlineInSeconds);
}
void
LowMemoryNotification
()
{
m_upIsolate->
LowMemoryNotification
();
}
v8::Local<v8::StackFrame>
GetStackFrame
(v8::Local<v8::StackTrace> hStackTrace,
uint32_t
index)
{
return
hStackTrace->
GetFrame
(m_upIsolate.
get
(), index);
}
void
RequestInterrupt
(v8::InterruptCallback callback,
void
* pvData)
{
m_upIsolate->
RequestInterrupt
(callback, pvData);
}
bool
IsCurrent
()
const
{
return
m_upIsolate.
get
() ==
v8::Isolate::GetCurrent
();
}
bool
IsLocked
()
const
{
return
v8::Locker::IsLocked
(m_upIsolate.
get
());
}
v8::Local<v8::String>
GetTypeOf
(v8::Local<v8::Value> hValue)
{
return
!hValue.
IsEmpty
() ? hValue->
TypeOf
(m_upIsolate.
get
()) :
GetUndefined
()->
TypeOf
(m_upIsolate.
get
());
}
bool
IsOutOfMemory
()
const
{
return
m_IsOutOfMemory;
}
void
AddContext
(V8ContextImpl* pContextImpl,
const
V8Context::Options& options);
void
RemoveContext
(V8ContextImpl* pContextImpl);
V8ContextImpl*
FindContext
(v8::Local<v8::Context> hContext);
void
EnableDebugging
(
int
port,
bool
remote);
void
DisableDebugging
();
virtual
size_t
GetMaxHeapSize
()
override
;
virtual
void
SetMaxHeapSize
(
size_t
value)
override
;
virtual
double
GetHeapSizeSampleInterval
()
override
;
virtual
void
SetHeapSizeSampleInterval
(
double
value)
override
;
virtual
size_t
GetMaxStackUsage
()
override
;
virtual
void
SetMaxStackUsage
(
size_t
value)
override
;
virtual
void
AwaitDebuggerAndPause
()
override
;
virtual
V8ScriptHolder*
Compile
(
const
V8DocumentInfo& documentInfo, StdString&& code)
override
;
virtual
V8ScriptHolder*
Compile
(
const
V8DocumentInfo& documentInfo, StdString&& code, V8CacheType cacheType, std::vector<
uint8_t
>& cacheBytes)
override
;
virtual
V8ScriptHolder*
Compile
(
const
V8DocumentInfo& documentInfo, StdString&& code, V8CacheType cacheType,
const
std::vector<
uint8_t
>& cacheBytes,
bool
& cacheAccepted)
override
;
virtual
void
GetHeapStatistics
(v8::HeapStatistics& heapStatistics)
override
;
virtual
Statistics
GetStatistics
()
override
;
virtual
void
CollectGarbage
(
bool
exhaustive)
override
;
virtual
bool
BeginCpuProfile
(
const
StdString& name, v8::CpuProfilingMode mode,
bool
recordSamples)
override
;
virtual
bool
EndCpuProfile
(
const
StdString& name, CpuProfileCallbackT* pCallback,
void
* pvArg)
override
;
virtual
void
CollectCpuProfileSample
()
override
;
virtual
uint32_t
GetCpuProfileSampleInterval
()
override
;
virtual
void
SetCpuProfileSampleInterval
(
uint32_t
value)
override
;
virtual
void
runMessageLoopOnPause
(
int
contextGroupId)
override
;
virtual
void
quitMessageLoopOnPause
()
override
;
virtual
void
runIfWaitingForDebugger
(
int
contextGroupId)
override
;
virtual
v8::Local<v8::Context>
ensureDefaultContextInGroup
(
int
contextGroupId)
override
;
virtual
double
currentTimeMS
()
override
;
virtual
void
sendResponse
(
int
callId, std::unique_ptr<v8_inspector::StringBuffer> upMessage)
override
;
virtual
void
sendNotification
(std::unique_ptr<v8_inspector::StringBuffer> upMessage)
override
;
virtual
void
flushProtocolNotifications
()
override
;
void
*
AddRefV8Object
(
void
* pvObject);
void
ReleaseV8Object
(
void
* pvObject);
void
*
AddRefV8Script
(
void
* pvScript);
void
ReleaseV8Script
(
void
* pvScript);
void
RunTaskAsync
(std::unique_ptr<v8::Task> upTask);
void
RunTaskDelayed
(std::unique_ptr<v8::Task> upTask,
double
delayInSeconds);
void
RunTaskWithLockAsync
(
bool
allowNesting, std::unique_ptr<v8::Task> upTask);
void
RunTaskWithLockDelayed
(
bool
allowNesting, std::unique_ptr<v8::Task> upTask,
double
delayInSeconds);
std::shared_ptr<v8::TaskRunner>
GetForegroundTaskRunner
();
void
CallWithLockNoWait
(
bool
allowNesting, CallWithLockCallback&& callback);
void
DECLSPEC_NORETURN
ThrowOutOfMemoryException
();
static
void
ImportMetaInitializeCallback
(v8::Local<v8::Context> hContext, v8::Local<v8::Module> hModule, v8::Local<v8::Object> hMeta);
static
v8::MaybeLocal<v8::Promise>
ModuleImportCallback
(v8::Local<v8::Context> hContext, v8::Local<v8::ScriptOrModule> hReferrer, v8::Local<v8::String> hSpecifier);
static
v8::MaybeLocal<v8::Module>
ModuleResolveCallback
(v8::Local<v8::Context> hContext, v8::Local<v8::String> hSpecifier, v8::Local<v8::Module> hReferrer);
void
InitializeImportMeta
(v8::Local<v8::Context> hContext, v8::Local<v8::Module> hModule, v8::Local<v8::Object> hMeta);
v8::MaybeLocal<v8::Promise>
ImportModule
(v8::Local<v8::Context> hContext, v8::Local<v8::ScriptOrModule> hReferrer, v8::Local<v8::String> hSpecifier);
v8::MaybeLocal<v8::Module>
ResolveModule
(v8::Local<v8::Context> hContext, v8::Local<v8::String> hSpecifier, v8::Local<v8::Module> hReferrer);
bool
TryGetCachedScriptInfo
(
uint64_t
uniqueId, V8DocumentInfo& documentInfo);
v8::Local<v8::UnboundScript>
GetCachedScript
(
uint64_t
uniqueId,
size_t
codeDigest);
void
CacheScript
(
const
V8DocumentInfo& documentInfo,
size_t
codeDigest, v8::Local<v8::UnboundScript> hScript);
void
ClearScriptCache
();
~V8IsolateImpl
();
private:
using
CallWithLockEntry = std::pair<
bool
/*
allowNesting
*/
, CallWithLockCallback>;
using
CallWithLockQueue = std::queue<CallWithLockEntry>;
struct
ContextEntry
final
{
V8ContextImpl* pContextImpl;
std::atomic<
bool
> FlushPending;
ContextEntry
(V8ContextImpl* pContextImplArg):
pContextImpl
(pContextImplArg),
FlushPending
(
false
)
{
}
};
struct
ScriptCacheEntry
final
{
V8DocumentInfo DocumentInfo;
size_t
CodeDigest;
Persistent<v8::UnboundScript> hScript;
};
bool
RunMessageLoop
(
bool
awaitingDebugger);
void
CallWithLockAsync
(
bool
allowNesting, CallWithLockCallback&& callback);
static
void
ProcessCallWithLockQueue
(v8::Isolate* pIsolate,
void
* pvIsolateImpl);
void
ProcessCallWithLockQueue
();
void
ProcessCallWithLockQueue
(std::unique_lock<std::mutex>& lock);
void
ProcessCallWithLockQueue
(CallWithLockQueue& callWithLockQueue);
CallWithLockQueue
PopCallWithLockQueue
(
const
std::unique_lock<std::mutex>& lock);
void
ConnectDebugClient
();
void
SendDebugCommand
(
const
StdString& command);
void
DisconnectDebugClient
();
ExecutionScope*
EnterExecutionScope
(ExecutionScope* pExecutionScope,
size_t
* pStackMarker);
void
ExitExecutionScope
(ExecutionScope* pPreviousExecutionScope);
void
SetUpHeapWatchTimer
(
size_t
maxHeapSize);
void
CheckHeapSize
(
size_t
maxHeapSize);
static
void
OnBeforeCallEntered
(v8::Isolate* pIsolate);
void
OnBeforeCallEntered
();
static
void
PromiseHook
(v8::PromiseHookType type, v8::Local<v8::Promise> hPromise, v8::Local<v8::Value> hParent);
void
FlushContextAsync
(v8::Local<v8::Context> hContext);
void
FlushContextAsync
(ContextEntry& contextEntry);
void
FlushContext
(V8ContextImpl& contextImpl);
StdString m_Name;
UniqueDisposePtr<v8::Isolate> m_upIsolate;
UniqueDisposePtr<v8::CpuProfiler> m_upCpuProfiler;
Persistent<v8::Private> m_hHostObjectHolderKey;
RecursiveMutex m_Mutex;
std::list<ContextEntry> m_ContextEntries;
SimpleMutex m_DataMutex;
std::shared_ptr<v8::TaskRunner> m_spForegroundTaskRunner;
std::vector<std::shared_ptr<v8::Task>> m_AsyncTasks;
CallWithLockQueue m_CallWithLockQueue;
std::condition_variable m_CallWithLockQueueChanged;
size_t
m_CallWithLockLevel;
std::vector<SharedPtr<Timer>> m_TaskTimers;
std::list<ScriptCacheEntry> m_ScriptCache;
bool
m_DebuggingEnabled;
int
m_DebugPort;
void
* m_pvDebugAgent;
std::unique_ptr<v8_inspector::V8Inspector> m_upInspector;
std::unique_ptr<v8_inspector::V8InspectorSession> m_upInspectorSession;
bool
m_AwaitingDebugger;
bool
m_InMessageLoop;
bool
m_QuitMessageLoop;
bool
m_AbortMessageLoop;
std::atomic<
size_t
> m_MaxHeapSize;
std::atomic<
double
> m_HeapSizeSampleInterval;
size_t
m_HeapWatchLevel;
SharedPtr<Timer> m_spHeapWatchTimer;
std::atomic<
size_t
> m_MaxStackUsage;
std::atomic<
uint32_t
> m_CpuProfileSampleInterval;
size_t
m_StackWatchLevel;
size_t
* m_pStackLimit;
ExecutionScope* m_pExecutionScope;
const
V8DocumentInfo* m_pDocumentInfo;
std::atomic<
bool
> m_IsOutOfMemory;
std::atomic<
bool
> m_IsExecutionTerminating;
std::atomic<
bool
> m_Released;
Statistics m_Statistics;
};
Back
|
FazBrowse Home
|
New Git URL