Lines Matching defs:object
741 // The allocation pointer should not be in the middle of an object.
745 HeapObject object = HeapObject::FromAddress(current);
749 Map map = object.map(cage_base);
754 // The object should not be code or a map.
755 CHECK(!object.IsMap(cage_base));
756 CHECK(!object.IsAbstractCode(cage_base));
758 // The object itself should look OK.
759 object.ObjectVerify(isolate);
763 int size = object.Size(cage_base);
764 object.IterateBody(map, size, &visitor);
766 if (object.IsExternalString(cage_base)) {
767 ExternalString external_string = ExternalString::cast(object);