| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 g1.SetWeak(); | 462 g1.SetWeak(); |
| 463 g2.Reset(isolate, v8::Object::New(isolate)); | 463 g2.Reset(isolate, v8::Object::New(isolate)); |
| 464 g2.SetWeak(); | 464 g2.SetWeak(); |
| 465 } | 465 } |
| 466 | 466 |
| 467 CHECK_EQ(0, isolate->NumberOfPhantomHandleResetsSinceLastCall()); | 467 CHECK_EQ(0, isolate->NumberOfPhantomHandleResetsSinceLastCall()); |
| 468 CcTest::i_isolate()->heap()->CollectAllAvailableGarbage(); | 468 CcTest::i_isolate()->heap()->CollectAllAvailableGarbage(); |
| 469 CHECK_EQ(2, isolate->NumberOfPhantomHandleResetsSinceLastCall()); | 469 CHECK_EQ(2, isolate->NumberOfPhantomHandleResetsSinceLastCall()); |
| 470 CHECK_EQ(0, isolate->NumberOfPhantomHandleResetsSinceLastCall()); | 470 CHECK_EQ(0, isolate->NumberOfPhantomHandleResetsSinceLastCall()); |
| 471 } | 471 } |
| 472 |
| 473 const int N = 1000000; |
| 474 v8::Global<v8::Object> gs[N]; |
| 475 |
| 476 TEST(HandleResetPerf) { |
| 477 CcTest::InitializeVM(); |
| 478 v8::Isolate* isolate = CcTest::isolate(); |
| 479 v8::HandleScope scope(isolate); |
| 480 std::vector<int> permutation; |
| 481 for (int i = 0; i < N; i++) { |
| 482 permutation.push_back(i); |
| 483 } |
| 484 // Comment it out to make clearing in-order. |
| 485 std::random_shuffle(permutation.begin(), permutation.end()); |
| 486 v8::Local<v8::Object> o = v8::Object::New(isolate); |
| 487 double t1 = CcTest::i_isolate()->heap()->MonotonicallyIncreasingTimeInMs(); |
| 488 for (int i = 0; i < N; i++) { |
| 489 gs[i].Reset(isolate, o); |
| 490 } |
| 491 double t2 = CcTest::i_isolate()->heap()->MonotonicallyIncreasingTimeInMs(); |
| 492 int sum = 0; |
| 493 for (int i = 0; i < N; i++) { |
| 494 sum += permutation[i]; |
| 495 gs[permutation[i]].Reset(); |
| 496 } |
| 497 double t3 = CcTest::i_isolate()->heap()->MonotonicallyIncreasingTimeInMs(); |
| 498 for (int i = 0; i < N; i++) { |
| 499 gs[i].Reset(isolate, o); |
| 500 } |
| 501 double t4 = CcTest::i_isolate()->heap()->MonotonicallyIncreasingTimeInMs(); |
| 502 for (int i = 0; i < N; i++) { |
| 503 sum += permutation[i]; |
| 504 gs[i].Reset(); |
| 505 } |
| 506 double t5 = CcTest::i_isolate()->heap()->MonotonicallyIncreasingTimeInMs(); |
| 507 printf("allocation1 %.3f\n", t2 - t1); |
| 508 printf("clear1 %.3f\n", t3 - t2); |
| 509 printf("alloaction2 %.3f\n", t4 - t3); |
| 510 printf("clear2 %.3f\n", t5 - t4); |
| 511 printf("sum %d\n", sum); |
| 512 } |
| OLD | NEW |