Home | History | Annotate | Download | only in src

Lines Matching refs:LiveObjectList

40 #include "liveobjectlist-inl.h"
352 LolIterator(LiveObjectList* older, LiveObjectList* newer)
401 inline void SetCurrent(LiveObjectList* new_curr) {
410 LiveObjectList* older_;
411 LiveObjectList* newer_;
412 LiveObjectList* curr_;
413 LiveObjectList::Element* elements_;
421 LolForwardIterator(LiveObjectList* first, LiveObjectList* last)
636 LolDumpWriter(LiveObjectList* older, LiveObjectList* newer)
676 LiveObjectList* first_lol = (older_ != NULL) ?
677 older_->next_ : LiveObjectList::first_;
678 LiveObjectList* last_lol = (newer_ != NULL) ? newer_->next_ : NULL;
711 LiveObjectList* older_;
712 LiveObjectList* newer_;
731 LiveObjectList::GetRetainers(target_,
752 count = LiveObjectList::GetRetainers(target_,
853 LolSummaryWriter(LiveObjectList *older_lol,
854 LiveObjectList *newer_lol)
873 LiveObjectList* older_;
874 LiveObjectList* newer_;
893 LiveObjectList::GetRetainers(target_,
912 uint32_t LiveObjectList::next_element_id_ = 1;
913 int LiveObjectList::list_count_ = 0;
914 int LiveObjectList::last_id_ = 0;
915 LiveObjectList* LiveObjectList::first_ = NULL;
916 LiveObjectList* LiveObjectList::last_ = NULL;
919 LiveObjectList::LiveObjectList(LiveObjectList* prev, int capacity)
931 LiveObjectList::~LiveObjectList() {
937 int LiveObjectList::GetTotalObjCountAndSize(int* size_p) {
940 LiveObjectList *lol = this;
963 bool LiveObjectList::Add(HeapObject* obj) {
983 int LiveObjectList::CompareElement(const Element* a, const Element* b) {
994 LiveObjectList::Element* LiveObjectList::Find(HeapObject* obj) {
995 LiveObjectList* lol = this;
1016 void LiveObjectList::NullifyMostRecent(HeapObject* obj) {
1017 LiveObjectList* lol = last();
1059 void LiveObjectList::Sort() {
1068 void LiveObjectList::SortAll() {
1069 LiveObjectList* lol = last();
1091 MaybeObject* LiveObjectList::Capture() {
1099 LiveObjectList* last_lol = last();
1104 LiveObjectList* lol;
1107 lol = new LiveObjectList(last_lol, count);
1176 bool LiveObjectList::Delete(int id) {
1177 LiveObjectList *lol = last();
1194 LiveObjectList* next = lol->next_;
1195 LiveObjectList* prev = lol->prev_;
1225 MaybeObject* LiveObjectList::Dump(int older_id,
1240 LiveObjectList *newer_lol = FindLolForId(newer_id, last());
1241 LiveObjectList *older_lol = FindLolForId(older_id, newer_lol);
1258 MaybeObject* LiveObjectList::DumpPrivate(DumpWriter* writer,
1341 MaybeObject* LiveObjectList::Summarize(int older_id,
1354 LiveObjectList *newer_lol = FindLolForId(newer_id, last());
1355 LiveObjectList *older_lol = FindLolForId(older_id, newer_lol);
1375 MaybeObject* LiveObjectList::SummarizePrivate(SummaryWriter* writer,
1501 MaybeObject* LiveObjectList::Info(int start_idx, int dump_limit) {
1505 int total_count = LiveObjectList::list_count();
1532 LiveObjectList* lol = first_;
1602 void LiveObjectList::Reset() {
1603 LiveObjectList *lol = last();
1616 Object* LiveObjectList::GetObj(int obj_id) {
1626 int LiveObjectList::GetObjId(Object* obj) {
1638 Object* LiveObjectList::GetObjId(Handle<String> address) {
1747 int LiveObjectList::GetRetainers(Handle<HeapObject> target,
1901 MaybeObject* LiveObjectList::GetObjRetainers(int obj_id,
1953 Object* LiveObjectList::PrintObj(int obj_id) {
1970 PrintF(f, "@%d ", LiveObjectList::GetObjId(obj));
2051 int id = LiveObjectList::GetObjId(obj);
2073 Object* LiveObjectList::GetPathPrivate(HeapObject* obj1, HeapObject* obj2) {
2205 Object* LiveObjectList::GetPath(int obj_id1,
2228 void LiveObjectList::DoProcessNonLive(HeapObject *obj) {
2238 void LiveObjectList::IterateElementsPrivate(ObjectVisitor* v) {
2239 LiveObjectList* lol = last();
2254 void LiveObjectList::PurgeDuplicates() {
2256 LiveObjectList* lol = last();
2332 void LiveObjectList::GCEpiloguePrivate() {
2350 LiveObjectList *prev = NULL;
2351 LiveObjectList *next = NULL;
2354 for (LiveObjectList *lol = last(); lol; lol = prev) {
2432 void LiveObjectList::Verify(bool match_heap_exactly) {
2433 OS::Print("Verifying the LiveObjectList database:\n");
2435 LiveObjectList* lol = last();
2571 void LiveObjectList::VerifyNotInFromSpace() {