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

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

Issue 11364134: Merge libv1. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Reupload due to error Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/flow_graph_inliner.cc ('k') | runtime/vm/message_handler.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 #include "vm/isolate.h" 5 #include "vm/isolate.h"
6 6
7 #include "include/dart_api.h" 7 #include "include/dart_api.h"
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 #include "lib/mirrors.h" 9 #include "lib/mirrors.h"
10 #include "vm/compiler_stats.h" 10 #include "vm/compiler_stats.h"
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 stub_code_(NULL), 158 stub_code_(NULL),
159 debugger_(NULL), 159 debugger_(NULL),
160 long_jump_base_(NULL), 160 long_jump_base_(NULL),
161 timer_list_(), 161 timer_list_(),
162 deopt_id_(0), 162 deopt_id_(0),
163 ic_data_array_(Array::null()), 163 ic_data_array_(Array::null()),
164 mutex_(new Mutex()), 164 mutex_(new Mutex()),
165 stack_limit_(0), 165 stack_limit_(0),
166 saved_stack_limit_(0), 166 saved_stack_limit_(0),
167 message_handler_(NULL), 167 message_handler_(NULL),
168 spawn_data_(NULL), 168 spawn_data_(0),
169 gc_prologue_callbacks_(), 169 gc_prologue_callbacks_(),
170 gc_epilogue_callbacks_(), 170 gc_epilogue_callbacks_(),
171 deopt_cpu_registers_copy_(NULL), 171 deopt_cpu_registers_copy_(NULL),
172 deopt_xmm_registers_copy_(NULL), 172 deopt_xmm_registers_copy_(NULL),
173 deopt_frame_copy_(NULL), 173 deopt_frame_copy_(NULL),
174 deopt_frame_copy_size_(0), 174 deopt_frame_copy_size_(0),
175 deferred_doubles_(NULL), 175 deferred_doubles_(NULL),
176 deferred_mints_(NULL) { 176 deferred_mints_(NULL) {
177 } 177 }
178 178
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 493
494 494
495 void Isolate::VisitWeakPersistentHandles(HandleVisitor* visitor, 495 void Isolate::VisitWeakPersistentHandles(HandleVisitor* visitor,
496 bool visit_prologue_weak_handles) { 496 bool visit_prologue_weak_handles) {
497 if (api_state() != NULL) { 497 if (api_state() != NULL) {
498 api_state()->VisitWeakHandles(visitor, visit_prologue_weak_handles); 498 api_state()->VisitWeakHandles(visitor, visit_prologue_weak_handles);
499 } 499 }
500 } 500 }
501 501
502 } // namespace dart 502 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_inliner.cc ('k') | runtime/vm/message_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698