| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 | 286 |
| 287 | 287 |
| 288 THREADED_TEST(HandleScopePop) { | 288 THREADED_TEST(HandleScopePop) { |
| 289 LocalContext context; | 289 LocalContext context; |
| 290 v8::HandleScope scope(context->GetIsolate()); | 290 v8::HandleScope scope(context->GetIsolate()); |
| 291 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); | 291 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); |
| 292 obj->SetAccessor(v8_str("one"), HandleAllocatingGetter<1>); | 292 obj->SetAccessor(v8_str("one"), HandleAllocatingGetter<1>); |
| 293 obj->SetAccessor(v8_str("many"), HandleAllocatingGetter<1024>); | 293 obj->SetAccessor(v8_str("many"), HandleAllocatingGetter<1024>); |
| 294 v8::Handle<v8::Object> inst = obj->NewInstance(); | 294 v8::Handle<v8::Object> inst = obj->NewInstance(); |
| 295 context->Global()->Set(v8::String::New("obj"), inst); | 295 context->Global()->Set(v8::String::New("obj"), inst); |
| 296 i::Isolate* isolate = i::Isolate::Current(); | 296 i::Isolate* isolate = CcTest::i_isolate(); |
| 297 int count_before = i::HandleScope::NumberOfHandles(isolate); | 297 int count_before = i::HandleScope::NumberOfHandles(isolate); |
| 298 { | 298 { |
| 299 v8::HandleScope scope(context->GetIsolate()); | 299 v8::HandleScope scope(context->GetIsolate()); |
| 300 CompileRun( | 300 CompileRun( |
| 301 "for (var i = 0; i < 1000; i++) {" | 301 "for (var i = 0; i < 1000; i++) {" |
| 302 " obj.one;" | 302 " obj.one;" |
| 303 " obj.many;" | 303 " obj.many;" |
| 304 "}"); | 304 "}"); |
| 305 } | 305 } |
| 306 int count_after = i::HandleScope::NumberOfHandles(isolate); | 306 int count_after = i::HandleScope::NumberOfHandles(isolate); |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 v8::HandleScope scope(isolate); | 560 v8::HandleScope scope(isolate); |
| 561 v8::Handle<v8::Function> fun = v8::Function::New(isolate, handle_property); | 561 v8::Handle<v8::Function> fun = v8::Function::New(isolate, handle_property); |
| 562 LocalContext switch_context; | 562 LocalContext switch_context; |
| 563 switch_context->Global()->Set(v8_str("fun"), fun); | 563 switch_context->Global()->Set(v8_str("fun"), fun); |
| 564 v8::TryCatch try_catch; | 564 v8::TryCatch try_catch; |
| 565 CompileRun( | 565 CompileRun( |
| 566 "var o = Object.create(null, { n: { get:fun } });" | 566 "var o = Object.create(null, { n: { get:fun } });" |
| 567 "for (var i = 0; i < 10; i++) o.n;"); | 567 "for (var i = 0; i < 10; i++) o.n;"); |
| 568 CHECK(!try_catch.HasCaught()); | 568 CHECK(!try_catch.HasCaught()); |
| 569 } | 569 } |
| OLD | NEW |