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

Side by Side Diff: runtime/include/dart_api.h

Issue 1938653002: JIT precompilated snapshots. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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/bin/main.cc ('k') | runtime/lib/isolate.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 /* 1 /*
2 * Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 * Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 * for details. All rights reserved. Use of this source code is governed by a 3 * for details. All rights reserved. Use of this source code is governed by a
4 * BSD-style license that can be found in the LICENSE file. 4 * BSD-style license that can be found in the LICENSE file.
5 */ 5 */
6 6
7 #ifndef INCLUDE_DART_API_H_ 7 #ifndef INCLUDE_DART_API_H_
8 #define INCLUDE_DART_API_H_ 8 #define INCLUDE_DART_API_H_
9 9
10 /** \mainpage Dart Embedding API Reference 10 /** \mainpage Dart Embedding API Reference
(...skipping 2959 matching lines...) Expand 10 before | Expand all | Expand 10 after
2970 uint8_t** vm_isolate_snapshot_buffer, 2970 uint8_t** vm_isolate_snapshot_buffer,
2971 intptr_t* vm_isolate_snapshot_size, 2971 intptr_t* vm_isolate_snapshot_size,
2972 uint8_t** isolate_snapshot_buffer, 2972 uint8_t** isolate_snapshot_buffer,
2973 intptr_t* isolate_snapshot_size, 2973 intptr_t* isolate_snapshot_size,
2974 uint8_t** instructions_blob_buffer, 2974 uint8_t** instructions_blob_buffer,
2975 intptr_t* instructions_blob_size, 2975 intptr_t* instructions_blob_size,
2976 uint8_t** rodata_blob_buffer, 2976 uint8_t** rodata_blob_buffer,
2977 intptr_t* rodata_blob_size); 2977 intptr_t* rodata_blob_size);
2978 2978
2979 2979
2980 DART_EXPORT Dart_Handle Dart_PrecompileJIT();
2981
2982
2983 DART_EXPORT Dart_Handle Dart_CreatePrecompiledJITSnapshotBlob(
2984 uint8_t** vm_isolate_snapshot_buffer,
2985 intptr_t* vm_isolate_snapshot_size,
2986 uint8_t** isolate_snapshot_buffer,
2987 intptr_t* isolate_snapshot_size,
2988 uint8_t** instructions_blob_buffer,
2989 intptr_t* instructions_blob_size,
2990 uint8_t** rodata_blob_buffer,
2991 intptr_t* rodata_blob_size);
2992
2993
2980 DART_EXPORT bool Dart_IsRunningPrecompiledCode(); 2994 DART_EXPORT bool Dart_IsRunningPrecompiledCode();
2981 2995
2982 #endif /* INCLUDE_DART_API_H_ */ /* NOLINT */ 2996 #endif /* INCLUDE_DART_API_H_ */ /* NOLINT */
OLDNEW
« no previous file with comments | « runtime/bin/main.cc ('k') | runtime/lib/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698