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

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

Issue 11308166: Fix bug 6467: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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/dart.h ('k') | runtime/vm/dart_api_impl.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/dart.h" 5 #include "vm/dart.h"
6 6
7 #include "vm/dart_api_state.h" 7 #include "vm/dart_api_state.h"
8 #include "vm/flags.h" 8 #include "vm/flags.h"
9 #include "vm/freelist.h" 9 #include "vm/freelist.h"
10 #include "vm/handles.h" 10 #include "vm/handles.h"
(...skipping 30 matching lines...) Expand all
41 void VisitObject(RawObject* obj) { 41 void VisitObject(RawObject* obj) {
42 // RawInstruction objects are premarked on allocation. 42 // RawInstruction objects are premarked on allocation.
43 if (!obj->IsMarked()) { 43 if (!obj->IsMarked()) {
44 obj->SetMarkBit(); 44 obj->SetMarkBit();
45 } 45 }
46 } 46 }
47 }; 47 };
48 48
49 49
50 // TODO(turnidge): We should add a corresponding Dart::Cleanup. 50 // TODO(turnidge): We should add a corresponding Dart::Cleanup.
51 bool Dart::InitOnce(Dart_IsolateCreateCallback create, 51 const char* Dart::InitOnce(Dart_IsolateCreateCallback create,
52 Dart_IsolateInterruptCallback interrupt, 52 Dart_IsolateInterruptCallback interrupt,
53 Dart_IsolateShutdownCallback shutdown) { 53 Dart_IsolateShutdownCallback shutdown) {
54 // TODO(iposva): Fix race condition here. 54 // TODO(iposva): Fix race condition here.
55 if (vm_isolate_ != NULL || !Flags::Initialized()) { 55 if (vm_isolate_ != NULL || !Flags::Initialized()) {
56 return false; 56 return "VM already initialized.";
57 } 57 }
58 OS::InitOnce(); 58 OS::InitOnce();
59 VirtualMemory::InitOnce(); 59 VirtualMemory::InitOnce();
60 Isolate::InitOnce(); 60 Isolate::InitOnce();
61 PortMap::InitOnce(); 61 PortMap::InitOnce();
62 FreeListElement::InitOnce(); 62 FreeListElement::InitOnce();
63 Api::InitOnce(); 63 Api::InitOnce();
64 // Create the VM isolate and finish the VM initialization. 64 // Create the VM isolate and finish the VM initialization.
65 ASSERT(thread_pool_ == NULL); 65 ASSERT(thread_pool_ == NULL);
66 thread_pool_ = new ThreadPool(); 66 thread_pool_ = new ThreadPool();
67 { 67 {
68 ASSERT(vm_isolate_ == NULL); 68 ASSERT(vm_isolate_ == NULL);
69 ASSERT(Flags::Initialized()); 69 ASSERT(Flags::Initialized());
70 vm_isolate_ = Isolate::Init("vm-isolate"); 70 vm_isolate_ = Isolate::Init("vm-isolate");
71 StackZone zone(vm_isolate_); 71 StackZone zone(vm_isolate_);
72 HandleScope handle_scope(vm_isolate_); 72 HandleScope handle_scope(vm_isolate_);
73 Heap::Init(vm_isolate_); 73 Heap::Init(vm_isolate_);
74 ObjectStore::Init(vm_isolate_); 74 ObjectStore::Init(vm_isolate_);
75 Object::InitOnce(); 75 Object::InitOnce();
76 StubCode::InitOnce(); 76 StubCode::InitOnce();
77 Scanner::InitOnce(); 77 Scanner::InitOnce();
78 Symbols::InitOnce(vm_isolate_); 78 Symbols::InitOnce(vm_isolate_);
79 CPUFeatures::InitOnce(); 79 CPUFeatures::InitOnce();
80 #if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64) 80 #if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64)
81 // Dart VM requires at least SSE3. 81 // Dart VM requires at least SSE3.
82 if (!CPUFeatures::sse3_supported()) return false; 82 if (!CPUFeatures::sse3_supported()) {
83 return "SSE3 is required.";
84 }
83 #endif 85 #endif
84 PremarkingVisitor premarker(vm_isolate_); 86 PremarkingVisitor premarker(vm_isolate_);
85 vm_isolate_->heap()->IterateOldObjects(&premarker); 87 vm_isolate_->heap()->IterateOldObjects(&premarker);
86 vm_isolate_->heap()->WriteProtect(true); 88 vm_isolate_->heap()->WriteProtect(true);
87 } 89 }
88 Isolate::SetCurrent(NULL); // Unregister the VM isolate from this thread. 90 Isolate::SetCurrent(NULL); // Unregister the VM isolate from this thread.
89 Isolate::SetCreateCallback(create); 91 Isolate::SetCreateCallback(create);
90 Isolate::SetInterruptCallback(interrupt); 92 Isolate::SetInterruptCallback(interrupt);
91 Isolate::SetShutdownCallback(shutdown); 93 Isolate::SetShutdownCallback(shutdown);
92 return true; 94 return NULL;
93 } 95 }
94 96
95 97
96 Isolate* Dart::CreateIsolate(const char* name_prefix) { 98 Isolate* Dart::CreateIsolate(const char* name_prefix) {
97 // Create a new isolate. 99 // Create a new isolate.
98 Isolate* isolate = Isolate::Init(name_prefix); 100 Isolate* isolate = Isolate::Init(name_prefix);
99 ASSERT(isolate != NULL); 101 ASSERT(isolate != NULL);
100 return isolate; 102 return isolate;
101 } 103 }
102 104
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 isolate->Shutdown(); 185 isolate->Shutdown();
184 delete isolate; 186 delete isolate;
185 187
186 Dart_IsolateShutdownCallback callback = Isolate::ShutdownCallback(); 188 Dart_IsolateShutdownCallback callback = Isolate::ShutdownCallback();
187 if (callback != NULL) { 189 if (callback != NULL) {
188 (callback)(callback_data); 190 (callback)(callback_data);
189 } 191 }
190 } 192 }
191 193
192 } // namespace dart 194 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/dart.h ('k') | runtime/vm/dart_api_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698