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

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

Issue 9348048: Add support for medium integers to the native message format (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/dart_api_message.h » ('j') | runtime/vm/snapshot.cc » ('J')
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 #ifndef INCLUDE_DART_API_H_ 5 #ifndef INCLUDE_DART_API_H_
6 #define INCLUDE_DART_API_H_ 6 #define INCLUDE_DART_API_H_
7 7
8 /** \mainpage Dart Embedding API Reference 8 /** \mainpage Dart Embedding API Reference
9 * 9 *
10 * Dart is a class-based programming language for creating structured 10 * Dart is a class-based programming language for creating structured
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 * A Dart_CObject is used for representing Dart objects as native C 541 * A Dart_CObject is used for representing Dart objects as native C
542 * data outside the Dart heap. These objects are totally detached from 542 * data outside the Dart heap. These objects are totally detached from
543 * the Dart heap. Only a subset of the Dart objects have a 543 * the Dart heap. Only a subset of the Dart objects have a
544 * representation as a Dart_CObject. 544 * representation as a Dart_CObject.
545 */ 545 */
546 struct Dart_CObject { 546 struct Dart_CObject {
547 enum Type { 547 enum Type {
548 kNull = 0, 548 kNull = 0,
549 kBool, 549 kBool,
550 kInt32, 550 kInt32,
551 kInt64,
551 kDouble, 552 kDouble,
552 kString, 553 kString,
553 kArray, 554 kArray,
554 kNumberOfTypes 555 kNumberOfTypes
555 }; 556 };
556 Type type; 557 Type type;
557 union { 558 union {
558 bool as_bool; 559 bool as_bool;
559 int32_t as_int32; 560 int32_t as_int32;
561 int64_t as_int64;
560 double as_double; 562 double as_double;
561 char* as_string; 563 char* as_string;
562 struct { 564 struct {
563 int length; 565 int length;
564 Dart_CObject** values; 566 Dart_CObject** values;
565 } as_array; 567 } as_array;
566 } value; 568 } value;
567 }; 569 };
568 570
569 /** 571 /**
(...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after
1461 1463
1462 // --- Profiling support ---- 1464 // --- Profiling support ----
1463 1465
1464 // External pprof support for gathering and dumping symbolic 1466 // External pprof support for gathering and dumping symbolic
1465 // information that can be used for better profile reports for 1467 // information that can be used for better profile reports for
1466 // dynamically generated code. 1468 // dynamically generated code.
1467 DART_EXPORT void Dart_InitPprofSupport(); 1469 DART_EXPORT void Dart_InitPprofSupport();
1468 DART_EXPORT void Dart_GetPprofSymbolInfo(void** buffer, int* buffer_size); 1470 DART_EXPORT void Dart_GetPprofSymbolInfo(void** buffer, int* buffer_size);
1469 1471
1470 #endif // INCLUDE_DART_API_H_ 1472 #endif // INCLUDE_DART_API_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/dart_api_message.h » ('j') | runtime/vm/snapshot.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698