| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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/service_isolate.h" | 5 #include "vm/service_isolate.h" |
| 6 | 6 |
| 7 #include "vm/compiler.h" | 7 #include "vm/compiler.h" |
| 8 #include "vm/dart_api_impl.h" | 8 #include "vm/dart_api_impl.h" |
| 9 #include "vm/dart_entry.h" | 9 #include "vm/dart_entry.h" |
| 10 #include "vm/isolate.h" | 10 #include "vm/isolate.h" |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 SwitchIsolateScope switch_scope(I); | 364 SwitchIsolateScope switch_scope(I); |
| 365 Dart::ShutdownIsolate(); | 365 Dart::ShutdownIsolate(); |
| 366 } | 366 } |
| 367 if (FLAG_trace_service) { | 367 if (FLAG_trace_service) { |
| 368 OS::Print("vm-service: Shutdown.\n"); | 368 OS::Print("vm-service: Shutdown.\n"); |
| 369 } | 369 } |
| 370 ServiceIsolate::FinishedExiting(); | 370 ServiceIsolate::FinishedExiting(); |
| 371 } | 371 } |
| 372 | 372 |
| 373 void RunMain(Isolate* I) { | 373 void RunMain(Isolate* I) { |
| 374 if (Dart::IsRunningPrecompiledCode()) { |
| 375 // TODO(24651): Remove this. |
| 376 return; |
| 377 } |
| 378 |
| 374 StartIsolateScope iso_scope(I); | 379 StartIsolateScope iso_scope(I); |
| 375 Thread* T = Thread::Current(); | 380 Thread* T = Thread::Current(); |
| 376 ASSERT(I == T->isolate()); | 381 ASSERT(I == T->isolate()); |
| 377 StackZone zone(T); | 382 StackZone zone(T); |
| 378 HANDLESCOPE(T); | 383 HANDLESCOPE(T); |
| 379 // Invoke main which will return the loadScriptPort. | 384 // Invoke main which will return the loadScriptPort. |
| 380 const Library& root_library = Library::Handle(Z, | 385 const Library& root_library = Library::Handle(Z, |
| 381 I->object_store()->root_library()); | 386 I->object_store()->root_library()); |
| 382 if (root_library.IsNull()) { | 387 if (root_library.IsNull()) { |
| 383 if (FLAG_trace_service) { | 388 if (FLAG_trace_service) { |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 ASSERT(!result.IsNull()); | 492 ASSERT(!result.IsNull()); |
| 488 Dart_Port port = ILLEGAL_PORT; | 493 Dart_Port port = ILLEGAL_PORT; |
| 489 if (result.IsReceivePort()) { | 494 if (result.IsReceivePort()) { |
| 490 port = ReceivePort::Cast(result).Id(); | 495 port = ReceivePort::Cast(result).Id(); |
| 491 } | 496 } |
| 492 ASSERT(port != ILLEGAL_PORT); | 497 ASSERT(port != ILLEGAL_PORT); |
| 493 ServiceIsolate::SetServicePort(port); | 498 ServiceIsolate::SetServicePort(port); |
| 494 } | 499 } |
| 495 | 500 |
| 496 } // namespace dart | 501 } // namespace dart |
| OLD | NEW |