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

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

Issue 2032153003: Use clustered serialization for full snapshots. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: round2 Created 4 years, 5 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
« no previous file with comments | « runtime/vm/dart.cc ('k') | runtime/vm/dart_entry.h » ('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) 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 "include/dart_api.h" 5 #include "include/dart_api.h"
6 #include "include/dart_mirrors_api.h" 6 #include "include/dart_mirrors_api.h"
7 #include "include/dart_native_api.h" 7 #include "include/dart_native_api.h"
8 8
9 #include "platform/assert.h" 9 #include "platform/assert.h"
10 #include "lib/stacktrace.h" 10 #include "lib/stacktrace.h"
11 #include "vm/class_finalizer.h" 11 #include "vm/class_finalizer.h"
12 #include "vm/clustered_snapshot.h"
12 #include "vm/compiler.h" 13 #include "vm/compiler.h"
13 #include "vm/dart.h" 14 #include "vm/dart.h"
14 #include "vm/dart_api_impl.h" 15 #include "vm/dart_api_impl.h"
15 #include "vm/dart_api_message.h" 16 #include "vm/dart_api_message.h"
16 #include "vm/dart_api_state.h" 17 #include "vm/dart_api_state.h"
17 #include "vm/dart_entry.h" 18 #include "vm/dart_entry.h"
18 #include "vm/debugger.h" 19 #include "vm/debugger.h"
19 #include "vm/dev_fs.h" 20 #include "vm/dev_fs.h"
20 #include "vm/exceptions.h" 21 #include "vm/exceptions.h"
21 #include "vm/flags.h" 22 #include "vm/flags.h"
(...skipping 6418 matching lines...) Expand 10 before | Expand all | Expand 10 after
6440 6441
6441 DART_EXPORT bool Dart_IsPrecompiledRuntime() { 6442 DART_EXPORT bool Dart_IsPrecompiledRuntime() {
6442 #if defined(DART_PRECOMPILED_RUNTIME) 6443 #if defined(DART_PRECOMPILED_RUNTIME)
6443 return true; 6444 return true;
6444 #else 6445 #else
6445 return false; 6446 return false;
6446 #endif 6447 #endif
6447 } 6448 }
6448 6449
6449 } // namespace dart 6450 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/dart.cc ('k') | runtime/vm/dart_entry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698