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

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

Issue 1123813002: Move symbol table from per isolate snapshot to vm isolate snapshot, this reduces the per isolate in… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 7 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/object.cc ('k') | runtime/vm/raw_object.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 #ifndef VM_OBJECT_STORE_H_ 5 #ifndef VM_OBJECT_STORE_H_
6 #define VM_OBJECT_STORE_H_ 6 #define VM_OBJECT_STORE_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 RawStacktrace* preallocated_stack_trace_; 513 RawStacktrace* preallocated_stack_trace_;
514 RawFunction* lookup_port_handler_; 514 RawFunction* lookup_port_handler_;
515 RawTypedData* empty_uint32_array_; 515 RawTypedData* empty_uint32_array_;
516 RawFunction* handle_message_function_; 516 RawFunction* handle_message_function_;
517 RawArray* library_load_error_table_; 517 RawArray* library_load_error_table_;
518 RawObject** to() { 518 RawObject** to() {
519 return reinterpret_cast<RawObject**>(&library_load_error_table_); 519 return reinterpret_cast<RawObject**>(&library_load_error_table_);
520 } 520 }
521 521
522 friend class SnapshotReader; 522 friend class SnapshotReader;
523 friend class VmIsolateSnapshotReader;
523 524
524 DISALLOW_COPY_AND_ASSIGN(ObjectStore); 525 DISALLOW_COPY_AND_ASSIGN(ObjectStore);
525 }; 526 };
526 527
527 } // namespace dart 528 } // namespace dart
528 529
529 #endif // VM_OBJECT_STORE_H_ 530 #endif // VM_OBJECT_STORE_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698