Chromium Code Reviews

Side by Side Diff: src/profile-generator.h

Issue 9375047: Heap Snapshot maximum size limit is too low for really big apps. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: the limit depends from the platform. Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « no previous file | src/profile-generator.cc » ('j') | src/profile-generator.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 1127 matching lines...)
1138 return key1 == key2; 1138 return key1 == key2;
1139 } 1139 }
1140 1140
1141 INLINE(static uint32_t ObjectHash(const void* key)) { 1141 INLINE(static uint32_t ObjectHash(const void* key)) {
1142 return ComputeIntegerHash( 1142 return ComputeIntegerHash(
1143 static_cast<uint32_t>(reinterpret_cast<uintptr_t>(key)), 1143 static_cast<uint32_t>(reinterpret_cast<uintptr_t>(key)),
1144 v8::internal::kZeroHashSeed); 1144 v8::internal::kZeroHashSeed);
1145 } 1145 }
1146 1146
1147 void EnumerateNodes(); 1147 void EnumerateNodes();
1148 HeapSnapshot* CreateFakeSnapshot(); 1148 HeapSnapshot* CreateFakeSnapshot(int raw_snapshot_size);
1149 int GetNodeId(HeapEntry* entry); 1149 int GetNodeId(HeapEntry* entry);
1150 int GetStringId(const char* s); 1150 int GetStringId(const char* s);
1151 void SerializeEdge(HeapGraphEdge* edge); 1151 void SerializeEdge(HeapGraphEdge* edge);
1152 void SerializeImpl(); 1152 void SerializeImpl();
1153 void SerializeNode(HeapEntry* entry); 1153 void SerializeNode(HeapEntry* entry);
1154 void SerializeNodes(); 1154 void SerializeNodes();
1155 void SerializeSnapshot(); 1155 void SerializeSnapshot();
1156 void SerializeString(const unsigned char* s); 1156 void SerializeString(const unsigned char* s);
1157 void SerializeStrings(); 1157 void SerializeStrings();
1158 void SortHashMap(HashMap* map, List<HashMap::Entry*>* sorted_entries); 1158 void SortHashMap(HashMap* map, List<HashMap::Entry*>* sorted_entries);
1159 1159
1160 static const int kMaxSerializableSnapshotRawSize; 1160 static const int kMaxSerializableSnapshotRawSize;
1161 1161
1162 HeapSnapshot* snapshot_; 1162 HeapSnapshot* snapshot_;
1163 HashMap nodes_; 1163 HashMap nodes_;
1164 HashMap strings_; 1164 HashMap strings_;
1165 int next_node_id_; 1165 int next_node_id_;
1166 int next_string_id_; 1166 int next_string_id_;
1167 OutputStreamWriter* writer_; 1167 OutputStreamWriter* writer_;
1168 1168
1169 friend class HeapSnapshotJSONSerializerEnumerator; 1169 friend class HeapSnapshotJSONSerializerEnumerator;
1170 friend class HeapSnapshotJSONSerializerIterator; 1170 friend class HeapSnapshotJSONSerializerIterator;
1171 1171
1172 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer); 1172 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer);
1173 }; 1173 };
1174 1174
1175 } } // namespace v8::internal 1175 } } // namespace v8::internal
1176 1176
1177 #endif // V8_PROFILE_GENERATOR_H_ 1177 #endif // V8_PROFILE_GENERATOR_H_
OLDNEW
« no previous file with comments | « no previous file | src/profile-generator.cc » ('j') | src/profile-generator.cc » ('J')

Powered by Google App Engine