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

Side by Side Diff: runtime/vm/allocation.cc

Issue 1292063004: Add NoSafepointScope to ObjectPointerVisitor. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Move implementation. Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/allocation.h ('k') | runtime/vm/heap.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/allocation.h" 5 #include "vm/allocation.h"
6 6
7 #include "platform/assert.h" 7 #include "platform/assert.h"
8 #include "vm/isolate.h" 8 #include "vm/isolate.h"
9 #include "vm/zone.h" 9 #include "vm/zone.h"
10 10
(...skipping 20 matching lines...) Expand all
31 31
32 32
33 void StackResource::UnwindAbove(Thread* thread, StackResource* new_top) { 33 void StackResource::UnwindAbove(Thread* thread, StackResource* new_top) {
34 StackResource* current_resource = thread->top_resource(); 34 StackResource* current_resource = thread->top_resource();
35 while (current_resource != new_top) { 35 while (current_resource != new_top) {
36 current_resource->~StackResource(); 36 current_resource->~StackResource();
37 current_resource = thread->top_resource(); 37 current_resource = thread->top_resource();
38 } 38 }
39 } 39 }
40 40
41
42 #if defined(DEBUG)
43 NoSafepointScope::NoSafepointScope() : StackResource(Thread::Current()) {
44 thread()->IncrementNoSafepointScopeDepth();
45 }
46
47
48 NoSafepointScope::~NoSafepointScope() {
49 thread()->DecrementNoSafepointScopeDepth();
50 }
51 #endif // defined(DEBUG)
52
41 } // namespace dart 53 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/allocation.h ('k') | runtime/vm/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698