Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
dart::SubtypeTestCacheDeserializationCluster Class Reference
Inheritance diagram for dart::SubtypeTestCacheDeserializationCluster:
dart::DeserializationCluster dart::ZoneAllocated

Public Member Functions

 SubtypeTestCacheDeserializationCluster ()
 
 ~SubtypeTestCacheDeserializationCluster ()
 
void ReadAlloc (Deserializer *d) override
 
void ReadFill (Deserializer *d_) override
 
- Public Member Functions inherited from dart::DeserializationCluster
 DeserializationCluster (const char *name, bool is_canonical=false, bool is_immutable=false)
 
virtual ~DeserializationCluster ()
 
virtual void PostLoad (Deserializer *deserializer, const Array &refs)
 
const char * name () const
 
bool is_canonical () const
 
- Public Member Functions inherited from dart::ZoneAllocated
 ZoneAllocated ()
 
void * operator new (size_t size)
 
void * operator new (size_t size, Zone *zone)
 
void operator delete (void *pointer)
 

Additional Inherited Members

- Protected Member Functions inherited from dart::DeserializationCluster
void ReadAllocFixedSize (Deserializer *deserializer, intptr_t instance_size)
 
- Protected Attributes inherited from dart::DeserializationCluster
const char *const name_
 
const bool is_canonical_
 
const bool is_immutable_
 
intptr_t start_index_
 
intptr_t stop_index_
 

Detailed Description

Definition at line 4228 of file app_snapshot.cc.

Constructor & Destructor Documentation

◆ SubtypeTestCacheDeserializationCluster()

dart::SubtypeTestCacheDeserializationCluster::SubtypeTestCacheDeserializationCluster ( )
inline

Definition at line 4230 of file app_snapshot.cc.

4231 : DeserializationCluster("SubtypeTestCache") {}
DeserializationCluster(const char *name, bool is_canonical=false, bool is_immutable=false)

◆ ~SubtypeTestCacheDeserializationCluster()

dart::SubtypeTestCacheDeserializationCluster::~SubtypeTestCacheDeserializationCluster ( )
inline

Definition at line 4232 of file app_snapshot.cc.

4232{}

Member Function Documentation

◆ ReadAlloc()

void dart::SubtypeTestCacheDeserializationCluster::ReadAlloc ( Deserializer d)
inlineoverridevirtual

Implements dart::DeserializationCluster.

Definition at line 4234 of file app_snapshot.cc.

4234 {
4236 }
void ReadAllocFixedSize(Deserializer *deserializer, intptr_t instance_size)
static intptr_t InstanceSize()
Definition object.h:7778
VULKAN_HPP_DEFAULT_DISPATCH_LOADER_DYNAMIC_STORAGE auto & d
Definition main.cc:19

◆ ReadFill()

void dart::SubtypeTestCacheDeserializationCluster::ReadFill ( Deserializer d_)
inlineoverridevirtual

Implements dart::DeserializationCluster.

Definition at line 4238 of file app_snapshot.cc.

4238 {
4239 Deserializer::Local d(d_);
4240
4241 ASSERT(!is_canonical()); // Never canonical.
4242 for (intptr_t id = start_index_, n = stop_index_; id < n; id++) {
4243 SubtypeTestCachePtr cache = static_cast<SubtypeTestCachePtr>(d.Ref(id));
4244 Deserializer::InitializeHeader(cache, kSubtypeTestCacheCid,
4246 cache->untag()->cache_ = static_cast<ArrayPtr>(d.ReadRef());
4247 cache->untag()->num_inputs_ = d.Read<uint32_t>();
4248 cache->untag()->num_occupied_ = d.Read<uint32_t>();
4249 }
4250 }
static void InitializeHeader(ObjectPtr raw, intptr_t cid, intptr_t size, bool is_canonical=false)
#define ASSERT(E)
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace Enable an endless trace buffer The default is a ring buffer This is useful when very old events need to viewed For during application launch Memory usage will continue to grow indefinitely however Start app with an specific route defined on the framework flutter assets Path to the Flutter assets directory enable service port Allow the VM service to fallback to automatic port selection if binding to a specified port fails trace Trace early application lifecycle Automatically switches to an endless trace buffer trace skia Filters out all Skia trace event categories except those that are specified in this comma separated list dump skp on shader Automatically dump the skp that triggers new shader compilations This is useful for writing custom ShaderWarmUp to reduce jank By this is not enabled to reduce the overhead purge persistent cache
Definition switches.h:191

The documentation for this class was generated from the following file: