OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 2468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2479 { | 2479 { |
2480 v8::HandleScope scope(isolate); | 2480 v8::HandleScope scope(isolate); |
2481 Local<String> str = v8_str("str"); | 2481 Local<String> str = v8_str("str"); |
2482 global = v8::Persistent<String>::New(isolate, str); | 2482 global = v8::Persistent<String>::New(isolate, str); |
2483 } | 2483 } |
2484 CHECK_EQ(global->Length(), 3); | 2484 CHECK_EQ(global->Length(), 3); |
2485 global.Dispose(isolate); | 2485 global.Dispose(isolate); |
2486 } | 2486 } |
2487 | 2487 |
2488 | 2488 |
2489 THREADED_TEST(ResettingGlobalHandle) { | |
2490 v8::Isolate* isolate = v8::Isolate::GetCurrent(); | |
2491 v8::internal::GlobalHandles* global_handles = NULL; | |
2492 int initial_handle_count = 0; | |
2493 v8::Persistent<String> global; | |
2494 { | |
2495 v8::HandleScope scope(isolate); | |
2496 Local<String> str = v8_str("str"); | |
2497 | |
dcarney
2013/05/06 14:10:59
can drop the empty lines. v8 people seem not to be
marja
2013/05/06 14:15:21
Done.
| |
2498 global_handles = | |
2499 reinterpret_cast<v8::internal::Isolate*>(isolate)->global_handles(); | |
2500 initial_handle_count = global_handles->NumberOfGlobalHandles(); | |
2501 | |
2502 global = v8::Persistent<String>::New(isolate, str); | |
2503 } | |
2504 CHECK_EQ(global->Length(), 3); | |
2505 CHECK_EQ(global_handles->NumberOfGlobalHandles(), initial_handle_count + 1); | |
2506 { | |
2507 v8::HandleScope scope(isolate); | |
2508 Local<String> str = v8_str("longer"); | |
2509 global.Reset(isolate, str); | |
2510 } | |
2511 CHECK_EQ(global->Length(), 6); | |
2512 CHECK_EQ(global_handles->NumberOfGlobalHandles(), initial_handle_count + 1); | |
2513 global.Dispose(isolate); | |
2514 CHECK_EQ(global_handles->NumberOfGlobalHandles(), initial_handle_count); | |
2515 } | |
2516 | |
2517 | |
2489 THREADED_TEST(LocalHandle) { | 2518 THREADED_TEST(LocalHandle) { |
2490 v8::HandleScope scope(v8::Isolate::GetCurrent()); | 2519 v8::HandleScope scope(v8::Isolate::GetCurrent()); |
2491 v8::Local<String> local = v8::Local<String>::New(v8_str("str")); | 2520 v8::Local<String> local = v8::Local<String>::New(v8_str("str")); |
2492 CHECK_EQ(local->Length(), 3); | 2521 CHECK_EQ(local->Length(), 3); |
2493 | 2522 |
2494 local = v8::Local<String>::New(v8::Isolate::GetCurrent(), v8_str("str")); | 2523 local = v8::Local<String>::New(v8::Isolate::GetCurrent(), v8_str("str")); |
2495 CHECK_EQ(local->Length(), 3); | 2524 CHECK_EQ(local->Length(), 3); |
2496 } | 2525 } |
2497 | 2526 |
2498 | 2527 |
(...skipping 16394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
18893 i::Semaphore* sem_; | 18922 i::Semaphore* sem_; |
18894 volatile int sem_value_; | 18923 volatile int sem_value_; |
18895 }; | 18924 }; |
18896 | 18925 |
18897 | 18926 |
18898 THREADED_TEST(SemaphoreInterruption) { | 18927 THREADED_TEST(SemaphoreInterruption) { |
18899 ThreadInterruptTest().RunTest(); | 18928 ThreadInterruptTest().RunTest(); |
18900 } | 18929 } |
18901 | 18930 |
18902 #endif // WIN32 | 18931 #endif // WIN32 |
OLD | NEW |