OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 3601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3612 "obj;")); | 3612 "obj;")); |
3613 Local<Value> result = create_unboxed_double_script->Run(); | 3613 Local<Value> result = create_unboxed_double_script->Run(); |
3614 CHECK(result->ToObject()->HasRealIndexedProperty(2000)); | 3614 CHECK(result->ToObject()->HasRealIndexedProperty(2000)); |
3615 Local<Script> key_count_check = Script::Compile(v8_str( | 3615 Local<Script> key_count_check = Script::Compile(v8_str( |
3616 "key_count;")); | 3616 "key_count;")); |
3617 result = key_count_check->Run(); | 3617 result = key_count_check->Run(); |
3618 CHECK_EQ(v8_num(40013), result); | 3618 CHECK_EQ(v8_num(40013), result); |
3619 } | 3619 } |
3620 | 3620 |
3621 | 3621 |
| 3622 Handle<v8::Array> NonStrictArgsIndexedPropertyEnumerator( |
| 3623 const AccessorInfo& info) { |
| 3624 // Force the list of returned keys to be stored in a Arguments object. |
| 3625 Local<Script> indexed_property_names_script = Script::Compile(v8_str( |
| 3626 "function f(w,x) {" |
| 3627 " return arguments;" |
| 3628 "}" |
| 3629 "keys = f(0, 1, 2, 3);" |
| 3630 "keys;")); |
| 3631 Local<Value> result = indexed_property_names_script->Run(); |
| 3632 return Local<v8::Array>(static_cast<v8::Array*>(::v8::Object::Cast(*result))); |
| 3633 } |
| 3634 |
| 3635 |
| 3636 static v8::Handle<Value> NonStrictIndexedPropertyGetter( |
| 3637 uint32_t index, |
| 3638 const AccessorInfo& info) { |
| 3639 ApiTestFuzzer::Fuzz(); |
| 3640 if (index < 4) { |
| 3641 return v8::Handle<Value>(v8_num(index)); |
| 3642 } |
| 3643 return v8::Handle<Value>(); |
| 3644 } |
| 3645 |
| 3646 |
| 3647 // Make sure that the the interceptor code in the runtime properly handles |
| 3648 // merging property name lists for non-string arguments arrays. |
| 3649 THREADED_TEST(IndexedInterceptorNonStrictArgsWithIndexedAccessor) { |
| 3650 v8::HandleScope scope; |
| 3651 Local<ObjectTemplate> templ = ObjectTemplate::New(); |
| 3652 templ->SetIndexedPropertyHandler(NonStrictIndexedPropertyGetter, |
| 3653 0, |
| 3654 0, |
| 3655 0, |
| 3656 NonStrictArgsIndexedPropertyEnumerator); |
| 3657 LocalContext context; |
| 3658 context->Global()->Set(v8_str("obj"), templ->NewInstance()); |
| 3659 Local<Script> create_args_script = |
| 3660 Script::Compile(v8_str( |
| 3661 "var key_count = 0;" |
| 3662 "for (x in obj) {key_count++;} key_count;")); |
| 3663 Local<Value> result = create_args_script->Run(); |
| 3664 CHECK_EQ(v8_num(4), result); |
| 3665 } |
| 3666 |
| 3667 |
3622 static v8::Handle<Value> IdentityIndexedPropertyGetter( | 3668 static v8::Handle<Value> IdentityIndexedPropertyGetter( |
3623 uint32_t index, | 3669 uint32_t index, |
3624 const AccessorInfo& info) { | 3670 const AccessorInfo& info) { |
3625 return v8::Integer::NewFromUnsigned(index); | 3671 return v8::Integer::NewFromUnsigned(index); |
3626 } | 3672 } |
3627 | 3673 |
3628 | 3674 |
3629 THREADED_TEST(IndexedInterceptorWithGetOwnPropertyDescriptor) { | 3675 THREADED_TEST(IndexedInterceptorWithGetOwnPropertyDescriptor) { |
3630 v8::HandleScope scope; | 3676 v8::HandleScope scope; |
3631 Local<ObjectTemplate> templ = ObjectTemplate::New(); | 3677 Local<ObjectTemplate> templ = ObjectTemplate::New(); |
(...skipping 11213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
14845 } | 14891 } |
14846 | 14892 |
14847 i::Isolate::Current()->heap()->CollectAllGarbage(true); | 14893 i::Isolate::Current()->heap()->CollectAllGarbage(true); |
14848 { i::Object* raw_map_cache = i::Isolate::Current()->context()->map_cache(); | 14894 { i::Object* raw_map_cache = i::Isolate::Current()->context()->map_cache(); |
14849 if (raw_map_cache != i::Isolate::Current()->heap()->undefined_value()) { | 14895 if (raw_map_cache != i::Isolate::Current()->heap()->undefined_value()) { |
14850 i::MapCache* map_cache = i::MapCache::cast(raw_map_cache); | 14896 i::MapCache* map_cache = i::MapCache::cast(raw_map_cache); |
14851 CHECK_GT(elements, map_cache->NumberOfElements()); | 14897 CHECK_GT(elements, map_cache->NumberOfElements()); |
14852 } | 14898 } |
14853 } | 14899 } |
14854 } | 14900 } |
OLD | NEW |