v8 10.2.154 (node 18.16.0)
V8 is Google's open source JavaScript engine
|
#include <default-platform.h>
Public Types | |
using | IdleTaskSupport = v8::platform::IdleTaskSupport |
Public Member Functions | |
DefaultPlatform (int thread_pool_size=0, IdleTaskSupport idle_task_support=IdleTaskSupport::kDisabled, std::unique_ptr< TracingController > tracing_controller={}) | |
cppgc::PageAllocator * | GetPageAllocator () override |
double | MonotonicallyIncreasingTime () override |
std::shared_ptr< cppgc::TaskRunner > | GetForegroundTaskRunner () override |
std::unique_ptr< cppgc::JobHandle > | PostJob (cppgc::TaskPriority priority, std::unique_ptr< cppgc::JobTask > job_task) override |
TracingController * | GetTracingController () override |
v8::Platform * | GetV8Platform () const |
Public Member Functions inherited from Platform | |
virtual | ~Platform ()=default |
virtual PageAllocator * | GetPageAllocator ()=0 |
virtual double | MonotonicallyIncreasingTime ()=0 |
virtual std::shared_ptr< TaskRunner > | GetForegroundTaskRunner () |
virtual std::unique_ptr< JobHandle > | PostJob (TaskPriority priority, std::unique_ptr< JobTask > job_task) |
virtual TracingController * | GetTracingController () |
Protected Attributes | |
std::unique_ptr< v8::Platform > | v8_platform_ |
Static Protected Attributes | |
static constexpr v8::Isolate * | kNoIsolate = nullptr |
Platform provided by cppgc. Uses V8's DefaultPlatform provided by libplatform internally. Exception: GetForegroundTaskRunner()
, see below.
Definition at line 20 of file default-platform.h.
Definition at line 22 of file default-platform.h.
|
inlineexplicit |
Definition at line 23 of file default-platform.h.
|
inlineoverridevirtual |
Foreground task runner that should be used by a Heap.
Reimplemented from Platform.
Definition at line 40 of file default-platform.h.
|
inlineoverridevirtual |
Returns the allocator used by cppgc to allocate its heap and various support structures.
Implements Platform.
Definition at line 32 of file default-platform.h.
|
inlineoverridevirtual |
Returns an instance of a TracingController
. This must be non-nullptr. The default implementation returns an empty TracingController
that consumes trace data without effect.
Reimplemented from Platform.
Definition at line 53 of file default-platform.h.
|
inline |
Definition at line 57 of file default-platform.h.
|
inlineoverridevirtual |
Monotonically increasing time in seconds from an arbitrary fixed point in the past. This function is expected to return at least millisecond-precision values. For this reason, it is recommended that the fixed point be no further in the past than the epoch.
Implements Platform.
Definition at line 36 of file default-platform.h.
|
inlineoverride |
Definition at line 47 of file default-platform.h.
|
staticconstexprprotected |
Definition at line 60 of file default-platform.h.
|
protected |
Definition at line 62 of file default-platform.h.