Home | History | Annotate | Download | only in snapshot

Lines Matching defs:sink_

1268       sink_(sink),
1353 sink_(sink),
1399 SnapshotByteSink* sink_;
1410 ObjectSerializer obj_serializer(this, obj, sink_, kPlain, kStartOfObject);
1413 sink_->Put(kSynchronize, "Finished with deferred objects");
1439 sink_->Put(kSkip, "Skip");
1440 sink_->PutInt(kPointerSize, "SkipOneWord");
1442 sink_->Put(kOnePointerRawData, "Smi");
1444 sink_->Put(reinterpret_cast<byte*>(current)[i], "Byte");
1486 sink_->Put(kOnePointerRawData, "Smi");
1488 sink_->Put(reinterpret_cast<byte*>(current)[i], "Byte");
1609 sink_->Put(kHotObjectWithSkip + index, "HotObjectWithSkip");
1610 sink_->PutInt(skip, "HotObjectSkipDistance");
1612 sink_->Put(kHotObject + index, "HotObject");
1627 sink_->Put(kAttachedReference + kPlain + kStartOfObject, "Source");
1628 sink_->PutInt(kSourceObjectReference, "kSourceObjectReference");
1633 sink_->Put(kAttachedReference + kPlain + kStartOfObject, "Global Proxy");
1634 sink_->PutInt(kGlobalProxyReference, "kGlobalProxyReference");
1645 sink_->Put(kBackref + how_to_code + where_to_point + space, "BackRef");
1647 sink_->Put(kBackrefWithSkip + how_to_code + where_to_point + space,
1649 sink_->PutInt(skip, "BackRefSkipDistance");
1692 ObjectSerializer object_serializer(this, obj, sink_, how_to_code,
1727 sink_->Put(kRootArrayConstants + root_index, "RootConstant");
1729 sink_->Put(kRootArrayConstantsWithSkip + root_index, "RootConstant");
1730 sink_->PutInt(skip, "SkipInPutRoot");
1734 sink_->Put(kRootArray + how_to_code + where_to_point, "RootSerialization");
1735 sink_->PutInt(root_index, "root_index");
1742 sink_->PutInt(reference.reference(), "BackRefValue");
1752 sink_->Put(prefix, "Alignment");
1780 sink_->Put(kPartialSnapshotCache + how_to_code + where_to_point,
1782 sink_->PutInt(cache_index, "partial_snapshot_cache_index");
1805 ObjectSerializer serializer(this, obj, sink_, how_to_code, where_to_point);
1816 CodeNameEvent(object_->address(), sink_->Position(), code_name));
1818 SnapshotPositionEvent(object_->address(), sink_->Position()));
1823 sink_->Put(kNewObject + reference_representation_ + space,
1825 sink_->PutInt(size >> kObjectAlignmentBits, "ObjectSizeInWords");
1827 sink_->Put(EXECUTABLE, "executable large object");
1829 sink_->Put(NOT_EXECUTABLE, "not executable large object");
1835 sink_->Put(kNewObject + reference_representation_ + space, "NewObject");
1836 sink_->PutInt(size >> kObjectAlignmentBits, "ObjectSizeInWords");
1892 sink_->Put(kVariableRawData, "RawDataForString");
1893 sink_->PutInt(bytes_to_output, "length");
1898 sink_->PutSection(string_start[i], "StringHeader");
1902 sink_->PutRaw(resource, content_size, "StringContent");
1908 for (int i = 0; i < padding_size; i++) sink_->PutSection(0, "StringPadding");
1910 sink_->Put(kSkip, "SkipAfterString");
1911 sink_->PutInt(bytes_to_output, "SkipDistance");
1985 sink_->Put(kDeferred, "Deferring object content");
2012 sink_->Put(kNewObject + reference.space(), "deferred object");
2014 sink_->PutInt(size >> kPointerSizeLog2, "deferred object size");
2047 sink_->Put(kVariableRepeat, "VariableRepeat");
2048 sink_->PutInt(repeat_count, "repeat count");
2050 sink_->Put(kFixedRepeatStart + repeat_count, "FixedRepeat");
2077 sink_->Put(kExternalReference + kPlain + kStartOfObject, "ExternalRef");
2078 sink_->PutInt(skip, "SkipB4ExternalRef");
2080 sink_->PutInt(serializer_->EncodeExternalReference(target), "reference id");
2089 sink_->Put(kExternalReference + how_to_code + kStartOfObject, "ExternalRef");
2090 sink_->PutInt(skip, "SkipB4ExternalRef");
2092 sink_->PutInt(serializer_->EncodeExternalReference(target), "reference id");
2113 sink_->Put(rinfo->rmode() == RelocInfo::INTERNAL_REFERENCE
2117 sink_->PutInt(static_cast<uintptr_t>(pc_offset), "internal ref address");
2118 sink_->PutInt(static_cast<uintptr_t>(target_offset), "internal ref value");
2126 sink_->Put(kExternalReference + how_to_code + kStartOfObject, "ExternalRef");
2127 sink_->PutInt(skip, "SkipB4ExternalRef");
2129 sink_->PutInt(serializer_->EncodeExternalReference(target), "reference id");
2170 sink_->Put(resource_index, "NativesStringResource");
2171 sink_->PutSection(i, "NativesStringResourceEnd");
2250 sink_->PutSection(kFixedRawDataStart + size_in_words, "FixedRawData");
2254 sink_->Put(kVariableRawData, "VariableRawData");
2255 sink_->PutInt(bytes_to_output, "length");
2261 sink_->PutRaw(object_start + base, bytes_to_output, description);
2264 sink_->Put(kSkip, "Skip");
2265 sink_->PutInt(to_skip, "SkipDistance");
2287 sink_->Put(kNextChunk, "NextChunk");
2288 sink_->Put(space, "NextChunkSpace");
2305 sink_->Put(kNop, "Padding");
2308 while (!IsAligned(sink_->Position(), kPointerAlignment)) {
2309 sink_->Put(kNop, "Padding");
2421 ObjectSerializer serializer(this, heap_object, sink_, how_to_code,
2440 sink_->Put(kBuiltin + how_to_code + where_to_point, "Builtin");
2441 sink_->PutInt(builtin_index, "builtin_index");
2460 sink_->Put(kAttachedReference + how_to_code + where_to_point, "CodeStub");
2461 sink_->PutInt(index, "CodeStub key");