Home | History | Annotate | Download | only in src

Lines Matching full:how_to_code

1323                                                     HowToCode how_to_code,
1332 sink_->Put(kBackref + how_to_code + where_to_point + space, "BackRefSer");
1334 sink_->Put(kBackrefWithSkip + how_to_code + where_to_point + space,
1344 HowToCode how_to_code,
1352 if ((root_index = RootIndex(heap_object, how_to_code)) != kInvalidRootIndex) {
1353 PutRoot(root_index, heap_object, how_to_code, where_to_point, skip);
1358 SerializeReferenceToPreviousObject(heap_object, how_to_code, where_to_point,
1370 how_to_code,
1392 SerializerDeserializer::HowToCode how_to_code,
1395 if (how_to_code == kPlain &&
1412 sink_->Put(kRootArray + how_to_code + where_to_point, "RootSerialization");
1420 HowToCode how_to_code,
1434 if ((root_index = RootIndex(heap_object, how_to_code)) != kInvalidRootIndex) {
1435 PutRoot(root_index, heap_object, how_to_code, where_to_point, skip);
1446 sink_->Put(kPartialSnapshotCache + how_to_code + where_to_point,
1461 SerializeReferenceToPreviousObject(heap_object, how_to_code, where_to_point,
1472 how_to_code,
1559 HowToCode how_to_code = rinfo->IsCodedSpecially() ? kFromCode : kPlain;
1561 serializer_->SerializeObject(object, how_to_code, kStartOfObject, skip);
1580 HowToCode how_to_code = rinfo->IsCodedSpecially() ? kFromCode : kPlain;
1581 sink_->Put(kExternalReference + how_to_code + kStartOfObject, "ExternalRef");
1592 HowToCode how_to_code = rinfo->IsCodedSpecially() ? kFromCode : kPlain;
1593 sink_->Put(kExternalReference + how_to_code + kStartOfObject, "ExternalRef");
1814 void CodeSerializer::SerializeObject(Object* o, HowToCode how_to_code,
1826 if ((root_index = RootIndex(heap_object, how_to_code)) != kInvalidRootIndex) {
1827 PutRoot(root_index, heap_object, how_to_code, where_to_point, skip);
1836 SerializeReferenceToPreviousObject(heap_object, how_to_code, where_to_point,
1844 SerializeBuiltin(code_object, how_to_code, where_to_point, skip);
1848 SerializeCodeStub(code_object, how_to_code, where_to_point, skip);
1855 SerializeSourceObject(how_to_code, where_to_point, skip);
1859 SerializeHeapObject(heap_object, how_to_code, where_to_point, skip);
1864 HowToCode how_to_code,
1886 ObjectSerializer serializer(this, heap_object, sink_, how_to_code,
1892 void CodeSerializer::SerializeBuiltin(Code* builtin, HowToCode how_to_code,
1899 DCHECK((how_to_code == kPlain && where_to_point == kStartOfObject) ||
1900 (how_to_code == kPlain && where_to_point == kInnerPointer) ||
1901 (how_to_code == kFromCode && where_to_point == kInnerPointer));
1911 sink_->Put(kBuiltin + how_to_code + where_to_point, "Builtin");
1916 void CodeSerializer::SerializeCodeStub(Code* code, HowToCode how_to_code,
1918 DCHECK((how_to_code == kPlain && where_to_point == kStartOfObject) ||
1919 (how_to_code == kPlain && where_to_point == kInnerPointer) ||
1920 (how_to_code == kFromCode && where_to_point == kInnerPointer));
1927 SerializeHeapObject(code, how_to_code, where_to_point, skip);
1944 sink_->Put(kAttachedReference + how_to_code + where_to_point, "CodeStub");
1961 void CodeSerializer::SerializeSourceObject(HowToCode how_to_code,
1973 DCHECK(how_to_code == kPlain && where_to_point == kStartOfObject);
1974 sink_->Put(kAttachedReference + how_to_code + where_to_point, "Source");