| OLD | NEW |
| 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/file.h" | 7 #include "bin/file.h" |
| 8 | 8 |
| 9 #include "platform/assert.h" | 9 #include "platform/assert.h" |
| 10 | 10 |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 | 399 |
| 400 BENCHMARK(CoreSnapshotSize) { | 400 BENCHMARK(CoreSnapshotSize) { |
| 401 const char* kScriptChars = | 401 const char* kScriptChars = |
| 402 "import 'dart:async';\n" | 402 "import 'dart:async';\n" |
| 403 "import 'dart:core';\n" | 403 "import 'dart:core';\n" |
| 404 "import 'dart:collection';\n" | 404 "import 'dart:collection';\n" |
| 405 "import 'dart:_collection-dev';\n" | 405 "import 'dart:_collection-dev';\n" |
| 406 "import 'dart:math';\n" | 406 "import 'dart:math';\n" |
| 407 "import 'dart:isolate';\n" | 407 "import 'dart:isolate';\n" |
| 408 "import 'dart:mirrors';\n" | 408 "import 'dart:mirrors';\n" |
| 409 "import 'dart:scalarlist';\n" | 409 "import 'dart:typeddata';\n" |
| 410 "\n"; | 410 "\n"; |
| 411 | 411 |
| 412 // Start an Isolate, load a script and create a full snapshot. | 412 // Start an Isolate, load a script and create a full snapshot. |
| 413 uint8_t* buffer; | 413 uint8_t* buffer; |
| 414 TestCase::LoadTestScript(kScriptChars, NULL); | 414 TestCase::LoadTestScript(kScriptChars, NULL); |
| 415 Api::CheckIsolateState(Isolate::Current()); | 415 Api::CheckIsolateState(Isolate::Current()); |
| 416 | 416 |
| 417 // Write snapshot with object content. | 417 // Write snapshot with object content. |
| 418 FullSnapshotWriter writer(&buffer, &malloc_allocator); | 418 FullSnapshotWriter writer(&buffer, &malloc_allocator); |
| 419 writer.WriteFullSnapshot(); | 419 writer.WriteFullSnapshot(); |
| 420 const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer); | 420 const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer); |
| 421 ASSERT(snapshot->kind() == Snapshot::kFull); | 421 ASSERT(snapshot->kind() == Snapshot::kFull); |
| 422 benchmark->set_score(snapshot->length()); | 422 benchmark->set_score(snapshot->length()); |
| 423 } | 423 } |
| 424 | 424 |
| 425 | 425 |
| 426 BENCHMARK(StandaloneSnapshotSize) { | 426 BENCHMARK(StandaloneSnapshotSize) { |
| 427 const char* kScriptChars = | 427 const char* kScriptChars = |
| 428 "import 'dart:async';\n" | 428 "import 'dart:async';\n" |
| 429 "import 'dart:core';\n" | 429 "import 'dart:core';\n" |
| 430 "import 'dart:collection';\n" | 430 "import 'dart:collection';\n" |
| 431 "import 'dart:_collection-dev';\n" | 431 "import 'dart:_collection-dev';\n" |
| 432 "import 'dart:math';\n" | 432 "import 'dart:math';\n" |
| 433 "import 'dart:isolate';\n" | 433 "import 'dart:isolate';\n" |
| 434 "import 'dart:mirrors';\n" | 434 "import 'dart:mirrors';\n" |
| 435 "import 'dart:scalarlist';\n" | 435 "import 'dart:typeddata';\n" |
| 436 "import 'dart:uri';\n" | 436 "import 'dart:uri';\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" | 439 "import 'dart:crypto';\n" |
| 440 "import 'dart:builtin';\n" | 440 "import 'dart:builtin';\n" |
| 441 "import 'dart:io';\n" | 441 "import 'dart:io';\n" |
| 442 "\n"; | 442 "\n"; |
| 443 | 443 |
| 444 // Start an Isolate, load a script and create a full snapshot. | 444 // Start an Isolate, load a script and create a full snapshot. |
| 445 uint8_t* buffer; | 445 uint8_t* buffer; |
| 446 TestCase::LoadTestScript(kScriptChars, NULL); | 446 TestCase::LoadTestScript(kScriptChars, NULL); |
| 447 Api::CheckIsolateState(Isolate::Current()); | 447 Api::CheckIsolateState(Isolate::Current()); |
| 448 | 448 |
| 449 // Write snapshot with object content. | 449 // Write snapshot with object content. |
| 450 FullSnapshotWriter writer(&buffer, &malloc_allocator); | 450 FullSnapshotWriter writer(&buffer, &malloc_allocator); |
| 451 writer.WriteFullSnapshot(); | 451 writer.WriteFullSnapshot(); |
| 452 const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer); | 452 const Snapshot* snapshot = Snapshot::SetupFromBuffer(buffer); |
| 453 ASSERT(snapshot->kind() == Snapshot::kFull); | 453 ASSERT(snapshot->kind() == Snapshot::kFull); |
| 454 benchmark->set_score(snapshot->length()); | 454 benchmark->set_score(snapshot->length()); |
| 455 } | 455 } |
| 456 | 456 |
| 457 } // namespace dart | 457 } // namespace dart |
| OLD | NEW |