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 2300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2311 } | 2311 } |
2312 | 2312 |
2313 // Call trap function. | 2313 // Call trap function. |
2314 Object** args[] = { name.location() }; | 2314 Object** args[] = { name.location() }; |
2315 bool has_exception; | 2315 bool has_exception; |
2316 Handle<Object> result = | 2316 Handle<Object> result = |
2317 Execution::Call(trap, handler, ARRAY_SIZE(args), args, &has_exception); | 2317 Execution::Call(trap, handler, ARRAY_SIZE(args), args, &has_exception); |
2318 if (has_exception) return Failure::Exception(); | 2318 if (has_exception) return Failure::Exception(); |
2319 | 2319 |
2320 Object* bool_result = result->ToBoolean(); | 2320 Object* bool_result = result->ToBoolean(); |
2321 if (mode == STRICT_DELETION && bool_result == GetHeap()->false_value()) { | 2321 if (mode == STRICT_DELETION && |
| 2322 bool_result == isolate->heap()->false_value()) { |
2322 Handle<Object> args[] = { handler, trap_name }; | 2323 Handle<Object> args[] = { handler, trap_name }; |
2323 Handle<Object> error = isolate->factory()->NewTypeError( | 2324 Handle<Object> error = isolate->factory()->NewTypeError( |
2324 "handler_failed", HandleVector(args, ARRAY_SIZE(args))); | 2325 "handler_failed", HandleVector(args, ARRAY_SIZE(args))); |
2325 isolate->Throw(*error); | 2326 isolate->Throw(*error); |
2326 return Failure::Exception(); | 2327 return Failure::Exception(); |
2327 } | 2328 } |
2328 return bool_result; | 2329 return bool_result; |
2329 } | 2330 } |
2330 | 2331 |
2331 | 2332 |
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3160 { | 3161 { |
3161 // Leaving JavaScript. | 3162 // Leaving JavaScript. |
3162 VMState state(isolate, EXTERNAL); | 3163 VMState state(isolate, EXTERNAL); |
3163 result = deleter(index, info); | 3164 result = deleter(index, info); |
3164 } | 3165 } |
3165 RETURN_IF_SCHEDULED_EXCEPTION(isolate); | 3166 RETURN_IF_SCHEDULED_EXCEPTION(isolate); |
3166 if (!result.IsEmpty()) { | 3167 if (!result.IsEmpty()) { |
3167 ASSERT(result->IsBoolean()); | 3168 ASSERT(result->IsBoolean()); |
3168 return *v8::Utils::OpenHandle(*result); | 3169 return *v8::Utils::OpenHandle(*result); |
3169 } | 3170 } |
3170 MaybeObject* raw_result = GetElementsAccessor()->Delete(*this_handle, | 3171 MaybeObject* raw_result = this_handle->GetElementsAccessor()->Delete( |
3171 index, | 3172 *this_handle, |
3172 NORMAL_DELETION); | 3173 index, |
| 3174 NORMAL_DELETION); |
3173 RETURN_IF_SCHEDULED_EXCEPTION(isolate); | 3175 RETURN_IF_SCHEDULED_EXCEPTION(isolate); |
3174 return raw_result; | 3176 return raw_result; |
3175 } | 3177 } |
3176 | 3178 |
3177 | 3179 |
3178 MaybeObject* JSObject::DeleteElement(uint32_t index, DeleteMode mode) { | 3180 MaybeObject* JSObject::DeleteElement(uint32_t index, DeleteMode mode) { |
3179 Isolate* isolate = GetIsolate(); | 3181 Isolate* isolate = GetIsolate(); |
3180 // Check access rights if needed. | 3182 // Check access rights if needed. |
3181 if (IsAccessCheckNeeded() && | 3183 if (IsAccessCheckNeeded() && |
3182 !isolate->MayIndexedAccess(this, index, v8::ACCESS_DELETE)) { | 3184 !isolate->MayIndexedAccess(this, index, v8::ACCESS_DELETE)) { |
(...skipping 8416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11599 if (break_point_objects()->IsUndefined()) return 0; | 11601 if (break_point_objects()->IsUndefined()) return 0; |
11600 // Single break point. | 11602 // Single break point. |
11601 if (!break_point_objects()->IsFixedArray()) return 1; | 11603 if (!break_point_objects()->IsFixedArray()) return 1; |
11602 // Multiple break points. | 11604 // Multiple break points. |
11603 return FixedArray::cast(break_point_objects())->length(); | 11605 return FixedArray::cast(break_point_objects())->length(); |
11604 } | 11606 } |
11605 #endif | 11607 #endif |
11606 | 11608 |
11607 | 11609 |
11608 } } // namespace v8::internal | 11610 } } // namespace v8::internal |
OLD | NEW |