Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Side by Side Diff: src/heap-snapshot-generator.cc

Issue 52643002: HeapProfiler: provide human readable names for code objects. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/heap-snapshot-generator.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 12 matching lines...) Expand all
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 #include "v8.h" 28 #include "v8.h"
29 29
30 #include "heap-snapshot-generator-inl.h" 30 #include "heap-snapshot-generator-inl.h"
31 31
32 #include "allocation-tracker.h" 32 #include "allocation-tracker.h"
33 #include "code-stubs.h"
33 #include "heap-profiler.h" 34 #include "heap-profiler.h"
34 #include "debug.h" 35 #include "debug.h"
35 #include "types.h" 36 #include "types.h"
36 37
37 namespace v8 { 38 namespace v8 {
38 namespace internal { 39 namespace internal {
39 40
40 41
41 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, int from, int to) 42 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, int from, int to)
42 : type_(type), 43 : type_(type),
(...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 HeapObject* parent_obj, 1104 HeapObject* parent_obj,
1104 int parent) 1105 int parent)
1105 : generator_(generator), 1106 : generator_(generator),
1106 parent_obj_(parent_obj), 1107 parent_obj_(parent_obj),
1107 parent_(parent), 1108 parent_(parent),
1108 next_index_(0) { 1109 next_index_(0) {
1109 } 1110 }
1110 void VisitCodeEntry(Address entry_address) { 1111 void VisitCodeEntry(Address entry_address) {
1111 Code* code = Code::cast(Code::GetObjectFromEntryAddress(entry_address)); 1112 Code* code = Code::cast(Code::GetObjectFromEntryAddress(entry_address));
1112 generator_->SetInternalReference(parent_obj_, parent_, "code", code); 1113 generator_->SetInternalReference(parent_obj_, parent_, "code", code);
1113 generator_->TagObject(code, "(code)"); 1114 generator_->TagCodeObject(code);
1114 } 1115 }
1115 void VisitPointers(Object** start, Object** end) { 1116 void VisitPointers(Object** start, Object** end) {
1116 for (Object** p = start; p < end; p++) { 1117 for (Object** p = start; p < end; p++) {
1117 if (CheckVisitedAndUnmark(p)) continue; 1118 if (CheckVisitedAndUnmark(p)) continue;
1118 generator_->SetHiddenReference(parent_obj_, parent_, next_index_++, *p); 1119 generator_->SetHiddenReference(parent_obj_, parent_, next_index_++, *p);
1119 } 1120 }
1120 } 1121 }
1121 static void MarkVisitedField(HeapObject* obj, int offset) { 1122 static void MarkVisitedField(HeapObject* obj, int offset) {
1122 if (offset < 0) return; 1123 if (offset < 0) return;
1123 Address field = obj->address() + offset; 1124 Address field = obj->address() + offset;
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
1366 Map::kDependentCodeOffset); 1367 Map::kDependentCodeOffset);
1367 } 1368 }
1368 1369
1369 1370
1370 void V8HeapExplorer::ExtractSharedFunctionInfoReferences( 1371 void V8HeapExplorer::ExtractSharedFunctionInfoReferences(
1371 int entry, SharedFunctionInfo* shared) { 1372 int entry, SharedFunctionInfo* shared) {
1372 HeapObject* obj = shared; 1373 HeapObject* obj = shared;
1373 SetInternalReference(obj, entry, 1374 SetInternalReference(obj, entry,
1374 "name", shared->name(), 1375 "name", shared->name(),
1375 SharedFunctionInfo::kNameOffset); 1376 SharedFunctionInfo::kNameOffset);
1376 TagObject(shared->code(), "(code)"); 1377 Object* empty_string = *heap_->isolate()->factory()->empty_string();
1378 StringsStorage* names = collection_->names();
1379 Object* shared_name = shared->name();
1380 shared_name = !shared_name->IsFailure() ? shared_name : shared->DebugName();
1381 shared_name = !shared_name->IsFailure() ? shared_name :
1382 shared->inferred_name();
yurys 2013/10/30 15:00:34 DebugName should already return inferred_name if t
1383 const char* name = NULL;
1384 if (shared_name != empty_string) {
1385 name = names->GetName(Name::cast(shared_name));
1386 TagObject(shared->code(), names->GetFormatted("(code for %s)", name));
1387 } else {
1388 TagObject(shared->code(), names->GetFormatted("(%s code)",
1389 Code::Kind2String(shared->code()->kind())));
1390 }
1377 SetInternalReference(obj, entry, 1391 SetInternalReference(obj, entry,
1378 "code", shared->code(), 1392 "code", shared->code(),
1379 SharedFunctionInfo::kCodeOffset); 1393 SharedFunctionInfo::kCodeOffset);
1380 TagObject(shared->scope_info(), "(function scope info)"); 1394 TagObject(shared->scope_info(), "(function scope info)");
1381 SetInternalReference(obj, entry, 1395 SetInternalReference(obj, entry,
1382 "scope_info", shared->scope_info(), 1396 "scope_info", shared->scope_info(),
1383 SharedFunctionInfo::kScopeInfoOffset); 1397 SharedFunctionInfo::kScopeInfoOffset);
1384 SetInternalReference(obj, entry, 1398 SetInternalReference(obj, entry,
1385 "instance_class_name", shared->instance_class_name(), 1399 "instance_class_name", shared->instance_class_name(),
1386 SharedFunctionInfo::kInstanceClassNameOffset); 1400 SharedFunctionInfo::kInstanceClassNameOffset);
1387 SetInternalReference(obj, entry, 1401 SetInternalReference(obj, entry,
1388 "script", shared->script(), 1402 "script", shared->script(),
1389 SharedFunctionInfo::kScriptOffset); 1403 SharedFunctionInfo::kScriptOffset);
1390 TagObject(shared->construct_stub(), "(code)"); 1404 const char* construct_stub_name = name ?
1405 names->GetFormatted("(construct stub code for %s)", name) :
1406 "(construct stub code)";
1407 TagObject(shared->construct_stub(), construct_stub_name);
1391 SetInternalReference(obj, entry, 1408 SetInternalReference(obj, entry,
1392 "construct_stub", shared->construct_stub(), 1409 "construct_stub", shared->construct_stub(),
1393 SharedFunctionInfo::kConstructStubOffset); 1410 SharedFunctionInfo::kConstructStubOffset);
1394 SetInternalReference(obj, entry, 1411 SetInternalReference(obj, entry,
1395 "function_data", shared->function_data(), 1412 "function_data", shared->function_data(),
1396 SharedFunctionInfo::kFunctionDataOffset); 1413 SharedFunctionInfo::kFunctionDataOffset);
1397 SetInternalReference(obj, entry, 1414 SetInternalReference(obj, entry,
1398 "debug_info", shared->debug_info(), 1415 "debug_info", shared->debug_info(),
1399 SharedFunctionInfo::kDebugInfoOffset); 1416 SharedFunctionInfo::kDebugInfoOffset);
1400 SetInternalReference(obj, entry, 1417 SetInternalReference(obj, entry,
1401 "inferred_name", shared->inferred_name(), 1418 "inferred_name", shared->inferred_name(),
1402 SharedFunctionInfo::kInferredNameOffset); 1419 SharedFunctionInfo::kInferredNameOffset);
1420 SetInternalReference(obj, entry,
1421 "optimized_code_map", shared->optimized_code_map(),
1422 SharedFunctionInfo::kOptimizedCodeMapOffset);
1403 SetWeakReference(obj, entry, 1423 SetWeakReference(obj, entry,
1404 1, shared->initial_map(), 1424 1, shared->initial_map(),
1405 SharedFunctionInfo::kInitialMapOffset); 1425 SharedFunctionInfo::kInitialMapOffset);
1406 } 1426 }
1407 1427
1408 1428
1409 void V8HeapExplorer::ExtractScriptReferences(int entry, Script* script) { 1429 void V8HeapExplorer::ExtractScriptReferences(int entry, Script* script) {
1410 HeapObject* obj = script; 1430 HeapObject* obj = script;
1411 SetInternalReference(obj, entry, 1431 SetInternalReference(obj, entry,
1412 "source", script->source(), 1432 "source", script->source(),
(...skipping 29 matching lines...) Expand all
1442 SetInternalReference(code_cache, entry, 1462 SetInternalReference(code_cache, entry,
1443 "default_cache", code_cache->default_cache(), 1463 "default_cache", code_cache->default_cache(),
1444 CodeCache::kDefaultCacheOffset); 1464 CodeCache::kDefaultCacheOffset);
1445 TagObject(code_cache->normal_type_cache(), "(code type cache)"); 1465 TagObject(code_cache->normal_type_cache(), "(code type cache)");
1446 SetInternalReference(code_cache, entry, 1466 SetInternalReference(code_cache, entry,
1447 "type_cache", code_cache->normal_type_cache(), 1467 "type_cache", code_cache->normal_type_cache(),
1448 CodeCache::kNormalTypeCacheOffset); 1468 CodeCache::kNormalTypeCacheOffset);
1449 } 1469 }
1450 1470
1451 1471
1472 void V8HeapExplorer::TagCodeObject(Code* code, const char* external_name) {
1473 StringsStorage* names = collection_->names();
1474 if (external_name) {
1475 TagObject(code, names->GetFormatted("(%s code)", external_name));
1476 return;
1477 }
1478 switch (code->kind()) {
1479 case Code::STUB: {
1480 TagObject(code, names->GetFormatted("(%s code)",
1481 CodeStub::MajorName(static_cast<CodeStub::Major>(code->major_key()),
yurys 2013/10/30 15:00:34 Please use CodeStub::GetName() instead, it would g
1482 true)));
1483 break;
1484 }
1485 default: {
1486 break;
1487 }
1488 }
1489 }
1490
1491
1452 void V8HeapExplorer::ExtractCodeReferences(int entry, Code* code) { 1492 void V8HeapExplorer::ExtractCodeReferences(int entry, Code* code) {
1493 TagCodeObject(code);
1453 TagObject(code->relocation_info(), "(code relocation info)"); 1494 TagObject(code->relocation_info(), "(code relocation info)");
1454 SetInternalReference(code, entry, 1495 SetInternalReference(code, entry,
1455 "relocation_info", code->relocation_info(), 1496 "relocation_info", code->relocation_info(),
1456 Code::kRelocationInfoOffset); 1497 Code::kRelocationInfoOffset);
1457 SetInternalReference(code, entry, 1498 SetInternalReference(code, entry,
1458 "handler_table", code->handler_table(), 1499 "handler_table", code->handler_table(),
1459 Code::kHandlerTableOffset); 1500 Code::kHandlerTableOffset);
1460 TagObject(code->deoptimization_data(), "(code deopt data)"); 1501 TagObject(code->deoptimization_data(), "(code deopt data)");
1461 SetInternalReference(code, entry, 1502 SetInternalReference(code, entry,
1462 "deoptimization_data", code->deoptimization_data(), 1503 "deoptimization_data", code->deoptimization_data(),
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
1688 class RootsReferencesExtractor : public ObjectVisitor { 1729 class RootsReferencesExtractor : public ObjectVisitor {
1689 private: 1730 private:
1690 struct IndexTag { 1731 struct IndexTag {
1691 IndexTag(int index, VisitorSynchronization::SyncTag tag) 1732 IndexTag(int index, VisitorSynchronization::SyncTag tag)
1692 : index(index), tag(tag) { } 1733 : index(index), tag(tag) { }
1693 int index; 1734 int index;
1694 VisitorSynchronization::SyncTag tag; 1735 VisitorSynchronization::SyncTag tag;
1695 }; 1736 };
1696 1737
1697 public: 1738 public:
1698 RootsReferencesExtractor() 1739 explicit RootsReferencesExtractor(Heap* heap)
1699 : collecting_all_references_(false), 1740 : collecting_all_references_(false),
1700 previous_reference_count_(0) { 1741 previous_reference_count_(0),
1742 heap_(heap) {
1701 } 1743 }
1702 1744
1703 void VisitPointers(Object** start, Object** end) { 1745 void VisitPointers(Object** start, Object** end) {
1704 if (collecting_all_references_) { 1746 if (collecting_all_references_) {
1705 for (Object** p = start; p < end; p++) all_references_.Add(*p); 1747 for (Object** p = start; p < end; p++) all_references_.Add(*p);
1706 } else { 1748 } else {
1707 for (Object** p = start; p < end; p++) strong_references_.Add(*p); 1749 for (Object** p = start; p < end; p++) strong_references_.Add(*p);
1708 } 1750 }
1709 } 1751 }
1710 1752
1711 void SetCollectingAllReferences() { collecting_all_references_ = true; } 1753 void SetCollectingAllReferences() { collecting_all_references_ = true; }
1712 1754
1713 void FillReferences(V8HeapExplorer* explorer) { 1755 void FillReferences(V8HeapExplorer* explorer) {
1714 ASSERT(strong_references_.length() <= all_references_.length()); 1756 ASSERT(strong_references_.length() <= all_references_.length());
1757 Builtins* builtins = heap_->isolate()->builtins();
1715 for (int i = 0; i < reference_tags_.length(); ++i) { 1758 for (int i = 0; i < reference_tags_.length(); ++i) {
1716 explorer->SetGcRootsReference(reference_tags_[i].tag); 1759 explorer->SetGcRootsReference(reference_tags_[i].tag);
1717 } 1760 }
1718 int strong_index = 0, all_index = 0, tags_index = 0; 1761 int strong_index = 0, all_index = 0, tags_index = 0, prev_tag_index = 0;
1719 while (all_index < all_references_.length()) { 1762 while (all_index < all_references_.length()) {
1720 if (strong_index < strong_references_.length() && 1763 if (strong_index < strong_references_.length() &&
1721 strong_references_[strong_index] == all_references_[all_index]) { 1764 strong_references_[strong_index] == all_references_[all_index]) {
1722 explorer->SetGcSubrootReference(reference_tags_[tags_index].tag, 1765 explorer->SetGcSubrootReference(reference_tags_[tags_index].tag,
1723 false, 1766 false,
1724 all_references_[all_index++]); 1767 all_references_[all_index]);
1725 ++strong_index; 1768 ++strong_index;
1726 } else { 1769 } else {
1727 explorer->SetGcSubrootReference(reference_tags_[tags_index].tag, 1770 explorer->SetGcSubrootReference(reference_tags_[tags_index].tag,
1728 true, 1771 true,
1729 all_references_[all_index++]); 1772 all_references_[all_index]);
1730 } 1773 }
1731 if (reference_tags_[tags_index].index == all_index) ++tags_index; 1774 if (reference_tags_[tags_index].tag == VisitorSynchronization::kBuiltins
1775 && all_references_[all_index]->IsCode()) {
1776 explorer->TagCodeObject(Code::cast(all_references_[all_index]),
1777 builtins->name(all_index - prev_tag_index));
1778 }
1779 ++all_index;
1780 if (reference_tags_[tags_index].index == all_index) {
1781 prev_tag_index = all_index;
1782 ++tags_index;
1783 }
1732 } 1784 }
1733 } 1785 }
1734 1786
1735 void Synchronize(VisitorSynchronization::SyncTag tag) { 1787 void Synchronize(VisitorSynchronization::SyncTag tag) {
1736 if (collecting_all_references_ && 1788 if (collecting_all_references_ &&
1737 previous_reference_count_ != all_references_.length()) { 1789 previous_reference_count_ != all_references_.length()) {
1738 previous_reference_count_ = all_references_.length(); 1790 previous_reference_count_ = all_references_.length();
1739 reference_tags_.Add(IndexTag(previous_reference_count_, tag)); 1791 reference_tags_.Add(IndexTag(previous_reference_count_, tag));
1740 } 1792 }
1741 } 1793 }
1742 1794
1743 private: 1795 private:
1744 bool collecting_all_references_; 1796 bool collecting_all_references_;
1745 List<Object*> strong_references_; 1797 List<Object*> strong_references_;
1746 List<Object*> all_references_; 1798 List<Object*> all_references_;
1747 int previous_reference_count_; 1799 int previous_reference_count_;
1748 List<IndexTag> reference_tags_; 1800 List<IndexTag> reference_tags_;
1801 Heap* heap_;
1749 }; 1802 };
1750 1803
1751 1804
1752 bool V8HeapExplorer::IterateAndExtractReferences( 1805 bool V8HeapExplorer::IterateAndExtractReferences(
1753 SnapshotFillerInterface* filler) { 1806 SnapshotFillerInterface* filler) {
1754 HeapIterator iterator(heap_, HeapIterator::kFilterUnreachable); 1807 HeapIterator iterator(heap_, HeapIterator::kFilterUnreachable);
1755 1808
1756 filler_ = filler; 1809 filler_ = filler;
1757 bool interrupted = false; 1810 bool interrupted = false;
1758 1811
1759 // Heap iteration with filtering must be finished in any case. 1812 // Heap iteration with filtering must be finished in any case.
1760 for (HeapObject* obj = iterator.next(); 1813 for (HeapObject* obj = iterator.next();
1761 obj != NULL; 1814 obj != NULL;
1762 obj = iterator.next(), progress_->ProgressStep()) { 1815 obj = iterator.next(), progress_->ProgressStep()) {
1763 if (!interrupted) { 1816 if (!interrupted) {
1764 ExtractReferences(obj); 1817 ExtractReferences(obj);
1765 if (!progress_->ProgressReport(false)) interrupted = true; 1818 if (!progress_->ProgressReport(false)) interrupted = true;
1766 } 1819 }
1767 } 1820 }
1768 if (interrupted) { 1821 if (interrupted) {
1769 filler_ = NULL; 1822 filler_ = NULL;
1770 return false; 1823 return false;
1771 } 1824 }
1772 1825
1773 SetRootGcRootsReference(); 1826 SetRootGcRootsReference();
1774 RootsReferencesExtractor extractor; 1827 RootsReferencesExtractor extractor(heap_);
1775 heap_->IterateRoots(&extractor, VISIT_ONLY_STRONG); 1828 heap_->IterateRoots(&extractor, VISIT_ONLY_STRONG);
1776 extractor.SetCollectingAllReferences(); 1829 extractor.SetCollectingAllReferences();
1777 heap_->IterateRoots(&extractor, VISIT_ALL); 1830 heap_->IterateRoots(&extractor, VISIT_ALL);
1778 extractor.FillReferences(this); 1831 extractor.FillReferences(this);
1779 filler_ = NULL; 1832 filler_ = NULL;
1780 return progress_->ProgressReport(true); 1833 return progress_->ProgressReport(true);
1781 } 1834 }
1782 1835
1783 1836
1784 bool V8HeapExplorer::IsEssentialObject(Object* object) { 1837 bool V8HeapExplorer::IsEssentialObject(Object* object) {
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
3026 writer_->AddString("\"<dummy>\""); 3079 writer_->AddString("\"<dummy>\"");
3027 for (int i = 1; i < sorted_strings.length(); ++i) { 3080 for (int i = 1; i < sorted_strings.length(); ++i) {
3028 writer_->AddCharacter(','); 3081 writer_->AddCharacter(',');
3029 SerializeString(sorted_strings[i]); 3082 SerializeString(sorted_strings[i]);
3030 if (writer_->aborted()) return; 3083 if (writer_->aborted()) return;
3031 } 3084 }
3032 } 3085 }
3033 3086
3034 3087
3035 } } // namespace v8::internal 3088 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/heap-snapshot-generator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698