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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 CcTest::InitializeVM(); | 410 CcTest::InitializeVM(); |
411 v8::Isolate* isolate = CcTest::isolate(); | 411 v8::Isolate* isolate = CcTest::isolate(); |
412 | 412 |
413 v8::HandleScope scope(isolate); | 413 v8::HandleScope scope(isolate); |
414 v8::Local<v8::Number> n = v8::Number::New(isolate, 0); | 414 v8::Local<v8::Number> n = v8::Number::New(isolate, 0); |
415 v8::Global<v8::Number> g(isolate, n); | 415 v8::Global<v8::Number> g(isolate, n); |
416 | 416 |
417 // Should not crash. | 417 // Should not crash. |
418 g.SetWeak<void>(nullptr, &WeakCallback, v8::WeakCallbackType::kParameter); | 418 g.SetWeak<void>(nullptr, &WeakCallback, v8::WeakCallbackType::kParameter); |
419 } | 419 } |
| 420 |
| 421 void finalizer(const v8::WeakCallbackInfo<v8::Global<v8::Object>>& data) { |
| 422 data.GetParameter()->ClearWeak(); |
| 423 v8::Local<v8::Object> o = |
| 424 v8::Local<v8::Object>::New(data.GetIsolate(), *data.GetParameter()); |
| 425 o->Set(data.GetIsolate()->GetCurrentContext(), v8_str("finalizer"), |
| 426 v8_str("was here")) |
| 427 .FromJust(); |
| 428 } |
| 429 |
| 430 TEST(FinalizerWeakness) { |
| 431 CcTest::InitializeVM(); |
| 432 v8::Isolate* isolate = CcTest::isolate(); |
| 433 |
| 434 v8::Global<v8::Object> g; |
| 435 int identity; |
| 436 |
| 437 { |
| 438 v8::HandleScope scope(isolate); |
| 439 v8::Local<v8::Object> o = v8::Object::New(isolate); |
| 440 identity = o->GetIdentityHash(); |
| 441 g.Reset(isolate, o); |
| 442 g.SetWeak(&g, finalizer, v8::WeakCallbackType::kFinalizer); |
| 443 } |
| 444 |
| 445 CcTest::i_isolate()->heap()->CollectAllAvailableGarbage(); |
| 446 |
| 447 CHECK(!g.IsEmpty()); |
| 448 v8::HandleScope scope(isolate); |
| 449 v8::Local<v8::Object> o = v8::Local<v8::Object>::New(isolate, g); |
| 450 CHECK_EQ(identity, o->GetIdentityHash()); |
| 451 CHECK(o->Has(isolate->GetCurrentContext(), v8_str("finalizer")).FromJust()); |
| 452 } |
OLD | NEW |