Lines Matching refs:where_to_point
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()
129 SerializeGeneric(obj, how_to_code, where_to_point); in SerializeObject()
134 WhereToPoint where_to_point) { in SerializeGeneric() argument
137 where_to_point); in SerializeGeneric()
142 WhereToPoint where_to_point) { in SerializeBuiltin() argument
143 DCHECK((how_to_code == kPlain && where_to_point == kStartOfObject) || in SerializeBuiltin()
144 (how_to_code == kPlain && where_to_point == kInnerPointer) || in SerializeBuiltin()
145 (how_to_code == kFromCode && where_to_point == kInnerPointer)); in SerializeBuiltin()
154 sink_.Put(kBuiltin + how_to_code + where_to_point, "Builtin"); in SerializeBuiltin()
159 WhereToPoint where_to_point) { in SerializeCodeStub() argument
174 PutAttachedReference(reference, how_to_code, where_to_point); in SerializeCodeStub()
299 Code* code_object, HowToCode how_to_code, WhereToPoint where_to_point) { in SerializeCodeObject() argument
314 SerializeGeneric(code_object, how_to_code, where_to_point); in SerializeCodeObject()