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

Unified Diff: runtime/vm/thread_test.cc

Issue 1459173004: Remove support for object grouping during Garbage Collection (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: code-review Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/scavenger.cc ('k') | runtime/vm/verifier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/thread_test.cc
diff --git a/runtime/vm/thread_test.cc b/runtime/vm/thread_test.cc
index 2a8e8d7a6a039aaa4928959e007ea25bb04552e5..ec998f8980d16df6d998e1b3045f6a8a540c7d4c 100644
--- a/runtime/vm/thread_test.cc
+++ b/runtime/vm/thread_test.cc
@@ -134,7 +134,6 @@ class TaskWithZoneAllocation : public ThreadPool::Task {
// Ensure that our particular zone is visited.
isolate_->IterateObjectPointers(
&counter,
- /* visit_prologue_weak_handles = */ true,
StackFrameIterator::kValidateFrames);
EXPECT_EQ(1, counter.count());
}
@@ -152,7 +151,6 @@ class TaskWithZoneAllocation : public ThreadPool::Task {
// Ensure that our particular zone is visited.
isolate_->IterateObjectPointers(
&str_counter,
- /* visit_prologue_weak_handles = */ true,
StackFrameIterator::kValidateFrames);
// We should visit the string object exactly once.
EXPECT_EQ(1, str_counter.count());
@@ -279,7 +277,6 @@ class SafepointTestTask : public ThreadPool::Task {
ObjectCounter counter(isolate_, &smi);
isolate_->IterateObjectPointers(
&counter,
- /* visit_prologue_weak_handles = */ true,
StackFrameIterator::kValidateFrames);
{
MutexLocker ml(mutex_);
« no previous file with comments | « runtime/vm/scavenger.cc ('k') | runtime/vm/verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698