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

Side by Side Diff: runtime/vm/object.h

Issue 32683002: Add empty dart:platform library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « runtime/vm/bootstrap_natives.cc ('k') | runtime/vm/object.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 // 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 VM_OBJECT_H_ 5 #ifndef VM_OBJECT_H_
6 #define VM_OBJECT_H_ 6 #define VM_OBJECT_H_
7 7
8 #include "include/dart_api.h" 8 #include "include/dart_api.h"
9 #include "platform/assert.h" 9 #include "platform/assert.h"
10 #include "platform/utils.h" 10 #include "platform/utils.h"
(...skipping 2517 matching lines...) Expand 10 before | Expand all | Expand 10 after
2528 static RawLibrary* AsyncLibrary(); 2528 static RawLibrary* AsyncLibrary();
2529 static RawLibrary* CoreLibrary(); 2529 static RawLibrary* CoreLibrary();
2530 static RawLibrary* CollectionLibrary(); 2530 static RawLibrary* CollectionLibrary();
2531 static RawLibrary* CollectionDevLibrary(); 2531 static RawLibrary* CollectionDevLibrary();
2532 static RawLibrary* CryptoLibrary(); 2532 static RawLibrary* CryptoLibrary();
2533 static RawLibrary* IsolateLibrary(); 2533 static RawLibrary* IsolateLibrary();
2534 static RawLibrary* JsonLibrary(); 2534 static RawLibrary* JsonLibrary();
2535 static RawLibrary* MathLibrary(); 2535 static RawLibrary* MathLibrary();
2536 static RawLibrary* MirrorsLibrary(); 2536 static RawLibrary* MirrorsLibrary();
2537 static RawLibrary* NativeWrappersLibrary(); 2537 static RawLibrary* NativeWrappersLibrary();
2538 static RawLibrary* PlatformLibrary();
2538 static RawLibrary* TypedDataLibrary(); 2539 static RawLibrary* TypedDataLibrary();
2539 static RawLibrary* UriLibrary(); 2540 static RawLibrary* UriLibrary();
2540 static RawLibrary* UtfLibrary(); 2541 static RawLibrary* UtfLibrary();
2541 2542
2542 // Eagerly compile all classes and functions in the library. 2543 // Eagerly compile all classes and functions in the library.
2543 static RawError* CompileAll(); 2544 static RawError* CompileAll();
2544 2545
2545 // Checks function fingerprints. Prints mismatches and aborts if 2546 // Checks function fingerprints. Prints mismatches and aborts if
2546 // mismatch found. 2547 // mismatch found.
2547 static void CheckFunctionFingerprints(); 2548 static void CheckFunctionFingerprints();
(...skipping 3732 matching lines...) Expand 10 before | Expand all | Expand 10 after
6280 6281
6281 6282
6282 RawObject* MegamorphicCache::GetTargetFunction(const Array& array, 6283 RawObject* MegamorphicCache::GetTargetFunction(const Array& array,
6283 intptr_t index) { 6284 intptr_t index) {
6284 return array.At((index * kEntryLength) + kTargetFunctionIndex); 6285 return array.At((index * kEntryLength) + kTargetFunctionIndex);
6285 } 6286 }
6286 6287
6287 } // namespace dart 6288 } // namespace dart
6288 6289
6289 #endif // VM_OBJECT_H_ 6290 #endif // VM_OBJECT_H_
OLDNEW
« no previous file with comments | « runtime/vm/bootstrap_natives.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698