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

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

Issue 12871015: SIMD plumbing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix FPU register move instruction on x64 Created 7 years, 9 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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/code_observers.h" 10 #include "vm/code_observers.h"
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 saved_stack_limit_(0), 281 saved_stack_limit_(0),
282 message_handler_(NULL), 282 message_handler_(NULL),
283 spawn_data_(0), 283 spawn_data_(0),
284 gc_prologue_callbacks_(), 284 gc_prologue_callbacks_(),
285 gc_epilogue_callbacks_(), 285 gc_epilogue_callbacks_(),
286 deopt_cpu_registers_copy_(NULL), 286 deopt_cpu_registers_copy_(NULL),
287 deopt_fpu_registers_copy_(NULL), 287 deopt_fpu_registers_copy_(NULL),
288 deopt_frame_copy_(NULL), 288 deopt_frame_copy_(NULL),
289 deopt_frame_copy_size_(0), 289 deopt_frame_copy_size_(0),
290 deferred_doubles_(NULL), 290 deferred_doubles_(NULL),
291 deferred_mints_(NULL) { 291 deferred_mints_(NULL),
292 deferred_float32x4s_(NULL),
293 deferred_uint32x4s_(NULL) {
292 } 294 }
293 295
294 296
295 Isolate::~Isolate() { 297 Isolate::~Isolate() {
296 delete [] name_; 298 delete [] name_;
297 delete heap_; 299 delete heap_;
298 delete object_store_; 300 delete object_store_;
299 delete api_state_; 301 delete api_state_;
300 delete stub_code_; 302 delete stub_code_;
301 delete debugger_; 303 delete debugger_;
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 isolate->saved_stack_limit(), 687 isolate->saved_stack_limit(),
686 heap->Used(Heap::kNew) / KB, 688 heap->Used(Heap::kNew) / KB,
687 heap->Capacity(Heap::kNew) / KB, 689 heap->Capacity(Heap::kNew) / KB,
688 heap->Used(Heap::kOld) / KB, 690 heap->Used(Heap::kOld) / KB,
689 heap->Capacity(Heap::kOld) / KB); 691 heap->Capacity(Heap::kOld) / KB);
690 ASSERT(n < 256); 692 ASSERT(n < 256);
691 return strdup(buffer); 693 return strdup(buffer);
692 } 694 }
693 695
694 } // namespace dart 696 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698