Home | History | Annotate | Download | only in src

Lines Matching defs:LiveObjectList

41 #include "liveobjectlist-inl.h"
354 LolIterator(LiveObjectList* older, LiveObjectList* newer)
403 inline void SetCurrent(LiveObjectList* new_curr) {
412 LiveObjectList* older_;
413 LiveObjectList* newer_;
414 LiveObjectList* curr_;
415 LiveObjectList::Element* elements_;
423 LolForwardIterator(LiveObjectList* first, LiveObjectList* last)
640 LolDumpWriter(LiveObjectList* older, LiveObjectList* newer)
683 LiveObjectList* first_lol = (older_ != NULL) ?
684 older_->next_ : LiveObjectList::first_;
685 LiveObjectList* last_lol = (newer_ != NULL) ? newer_->next_ : NULL;
718 LiveObjectList* older_;
719 LiveObjectList* newer_;
738 LiveObjectList::GetRetainers(target_,
759 count = LiveObjectList::GetRetainers(target_,
860 LolSummaryWriter(LiveObjectList* older_lol,
861 LiveObjectList* newer_lol)
880 LiveObjectList* older_;
881 LiveObjectList* newer_;
900 LiveObjectList::GetRetainers(target_,
919 uint32_t LiveObjectList::next_element_id_ = 1;
920 int LiveObjectList::list_count_ = 0;
921 int LiveObjectList::last_id_ = 0;
922 LiveObjectList* LiveObjectList::first_ = NULL;
923 LiveObjectList* LiveObjectList::last_ = NULL;
926 LiveObjectList::LiveObjectList(LiveObjectList* prev, int capacity)
938 LiveObjectList::~LiveObjectList() {
944 int LiveObjectList::GetTotalObjCountAndSize(int* size_p) {
947 LiveObjectList* lol = this;
970 bool LiveObjectList::Add(HeapObject* obj) {
990 int LiveObjectList::CompareElement(const Element* a, const Element* b) {
1001 LiveObjectList::Element* LiveObjectList::Find(HeapObject* obj) {
1002 LiveObjectList* lol = this;
1023 void LiveObjectList::NullifyMostRecent(HeapObject* obj) {
1024 LiveObjectList* lol = last();
1066 void LiveObjectList::Sort() {
1075 LiveObjectList::SortAll() {
1076 LiveObjectList* lol = last();
1098 MaybeObject* LiveObjectList::Capture() {
1108 LiveObjectList* last_lol = last();
1113 LiveObjectList* lol;
1116 lol = new LiveObjectList(last_lol, count);
1185 bool LiveObjectList::Delete(int id) {
1186 LiveObjectList* lol = last();
1203 LiveObjectList* next = lol->next_;
1204 LiveObjectList* prev = lol->prev_;
1234 MaybeObject* LiveObjectList::Dump(int older_id,
1249 LiveObjectList* newer_lol = FindLolForId(newer_id, last());
1250 LiveObjectList* older_lol = FindLolForId(older_id, newer_lol);
1267 MaybeObject* LiveObjectList::DumpPrivate(DumpWriter* writer,
1355 MaybeObject* LiveObjectList::Summarize(int older_id,
1368 LiveObjectList* newer_lol = FindLolForId(newer_id, last());
1369 LiveObjectList* older_lol = FindLolForId(older_id, newer_lol);
1389 MaybeObject* LiveObjectList::SummarizePrivate(SummaryWriter* writer,
1521 MaybeObject* LiveObjectList::Info(int start_idx, int dump_limit) {
1528 int total_count = LiveObjectList::list_count();
1555 LiveObjectList* lol = first_;
1628 void LiveObjectList::Reset() {
1629 LiveObjectList* lol = last();
1642 Object* LiveObjectList::GetObj(int obj_id) {
1652 int LiveObjectList::GetObjId(Object* obj) {
1664 Object* LiveObjectList::GetObjId(Handle<String> address) {
1775 int LiveObjectList::GetRetainers(Handle<HeapObject> target,
1932 MaybeObject* LiveObjectList::GetObjRetainers(int obj_id,
1988 Object* LiveObjectList::PrintObj(int obj_id) {
2009 PrintF(f, "@%d ", LiveObjectList::GetObjId(obj));
2090 int id = LiveObjectList::GetObjId(obj);
2112 Object* LiveObjectList::GetPathPrivate(HeapObject* obj1, HeapObject* obj2) {
2247 Object* LiveObjectList::GetPath(int obj_id1,
2270 void LiveObjectList::DoProcessNonLive(HeapObject* obj) {
2280 void LiveObjectList::IterateElementsPrivate(ObjectVisitor* v) {
2281 LiveObjectList* lol = last();
2296 void LiveObjectList::PurgeDuplicates() {
2298 LiveObjectList* lol = last();
2374 void LiveObjectList::GCEpiloguePrivate() {
2392 LiveObjectList* prev = NULL;
2393 LiveObjectList* next = NULL;
2396 for (LiveObjectList* lol = last(); lol; lol = prev) {
2474 void LiveObjectList::Verify(bool match_heap_exactly) {
2475 OS::Print("Verifying the LiveObjectList database:\n");
2477 LiveObjectList* lol = last();
2613 void LiveObjectList::VerifyNotInFromSpace() {