/external/v8/src/snapshot/ |
D | code-serializer.cc | 63 WhereToPoint where_to_point, int skip) { in SerializeObject() argument 64 if (SerializeHotObject(obj, how_to_code, where_to_point, skip)) return; in SerializeObject() 68 PutRoot(root_index, obj, how_to_code, where_to_point, skip); in SerializeObject() 72 if (SerializeBackReference(obj, how_to_code, where_to_point, skip)) return; in SerializeObject() 87 where_to_point); in SerializeObject() 94 SerializeCodeStub(code_object, how_to_code, where_to_point); in SerializeObject() 97 where_to_point); in SerializeObject() 102 SerializeGeneric(code_object, how_to_code, where_to_point); in SerializeObject() 105 return SerializeCodeObject(code_object, how_to_code, where_to_point); in SerializeObject() 112 where_to_point, skip); in SerializeObject() [all …]
|
D | code-serializer.h | 35 WhereToPoint where_to_point) { in SerializeCodeObject() argument 41 WhereToPoint where_to_point); 45 WhereToPoint where_to_point, int skip) override; 48 WhereToPoint where_to_point); 50 WhereToPoint where_to_point); 67 WhereToPoint where_to_point) override;
|
D | partial-serializer.cc | 51 WhereToPoint where_to_point, int skip) { in SerializeObject() argument 61 if (SerializeHotObject(obj, how_to_code, where_to_point, skip)) return; in SerializeObject() 65 PutRoot(root_index, obj, how_to_code, where_to_point, skip); in SerializeObject() 69 if (SerializeBackReference(obj, how_to_code, where_to_point, skip)) return; in SerializeObject() 75 sink_.Put(kPartialSnapshotCache + how_to_code + where_to_point, in SerializeObject() 108 ObjectSerializer serializer(this, obj, &sink_, how_to_code, where_to_point); in SerializeObject()
|
D | startup-serializer.cc | 29 WhereToPoint where_to_point, int skip) { in SerializeObject() argument 54 if (SerializeHotObject(obj, how_to_code, where_to_point, skip)) return; in SerializeObject() 61 PutRoot(root_index, obj, how_to_code, where_to_point, skip); in SerializeObject() 66 if (SerializeBackReference(obj, how_to_code, where_to_point, skip)) return; in SerializeObject() 80 where_to_point); in SerializeObject()
|
D | serializer.cc | 151 WhereToPoint where_to_point, int skip) { in SerializeHotObject() argument 152 if (how_to_code != kPlain || where_to_point != kStartOfObject) return false; in SerializeHotObject() 171 WhereToPoint where_to_point, int skip) { in SerializeBackReference() argument 184 PutAttachedReference(reference, how_to_code, where_to_point); in SerializeBackReference() 196 sink_.Put(kBackref + how_to_code + where_to_point + space, "BackRef"); in SerializeBackReference() 198 sink_.Put(kBackrefWithSkip + how_to_code + where_to_point + space, in SerializeBackReference() 209 SerializerDeserializer::WhereToPoint where_to_point, in PutRoot() argument 222 if (how_to_code == kPlain && where_to_point == kStartOfObject && in PutRoot() 233 sink_.Put(kRootArray + how_to_code + where_to_point, "RootSerialization"); in PutRoot() 254 WhereToPoint where_to_point) { in PutAttachedReference() argument [all …]
|
D | serializer.h | 157 WhereToPoint where_to_point, int skip) = 0; 169 HowToCode how_to_code, WhereToPoint where_to_point); 176 WhereToPoint where_to_point, int skip); 180 WhereToPoint where_to_point, int skip); 274 WhereToPoint where_to_point) in ObjectSerializer() argument 278 reference_representation_(how_to_code + where_to_point), in ObjectSerializer()
|
D | partial-serializer.h | 28 WhereToPoint where_to_point, int skip) override;
|
D | startup-serializer.h | 62 WhereToPoint where_to_point, int skip) override;
|