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

Side by Side Diff: runtime/vm/isolate.h

Issue 11040062: Renamed Zone->StackZone, BaseZone->Zone, in preparation for changing isolate->get_zone() to return … (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review changes Created 8 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/growable_array.h ('k') | runtime/vm/isolate.cc » ('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 #ifndef VM_ISOLATE_H_ 5 #ifndef VM_ISOLATE_H_
6 #define VM_ISOLATE_H_ 6 #define VM_ISOLATE_H_
7 7
8 #include "include/dart_api.h" 8 #include "include/dart_api.h"
9 #include "platform/assert.h" 9 #include "platform/assert.h"
10 #include "vm/class_table.h" 10 #include "vm/class_table.h"
(...skipping 18 matching lines...) Expand all
29 class Mutex; 29 class Mutex;
30 class ObjectPointerVisitor; 30 class ObjectPointerVisitor;
31 class ObjectStore; 31 class ObjectStore;
32 class RawArray; 32 class RawArray;
33 class RawContext; 33 class RawContext;
34 class RawDouble; 34 class RawDouble;
35 class RawMint; 35 class RawMint;
36 class RawInteger; 36 class RawInteger;
37 class RawError; 37 class RawError;
38 class StackResource; 38 class StackResource;
39 class StackZone;
39 class StubCode; 40 class StubCode;
40 class Zone;
41 41
42 42
43 // Used by the deoptimization infrastructure to defer allocation of Double 43 // Used by the deoptimization infrastructure to defer allocation of Double
44 // objects until frame is fully rewritten and GC is safe. 44 // objects until frame is fully rewritten and GC is safe.
45 // See callers of Isolate::DeferDoubleMaterialization. 45 // See callers of Isolate::DeferDoubleMaterialization.
46 class DeferredDouble { 46 class DeferredDouble {
47 public: 47 public:
48 DeferredDouble(double value, RawDouble** slot, DeferredDouble* next) 48 DeferredDouble(double value, RawDouble** slot, DeferredDouble* next)
49 : value_(value), slot_(slot), next_(next) { } 49 : value_(value), slot_(slot), next_(next) { }
50 50
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 Isolate* new_isolate_; 419 Isolate* new_isolate_;
420 Isolate* saved_isolate_; 420 Isolate* saved_isolate_;
421 uword saved_stack_limit_; 421 uword saved_stack_limit_;
422 422
423 DISALLOW_COPY_AND_ASSIGN(SwitchIsolateScope); 423 DISALLOW_COPY_AND_ASSIGN(SwitchIsolateScope);
424 }; 424 };
425 425
426 } // namespace dart 426 } // namespace dart
427 427
428 #endif // VM_ISOLATE_H_ 428 #endif // VM_ISOLATE_H_
OLDNEW
« no previous file with comments | « runtime/vm/growable_array.h ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698