Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: src/runtime/runtime-object.cc

Issue 1502983002: [proxies] Make Object.{isFrozen,isSealed} behave correctly for proxies. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/runtime/runtime-utils.h" 5 #include "src/runtime/runtime-utils.h"
6 6
7 #include "src/arguments.h" 7 #include "src/arguments.h"
8 #include "src/bootstrapper.h" 8 #include "src/bootstrapper.h"
9 #include "src/debug/debug.h" 9 #include "src/debug/debug.h"
10 #include "src/isolate-inl.h" 10 #include "src/isolate-inl.h"
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 JSObject::NormalizeProperties(object, KEEP_INOBJECT_PROPERTIES, properties, 327 JSObject::NormalizeProperties(object, KEEP_INOBJECT_PROPERTIES, properties,
328 "OptimizeForAdding"); 328 "OptimizeForAdding");
329 } 329 }
330 return *object; 330 return *object;
331 } 331 }
332 332
333 333
334 RUNTIME_FUNCTION(Runtime_ObjectFreeze) { 334 RUNTIME_FUNCTION(Runtime_ObjectFreeze) {
335 HandleScope scope(isolate); 335 HandleScope scope(isolate);
336 DCHECK(args.length() == 1); 336 DCHECK(args.length() == 1);
337 CONVERT_ARG_HANDLE_CHECKED(JSObject, object, 0); 337 CONVERT_ARG_HANDLE_CHECKED(JSReceiver, object, 0);
338 338
339 // %ObjectFreeze is a fast path and these cases are handled elsewhere. 339 MAYBE_RETURN(
340 RUNTIME_ASSERT(!object->HasSloppyArgumentsElements() && 340 JSReceiver::SetIntegrityLevel(object, FROZEN, Object::THROW_ON_ERROR),
341 !object->map()->is_observed() && !object->IsJSProxy()); 341 isolate->heap()->exception());
342 return *object;
343 }
342 344
343 Handle<Object> result; 345
344 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, JSObject::Freeze(object)); 346 RUNTIME_FUNCTION(Runtime_ObjectIsFrozen) {
345 return *result; 347 HandleScope scope(isolate);
348 DCHECK(args.length() == 1);
349 CONVERT_ARG_HANDLE_CHECKED(JSReceiver, object, 0);
350
351 Maybe<bool> result = JSReceiver::TestIntegrityLevel(object, FROZEN);
352 MAYBE_RETURN(result, isolate->heap()->exception());
353 return isolate->heap()->ToBoolean(result.FromJust());
346 } 354 }
347 355
348 356
349 RUNTIME_FUNCTION(Runtime_ObjectSeal) { 357 RUNTIME_FUNCTION(Runtime_ObjectSeal) {
350 HandleScope scope(isolate); 358 HandleScope scope(isolate);
351 DCHECK(args.length() == 1); 359 DCHECK(args.length() == 1);
352 CONVERT_ARG_HANDLE_CHECKED(JSObject, object, 0); 360 CONVERT_ARG_HANDLE_CHECKED(JSReceiver, object, 0);
353 361
354 // %ObjectSeal is a fast path and these cases are handled elsewhere. 362 MAYBE_RETURN(
355 RUNTIME_ASSERT(!object->HasSloppyArgumentsElements() && 363 JSReceiver::SetIntegrityLevel(object, SEALED, Object::THROW_ON_ERROR),
356 !object->map()->is_observed() && !object->IsJSProxy()); 364 isolate->heap()->exception());
357 365 return *object;
358 Handle<Object> result;
359 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, JSObject::Seal(object));
360 return *result;
361 } 366 }
362 367
363 368
369 RUNTIME_FUNCTION(Runtime_ObjectIsSealed) {
370 HandleScope scope(isolate);
371 DCHECK(args.length() == 1);
372 CONVERT_ARG_HANDLE_CHECKED(JSReceiver, object, 0);
373
374 Maybe<bool> result = JSReceiver::TestIntegrityLevel(object, SEALED);
375 MAYBE_RETURN(result, isolate->heap()->exception());
376 return isolate->heap()->ToBoolean(result.FromJust());
377 }
378
379
364 RUNTIME_FUNCTION(Runtime_LoadGlobalViaContext) { 380 RUNTIME_FUNCTION(Runtime_LoadGlobalViaContext) {
365 HandleScope scope(isolate); 381 HandleScope scope(isolate);
366 DCHECK_EQ(1, args.length()); 382 DCHECK_EQ(1, args.length());
367 CONVERT_SMI_ARG_CHECKED(slot, 0); 383 CONVERT_SMI_ARG_CHECKED(slot, 0);
368 384
369 // Go up context chain to the script context. 385 // Go up context chain to the script context.
370 Handle<Context> script_context(isolate->context()->script_context(), isolate); 386 Handle<Context> script_context(isolate->context()->script_context(), isolate);
371 DCHECK(script_context->IsScriptContext()); 387 DCHECK(script_context->IsScriptContext());
372 DCHECK(script_context->get(slot)->IsPropertyCell()); 388 DCHECK(script_context->get(slot)->IsPropertyCell());
373 389
(...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after
1418 1434
1419 RUNTIME_FUNCTION(Runtime_ObjectDefineProperties) { 1435 RUNTIME_FUNCTION(Runtime_ObjectDefineProperties) {
1420 HandleScope scope(isolate); 1436 HandleScope scope(isolate);
1421 DCHECK(args.length() == 2); 1437 DCHECK(args.length() == 2);
1422 CONVERT_ARG_HANDLE_CHECKED(Object, o, 0); 1438 CONVERT_ARG_HANDLE_CHECKED(Object, o, 0);
1423 CONVERT_ARG_HANDLE_CHECKED(Object, properties, 1); 1439 CONVERT_ARG_HANDLE_CHECKED(Object, properties, 1);
1424 return JSReceiver::DefineProperties(isolate, o, properties); 1440 return JSReceiver::DefineProperties(isolate, o, properties);
1425 } 1441 }
1426 } // namespace internal 1442 } // namespace internal
1427 } // namespace v8 1443 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698