/external/v8/src/snapshot/ |
D | snapshot.cc | 39 const SnapshotData* startup_snapshot_in, 40 const SnapshotData* read_only_snapshot_in, 41 const std::vector<SnapshotData*>& context_snapshots_in, 110 SnapshotData MaybeDecompress(const Vector<const byte>& snapshot_data) { in MaybeDecompress() 114 return SnapshotData(snapshot_data); in MaybeDecompress() 158 SnapshotData startup_snapshot_data(MaybeDecompress(startup_data)); in Initialize() 159 SnapshotData read_only_snapshot_data(MaybeDecompress(read_only_data)); in Initialize() 185 SnapshotData snapshot_data(MaybeDecompress(context_data)); in NewContextFromSnapshot() 345 std::vector<SnapshotData*> context_snapshots; in Create() 357 context_snapshots.push_back(new SnapshotData(&context_serializer)); in Create() [all …]
|
D | snapshot-compression.cc | 21 SnapshotData SnapshotCompression::Compress( in Compress() 22 const SnapshotData* uncompressed_data) { in Compress() 23 SnapshotData snapshot_data; in Compress() 64 SnapshotData SnapshotCompression::Decompress( in Decompress() 66 SnapshotData snapshot_data; in Decompress()
|
D | snapshot-compression.h | 16 V8_EXPORT_PRIVATE static SnapshotData Compress( 17 const SnapshotData* uncompressed_data); 18 V8_EXPORT_PRIVATE static SnapshotData Decompress(
|
D | snapshot-data.h | 70 class V8_EXPORT_PRIVATE SnapshotData : public SerializedData { 73 explicit SnapshotData(const Serializer* serializer); 76 explicit SnapshotData(const Vector<const byte> snapshot) in SnapshotData() function 89 SnapshotData() : SerializedData() {} in SnapshotData() function
|
D | snapshot-data.cc | 27 SnapshotData::SnapshotData(const Serializer* serializer) { in SnapshotData() function in v8::internal::SnapshotData 49 Vector<const byte> SnapshotData::Payload() const { in Payload()
|
D | context-deserializer.h | 23 Isolate* isolate, const SnapshotData* data, bool can_rehash, 28 explicit ContextDeserializer(Isolate* isolate, const SnapshotData* data, in ContextDeserializer()
|
D | read-only-deserializer.h | 19 explicit ReadOnlyDeserializer(Isolate* isolate, const SnapshotData* data, in ReadOnlyDeserializer()
|
D | startup-deserializer.h | 19 const SnapshotData* startup_data, in StartupDeserializer()
|
D | snapshot.h | 17 class SnapshotData; variable
|
D | context-deserializer.cc | 17 Isolate* isolate, const SnapshotData* data, bool can_rehash, in DeserializeContext()
|
/external/v8/src/heap/ |
D | read-only-heap.h | 31 class SnapshotData; variable 50 static void SetUp(Isolate* isolate, SnapshotData* read_only_snapshot_data, 106 SnapshotData* read_only_snapshot_data,
|
D | read-only-spaces.h | 25 class SnapshotData; variable 103 void InitializeChecksum(SnapshotData* read_only_snapshot_data); 104 void VerifyChecksum(SnapshotData* read_only_snapshot_data,
|
D | read-only-heap.cc | 64 SnapshotData* read_only_snapshot_data, in SetUp() 114 SnapshotData* read_only_snapshot_data, in DeseralizeIntoIsolate()
|
D | read-only-spaces.cc | 43 SnapshotData* read_only_snapshot_data) { in InitializeChecksum() 49 void ReadOnlyArtifacts::VerifyChecksum(SnapshotData* read_only_snapshot_data, in VerifyChecksum()
|
/external/v8/src/execution/ |
D | isolate.h | 102 class SnapshotData; variable 587 bool InitWithSnapshot(SnapshotData* startup_snapshot_data, 588 SnapshotData* read_only_snapshot_data, bool can_rehash); 1638 bool Init(SnapshotData* startup_snapshot_data, 1639 SnapshotData* read_only_snapshot_data, bool can_rehash);
|
D | isolate.cc | 3419 bool Isolate::InitWithSnapshot(SnapshotData* startup_snapshot_data, in ThrowInternal() 3420 SnapshotData* read_only_snapshot_data, in ThrowInternal() 3473 bool Isolate::Init(SnapshotData* startup_snapshot_data, in ThrowInternal() 3474 SnapshotData* read_only_snapshot_data, bool can_rehash) { in ThrowInternal()
|