Chromium Code Reviews| 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/precompiler.h" | 5 #include "vm/precompiler.h" |
| 6 | 6 |
| 7 #include "vm/code_patcher.h" | 7 #include "vm/code_patcher.h" |
| 8 #include "vm/compiler.h" | 8 #include "vm/compiler.h" |
| 9 #include "vm/isolate.h" | 9 #include "vm/isolate.h" |
| 10 #include "vm/log.h" | 10 #include "vm/log.h" |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 223 { "dart:core", "_TypeError", "_TypeError._create" }, | 223 { "dart:core", "_TypeError", "_TypeError._create" }, |
| 224 { "dart:isolate", "IsolateSpawnException", "IsolateSpawnException." }, | 224 { "dart:isolate", "IsolateSpawnException", "IsolateSpawnException." }, |
| 225 { "dart:isolate", "_IsolateUnhandledException", | 225 { "dart:isolate", "_IsolateUnhandledException", |
| 226 "_IsolateUnhandledException." }, | 226 "_IsolateUnhandledException." }, |
| 227 { "dart:isolate", "::", "_getIsolateScheduleImmediateClosure" }, | 227 { "dart:isolate", "::", "_getIsolateScheduleImmediateClosure" }, |
| 228 { "dart:isolate", "::", "_setupHooks" }, | 228 { "dart:isolate", "::", "_setupHooks" }, |
| 229 { "dart:isolate", "::", "_startMainIsolate" }, | 229 { "dart:isolate", "::", "_startMainIsolate" }, |
| 230 { "dart:isolate", "_RawReceivePortImpl", "_handleMessage" }, | 230 { "dart:isolate", "_RawReceivePortImpl", "_handleMessage" }, |
| 231 { "dart:isolate", "_RawReceivePortImpl", "_lookupHandler" }, | 231 { "dart:isolate", "_RawReceivePortImpl", "_lookupHandler" }, |
| 232 { "dart:isolate", "_SendPortImpl", "send" }, | 232 { "dart:isolate", "_SendPortImpl", "send" }, |
| 233 { "dart:typed_data", "ByteData", "ByteData." }, | |
| 234 { "dart:typed_data", "ByteData", "ByteData._view" }, | |
| 235 { "dart:typed_data", "_ByteBuffer", "_ByteBuffer._New" }, | |
|
Florian Schneider
2015/10/26 10:14:01
Since these are specific to each embedder and may
rmacnak
2015/10/26 16:09:35
There are two lists, one for the VM which is hard-
| |
| 233 { "dart:vmservice", "::", "_registerIsolate" }, | 236 { "dart:vmservice", "::", "_registerIsolate" }, |
| 234 { "dart:vmservice", "::", "boot" }, | 237 { "dart:vmservice", "::", "boot" }, |
| 235 { NULL, NULL, NULL } // Must be terminated with NULL entries. | 238 { NULL, NULL, NULL } // Must be terminated with NULL entries. |
| 236 }; | 239 }; |
| 237 | 240 |
| 238 AddEntryPoints(vm_entry_points); | 241 AddEntryPoints(vm_entry_points); |
| 239 AddEntryPoints(embedder_entry_points); | 242 AddEntryPoints(embedder_entry_points); |
| 240 } | 243 } |
| 241 | 244 |
| 242 | 245 |
| (...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 895 continue; // class 'dynamic' is in the read-only VM isolate. | 898 continue; // class 'dynamic' is in the read-only VM isolate. |
| 896 } | 899 } |
| 897 cls.EnsureIsFinalized(T); | 900 cls.EnsureIsFinalized(T); |
| 898 } | 901 } |
| 899 } | 902 } |
| 900 I->set_all_classes_finalized(true); | 903 I->set_all_classes_finalized(true); |
| 901 } | 904 } |
| 902 | 905 |
| 903 | 906 |
| 904 } // namespace dart | 907 } // namespace dart |
| OLD | NEW |