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

Unified Diff: src/global-handles.cc

Issue 465026: Push bleeding_edge revision 3387, 3390 to trunk in order to fix test.... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 11 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/global-handles.h ('k') | src/heap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/global-handles.cc
===================================================================
--- src/global-handles.cc (revision 3407)
+++ src/global-handles.cc (working copy)
@@ -429,6 +429,26 @@
GlobalHandles::Node* GlobalHandles::first_free_ = NULL;
GlobalHandles::Node* GlobalHandles::first_deallocated_ = NULL;
+void GlobalHandles::RecordStats(HeapStats* stats) {
+ stats->global_handle_count = 0;
+ stats->weak_global_handle_count = 0;
+ stats->pending_global_handle_count = 0;
+ stats->near_death_global_handle_count = 0;
+ stats->destroyed_global_handle_count = 0;
+ for (Node* current = head_; current != NULL; current = current->next()) {
+ stats->global_handle_count++;
+ if (current->state_ == Node::WEAK) {
+ stats->weak_global_handle_count++;
+ } else if (current->state_ == Node::PENDING) {
+ stats->pending_global_handle_count++;
+ } else if (current->state_ == Node::NEAR_DEATH) {
+ stats->near_death_global_handle_count++;
+ } else if (current->state_ == Node::DESTROYED) {
+ stats->destroyed_global_handle_count++;
+ }
+ }
+}
+
#ifdef DEBUG
void GlobalHandles::PrintStats() {
« no previous file with comments | « src/global-handles.h ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698