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

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

Issue 15820008: Remove library dart:crypto (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments Created 7 years, 6 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 | « pkg/oauth2/lib/src/utils.dart ('k') | runtime/vm/bootstrap.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) 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 #include "vm/benchmark_test.h" 5 #include "vm/benchmark_test.h"
6 6
7 #include "bin/builtin.h" 7 #include "bin/builtin.h"
8 #include "bin/file.h" 8 #include "bin/file.h"
9 9
10 #include "platform/assert.h" 10 #include "platform/assert.h"
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 "import 'dart:async';\n" 429 "import 'dart:async';\n"
430 "import 'dart:core';\n" 430 "import 'dart:core';\n"
431 "import 'dart:collection';\n" 431 "import 'dart:collection';\n"
432 "import 'dart:_collection-dev';\n" 432 "import 'dart:_collection-dev';\n"
433 "import 'dart:math';\n" 433 "import 'dart:math';\n"
434 "import 'dart:isolate';\n" 434 "import 'dart:isolate';\n"
435 "import 'dart:mirrors';\n" 435 "import 'dart:mirrors';\n"
436 "import 'dart:typed_data';\n" 436 "import 'dart:typed_data';\n"
437 "import 'dart:utf';\n" 437 "import 'dart:utf';\n"
438 "import 'dart:json';\n" 438 "import 'dart:json';\n"
439 "import 'dart:crypto';\n"
440 "import 'dart:builtin';\n" 439 "import 'dart:builtin';\n"
441 "import 'dart:io';\n" 440 "import 'dart:io';\n"
442 "\n"; 441 "\n";
443 442
444 // Start an Isolate, load a script and create a full snapshot. 443 // Start an Isolate, load a script and create a full snapshot.
445 uint8_t* buffer; 444 uint8_t* buffer;
446 TestCase::LoadTestScript(kScriptChars, NULL); 445 TestCase::LoadTestScript(kScriptChars, NULL);
447 Api::CheckIsolateState(Isolate::Current()); 446 Api::CheckIsolateState(Isolate::Current());
448 447
449 // Write snapshot with object content. 448 // Write snapshot with object content.
450 FullSnapshotWriter writer(&buffer, &malloc_allocator); 449 FullSnapshotWriter writer(&buffer, &malloc_allocator);
451 writer.WriteFullSnapshot(); 450 writer.WriteFullSnapshot();
452 const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer); 451 const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer);
453 ASSERT(snapshot->kind() == Snapshot::kFull); 452 ASSERT(snapshot->kind() == Snapshot::kFull);
454 benchmark->set_score(snapshot->length()); 453 benchmark->set_score(snapshot->length());
455 } 454 }
456 455
457 } // namespace dart 456 } // namespace dart
OLDNEW
« no previous file with comments | « pkg/oauth2/lib/src/utils.dart ('k') | runtime/vm/bootstrap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698