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

Unified Diff: src/heap/heap.cc

Issue 1051833002: Reland: Fix JSON parser Handle leak (previous CL 1041483004) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix handling of stack overflow Created 5 years, 9 months 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
Index: src/heap/heap.cc
diff --git a/src/heap/heap.cc b/src/heap/heap.cc
index 61fab02894a90e8b843e51c6328ce06dacae35b3..c4a368ea5b87cf564a5263c56dc05de002966d93 100644
--- a/src/heap/heap.cc
+++ b/src/heap/heap.cc
@@ -618,6 +618,7 @@ void Heap::GarbageCollectionEpilogue() {
if (FLAG_gc_verbose) Print();
if (FLAG_code_stats) ReportCodeStatistics("After GC");
#endif
+ if (FLAG_check_handle_count) CheckHandleCount();
if (FLAG_deopt_every_n_garbage_collections > 0) {
// TODO(jkummerow/ulan/jarin): This is not safe! We can't assume that
// the topmost optimized frame can be deoptimized safely, because it
@@ -5652,6 +5653,24 @@ void Heap::PrintHandles() {
#endif
+class CheckHandleCountVisitor : public ObjectVisitor {
+ public:
+ CheckHandleCountVisitor() : handle_count_(0) {}
+ ~CheckHandleCountVisitor() { CHECK(handle_count_ < 2000); }
+ void VisitPointers(Object** start, Object** end) {
+ handle_count_ += end - start;
+ }
+
+ private:
+ ptrdiff_t handle_count_;
+};
+
+
+void Heap::CheckHandleCount() {
+ CheckHandleCountVisitor v;
+ isolate_->handle_scope_implementer()->Iterate(&v);
+}
+
Space* AllSpaces::next() {
switch (counter_++) {
« no previous file with comments | « src/heap/heap.h ('k') | src/json-parser.h » ('j') | test/mjsunit/regress/regress-472504.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698