2015-02-06 12:07:48 +00:00
|
|
|
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2021-08-23 13:01:06 +00:00
|
|
|
#include "include/v8-function.h"
|
2019-05-17 12:13:44 +00:00
|
|
|
#include "src/api/api-inl.h"
|
2015-02-06 12:07:48 +00:00
|
|
|
#include "src/base/platform/platform.h"
|
2019-05-21 09:30:15 +00:00
|
|
|
#include "src/codegen/compilation-cache.h"
|
2019-05-22 07:55:37 +00:00
|
|
|
#include "src/execution/arguments.h"
|
|
|
|
#include "src/execution/execution.h"
|
2019-05-23 08:51:46 +00:00
|
|
|
#include "src/objects/objects-inl.h"
|
|
|
|
#include "src/objects/objects.h"
|
2017-01-27 10:13:53 +00:00
|
|
|
#include "src/runtime/runtime.h"
|
2019-05-21 06:38:38 +00:00
|
|
|
#include "src/strings/unicode-inl.h"
|
2019-05-23 13:27:57 +00:00
|
|
|
#include "src/utils/utils.h"
|
2021-08-23 13:01:06 +00:00
|
|
|
#include "test/cctest/test-api.h"
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
using ::v8::Context;
|
|
|
|
using ::v8::Function;
|
|
|
|
using ::v8::FunctionTemplate;
|
|
|
|
using ::v8::Local;
|
|
|
|
using ::v8::Name;
|
|
|
|
using ::v8::Object;
|
|
|
|
using ::v8::ObjectTemplate;
|
|
|
|
using ::v8::Script;
|
|
|
|
using ::v8::String;
|
|
|
|
using ::v8::Symbol;
|
|
|
|
using ::v8::Value;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
void Returns42(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
|
|
|
info.GetReturnValue().Set(42);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Return239Callback(Local<String> name,
|
|
|
|
const v8::PropertyCallbackInfo<Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(Return239Callback));
|
|
|
|
info.GetReturnValue().Set(v8_str("bad value"));
|
|
|
|
info.GetReturnValue().Set(v8_num(239));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EmptyInterceptorGetter(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {}
|
|
|
|
|
|
|
|
|
|
|
|
void EmptyInterceptorSetter(Local<Name> name, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {}
|
|
|
|
|
2018-03-15 16:56:17 +00:00
|
|
|
void EmptyInterceptorQuery(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Integer>& info) {}
|
|
|
|
|
|
|
|
void EmptyInterceptorDeleter(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Boolean>& info) {}
|
|
|
|
|
|
|
|
void EmptyInterceptorEnumerator(
|
|
|
|
const v8::PropertyCallbackInfo<v8::Array>& info) {}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
void SimpleAccessorGetter(Local<String> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<Object> self = info.This().As<Object>();
|
2018-07-24 13:56:11 +00:00
|
|
|
info.GetReturnValue().Set(
|
|
|
|
self->Get(info.GetIsolate()->GetCurrentContext(),
|
|
|
|
String::Concat(info.GetIsolate(), v8_str("accessor_"), name))
|
|
|
|
.ToLocalChecked());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SimpleAccessorSetter(Local<String> name, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<void>& info) {
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<Object> self = info.This().As<Object>();
|
2015-12-08 18:38:37 +00:00
|
|
|
self->Set(info.GetIsolate()->GetCurrentContext(),
|
2018-07-24 13:56:11 +00:00
|
|
|
String::Concat(info.GetIsolate(), v8_str("accessor_"), name), value)
|
2015-12-08 18:38:37 +00:00
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SymbolAccessorGetter(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CHECK(name->IsSymbol());
|
2021-04-12 18:12:33 +00:00
|
|
|
v8::Isolate* isolate = info.GetIsolate();
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<Symbol> sym = name.As<Symbol>();
|
2021-04-12 18:12:33 +00:00
|
|
|
if (sym->Description(isolate)->IsUndefined()) return;
|
|
|
|
SimpleAccessorGetter(sym->Description(isolate).As<String>(), info);
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SymbolAccessorSetter(Local<Name> name, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<void>& info) {
|
|
|
|
CHECK(name->IsSymbol());
|
2021-04-12 18:12:33 +00:00
|
|
|
v8::Isolate* isolate = info.GetIsolate();
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<Symbol> sym = name.As<Symbol>();
|
2021-04-12 18:12:33 +00:00
|
|
|
if (sym->Description(isolate)->IsUndefined()) return;
|
|
|
|
SimpleAccessorSetter(sym->Description(isolate).As<String>(), value, info);
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2017-12-01 12:48:23 +00:00
|
|
|
void InterceptorGetter(Local<Name> generic_name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
if (generic_name->IsSymbol()) return;
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<String> name = generic_name.As<String>();
|
2017-08-24 21:49:48 +00:00
|
|
|
String::Utf8Value utf8(info.GetIsolate(), name);
|
2015-02-06 12:07:48 +00:00
|
|
|
char* name_str = *utf8;
|
|
|
|
char prefix[] = "interceptor_";
|
|
|
|
int i;
|
|
|
|
for (i = 0; name_str[i] && prefix[i]; ++i) {
|
|
|
|
if (name_str[i] != prefix[i]) return;
|
|
|
|
}
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<Object> self = info.This().As<Object>();
|
2015-10-29 14:17:24 +00:00
|
|
|
info.GetReturnValue().Set(
|
|
|
|
self->GetPrivate(
|
|
|
|
info.GetIsolate()->GetCurrentContext(),
|
|
|
|
v8::Private::ForApi(info.GetIsolate(), v8_str(name_str + i)))
|
|
|
|
.ToLocalChecked());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2017-12-01 12:48:23 +00:00
|
|
|
void InterceptorSetter(Local<Name> generic_name, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
if (generic_name->IsSymbol()) return;
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<String> name = generic_name.As<String>();
|
2015-02-06 12:07:48 +00:00
|
|
|
// Intercept accesses that set certain integer values, for which the name does
|
|
|
|
// not start with 'accessor_'.
|
2017-08-24 21:49:48 +00:00
|
|
|
String::Utf8Value utf8(info.GetIsolate(), name);
|
2015-02-06 12:07:48 +00:00
|
|
|
char* name_str = *utf8;
|
|
|
|
char prefix[] = "accessor_";
|
|
|
|
int i;
|
|
|
|
for (i = 0; name_str[i] && prefix[i]; ++i) {
|
|
|
|
if (name_str[i] != prefix[i]) break;
|
|
|
|
}
|
|
|
|
if (!prefix[i]) return;
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<Context> context = info.GetIsolate()->GetCurrentContext();
|
|
|
|
if (value->IsInt32() && value->Int32Value(context).FromJust() < 10000) {
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<Object> self = info.This().As<Object>();
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<v8::Private> symbol = v8::Private::ForApi(info.GetIsolate(), name);
|
2015-10-29 14:17:24 +00:00
|
|
|
self->SetPrivate(context, symbol, value).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GenericInterceptorGetter(Local<Name> generic_name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
2021-04-12 18:12:33 +00:00
|
|
|
v8::Isolate* isolate = info.GetIsolate();
|
2015-02-06 12:07:48 +00:00
|
|
|
Local<String> str;
|
|
|
|
if (generic_name->IsSymbol()) {
|
2021-04-12 18:12:33 +00:00
|
|
|
Local<Value> name = generic_name.As<Symbol>()->Description(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
if (name->IsUndefined()) return;
|
2020-11-27 16:06:57 +00:00
|
|
|
str = String::Concat(info.GetIsolate(), v8_str("_sym_"), name.As<String>());
|
2015-02-06 12:07:48 +00:00
|
|
|
} else {
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<String> name = generic_name.As<String>();
|
2017-08-24 21:49:48 +00:00
|
|
|
String::Utf8Value utf8(info.GetIsolate(), name);
|
2015-02-06 12:07:48 +00:00
|
|
|
char* name_str = *utf8;
|
|
|
|
if (*name_str == '_') return;
|
2018-07-24 13:56:11 +00:00
|
|
|
str = String::Concat(info.GetIsolate(), v8_str("_str_"), name);
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<Object> self = info.This().As<Object>();
|
2015-12-08 18:38:37 +00:00
|
|
|
info.GetReturnValue().Set(
|
|
|
|
self->Get(info.GetIsolate()->GetCurrentContext(), str).ToLocalChecked());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GenericInterceptorSetter(Local<Name> generic_name, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
2021-04-12 18:12:33 +00:00
|
|
|
v8::Isolate* isolate = info.GetIsolate();
|
2015-02-06 12:07:48 +00:00
|
|
|
Local<String> str;
|
|
|
|
if (generic_name->IsSymbol()) {
|
2021-04-12 18:12:33 +00:00
|
|
|
Local<Value> name = generic_name.As<Symbol>()->Description(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
if (name->IsUndefined()) return;
|
2020-11-27 16:06:57 +00:00
|
|
|
str = String::Concat(info.GetIsolate(), v8_str("_sym_"), name.As<String>());
|
2015-02-06 12:07:48 +00:00
|
|
|
} else {
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<String> name = generic_name.As<String>();
|
2017-08-24 21:49:48 +00:00
|
|
|
String::Utf8Value utf8(info.GetIsolate(), name);
|
2015-02-06 12:07:48 +00:00
|
|
|
char* name_str = *utf8;
|
|
|
|
if (*name_str == '_') return;
|
2018-07-24 13:56:11 +00:00
|
|
|
str = String::Concat(info.GetIsolate(), v8_str("_str_"), name);
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<Object> self = info.This().As<Object>();
|
2015-12-08 18:38:37 +00:00
|
|
|
self->Set(info.GetIsolate()->GetCurrentContext(), str, value).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(value);
|
|
|
|
}
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
void AddAccessor(Local<FunctionTemplate> templ, Local<String> name,
|
2015-02-06 12:07:48 +00:00
|
|
|
v8::AccessorGetterCallback getter,
|
|
|
|
v8::AccessorSetterCallback setter) {
|
|
|
|
templ->PrototypeTemplate()->SetAccessor(name, getter, setter);
|
|
|
|
}
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
void AddAccessor(Local<FunctionTemplate> templ, Local<Name> name,
|
2015-02-06 12:07:48 +00:00
|
|
|
v8::AccessorNameGetterCallback getter,
|
|
|
|
v8::AccessorNameSetterCallback setter) {
|
|
|
|
templ->PrototypeTemplate()->SetAccessor(name, getter, setter);
|
|
|
|
}
|
|
|
|
|
2017-12-01 12:48:23 +00:00
|
|
|
void AddStringOnlyInterceptor(Local<FunctionTemplate> templ,
|
|
|
|
v8::GenericNamedPropertyGetterCallback getter,
|
|
|
|
v8::GenericNamedPropertySetterCallback setter) {
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
getter, setter, nullptr, nullptr, nullptr, Local<v8::Value>(),
|
|
|
|
v8::PropertyHandlerFlags::kOnlyInterceptStrings));
|
|
|
|
}
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
void AddInterceptor(Local<FunctionTemplate> templ,
|
2015-02-06 12:07:48 +00:00
|
|
|
v8::GenericNamedPropertyGetterCallback getter,
|
|
|
|
v8::GenericNamedPropertySetterCallback setter) {
|
|
|
|
templ->InstanceTemplate()->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(getter, setter));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Object> bottom;
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
void CheckThisIndexedPropertyHandler(
|
|
|
|
uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisIndexedPropertyHandler));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CheckThisNamedPropertyHandler(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisNamedPropertyHandler));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 09:08:31 +00:00
|
|
|
void CheckThisIndexedPropertyDefiner(
|
|
|
|
uint32_t index, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisIndexedPropertyDefiner));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckThisNamedPropertyDefiner(
|
|
|
|
Local<Name> property, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisNamedPropertyDefiner));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
2015-02-06 12:07:48 +00:00
|
|
|
void CheckThisIndexedPropertySetter(
|
|
|
|
uint32_t index, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisIndexedPropertySetter));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2016-09-08 12:51:37 +00:00
|
|
|
void CheckThisIndexedPropertyDescriptor(
|
|
|
|
uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisIndexedPropertyDescriptor));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckThisNamedPropertyDescriptor(
|
|
|
|
Local<Name> property, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisNamedPropertyDescriptor));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
|
|
|
}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
void CheckThisNamedPropertySetter(
|
|
|
|
Local<Name> property, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisNamedPropertySetter));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CheckThisIndexedPropertyQuery(
|
|
|
|
uint32_t index, const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisIndexedPropertyQuery));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CheckThisNamedPropertyQuery(
|
|
|
|
Local<Name> property, const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisNamedPropertyQuery));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CheckThisIndexedPropertyDeleter(
|
|
|
|
uint32_t index, const v8::PropertyCallbackInfo<v8::Boolean>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisIndexedPropertyDeleter));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CheckThisNamedPropertyDeleter(
|
|
|
|
Local<Name> property, const v8::PropertyCallbackInfo<v8::Boolean>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisNamedPropertyDeleter));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CheckThisIndexedPropertyEnumerator(
|
|
|
|
const v8::PropertyCallbackInfo<v8::Array>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisIndexedPropertyEnumerator));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CheckThisNamedPropertyEnumerator(
|
|
|
|
const v8::PropertyCallbackInfo<v8::Array>& info) {
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(CheckThisNamedPropertyEnumerator));
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(info.This()
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int echo_named_call_count;
|
|
|
|
|
|
|
|
|
|
|
|
void EchoNamedProperty(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_str("data")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), info.Data())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
echo_named_call_count++;
|
|
|
|
info.GetReturnValue().Set(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InterceptorHasOwnPropertyGetter(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InterceptorHasOwnPropertyGetterGC(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2017-04-26 22:16:41 +00:00
|
|
|
CcTest::CollectAllGarbage();
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2016-09-01 14:40:51 +00:00
|
|
|
int query_counter_int = 0;
|
|
|
|
|
|
|
|
void QueryCallback(Local<Name> property,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
query_counter_int++;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// Examples that show when the query callback is triggered.
|
|
|
|
THREADED_TEST(QueryInterceptor) {
|
2018-09-24 11:05:31 +00:00
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(isolate);
|
2016-09-01 14:40:51 +00:00
|
|
|
templ->InstanceTemplate()->SetHandler(
|
2018-09-13 14:55:18 +00:00
|
|
|
v8::NamedPropertyHandlerConfiguration(nullptr, nullptr, QueryCallback));
|
2016-09-01 14:40:51 +00:00
|
|
|
LocalContext env;
|
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(0, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
v8::Local<Value> result =
|
|
|
|
v8_compile("Object.getOwnPropertyDescriptor(obj, 'x');")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked();
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(1, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
CHECK_EQ(v8::PropertyAttribute::None,
|
|
|
|
static_cast<v8::PropertyAttribute>(
|
|
|
|
result->Int32Value(env.local()).FromJust()));
|
|
|
|
|
|
|
|
v8_compile("Object.defineProperty(obj, 'not_enum', {value: 17});")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked();
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(2, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
|
|
|
|
v8_compile(
|
|
|
|
"Object.defineProperty(obj, 'enum', {value: 17, enumerable: true, "
|
|
|
|
"writable: true});")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked();
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(3, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
|
|
|
|
CHECK(v8_compile("obj.propertyIsEnumerable('enum');")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
2018-09-24 11:05:31 +00:00
|
|
|
->BooleanValue(isolate));
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(4, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
|
|
|
|
CHECK(!v8_compile("obj.propertyIsEnumerable('not_enum');")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
2018-09-24 11:05:31 +00:00
|
|
|
->BooleanValue(isolate));
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(5, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
|
|
|
|
CHECK(v8_compile("obj.hasOwnProperty('enum');")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
2018-09-24 11:05:31 +00:00
|
|
|
->BooleanValue(isolate));
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(5, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
|
|
|
|
CHECK(v8_compile("obj.hasOwnProperty('not_enum');")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
2018-09-24 11:05:31 +00:00
|
|
|
->BooleanValue(isolate));
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(5, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
|
|
|
|
CHECK(!v8_compile("obj.hasOwnProperty('x');")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
2018-09-24 11:05:31 +00:00
|
|
|
->BooleanValue(isolate));
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(6, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
|
|
|
|
CHECK(!v8_compile("obj.propertyIsEnumerable('undef');")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
2018-09-24 11:05:31 +00:00
|
|
|
->BooleanValue(isolate));
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(7, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
|
|
|
|
v8_compile("Object.defineProperty(obj, 'enum', {value: 42});")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked();
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(8, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
|
|
|
|
v8_compile("Object.isFrozen('obj.x');")->Run(env.local()).ToLocalChecked();
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(8, query_counter_int);
|
2019-02-27 22:52:30 +00:00
|
|
|
|
|
|
|
v8_compile("'x' in obj;")->Run(env.local()).ToLocalChecked();
|
|
|
|
CHECK_EQ(9, query_counter_int);
|
2016-09-01 14:40:51 +00:00
|
|
|
}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
2016-11-16 11:37:39 +00:00
|
|
|
namespace {
|
|
|
|
|
2016-09-06 13:35:49 +00:00
|
|
|
bool get_was_called = false;
|
|
|
|
bool set_was_called = false;
|
|
|
|
|
[runtime] Intercept function declarations.
We used to intercept function definitions, but not declarations.
GenericNamedPropertySetterCallback now also intercepts function declarations.
For definitions, we call DeclareGlobal and then InitializeVarGlobal. For
declarations, we never call InitializeVarGlobal, thus we must check for
interceptors in DeclareGlobal.
If the semantics of a redeclaration are wrong, e.g., redeclaring a read-only
property, an exception is thrown independent of whether an interceptor is
installed. Usually, i.e., not during a declaration, we only throw if
the call is not successfully intercepted.
BUG=v8:5375
Review-Url: https://codereview.chromium.org/2334733002
Cr-Commit-Position: refs/heads/master@{#39450}
2016-09-15 15:47:48 +00:00
|
|
|
int set_was_called_counter = 0;
|
|
|
|
|
2016-09-06 13:35:49 +00:00
|
|
|
void GetterCallback(Local<Name> property,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
get_was_called = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetterCallback(Local<Name> property, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
set_was_called = true;
|
[runtime] Intercept function declarations.
We used to intercept function definitions, but not declarations.
GenericNamedPropertySetterCallback now also intercepts function declarations.
For definitions, we call DeclareGlobal and then InitializeVarGlobal. For
declarations, we never call InitializeVarGlobal, thus we must check for
interceptors in DeclareGlobal.
If the semantics of a redeclaration are wrong, e.g., redeclaring a read-only
property, an exception is thrown independent of whether an interceptor is
installed. Usually, i.e., not during a declaration, we only throw if
the call is not successfully intercepted.
BUG=v8:5375
Review-Url: https://codereview.chromium.org/2334733002
Cr-Commit-Position: refs/heads/master@{#39450}
2016-09-15 15:47:48 +00:00
|
|
|
set_was_called_counter++;
|
2016-09-06 13:35:49 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 11:49:58 +00:00
|
|
|
void InterceptingSetterCallback(
|
|
|
|
Local<Name> property, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
info.GetReturnValue().Set(value);
|
|
|
|
}
|
|
|
|
|
2016-09-06 13:35:49 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// Check that get callback is called in defineProperty with accessor descriptor.
|
|
|
|
THREADED_TEST(DefinerCallbackAccessorInterceptor) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(GetterCallback, SetterCallback));
|
|
|
|
LocalContext env;
|
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
[runtime] Intercept function declarations.
We used to intercept function definitions, but not declarations.
GenericNamedPropertySetterCallback now also intercepts function declarations.
For definitions, we call DeclareGlobal and then InitializeVarGlobal. For
declarations, we never call InitializeVarGlobal, thus we must check for
interceptors in DeclareGlobal.
If the semantics of a redeclaration are wrong, e.g., redeclaring a read-only
property, an exception is thrown independent of whether an interceptor is
installed. Usually, i.e., not during a declaration, we only throw if
the call is not successfully intercepted.
BUG=v8:5375
Review-Url: https://codereview.chromium.org/2334733002
Cr-Commit-Position: refs/heads/master@{#39450}
2016-09-15 15:47:48 +00:00
|
|
|
get_was_called = false;
|
|
|
|
set_was_called = false;
|
2016-09-06 13:35:49 +00:00
|
|
|
|
|
|
|
v8_compile("Object.defineProperty(obj, 'x', {set: function() {return 17;}});")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked();
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK(get_was_called);
|
|
|
|
CHECK(!set_was_called);
|
2016-09-06 13:35:49 +00:00
|
|
|
}
|
|
|
|
|
[runtime] Intercept function declarations.
We used to intercept function definitions, but not declarations.
GenericNamedPropertySetterCallback now also intercepts function declarations.
For definitions, we call DeclareGlobal and then InitializeVarGlobal. For
declarations, we never call InitializeVarGlobal, thus we must check for
interceptors in DeclareGlobal.
If the semantics of a redeclaration are wrong, e.g., redeclaring a read-only
property, an exception is thrown independent of whether an interceptor is
installed. Usually, i.e., not during a declaration, we only throw if
the call is not successfully intercepted.
BUG=v8:5375
Review-Url: https://codereview.chromium.org/2334733002
Cr-Commit-Position: refs/heads/master@{#39450}
2016-09-15 15:47:48 +00:00
|
|
|
// Check that set callback is called for function declarations.
|
|
|
|
THREADED_TEST(SetterCallbackFunctionDeclarationInterceptor) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
|
|
|
|
v8::Local<ObjectTemplate> object_template = templ->InstanceTemplate();
|
|
|
|
object_template->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(nullptr, SetterCallback));
|
|
|
|
v8::Local<v8::Context> ctx =
|
|
|
|
v8::Context::New(CcTest::isolate(), nullptr, object_template);
|
|
|
|
|
|
|
|
set_was_called_counter = 0;
|
|
|
|
|
|
|
|
// Declare function.
|
|
|
|
v8::Local<v8::String> code = v8_str("function x() {return 42;}; x();");
|
|
|
|
CHECK_EQ(42, v8::Script::Compile(ctx, code)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Run(ctx)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(ctx)
|
|
|
|
.FromJust());
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(1, set_was_called_counter);
|
[runtime] Intercept function declarations.
We used to intercept function definitions, but not declarations.
GenericNamedPropertySetterCallback now also intercepts function declarations.
For definitions, we call DeclareGlobal and then InitializeVarGlobal. For
declarations, we never call InitializeVarGlobal, thus we must check for
interceptors in DeclareGlobal.
If the semantics of a redeclaration are wrong, e.g., redeclaring a read-only
property, an exception is thrown independent of whether an interceptor is
installed. Usually, i.e., not during a declaration, we only throw if
the call is not successfully intercepted.
BUG=v8:5375
Review-Url: https://codereview.chromium.org/2334733002
Cr-Commit-Position: refs/heads/master@{#39450}
2016-09-15 15:47:48 +00:00
|
|
|
|
|
|
|
// Redeclare function.
|
|
|
|
code = v8_str("function x() {return 43;}; x();");
|
|
|
|
CHECK_EQ(43, v8::Script::Compile(ctx, code)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Run(ctx)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(ctx)
|
|
|
|
.FromJust());
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(2, set_was_called_counter);
|
[runtime] Intercept function declarations.
We used to intercept function definitions, but not declarations.
GenericNamedPropertySetterCallback now also intercepts function declarations.
For definitions, we call DeclareGlobal and then InitializeVarGlobal. For
declarations, we never call InitializeVarGlobal, thus we must check for
interceptors in DeclareGlobal.
If the semantics of a redeclaration are wrong, e.g., redeclaring a read-only
property, an exception is thrown independent of whether an interceptor is
installed. Usually, i.e., not during a declaration, we only throw if
the call is not successfully intercepted.
BUG=v8:5375
Review-Url: https://codereview.chromium.org/2334733002
Cr-Commit-Position: refs/heads/master@{#39450}
2016-09-15 15:47:48 +00:00
|
|
|
|
|
|
|
// Redefine function.
|
|
|
|
code = v8_str("x = function() {return 44;}; x();");
|
|
|
|
CHECK_EQ(44, v8::Script::Compile(ctx, code)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Run(ctx)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(ctx)
|
|
|
|
.FromJust());
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(3, set_was_called_counter);
|
[runtime] Intercept function declarations.
We used to intercept function definitions, but not declarations.
GenericNamedPropertySetterCallback now also intercepts function declarations.
For definitions, we call DeclareGlobal and then InitializeVarGlobal. For
declarations, we never call InitializeVarGlobal, thus we must check for
interceptors in DeclareGlobal.
If the semantics of a redeclaration are wrong, e.g., redeclaring a read-only
property, an exception is thrown independent of whether an interceptor is
installed. Usually, i.e., not during a declaration, we only throw if
the call is not successfully intercepted.
BUG=v8:5375
Review-Url: https://codereview.chromium.org/2334733002
Cr-Commit-Position: refs/heads/master@{#39450}
2016-09-15 15:47:48 +00:00
|
|
|
}
|
|
|
|
|
2017-02-24 16:34:02 +00:00
|
|
|
namespace {
|
|
|
|
int descriptor_was_called;
|
|
|
|
|
|
|
|
void PropertyDescriptorCallback(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
// Intercept the callback by setting a different descriptor.
|
|
|
|
descriptor_was_called++;
|
|
|
|
const char* code =
|
|
|
|
"var desc = {value: 5};"
|
|
|
|
"desc;";
|
|
|
|
Local<Value> descriptor = v8_compile(code)
|
|
|
|
->Run(info.GetIsolate()->GetCurrentContext())
|
|
|
|
.ToLocalChecked();
|
|
|
|
info.GetReturnValue().Set(descriptor);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// Check that the descriptor callback is called on the global object.
|
|
|
|
THREADED_TEST(DescriptorCallbackOnGlobalObject) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
|
|
|
|
v8::Local<ObjectTemplate> object_template = templ->InstanceTemplate();
|
|
|
|
object_template->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
nullptr, nullptr, PropertyDescriptorCallback, nullptr, nullptr, nullptr));
|
|
|
|
v8::Local<v8::Context> ctx =
|
|
|
|
v8::Context::New(CcTest::isolate(), nullptr, object_template);
|
|
|
|
|
|
|
|
descriptor_was_called = 0;
|
|
|
|
|
|
|
|
// Declare function.
|
|
|
|
v8::Local<v8::String> code = v8_str(
|
|
|
|
"var x = 42; var desc = Object.getOwnPropertyDescriptor(this, 'x'); "
|
|
|
|
"desc.value;");
|
|
|
|
CHECK_EQ(5, v8::Script::Compile(ctx, code)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Run(ctx)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(ctx)
|
|
|
|
.FromJust());
|
|
|
|
CHECK_EQ(1, descriptor_was_called);
|
|
|
|
}
|
|
|
|
|
2017-02-04 16:30:05 +00:00
|
|
|
namespace {
|
|
|
|
void QueryCallbackSetDontDelete(
|
|
|
|
Local<Name> property, const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
info.GetReturnValue().Set(v8::PropertyAttribute::DontDelete);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// Regression for a Node.js test that fails in debug mode.
|
|
|
|
THREADED_TEST(InterceptorFunctionRedeclareWithQueryCallback) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
|
|
|
|
v8::Local<ObjectTemplate> object_template = templ->InstanceTemplate();
|
|
|
|
object_template->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
nullptr, nullptr, QueryCallbackSetDontDelete));
|
|
|
|
v8::Local<v8::Context> ctx =
|
|
|
|
v8::Context::New(CcTest::isolate(), nullptr, object_template);
|
|
|
|
|
|
|
|
// Declare and redeclare function.
|
|
|
|
v8::Local<v8::String> code = v8_str(
|
|
|
|
"function x() {return 42;};"
|
|
|
|
"function x() {return 43;};");
|
|
|
|
v8::Script::Compile(ctx, code).ToLocalChecked()->Run(ctx).ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
2017-02-08 11:49:58 +00:00
|
|
|
// Regression test for chromium bug 656648.
|
|
|
|
// Do not crash on non-masking, intercepting setter callbacks.
|
|
|
|
THREADED_TEST(NonMaskingInterceptor) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
|
|
|
|
v8::Local<ObjectTemplate> object_template = templ->InstanceTemplate();
|
|
|
|
object_template->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
nullptr, InterceptingSetterCallback, nullptr, nullptr, nullptr,
|
|
|
|
Local<Value>(), v8::PropertyHandlerFlags::kNonMasking));
|
|
|
|
v8::Local<v8::Context> ctx =
|
|
|
|
v8::Context::New(CcTest::isolate(), nullptr, object_template);
|
|
|
|
|
|
|
|
v8::Local<v8::String> code = v8_str("function x() {return 43;};");
|
|
|
|
v8::Script::Compile(ctx, code).ToLocalChecked()->Run(ctx).ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
[runtime] Intercept function declarations.
We used to intercept function definitions, but not declarations.
GenericNamedPropertySetterCallback now also intercepts function declarations.
For definitions, we call DeclareGlobal and then InitializeVarGlobal. For
declarations, we never call InitializeVarGlobal, thus we must check for
interceptors in DeclareGlobal.
If the semantics of a redeclaration are wrong, e.g., redeclaring a read-only
property, an exception is thrown independent of whether an interceptor is
installed. Usually, i.e., not during a declaration, we only throw if
the call is not successfully intercepted.
BUG=v8:5375
Review-Url: https://codereview.chromium.org/2334733002
Cr-Commit-Position: refs/heads/master@{#39450}
2016-09-15 15:47:48 +00:00
|
|
|
// Check that function re-declarations throw if they are read-only.
|
|
|
|
THREADED_TEST(SetterCallbackFunctionDeclarationInterceptorThrow) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
|
|
|
|
v8::Local<ObjectTemplate> object_template = templ->InstanceTemplate();
|
|
|
|
object_template->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(nullptr, SetterCallback));
|
|
|
|
v8::Local<v8::Context> ctx =
|
|
|
|
v8::Context::New(CcTest::isolate(), nullptr, object_template);
|
|
|
|
|
|
|
|
set_was_called = false;
|
|
|
|
|
|
|
|
v8::Local<v8::String> code = v8_str(
|
|
|
|
"function x() {return 42;};"
|
|
|
|
"Object.defineProperty(this, 'x', {"
|
|
|
|
"configurable: false, "
|
|
|
|
"writable: false});"
|
|
|
|
"x();");
|
|
|
|
CHECK_EQ(42, v8::Script::Compile(ctx, code)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Run(ctx)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(ctx)
|
|
|
|
.FromJust());
|
|
|
|
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK(set_was_called);
|
[runtime] Intercept function declarations.
We used to intercept function definitions, but not declarations.
GenericNamedPropertySetterCallback now also intercepts function declarations.
For definitions, we call DeclareGlobal and then InitializeVarGlobal. For
declarations, we never call InitializeVarGlobal, thus we must check for
interceptors in DeclareGlobal.
If the semantics of a redeclaration are wrong, e.g., redeclaring a read-only
property, an exception is thrown independent of whether an interceptor is
installed. Usually, i.e., not during a declaration, we only throw if
the call is not successfully intercepted.
BUG=v8:5375
Review-Url: https://codereview.chromium.org/2334733002
Cr-Commit-Position: refs/heads/master@{#39450}
2016-09-15 15:47:48 +00:00
|
|
|
|
|
|
|
v8::TryCatch try_catch(CcTest::isolate());
|
|
|
|
set_was_called = false;
|
|
|
|
|
|
|
|
// Redeclare function that is read-only.
|
|
|
|
code = v8_str("function x() {return 43;};");
|
|
|
|
CHECK(v8::Script::Compile(ctx, code).ToLocalChecked()->Run(ctx).IsEmpty());
|
|
|
|
CHECK(try_catch.HasCaught());
|
|
|
|
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK(!set_was_called);
|
[runtime] Intercept function declarations.
We used to intercept function definitions, but not declarations.
GenericNamedPropertySetterCallback now also intercepts function declarations.
For definitions, we call DeclareGlobal and then InitializeVarGlobal. For
declarations, we never call InitializeVarGlobal, thus we must check for
interceptors in DeclareGlobal.
If the semantics of a redeclaration are wrong, e.g., redeclaring a read-only
property, an exception is thrown independent of whether an interceptor is
installed. Usually, i.e., not during a declaration, we only throw if
the call is not successfully intercepted.
BUG=v8:5375
Review-Url: https://codereview.chromium.org/2334733002
Cr-Commit-Position: refs/heads/master@{#39450}
2016-09-15 15:47:48 +00:00
|
|
|
}
|
|
|
|
|
2016-09-06 13:35:49 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2016-11-16 11:37:39 +00:00
|
|
|
bool get_was_called_in_order = false;
|
|
|
|
bool define_was_called_in_order = false;
|
|
|
|
|
2016-09-06 13:35:49 +00:00
|
|
|
void GetterCallbackOrder(Local<Name> property,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
get_was_called_in_order = true;
|
2017-10-18 11:37:45 +00:00
|
|
|
CHECK(!define_was_called_in_order);
|
2016-09-06 13:35:49 +00:00
|
|
|
info.GetReturnValue().Set(property);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DefinerCallbackOrder(Local<Name> property,
|
|
|
|
const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
2017-10-18 11:37:45 +00:00
|
|
|
// Get called before DefineProperty because we query the descriptor first.
|
|
|
|
CHECK(get_was_called_in_order);
|
2016-09-06 13:35:49 +00:00
|
|
|
define_was_called_in_order = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2017-10-18 11:37:45 +00:00
|
|
|
// Check that getter callback is called before definer callback.
|
2016-09-06 13:35:49 +00:00
|
|
|
THREADED_TEST(DefinerCallbackGetAndDefine) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
GetterCallbackOrder, SetterCallback, nullptr, nullptr, nullptr,
|
|
|
|
DefinerCallbackOrder));
|
2016-09-06 13:35:49 +00:00
|
|
|
LocalContext env;
|
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK(!get_was_called_in_order);
|
|
|
|
CHECK(!define_was_called_in_order);
|
2016-09-06 13:35:49 +00:00
|
|
|
|
|
|
|
v8_compile("Object.defineProperty(obj, 'x', {set: function() {return 17;}});")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked();
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK(get_was_called_in_order);
|
|
|
|
CHECK(define_was_called_in_order);
|
2016-09-06 13:35:49 +00:00
|
|
|
}
|
|
|
|
|
2016-11-16 10:59:53 +00:00
|
|
|
namespace { // namespace for InObjectLiteralDefinitionWithInterceptor
|
|
|
|
|
|
|
|
// Workaround for no-snapshot builds: only intercept once Context::New() is
|
|
|
|
// done, otherwise we'll intercept
|
|
|
|
// bootstrapping like defining array on the global object.
|
|
|
|
bool context_is_done = false;
|
|
|
|
bool getter_callback_was_called = false;
|
|
|
|
|
|
|
|
void ReturnUndefinedGetterCallback(
|
|
|
|
Local<Name> property, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
if (context_is_done) {
|
|
|
|
getter_callback_was_called = true;
|
|
|
|
info.GetReturnValue().SetUndefined();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// Check that an interceptor is not invoked during ES6 style definitions inside
|
|
|
|
// an object literal.
|
|
|
|
THREADED_TEST(InObjectLiteralDefinitionWithInterceptor) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
|
|
|
|
// Set up a context in which all global object definitions are intercepted.
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
v8::Local<ObjectTemplate> object_template = templ->InstanceTemplate();
|
|
|
|
object_template->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(ReturnUndefinedGetterCallback));
|
|
|
|
v8::Local<v8::Context> ctx =
|
|
|
|
v8::Context::New(CcTest::isolate(), nullptr, object_template);
|
|
|
|
|
|
|
|
context_is_done = true;
|
|
|
|
|
|
|
|
// The interceptor returns undefined for any global object,
|
|
|
|
// so setting a property on an object should throw.
|
|
|
|
v8::Local<v8::String> code = v8_str("var o = {}; o.x = 5");
|
|
|
|
{
|
|
|
|
getter_callback_was_called = false;
|
|
|
|
v8::TryCatch try_catch(CcTest::isolate());
|
|
|
|
CHECK(v8::Script::Compile(ctx, code).ToLocalChecked()->Run(ctx).IsEmpty());
|
|
|
|
CHECK(try_catch.HasCaught());
|
|
|
|
CHECK(getter_callback_was_called);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Defining a property in the object literal should not throw
|
|
|
|
// because the interceptor is not invoked.
|
|
|
|
{
|
|
|
|
getter_callback_was_called = false;
|
|
|
|
v8::TryCatch try_catch(CcTest::isolate());
|
|
|
|
code = v8_str("var l = {x: 5};");
|
|
|
|
CHECK(v8::Script::Compile(ctx, code)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Run(ctx)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->IsUndefined());
|
|
|
|
CHECK(!try_catch.HasCaught());
|
|
|
|
CHECK(!getter_callback_was_called);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-06 12:07:48 +00:00
|
|
|
THREADED_TEST(InterceptorHasOwnProperty) {
|
|
|
|
LocalContext context;
|
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<v8::FunctionTemplate> fun_templ = v8::FunctionTemplate::New(isolate);
|
|
|
|
Local<v8::ObjectTemplate> instance_templ = fun_templ->InstanceTemplate();
|
|
|
|
instance_templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorHasOwnPropertyGetter));
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<Function> function =
|
|
|
|
fun_templ->GetFunction(context.local()).ToLocalChecked();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("constructor"), function)
|
|
|
|
.FromJust();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"var o = new constructor();"
|
|
|
|
"o.hasOwnProperty('ostehaps');");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(!value->BooleanValue(isolate));
|
2015-02-06 12:07:48 +00:00
|
|
|
value = CompileRun(
|
|
|
|
"o.ostehaps = 42;"
|
|
|
|
"o.hasOwnProperty('ostehaps');");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(value->BooleanValue(isolate));
|
2015-02-06 12:07:48 +00:00
|
|
|
value = CompileRun(
|
|
|
|
"var p = new constructor();"
|
|
|
|
"p.hasOwnProperty('ostehaps');");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(!value->BooleanValue(isolate));
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorHasOwnPropertyCausingGC) {
|
|
|
|
LocalContext context;
|
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<v8::FunctionTemplate> fun_templ = v8::FunctionTemplate::New(isolate);
|
|
|
|
Local<v8::ObjectTemplate> instance_templ = fun_templ->InstanceTemplate();
|
|
|
|
instance_templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorHasOwnPropertyGetterGC));
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<Function> function =
|
|
|
|
fun_templ->GetFunction(context.local()).ToLocalChecked();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("constructor"), function)
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
// Let's first make some stuff so we can be sure to get a good GC.
|
|
|
|
CompileRun(
|
|
|
|
"function makestr(size) {"
|
|
|
|
" switch (size) {"
|
|
|
|
" case 1: return 'f';"
|
|
|
|
" case 2: return 'fo';"
|
|
|
|
" case 3: return 'foo';"
|
|
|
|
" }"
|
|
|
|
" return makestr(size >> 1) + makestr((size + 1) >> 1);"
|
|
|
|
"}"
|
|
|
|
"var x = makestr(12345);"
|
|
|
|
"x = makestr(31415);"
|
|
|
|
"x = makestr(23456);");
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"var o = new constructor();"
|
|
|
|
"o.__proto__ = new String(x);"
|
|
|
|
"o.hasOwnProperty('ostehaps');");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(!value->BooleanValue(isolate));
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2021-06-07 15:12:38 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
void CheckInterceptorIC(v8::GenericNamedPropertyGetterCallback getter,
|
|
|
|
v8::GenericNamedPropertyQueryCallback query,
|
|
|
|
const char* source, int expected) {
|
2015-02-06 12:07:48 +00:00
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2018-09-13 14:55:18 +00:00
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2019-02-27 22:52:30 +00:00
|
|
|
getter, nullptr, query, nullptr, nullptr, v8_str("data")));
|
2015-02-06 12:07:48 +00:00
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
v8::Local<Value> value = CompileRun(source);
|
|
|
|
CHECK_EQ(expected, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2021-06-07 15:12:38 +00:00
|
|
|
void CheckInterceptorLoadIC(v8::GenericNamedPropertyGetterCallback getter,
|
|
|
|
const char* source, int expected) {
|
2019-02-27 22:52:30 +00:00
|
|
|
CheckInterceptorIC(getter, nullptr, source, expected);
|
|
|
|
}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
2021-06-07 15:12:38 +00:00
|
|
|
void InterceptorLoadICGetter(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
2015-02-06 12:07:48 +00:00
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
CHECK_EQ(isolate, info.GetIsolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
|
|
|
CHECK(v8_str("data")->Equals(context, info.Data()).FromJust());
|
|
|
|
CHECK(v8_str("x")->Equals(context, name).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(v8::Integer::New(isolate, 42));
|
|
|
|
}
|
|
|
|
|
2021-06-07 15:12:38 +00:00
|
|
|
} // namespace
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
// This test should hit the load IC for the interceptor case.
|
|
|
|
THREADED_TEST(InterceptorLoadIC) {
|
|
|
|
CheckInterceptorLoadIC(InterceptorLoadICGetter,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result = o.x;"
|
|
|
|
"}",
|
|
|
|
42);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Below go several tests which verify that JITing for various
|
|
|
|
// configurations of interceptor and explicit fields works fine
|
|
|
|
// (those cases are special cased to get better performance).
|
|
|
|
|
2021-06-07 15:12:38 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
void InterceptorLoadXICGetter(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
info.GetReturnValue().Set(
|
|
|
|
v8_str("x")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), name)
|
|
|
|
.FromJust()
|
|
|
|
? v8::Local<v8::Value>(v8::Integer::New(info.GetIsolate(), 42))
|
|
|
|
: v8::Local<v8::Value>());
|
|
|
|
}
|
|
|
|
|
|
|
|
void InterceptorLoadXICGetterWithSideEffects(
|
2015-02-06 12:07:48 +00:00
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2021-06-07 15:12:38 +00:00
|
|
|
CompileRun("interceptor_getter_side_effect()");
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(
|
2015-12-08 18:38:37 +00:00
|
|
|
v8_str("x")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), name)
|
|
|
|
.FromJust()
|
|
|
|
? v8::Local<v8::Value>(v8::Integer::New(info.GetIsolate(), 42))
|
|
|
|
: v8::Local<v8::Value>());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2021-06-07 15:12:38 +00:00
|
|
|
} // namespace
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
THREADED_TEST(InterceptorLoadICWithFieldOnHolder) {
|
|
|
|
CheckInterceptorLoadIC(InterceptorLoadXICGetter,
|
|
|
|
"var result = 0;"
|
|
|
|
"o.y = 239;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result = o.y;"
|
|
|
|
"}",
|
|
|
|
239);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorLoadICWithSubstitutedProto) {
|
|
|
|
CheckInterceptorLoadIC(InterceptorLoadXICGetter,
|
|
|
|
"var result = 0;"
|
|
|
|
"o.__proto__ = { 'y': 239 };"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result = o.y + o.x;"
|
|
|
|
"}",
|
|
|
|
239 + 42);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorLoadICWithPropertyOnProto) {
|
|
|
|
CheckInterceptorLoadIC(InterceptorLoadXICGetter,
|
|
|
|
"var result = 0;"
|
|
|
|
"o.__proto__.y = 239;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result = o.y + o.x;"
|
|
|
|
"}",
|
|
|
|
239 + 42);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorLoadICUndefined) {
|
|
|
|
CheckInterceptorLoadIC(InterceptorLoadXICGetter,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result = (o.y == undefined) ? 239 : 42;"
|
|
|
|
"}",
|
|
|
|
239);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorLoadICWithOverride) {
|
|
|
|
CheckInterceptorLoadIC(InterceptorLoadXICGetter,
|
|
|
|
"fst = new Object(); fst.__proto__ = o;"
|
|
|
|
"snd = new Object(); snd.__proto__ = fst;"
|
|
|
|
"var result1 = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result1 = snd.x;"
|
|
|
|
"}"
|
|
|
|
"fst.x = 239;"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result = snd.x;"
|
|
|
|
"}"
|
|
|
|
"result + result1",
|
|
|
|
239 + 42);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when we stored field into
|
|
|
|
// a stub, but interceptor produced value on its own.
|
|
|
|
THREADED_TEST(InterceptorLoadICFieldNotNeeded) {
|
|
|
|
CheckInterceptorLoadIC(
|
|
|
|
InterceptorLoadXICGetter,
|
|
|
|
"proto = new Object();"
|
|
|
|
"o.__proto__ = proto;"
|
|
|
|
"proto.x = 239;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" o.x;"
|
|
|
|
// Now it should be ICed and keep a reference to x defined on proto
|
|
|
|
"}"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result += o.x;"
|
|
|
|
"}"
|
|
|
|
"result;",
|
|
|
|
42 * 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when we stored field into
|
|
|
|
// a stub, but it got invalidated later on.
|
|
|
|
THREADED_TEST(InterceptorLoadICInvalidatedField) {
|
|
|
|
CheckInterceptorLoadIC(
|
|
|
|
InterceptorLoadXICGetter,
|
|
|
|
"proto1 = new Object();"
|
|
|
|
"proto2 = new Object();"
|
|
|
|
"o.__proto__ = proto1;"
|
|
|
|
"proto1.__proto__ = proto2;"
|
|
|
|
"proto2.y = 239;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" o.y;"
|
|
|
|
// Now it should be ICed and keep a reference to y defined on proto2
|
|
|
|
"}"
|
|
|
|
"proto1.y = 42;"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result += o.y;"
|
|
|
|
"}"
|
|
|
|
"result;",
|
|
|
|
42 * 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int interceptor_load_not_handled_calls = 0;
|
|
|
|
static void InterceptorLoadNotHandled(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
++interceptor_load_not_handled_calls;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test how post-interceptor lookups are done in the non-cacheable
|
|
|
|
// case: the interceptor should not be invoked during this lookup.
|
|
|
|
THREADED_TEST(InterceptorLoadICPostInterceptor) {
|
|
|
|
interceptor_load_not_handled_calls = 0;
|
|
|
|
CheckInterceptorLoadIC(InterceptorLoadNotHandled,
|
|
|
|
"receiver = new Object();"
|
|
|
|
"receiver.__proto__ = o;"
|
|
|
|
"proto = new Object();"
|
|
|
|
"/* Make proto a slow-case object. */"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" proto[\"xxxxxxxx\" + i] = [];"
|
|
|
|
"}"
|
|
|
|
"proto.x = 17;"
|
|
|
|
"o.__proto__ = proto;"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result += receiver.x;"
|
|
|
|
"}"
|
|
|
|
"result;",
|
|
|
|
17 * 1000);
|
|
|
|
CHECK_EQ(1000, interceptor_load_not_handled_calls);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when we stored field into
|
|
|
|
// a stub, but it got invalidated later on due to override on
|
|
|
|
// global object which is between interceptor and fields' holders.
|
|
|
|
THREADED_TEST(InterceptorLoadICInvalidatedFieldViaGlobal) {
|
|
|
|
CheckInterceptorLoadIC(
|
|
|
|
InterceptorLoadXICGetter,
|
|
|
|
"o.__proto__ = this;" // set a global to be a proto of o.
|
|
|
|
"this.__proto__.y = 239;"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" if (o.y != 239) throw 'oops: ' + o.y;"
|
|
|
|
// Now it should be ICed and keep a reference to y defined on
|
|
|
|
// field_holder.
|
|
|
|
"}"
|
|
|
|
"this.y = 42;" // Assign on a global.
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" result += o.y;"
|
|
|
|
"}"
|
|
|
|
"result;",
|
|
|
|
42 * 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void SetOnThis(Local<String> name, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<void>& info) {
|
2020-11-27 16:06:57 +00:00
|
|
|
info.This()
|
|
|
|
.As<Object>()
|
2015-12-08 18:38:37 +00:00
|
|
|
->CreateDataProperty(info.GetIsolate()->GetCurrentContext(), name, value)
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorLoadICWithCallbackOnHolder) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorLoadXICGetter));
|
|
|
|
templ->SetAccessor(v8_str("y"), Return239Callback);
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
// Check the case when receiver and interceptor's holder
|
|
|
|
// are the same objects.
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" result = o.y;"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(239, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
// Check the case when interceptor's holder is in proto chain
|
|
|
|
// of receiver.
|
|
|
|
value = CompileRun(
|
|
|
|
"r = { __proto__: o };"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" result = r.y;"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(239, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorLoadICWithCallbackOnProto) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_o = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_o->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorLoadXICGetter));
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_p = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_p->SetAccessor(v8_str("y"), Return239Callback);
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ_o->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("p"),
|
|
|
|
templ_p->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
// Check the case when receiver and interceptor's holder
|
|
|
|
// are the same objects.
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"o.__proto__ = p;"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" result = o.x + o.y;"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(239 + 42, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
// Check the case when interceptor's holder is in proto chain
|
|
|
|
// of receiver.
|
|
|
|
value = CompileRun(
|
|
|
|
"r = { __proto__: o };"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" result = r.x + r.y;"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(239 + 42, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorLoadICForCallbackWithOverride) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorLoadXICGetter));
|
|
|
|
templ->SetAccessor(v8_str("y"), Return239Callback);
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"fst = new Object(); fst.__proto__ = o;"
|
|
|
|
"snd = new Object(); snd.__proto__ = fst;"
|
|
|
|
"var result1 = 0;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" result1 = snd.x;"
|
|
|
|
"}"
|
|
|
|
"fst.x = 239;"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" result = snd.x;"
|
|
|
|
"}"
|
|
|
|
"result + result1");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(239 + 42, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when we stored callback into
|
|
|
|
// a stub, but interceptor produced value on its own.
|
|
|
|
THREADED_TEST(InterceptorLoadICCallbackNotNeeded) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_o = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_o->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorLoadXICGetter));
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_p = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_p->SetAccessor(v8_str("y"), Return239Callback);
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ_o->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("p"),
|
|
|
|
templ_p->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"o.__proto__ = p;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" o.x;"
|
|
|
|
// Now it should be ICed and keep a reference to x defined on p
|
|
|
|
"}"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" result += o.x;"
|
|
|
|
"}"
|
|
|
|
"result");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42 * 7, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when we stored callback into
|
|
|
|
// a stub, but it got invalidated later on.
|
|
|
|
THREADED_TEST(InterceptorLoadICInvalidatedCallback) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_o = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_o->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorLoadXICGetter));
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_p = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_p->SetAccessor(v8_str("y"), Return239Callback, SetOnThis);
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ_o->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("p"),
|
|
|
|
templ_p->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"inbetween = new Object();"
|
|
|
|
"o.__proto__ = inbetween;"
|
|
|
|
"inbetween.__proto__ = p;"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" o.y;"
|
|
|
|
// Now it should be ICed and keep a reference to y defined on p
|
|
|
|
"}"
|
|
|
|
"inbetween.y = 42;"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" result += o.y;"
|
|
|
|
"}"
|
|
|
|
"result");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42 * 10, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when we stored callback into
|
|
|
|
// a stub, but it got invalidated later on due to override on
|
|
|
|
// global object which is between interceptor and callbacks' holders.
|
|
|
|
THREADED_TEST(InterceptorLoadICInvalidatedCallbackViaGlobal) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_o = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_o->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorLoadXICGetter));
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_p = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_p->SetAccessor(v8_str("y"), Return239Callback, SetOnThis);
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ_o->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("p"),
|
|
|
|
templ_p->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"o.__proto__ = this;"
|
|
|
|
"this.__proto__ = p;"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" if (o.y != 239) throw 'oops: ' + o.y;"
|
|
|
|
// Now it should be ICed and keep a reference to y defined on p
|
|
|
|
"}"
|
|
|
|
"this.y = 42;"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" result += o.y;"
|
|
|
|
"}"
|
|
|
|
"result");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42 * 10, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2016-06-23 16:47:36 +00:00
|
|
|
// Test load of a non-existing global when a global object has an interceptor.
|
|
|
|
THREADED_TEST(InterceptorLoadGlobalICGlobalWithInterceptor) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::ObjectTemplate> templ_global = v8::ObjectTemplate::New(isolate);
|
|
|
|
templ_global->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
EmptyInterceptorGetter, EmptyInterceptorSetter));
|
|
|
|
|
|
|
|
LocalContext context(nullptr, templ_global);
|
|
|
|
i::Handle<i::JSReceiver> global_proxy =
|
|
|
|
v8::Utils::OpenHandle<Object, i::JSReceiver>(context->Global());
|
|
|
|
CHECK(global_proxy->IsJSGlobalProxy());
|
|
|
|
i::Handle<i::JSGlobalObject> global(
|
2018-06-23 09:05:50 +00:00
|
|
|
i::JSGlobalObject::cast(global_proxy->map().prototype()),
|
|
|
|
global_proxy->GetIsolate());
|
2016-06-23 16:47:36 +00:00
|
|
|
CHECK(global->map().has_named_interceptor());
|
|
|
|
|
|
|
|
v8::Local<Value> value = CompileRun(
|
|
|
|
"var f = function() { "
|
|
|
|
" try {"
|
2016-08-09 16:30:25 +00:00
|
|
|
" x1;"
|
|
|
|
" } catch(e) {"
|
|
|
|
" }"
|
|
|
|
" return typeof x1 === 'undefined';"
|
|
|
|
"};"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" f();"
|
|
|
|
"};"
|
|
|
|
"f();");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(value->BooleanValue(isolate));
|
2016-08-09 16:30:25 +00:00
|
|
|
|
|
|
|
value = CompileRun(
|
|
|
|
"var f = function() { "
|
|
|
|
" try {"
|
|
|
|
" x2;"
|
2016-06-23 16:47:36 +00:00
|
|
|
" return false;"
|
|
|
|
" } catch(e) {"
|
|
|
|
" return true;"
|
|
|
|
" }"
|
|
|
|
"};"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" f();"
|
|
|
|
"};"
|
|
|
|
"f();");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(value->BooleanValue(isolate));
|
2016-06-23 16:47:36 +00:00
|
|
|
|
|
|
|
value = CompileRun(
|
|
|
|
"var f = function() { "
|
|
|
|
" try {"
|
2016-08-09 16:30:25 +00:00
|
|
|
" typeof(x3);"
|
2016-06-23 16:47:36 +00:00
|
|
|
" return true;"
|
|
|
|
" } catch(e) {"
|
|
|
|
" return false;"
|
|
|
|
" }"
|
|
|
|
"};"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" f();"
|
|
|
|
"};"
|
|
|
|
"f();");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(value->BooleanValue(isolate));
|
2016-06-23 16:47:36 +00:00
|
|
|
}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
2017-07-05 18:29:13 +00:00
|
|
|
// Test load of a non-existing global through prototype chain when a global
|
|
|
|
// object has an interceptor.
|
|
|
|
THREADED_TEST(InterceptorLoadICGlobalWithInterceptor) {
|
|
|
|
i::FLAG_allow_natives_syntax = true;
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::ObjectTemplate> templ_global = v8::ObjectTemplate::New(isolate);
|
|
|
|
templ_global->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
GenericInterceptorGetter, GenericInterceptorSetter));
|
|
|
|
|
|
|
|
LocalContext context(nullptr, templ_global);
|
|
|
|
i::Handle<i::JSReceiver> global_proxy =
|
|
|
|
v8::Utils::OpenHandle<Object, i::JSReceiver>(context->Global());
|
|
|
|
CHECK(global_proxy->IsJSGlobalProxy());
|
|
|
|
i::Handle<i::JSGlobalObject> global(
|
2018-06-23 09:05:50 +00:00
|
|
|
i::JSGlobalObject::cast(global_proxy->map().prototype()),
|
|
|
|
global_proxy->GetIsolate());
|
2017-07-05 18:29:13 +00:00
|
|
|
CHECK(global->map().has_named_interceptor());
|
|
|
|
|
|
|
|
ExpectInt32(
|
|
|
|
"(function() {"
|
|
|
|
" var f = function(obj) { "
|
|
|
|
" return obj.foo;"
|
|
|
|
" };"
|
|
|
|
" var obj = { __proto__: this, _str_foo: 42 };"
|
|
|
|
" for (var i = 0; i < 1500; i++) obj['p' + i] = 0;"
|
|
|
|
" /* Ensure that |obj| is in dictionary mode. */"
|
|
|
|
" if (%HasFastProperties(obj)) return -1;"
|
|
|
|
" for (var i = 0; i < 3; i++) {"
|
|
|
|
" f(obj);"
|
|
|
|
" };"
|
|
|
|
" return f(obj);"
|
|
|
|
"})();",
|
|
|
|
42);
|
|
|
|
}
|
|
|
|
|
2015-02-06 12:07:48 +00:00
|
|
|
static void InterceptorLoadICGetter0(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_str("x")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), name)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(v8::Integer::New(info.GetIsolate(), 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorReturningZero) {
|
|
|
|
CheckInterceptorLoadIC(InterceptorLoadICGetter0, "o.x == undefined ? 1 : 0",
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
2019-02-27 22:52:30 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
template <typename TKey, v8::internal::PropertyAttributes attribute>
|
|
|
|
void HasICQuery(TKey name, const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
CHECK_EQ(isolate, info.GetIsolate());
|
|
|
|
info.GetReturnValue().Set(v8::Integer::New(isolate, attribute));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename TKey>
|
|
|
|
void HasICQueryToggle(TKey name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
static bool toggle = false;
|
|
|
|
toggle = !toggle;
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
CHECK_EQ(isolate, info.GetIsolate());
|
|
|
|
info.GetReturnValue().Set(v8::Integer::New(
|
|
|
|
isolate, toggle ? v8::internal::ABSENT : v8::internal::NONE));
|
|
|
|
}
|
|
|
|
|
2021-06-07 15:12:38 +00:00
|
|
|
template <typename TKey, v8::internal::PropertyAttributes attribute>
|
|
|
|
void HasICQuerySideEffect(TKey name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
CHECK_EQ(isolate, info.GetIsolate());
|
|
|
|
CompileRun("interceptor_query_side_effect()");
|
|
|
|
if (attribute != v8::internal::ABSENT) {
|
|
|
|
info.GetReturnValue().Set(v8::Integer::New(isolate, attribute));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-27 22:52:30 +00:00
|
|
|
int named_query_counter = 0;
|
|
|
|
void NamedQueryCallback(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
named_query_counter++;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorHasIC) {
|
|
|
|
named_query_counter = 0;
|
|
|
|
CheckInterceptorIC(nullptr, NamedQueryCallback,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" 'x' in o;"
|
|
|
|
"}",
|
|
|
|
0);
|
|
|
|
CHECK_EQ(1000, named_query_counter);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorHasICQueryAbsent) {
|
|
|
|
CheckInterceptorIC(nullptr, HasICQuery<Local<Name>, v8::internal::ABSENT>,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" if ('x' in o) ++result;"
|
|
|
|
"}",
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorHasICQueryNone) {
|
|
|
|
CheckInterceptorIC(nullptr, HasICQuery<Local<Name>, v8::internal::NONE>,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" if ('x' in o) ++result;"
|
|
|
|
"}",
|
|
|
|
1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorHasICGetter) {
|
|
|
|
CheckInterceptorIC(InterceptorLoadICGetter, nullptr,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" if ('x' in o) ++result;"
|
|
|
|
"}",
|
|
|
|
1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorHasICQueryGetter) {
|
|
|
|
CheckInterceptorIC(InterceptorLoadICGetter,
|
|
|
|
HasICQuery<Local<Name>, v8::internal::ABSENT>,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" if ('x' in o) ++result;"
|
|
|
|
"}",
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorHasICQueryToggle) {
|
|
|
|
CheckInterceptorIC(InterceptorLoadICGetter, HasICQueryToggle<Local<Name>>,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" if ('x' in o) ++result;"
|
|
|
|
"}",
|
|
|
|
500);
|
|
|
|
}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
2021-06-07 15:12:38 +00:00
|
|
|
THREADED_TEST(InterceptorStoreICWithSideEffectfulCallbacks) {
|
|
|
|
CheckInterceptorIC(EmptyInterceptorGetter,
|
|
|
|
HasICQuerySideEffect<Local<Name>, v8::internal::ABSENT>,
|
|
|
|
"let r;"
|
|
|
|
"let inside_side_effect = false;"
|
|
|
|
"let interceptor_query_side_effect = function() {"
|
|
|
|
" if (!inside_side_effect) {"
|
|
|
|
" inside_side_effect = true;"
|
|
|
|
" r.x = 153;"
|
|
|
|
" inside_side_effect = false;"
|
|
|
|
" }"
|
|
|
|
"};"
|
|
|
|
"for (var i = 0; i < 20; i++) {"
|
|
|
|
" r = { __proto__: o };"
|
|
|
|
" r.x = i;"
|
|
|
|
"}",
|
|
|
|
19);
|
|
|
|
|
|
|
|
CheckInterceptorIC(InterceptorLoadXICGetterWithSideEffects,
|
|
|
|
nullptr, // query callback is not provided
|
|
|
|
"let r;"
|
|
|
|
"let inside_side_effect = false;"
|
|
|
|
"let interceptor_getter_side_effect = function() {"
|
|
|
|
" if (!inside_side_effect) {"
|
|
|
|
" inside_side_effect = true;"
|
|
|
|
" r.y = 153;"
|
|
|
|
" inside_side_effect = false;"
|
|
|
|
" }"
|
|
|
|
"};"
|
|
|
|
"for (var i = 0; i < 20; i++) {"
|
|
|
|
" r = { __proto__: o };"
|
|
|
|
" r.y = i;"
|
|
|
|
"}",
|
|
|
|
19);
|
|
|
|
}
|
|
|
|
|
2015-02-06 12:07:48 +00:00
|
|
|
static void InterceptorStoreICSetter(
|
|
|
|
Local<Name> key, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Context> context = info.GetIsolate()->GetCurrentContext();
|
|
|
|
CHECK(v8_str("x")->Equals(context, key).FromJust());
|
|
|
|
CHECK_EQ(42, value->Int32Value(context).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This test should hit the store IC for the interceptor case.
|
|
|
|
THREADED_TEST(InterceptorStoreIC) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
InterceptorLoadICGetter, InterceptorStoreICSetter, nullptr, nullptr,
|
|
|
|
nullptr, v8_str("data")));
|
2015-02-06 12:07:48 +00:00
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" o.x = 42;"
|
|
|
|
"}");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorStoreICWithNoSetter) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorLoadXICGetter));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" o.y = 239;"
|
|
|
|
"}"
|
|
|
|
"42 + o.y");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(239 + 42, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2021-06-07 15:12:38 +00:00
|
|
|
THREADED_TEST(EmptyInterceptorDoesNotShadowReadOnlyProperty) {
|
|
|
|
// Interceptor should not shadow readonly property 'x' on the prototype, and
|
|
|
|
// attempt to store to 'x' must throw.
|
|
|
|
CheckInterceptorIC(EmptyInterceptorGetter,
|
|
|
|
HasICQuery<Local<Name>, v8::internal::ABSENT>,
|
|
|
|
"'use strict';"
|
|
|
|
"let p = {};"
|
|
|
|
"Object.defineProperty(p, 'x', "
|
|
|
|
" {value: 153, writable: false});"
|
|
|
|
"o.__proto__ = p;"
|
|
|
|
"let result = 0;"
|
|
|
|
"let r;"
|
|
|
|
"for (var i = 0; i < 20; i++) {"
|
|
|
|
" r = { __proto__: o };"
|
|
|
|
" try {"
|
|
|
|
" r.x = i;"
|
|
|
|
" } catch (e) {"
|
|
|
|
" result++;"
|
|
|
|
" }"
|
|
|
|
"}"
|
|
|
|
"result",
|
|
|
|
20);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(InterceptorShadowsReadOnlyProperty) {
|
|
|
|
// Interceptor claims that it has a writable property 'x', so the existence
|
|
|
|
// of the readonly property 'x' on the prototype should not cause exceptions.
|
|
|
|
CheckInterceptorIC(InterceptorLoadXICGetter,
|
|
|
|
nullptr, // query callback
|
|
|
|
"'use strict';"
|
|
|
|
"let p = {};"
|
|
|
|
"Object.defineProperty(p, 'x', "
|
|
|
|
" {value: 153, writable: false});"
|
|
|
|
"o.__proto__ = p;"
|
|
|
|
"let result = 0;"
|
|
|
|
"let r;"
|
|
|
|
"for (var i = 0; i < 20; i++) {"
|
|
|
|
" r = { __proto__: o };"
|
|
|
|
" try {"
|
|
|
|
" r.x = i;"
|
|
|
|
" result++;"
|
|
|
|
" } catch (e) {}"
|
|
|
|
"}"
|
|
|
|
"result",
|
|
|
|
20);
|
|
|
|
}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
THREADED_TEST(EmptyInterceptorDoesNotShadowAccessors) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> parent = FunctionTemplate::New(CcTest::isolate());
|
|
|
|
Local<FunctionTemplate> child = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
child->Inherit(parent);
|
|
|
|
AddAccessor(parent, v8_str("age"), SimpleAccessorGetter,
|
|
|
|
SimpleAccessorSetter);
|
|
|
|
AddInterceptor(child, EmptyInterceptorGetter, EmptyInterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Child"),
|
|
|
|
child->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var child = new Child;"
|
|
|
|
"child.age = 10;");
|
|
|
|
ExpectBoolean("child.hasOwnProperty('age')", false);
|
|
|
|
ExpectInt32("child.age", 10);
|
|
|
|
ExpectInt32("child.accessor_age", 10);
|
|
|
|
}
|
|
|
|
|
2021-06-07 21:09:54 +00:00
|
|
|
THREADED_TEST(EmptyInterceptorVsStoreGlobalICs) {
|
|
|
|
// In sloppy mode storing to global must succeed.
|
|
|
|
CheckInterceptorIC(EmptyInterceptorGetter,
|
|
|
|
HasICQuery<Local<Name>, v8::internal::ABSENT>,
|
|
|
|
"globalThis.__proto__ = o;"
|
|
|
|
"let result = 0;"
|
|
|
|
"for (var i = 0; i < 20; i++) {"
|
|
|
|
" try {"
|
|
|
|
" x = i;"
|
|
|
|
" result++;"
|
|
|
|
" } catch (e) {}"
|
|
|
|
"}"
|
|
|
|
"result + x",
|
|
|
|
20 + 19);
|
|
|
|
|
|
|
|
// In strict mode storing to global must throw.
|
|
|
|
CheckInterceptorIC(EmptyInterceptorGetter,
|
|
|
|
HasICQuery<Local<Name>, v8::internal::ABSENT>,
|
|
|
|
"'use strict';"
|
|
|
|
"globalThis.__proto__ = o;"
|
|
|
|
"let result = 0;"
|
|
|
|
"for (var i = 0; i < 20; i++) {"
|
|
|
|
" try {"
|
|
|
|
" x = i;"
|
|
|
|
" } catch (e) {"
|
|
|
|
" result++;"
|
|
|
|
" }"
|
|
|
|
"}"
|
|
|
|
"result + (typeof(x) === 'undefined' ? 100 : 0)",
|
|
|
|
120);
|
|
|
|
}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
THREADED_TEST(LegacyInterceptorDoesNotSeeSymbols) {
|
|
|
|
LocalContext env;
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> parent = FunctionTemplate::New(isolate);
|
|
|
|
Local<FunctionTemplate> child = FunctionTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
v8::Local<v8::Symbol> age = v8::Symbol::New(isolate, v8_str("age"));
|
|
|
|
|
|
|
|
child->Inherit(parent);
|
|
|
|
AddAccessor(parent, age, SymbolAccessorGetter, SymbolAccessorSetter);
|
2017-12-01 12:48:23 +00:00
|
|
|
AddStringOnlyInterceptor(child, InterceptorGetter, InterceptorSetter);
|
2015-02-06 12:07:48 +00:00
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Child"),
|
|
|
|
child->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
env->Global()->Set(env.local(), v8_str("age"), age).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var child = new Child;"
|
|
|
|
"child[age] = 10;");
|
|
|
|
ExpectInt32("child[age]", 10);
|
|
|
|
ExpectBoolean("child.hasOwnProperty('age')", false);
|
|
|
|
ExpectBoolean("child.hasOwnProperty('accessor_age')", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(GenericInterceptorDoesSeeSymbols) {
|
|
|
|
LocalContext env;
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> parent = FunctionTemplate::New(isolate);
|
|
|
|
Local<FunctionTemplate> child = FunctionTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
v8::Local<v8::Symbol> age = v8::Symbol::New(isolate, v8_str("age"));
|
|
|
|
v8::Local<v8::Symbol> anon = v8::Symbol::New(isolate);
|
|
|
|
|
|
|
|
child->Inherit(parent);
|
|
|
|
AddAccessor(parent, age, SymbolAccessorGetter, SymbolAccessorSetter);
|
|
|
|
AddInterceptor(child, GenericInterceptorGetter, GenericInterceptorSetter);
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Child"),
|
|
|
|
child->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
env->Global()->Set(env.local(), v8_str("age"), age).FromJust();
|
|
|
|
env->Global()->Set(env.local(), v8_str("anon"), anon).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var child = new Child;"
|
|
|
|
"child[age] = 10;");
|
|
|
|
ExpectInt32("child[age]", 10);
|
|
|
|
ExpectInt32("child._sym_age", 10);
|
|
|
|
|
|
|
|
// Check that it also sees strings.
|
|
|
|
CompileRun("child.foo = 47");
|
|
|
|
ExpectInt32("child.foo", 47);
|
|
|
|
ExpectInt32("child._str_foo", 47);
|
|
|
|
|
|
|
|
// Check that the interceptor can punt (in this case, on anonymous symbols).
|
|
|
|
CompileRun("child[anon] = 31337");
|
|
|
|
ExpectInt32("child[anon]", 31337);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(NamedPropertyHandlerGetter) {
|
|
|
|
echo_named_call_count = 0;
|
2018-09-24 11:05:31 +00:00
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
EchoNamedProperty, nullptr, nullptr, nullptr, nullptr, v8_str("data")));
|
2015-02-06 12:07:48 +00:00
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(0, echo_named_call_count);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8_compile("obj.x")->Run(env.local()).ToLocalChecked();
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(1, echo_named_call_count);
|
2015-02-06 12:07:48 +00:00
|
|
|
const char* code = "var str = 'oddle'; obj[str] + obj.poddle;";
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<Value> str = CompileRun(code);
|
2018-09-24 11:05:31 +00:00
|
|
|
String::Utf8Value value(isolate, str);
|
2015-02-06 12:07:48 +00:00
|
|
|
CHECK_EQ(0, strcmp(*value, "oddlepoddle"));
|
|
|
|
// Check default behavior
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(10, v8_compile("obj.flob = 10;")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_compile("'myProperty' in obj")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
2018-09-24 11:05:31 +00:00
|
|
|
->BooleanValue(isolate));
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_compile("delete obj.myProperty")
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
2018-09-24 11:05:31 +00:00
|
|
|
->BooleanValue(isolate));
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 09:08:31 +00:00
|
|
|
namespace {
|
|
|
|
void NotInterceptingPropertyDefineCallback(
|
|
|
|
Local<Name> name, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
2016-09-08 12:51:37 +00:00
|
|
|
// Do not intercept by not calling info.GetReturnValue().Set().
|
2016-09-02 09:08:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InterceptingPropertyDefineCallback(
|
|
|
|
Local<Name> name, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
2016-09-08 12:51:37 +00:00
|
|
|
// Intercept the callback by setting a non-empty handle
|
2016-09-02 09:08:31 +00:00
|
|
|
info.GetReturnValue().Set(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckDescriptorInDefineCallback(
|
|
|
|
Local<Name> name, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CHECK(!desc.has_writable());
|
|
|
|
CHECK(!desc.has_value());
|
|
|
|
CHECK(!desc.has_enumerable());
|
|
|
|
CHECK(desc.has_configurable());
|
|
|
|
CHECK(!desc.configurable());
|
|
|
|
CHECK(desc.has_get());
|
|
|
|
CHECK(desc.get()->IsFunction());
|
|
|
|
CHECK(desc.has_set());
|
|
|
|
CHECK(desc.set()->IsUndefined());
|
|
|
|
// intercept the callback by setting a non-empty handle
|
|
|
|
info.GetReturnValue().Set(name);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
THREADED_TEST(PropertyDefinerCallback) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
|
|
|
|
{ // Intercept defineProperty()
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
NotInterceptingPropertyDefineCallback));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"obj.x = 17; "
|
|
|
|
"Object.defineProperty(obj, 'x', {value: 42});"
|
|
|
|
"obj.x;";
|
|
|
|
CHECK_EQ(42, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
{ // Intercept defineProperty() for correct accessor descriptor
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
CheckDescriptorInDefineCallback));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"obj.x = 17; "
|
|
|
|
"Object.defineProperty(obj, 'x', {"
|
|
|
|
"get: function(){ return 42; }, "
|
|
|
|
"set: undefined,"
|
|
|
|
"configurable: 0"
|
|
|
|
"});"
|
|
|
|
"obj.x;";
|
|
|
|
CHECK_EQ(17, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
{ // Do not intercept defineProperty()
|
|
|
|
v8::Local<v8::FunctionTemplate> templ2 =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ2->InstanceTemplate()->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
InterceptingPropertyDefineCallback));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ2->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
|
|
|
const char* code =
|
|
|
|
"obj.x = 17; "
|
|
|
|
"Object.defineProperty(obj, 'x', {value: 42});"
|
|
|
|
"obj.x;";
|
|
|
|
CHECK_EQ(17, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void NotInterceptingPropertyDefineCallbackIndexed(
|
|
|
|
uint32_t index, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
// Do not intercept by not calling info.GetReturnValue().Set()
|
|
|
|
}
|
|
|
|
|
|
|
|
void InterceptingPropertyDefineCallbackIndexed(
|
|
|
|
uint32_t index, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
// intercept the callback by setting a non-empty handle
|
|
|
|
info.GetReturnValue().Set(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckDescriptorInDefineCallbackIndexed(
|
|
|
|
uint32_t index, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CHECK(!desc.has_writable());
|
|
|
|
CHECK(!desc.has_value());
|
|
|
|
CHECK(desc.has_enumerable());
|
|
|
|
CHECK(desc.enumerable());
|
|
|
|
CHECK(!desc.has_configurable());
|
|
|
|
CHECK(desc.has_get());
|
|
|
|
CHECK(desc.get()->IsFunction());
|
|
|
|
CHECK(desc.has_set());
|
|
|
|
CHECK(desc.set()->IsUndefined());
|
|
|
|
// intercept the callback by setting a non-empty handle
|
|
|
|
info.GetReturnValue().Set(index);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
THREADED_TEST(PropertyDefinerCallbackIndexed) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
|
|
|
|
{ // Intercept defineProperty()
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
NotInterceptingPropertyDefineCallbackIndexed));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"obj[2] = 17; "
|
|
|
|
"Object.defineProperty(obj, 2, {value: 42});"
|
|
|
|
"obj[2];";
|
|
|
|
CHECK_EQ(42, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
{ // Intercept defineProperty() for correct accessor descriptor
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
CheckDescriptorInDefineCallbackIndexed));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"obj[2] = 17; "
|
|
|
|
"Object.defineProperty(obj, 2, {"
|
|
|
|
"get: function(){ return 42; }, "
|
|
|
|
"set: undefined,"
|
|
|
|
"enumerable: true"
|
|
|
|
"});"
|
|
|
|
"obj[2];";
|
|
|
|
CHECK_EQ(17, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
{ // Do not intercept defineProperty()
|
|
|
|
v8::Local<v8::FunctionTemplate> templ2 =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ2->InstanceTemplate()->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
InterceptingPropertyDefineCallbackIndexed));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ2->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
|
|
|
const char* code =
|
|
|
|
"obj[2] = 17; "
|
|
|
|
"Object.defineProperty(obj, 2, {value: 42});"
|
|
|
|
"obj[2];";
|
|
|
|
CHECK_EQ(17, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that freeze() is intercepted.
|
|
|
|
THREADED_TEST(PropertyDefinerCallbackForFreeze) {
|
2018-09-24 11:05:31 +00:00
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2016-09-02 09:08:31 +00:00
|
|
|
LocalContext env;
|
2018-09-24 11:05:31 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(isolate);
|
2016-09-02 09:08:31 +00:00
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
InterceptingPropertyDefineCallback));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"obj.x = 17; "
|
|
|
|
"Object.freeze(obj.x); "
|
|
|
|
"Object.isFrozen(obj.x);";
|
|
|
|
|
|
|
|
CHECK(v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
2018-09-24 11:05:31 +00:00
|
|
|
->BooleanValue(isolate));
|
2016-09-02 09:08:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the descriptor passed to the callback is enumerable.
|
|
|
|
namespace {
|
|
|
|
void CheckEnumerablePropertyDefineCallback(
|
|
|
|
Local<Name> name, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CHECK(desc.has_value());
|
|
|
|
CHECK_EQ(42, desc.value()
|
|
|
|
->Int32Value(info.GetIsolate()->GetCurrentContext())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(desc.has_enumerable());
|
|
|
|
CHECK(desc.enumerable());
|
|
|
|
CHECK(!desc.has_writable());
|
|
|
|
|
|
|
|
// intercept the callback by setting a non-empty handle
|
|
|
|
info.GetReturnValue().Set(name);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
THREADED_TEST(PropertyDefinerCallbackEnumerable) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
CheckEnumerablePropertyDefineCallback));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"obj.x = 17; "
|
|
|
|
"Object.defineProperty(obj, 'x', {value: 42, enumerable: true});"
|
|
|
|
"obj.x;";
|
|
|
|
CHECK_EQ(17, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the descriptor passed to the callback is configurable.
|
|
|
|
namespace {
|
|
|
|
void CheckConfigurablePropertyDefineCallback(
|
|
|
|
Local<Name> name, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CHECK(desc.has_value());
|
|
|
|
CHECK_EQ(42, desc.value()
|
|
|
|
->Int32Value(info.GetIsolate()->GetCurrentContext())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(desc.has_configurable());
|
|
|
|
CHECK(desc.configurable());
|
|
|
|
|
|
|
|
// intercept the callback by setting a non-empty handle
|
|
|
|
info.GetReturnValue().Set(name);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
THREADED_TEST(PropertyDefinerCallbackConfigurable) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
CheckConfigurablePropertyDefineCallback));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"obj.x = 17; "
|
|
|
|
"Object.defineProperty(obj, 'x', {value: 42, configurable: true});"
|
|
|
|
"obj.x;";
|
|
|
|
CHECK_EQ(17, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the descriptor passed to the callback is writable.
|
|
|
|
namespace {
|
|
|
|
void CheckWritablePropertyDefineCallback(
|
|
|
|
Local<Name> name, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CHECK(desc.has_writable());
|
|
|
|
CHECK(desc.writable());
|
|
|
|
|
|
|
|
// intercept the callback by setting a non-empty handle
|
|
|
|
info.GetReturnValue().Set(name);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
THREADED_TEST(PropertyDefinerCallbackWritable) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
CheckWritablePropertyDefineCallback));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"obj.x = 17; "
|
|
|
|
"Object.defineProperty(obj, 'x', {value: 42, writable: true});"
|
|
|
|
"obj.x;";
|
|
|
|
CHECK_EQ(17, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the descriptor passed to the callback has a getter.
|
|
|
|
namespace {
|
|
|
|
void CheckGetterPropertyDefineCallback(
|
|
|
|
Local<Name> name, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CHECK(desc.has_get());
|
|
|
|
CHECK(!desc.has_set());
|
|
|
|
// intercept the callback by setting a non-empty handle
|
|
|
|
info.GetReturnValue().Set(name);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
THREADED_TEST(PropertyDefinerCallbackWithGetter) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
CheckGetterPropertyDefineCallback));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"obj.x = 17;"
|
|
|
|
"Object.defineProperty(obj, 'x', {get: function() {return 42;}});"
|
|
|
|
"obj.x;";
|
|
|
|
CHECK_EQ(17, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the descriptor passed to the callback has a setter.
|
|
|
|
namespace {
|
|
|
|
void CheckSetterPropertyDefineCallback(
|
|
|
|
Local<Name> name, const v8::PropertyDescriptor& desc,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CHECK(desc.has_set());
|
|
|
|
CHECK(!desc.has_get());
|
|
|
|
// intercept the callback by setting a non-empty handle
|
|
|
|
info.GetReturnValue().Set(name);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
THREADED_TEST(PropertyDefinerCallbackWithSetter) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, nullptr,
|
|
|
|
CheckSetterPropertyDefineCallback));
|
2016-09-02 09:08:31 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"Object.defineProperty(obj, 'x', {set: function() {return 42;}});"
|
|
|
|
"obj.x = 17;";
|
|
|
|
CHECK_EQ(17, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
2016-09-08 12:51:37 +00:00
|
|
|
namespace {
|
|
|
|
void EmptyPropertyDescriptorCallback(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
// Do not intercept by not calling info.GetReturnValue().Set().
|
|
|
|
}
|
|
|
|
|
|
|
|
void InterceptingPropertyDescriptorCallback(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
// Intercept the callback by setting a different descriptor.
|
|
|
|
const char* code =
|
|
|
|
"var desc = {value: 42};"
|
|
|
|
"desc;";
|
|
|
|
Local<Value> descriptor = v8_compile(code)
|
|
|
|
->Run(info.GetIsolate()->GetCurrentContext())
|
|
|
|
.ToLocalChecked();
|
|
|
|
info.GetReturnValue().Set(descriptor);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
THREADED_TEST(PropertyDescriptorCallback) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
LocalContext env;
|
|
|
|
|
|
|
|
{ // Normal behavior of getOwnPropertyDescriptor() with empty callback.
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, EmptyPropertyDescriptorCallback, nullptr, nullptr,
|
|
|
|
nullptr));
|
2016-09-08 12:51:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"obj.x = 17; "
|
|
|
|
"var desc = Object.getOwnPropertyDescriptor(obj, 'x');"
|
|
|
|
"desc.value;";
|
|
|
|
CHECK_EQ(17, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
{ // Intercept getOwnPropertyDescriptor().
|
|
|
|
v8::Local<v8::FunctionTemplate> templ =
|
|
|
|
v8::FunctionTemplate::New(CcTest::isolate());
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
nullptr, nullptr, InterceptingPropertyDescriptorCallback, nullptr,
|
|
|
|
nullptr, nullptr));
|
2016-09-08 12:51:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
const char* code =
|
|
|
|
"obj.x = 17; "
|
|
|
|
"var desc = Object.getOwnPropertyDescriptor(obj, 'x');"
|
|
|
|
"desc.value;";
|
|
|
|
CHECK_EQ(42, v8_compile(code)
|
|
|
|
->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-16 11:37:39 +00:00
|
|
|
namespace {
|
2015-02-06 12:07:48 +00:00
|
|
|
int echo_indexed_call_count = 0;
|
2016-11-16 11:37:39 +00:00
|
|
|
} // namespace
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
static void EchoIndexedProperty(
|
|
|
|
uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_num(637)
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), info.Data())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
echo_indexed_call_count++;
|
|
|
|
info.GetReturnValue().Set(v8_num(index));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedPropertyHandlerGetter) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->InstanceTemplate()->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
EchoIndexedProperty, nullptr, nullptr, nullptr, nullptr, v8_num(637)));
|
2015-02-06 12:07:48 +00:00
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
Local<Script> script = v8_compile("obj[900]");
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(900, script->Run(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(env.local())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(PropertyHandlerInPrototype) {
|
|
|
|
LocalContext env;
|
|
|
|
v8::Isolate* isolate = env->GetIsolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->InstanceTemplate()->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
|
|
|
CheckThisIndexedPropertyHandler, CheckThisIndexedPropertySetter,
|
|
|
|
CheckThisIndexedPropertyQuery, CheckThisIndexedPropertyDeleter,
|
2016-09-08 12:51:37 +00:00
|
|
|
CheckThisIndexedPropertyEnumerator));
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
CheckThisNamedPropertyHandler, CheckThisNamedPropertySetter,
|
|
|
|
CheckThisNamedPropertyQuery, CheckThisNamedPropertyDeleter,
|
2016-09-08 12:51:37 +00:00
|
|
|
CheckThisNamedPropertyEnumerator));
|
2015-02-06 12:07:48 +00:00
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
bottom = templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
Local<v8::Object> top = templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
Local<v8::Object> middle = templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
|
|
|
|
bottom->SetPrototype(env.local(), middle).FromJust();
|
|
|
|
middle->SetPrototype(env.local(), top).FromJust();
|
|
|
|
env->Global()->Set(env.local(), v8_str("obj"), bottom).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
// Indexed and named get.
|
|
|
|
CompileRun("obj[0]");
|
|
|
|
CompileRun("obj.x");
|
|
|
|
|
|
|
|
// Indexed and named set.
|
|
|
|
CompileRun("obj[1] = 42");
|
|
|
|
CompileRun("obj.y = 42");
|
|
|
|
|
|
|
|
// Indexed and named query.
|
|
|
|
CompileRun("0 in obj");
|
|
|
|
CompileRun("'x' in obj");
|
|
|
|
|
|
|
|
// Indexed and named deleter.
|
|
|
|
CompileRun("delete obj[0]");
|
|
|
|
CompileRun("delete obj.x");
|
|
|
|
|
|
|
|
// Enumerators.
|
|
|
|
CompileRun("for (var p in obj) ;");
|
2016-09-08 12:51:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(PropertyHandlerInPrototypeWithDefine) {
|
|
|
|
LocalContext env;
|
|
|
|
v8::Isolate* isolate = env->GetIsolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
|
|
|
|
v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(isolate);
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
|
|
|
CheckThisIndexedPropertyHandler, CheckThisIndexedPropertySetter,
|
|
|
|
CheckThisIndexedPropertyDescriptor, CheckThisIndexedPropertyDeleter,
|
|
|
|
CheckThisIndexedPropertyEnumerator, CheckThisIndexedPropertyDefiner));
|
|
|
|
|
|
|
|
templ->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
CheckThisNamedPropertyHandler, CheckThisNamedPropertySetter,
|
|
|
|
CheckThisNamedPropertyDescriptor, CheckThisNamedPropertyDeleter,
|
|
|
|
CheckThisNamedPropertyEnumerator, CheckThisNamedPropertyDefiner));
|
|
|
|
|
|
|
|
bottom = templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
Local<v8::Object> top = templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
Local<v8::Object> middle = templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
|
|
|
|
bottom->SetPrototype(env.local(), middle).FromJust();
|
|
|
|
middle->SetPrototype(env.local(), top).FromJust();
|
|
|
|
env->Global()->Set(env.local(), v8_str("obj"), bottom).FromJust();
|
|
|
|
|
|
|
|
// Indexed and named get.
|
|
|
|
CompileRun("obj[0]");
|
|
|
|
CompileRun("obj.x");
|
|
|
|
|
|
|
|
// Indexed and named set.
|
|
|
|
CompileRun("obj[1] = 42");
|
|
|
|
CompileRun("obj.y = 42");
|
|
|
|
|
|
|
|
// Indexed and named deleter.
|
|
|
|
CompileRun("delete obj[0]");
|
|
|
|
CompileRun("delete obj.x");
|
|
|
|
|
|
|
|
// Enumerators.
|
|
|
|
CompileRun("for (var p in obj) ;");
|
2016-09-02 09:08:31 +00:00
|
|
|
|
|
|
|
// Indexed and named definer.
|
|
|
|
CompileRun("Object.defineProperty(obj, 2, {});");
|
|
|
|
CompileRun("Object.defineProperty(obj, 'z', {});");
|
2016-09-08 12:51:37 +00:00
|
|
|
|
|
|
|
// Indexed and named propertyDescriptor.
|
|
|
|
CompileRun("Object.getOwnPropertyDescriptor(obj, 2);");
|
|
|
|
CompileRun("Object.getOwnPropertyDescriptor(obj, 'z');");
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-01 15:39:09 +00:00
|
|
|
bool is_bootstrapping = false;
|
2015-02-06 12:07:48 +00:00
|
|
|
static void PrePropertyHandlerGet(
|
|
|
|
Local<Name> key, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
if (!is_bootstrapping &&
|
|
|
|
v8_str("pre")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), key)
|
|
|
|
.FromJust()) {
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(v8_str("PrePropertyHandler: pre"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void PrePropertyHandlerQuery(
|
|
|
|
Local<Name> key, const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
2015-12-08 18:38:37 +00:00
|
|
|
if (!is_bootstrapping &&
|
|
|
|
v8_str("pre")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), key)
|
|
|
|
.FromJust()) {
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(static_cast<int32_t>(v8::None));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(PrePropertyHandler) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> desc = v8::FunctionTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
desc->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
PrePropertyHandlerGet, nullptr, PrePropertyHandlerQuery));
|
2015-07-01 14:17:47 +00:00
|
|
|
is_bootstrapping = true;
|
2017-10-13 16:33:03 +00:00
|
|
|
LocalContext env(nullptr, desc->InstanceTemplate());
|
2015-07-01 14:17:47 +00:00
|
|
|
is_bootstrapping = false;
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun("var pre = 'Object: pre'; var on = 'Object: on';");
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<Value> result_pre = CompileRun("pre");
|
|
|
|
CHECK(v8_str("PrePropertyHandler: pre")
|
|
|
|
->Equals(env.local(), result_pre)
|
|
|
|
.FromJust());
|
|
|
|
v8::Local<Value> result_on = CompileRun("on");
|
|
|
|
CHECK(v8_str("Object: on")->Equals(env.local(), result_on).FromJust());
|
|
|
|
v8::Local<Value> result_post = CompileRun("post");
|
2015-02-06 12:07:48 +00:00
|
|
|
CHECK(result_post.IsEmpty());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(EmptyInterceptorBreakTransitions) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddInterceptor(templ, EmptyInterceptorGetter, EmptyInterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Constructor"),
|
|
|
|
templ->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var o1 = new Constructor;"
|
|
|
|
"o1.a = 1;" // Ensure a and x share the descriptor array.
|
|
|
|
"Object.defineProperty(o1, 'x', {value: 10});");
|
|
|
|
CompileRun(
|
|
|
|
"var o2 = new Constructor;"
|
|
|
|
"o2.a = 1;"
|
|
|
|
"Object.defineProperty(o2, 'x', {value: 10});");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(EmptyInterceptorDoesNotShadowJSAccessors) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> parent = FunctionTemplate::New(isolate);
|
|
|
|
Local<FunctionTemplate> child = FunctionTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
child->Inherit(parent);
|
|
|
|
AddInterceptor(child, EmptyInterceptorGetter, EmptyInterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Child"),
|
|
|
|
child->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var child = new Child;"
|
|
|
|
"var parent = child.__proto__;"
|
|
|
|
"Object.defineProperty(parent, 'age', "
|
|
|
|
" {get: function(){ return this.accessor_age; }, "
|
|
|
|
" set: function(v){ this.accessor_age = v; }, "
|
|
|
|
" enumerable: true, configurable: true});"
|
|
|
|
"child.age = 10;");
|
|
|
|
ExpectBoolean("child.hasOwnProperty('age')", false);
|
|
|
|
ExpectInt32("child.age", 10);
|
|
|
|
ExpectInt32("child.accessor_age", 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(EmptyInterceptorDoesNotShadowApiAccessors) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> parent = FunctionTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
auto returns_42 = FunctionTemplate::New(isolate, Returns42);
|
|
|
|
parent->PrototypeTemplate()->SetAccessorProperty(v8_str("age"), returns_42);
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> child = FunctionTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
child->Inherit(parent);
|
|
|
|
AddInterceptor(child, EmptyInterceptorGetter, EmptyInterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Child"),
|
|
|
|
child->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var child = new Child;"
|
|
|
|
"var parent = child.__proto__;");
|
|
|
|
ExpectBoolean("child.hasOwnProperty('age')", false);
|
|
|
|
ExpectInt32("child.age", 42);
|
|
|
|
// Check interceptor followup.
|
|
|
|
ExpectInt32(
|
|
|
|
"var result;"
|
|
|
|
"for (var i = 0; i < 4; ++i) {"
|
|
|
|
" result = child.age;"
|
|
|
|
"}"
|
|
|
|
"result",
|
|
|
|
42);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(EmptyInterceptorDoesNotAffectJSProperties) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> parent = FunctionTemplate::New(isolate);
|
|
|
|
Local<FunctionTemplate> child = FunctionTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
child->Inherit(parent);
|
|
|
|
AddInterceptor(child, EmptyInterceptorGetter, EmptyInterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Child"),
|
|
|
|
child->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var child = new Child;"
|
|
|
|
"var parent = child.__proto__;"
|
|
|
|
"parent.name = 'Alice';");
|
|
|
|
ExpectBoolean("child.hasOwnProperty('name')", false);
|
|
|
|
ExpectString("child.name", "Alice");
|
|
|
|
CompileRun("child.name = 'Bob';");
|
|
|
|
ExpectString("child.name", "Bob");
|
|
|
|
ExpectBoolean("child.hasOwnProperty('name')", true);
|
|
|
|
ExpectString("parent.name", "Alice");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(SwitchFromInterceptorToAccessor) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddAccessor(templ, v8_str("age"), SimpleAccessorGetter, SimpleAccessorSetter);
|
|
|
|
AddInterceptor(templ, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Obj"),
|
|
|
|
templ->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var obj = new Obj;"
|
|
|
|
"function setAge(i){ obj.age = i; };"
|
|
|
|
"for(var i = 0; i <= 10000; i++) setAge(i);");
|
|
|
|
// All i < 10000 go to the interceptor.
|
|
|
|
ExpectInt32("obj.interceptor_age", 9999);
|
|
|
|
// The last i goes to the accessor.
|
|
|
|
ExpectInt32("obj.accessor_age", 10000);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(SwitchFromAccessorToInterceptor) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddAccessor(templ, v8_str("age"), SimpleAccessorGetter, SimpleAccessorSetter);
|
|
|
|
AddInterceptor(templ, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Obj"),
|
|
|
|
templ->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var obj = new Obj;"
|
|
|
|
"function setAge(i){ obj.age = i; };"
|
|
|
|
"for(var i = 20000; i >= 9999; i--) setAge(i);");
|
|
|
|
// All i >= 10000 go to the accessor.
|
|
|
|
ExpectInt32("obj.accessor_age", 10000);
|
|
|
|
// The last i goes to the interceptor.
|
|
|
|
ExpectInt32("obj.interceptor_age", 9999);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(SwitchFromInterceptorToAccessorWithInheritance) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> parent = FunctionTemplate::New(CcTest::isolate());
|
|
|
|
Local<FunctionTemplate> child = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
child->Inherit(parent);
|
|
|
|
AddAccessor(parent, v8_str("age"), SimpleAccessorGetter,
|
|
|
|
SimpleAccessorSetter);
|
|
|
|
AddInterceptor(child, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Child"),
|
|
|
|
child->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var child = new Child;"
|
|
|
|
"function setAge(i){ child.age = i; };"
|
|
|
|
"for(var i = 0; i <= 10000; i++) setAge(i);");
|
|
|
|
// All i < 10000 go to the interceptor.
|
|
|
|
ExpectInt32("child.interceptor_age", 9999);
|
|
|
|
// The last i goes to the accessor.
|
|
|
|
ExpectInt32("child.accessor_age", 10000);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(SwitchFromAccessorToInterceptorWithInheritance) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> parent = FunctionTemplate::New(CcTest::isolate());
|
|
|
|
Local<FunctionTemplate> child = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
child->Inherit(parent);
|
|
|
|
AddAccessor(parent, v8_str("age"), SimpleAccessorGetter,
|
|
|
|
SimpleAccessorSetter);
|
|
|
|
AddInterceptor(child, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Child"),
|
|
|
|
child->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var child = new Child;"
|
|
|
|
"function setAge(i){ child.age = i; };"
|
|
|
|
"for(var i = 20000; i >= 9999; i--) setAge(i);");
|
|
|
|
// All i >= 10000 go to the accessor.
|
|
|
|
ExpectInt32("child.accessor_age", 10000);
|
|
|
|
// The last i goes to the interceptor.
|
|
|
|
ExpectInt32("child.interceptor_age", 9999);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(SwitchFromInterceptorToJSAccessor) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddInterceptor(templ, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Obj"),
|
|
|
|
templ->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var obj = new Obj;"
|
|
|
|
"function setter(i) { this.accessor_age = i; };"
|
|
|
|
"function getter() { return this.accessor_age; };"
|
|
|
|
"function setAge(i) { obj.age = i; };"
|
|
|
|
"Object.defineProperty(obj, 'age', { get:getter, set:setter });"
|
|
|
|
"for(var i = 0; i <= 10000; i++) setAge(i);");
|
|
|
|
// All i < 10000 go to the interceptor.
|
|
|
|
ExpectInt32("obj.interceptor_age", 9999);
|
|
|
|
// The last i goes to the JavaScript accessor.
|
|
|
|
ExpectInt32("obj.accessor_age", 10000);
|
|
|
|
// The installed JavaScript getter is still intact.
|
|
|
|
// This last part is a regression test for issue 1651 and relies on the fact
|
|
|
|
// that both interceptor and accessor are being installed on the same object.
|
|
|
|
ExpectInt32("obj.age", 10000);
|
|
|
|
ExpectBoolean("obj.hasOwnProperty('age')", true);
|
|
|
|
ExpectUndefined("Object.getOwnPropertyDescriptor(obj, 'age').value");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(SwitchFromJSAccessorToInterceptor) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddInterceptor(templ, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Obj"),
|
|
|
|
templ->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var obj = new Obj;"
|
|
|
|
"function setter(i) { this.accessor_age = i; };"
|
|
|
|
"function getter() { return this.accessor_age; };"
|
|
|
|
"function setAge(i) { obj.age = i; };"
|
|
|
|
"Object.defineProperty(obj, 'age', { get:getter, set:setter });"
|
|
|
|
"for(var i = 20000; i >= 9999; i--) setAge(i);");
|
|
|
|
// All i >= 10000 go to the accessor.
|
|
|
|
ExpectInt32("obj.accessor_age", 10000);
|
|
|
|
// The last i goes to the interceptor.
|
|
|
|
ExpectInt32("obj.interceptor_age", 9999);
|
|
|
|
// The installed JavaScript getter is still intact.
|
|
|
|
// This last part is a regression test for issue 1651 and relies on the fact
|
|
|
|
// that both interceptor and accessor are being installed on the same object.
|
|
|
|
ExpectInt32("obj.age", 10000);
|
|
|
|
ExpectBoolean("obj.hasOwnProperty('age')", true);
|
|
|
|
ExpectUndefined("Object.getOwnPropertyDescriptor(obj, 'age').value");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(SwitchFromInterceptorToProperty) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> parent = FunctionTemplate::New(CcTest::isolate());
|
|
|
|
Local<FunctionTemplate> child = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
child->Inherit(parent);
|
|
|
|
AddInterceptor(child, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Child"),
|
|
|
|
child->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var child = new Child;"
|
|
|
|
"function setAge(i){ child.age = i; };"
|
|
|
|
"for(var i = 0; i <= 10000; i++) setAge(i);");
|
|
|
|
// All i < 10000 go to the interceptor.
|
|
|
|
ExpectInt32("child.interceptor_age", 9999);
|
|
|
|
// The last i goes to child's own property.
|
|
|
|
ExpectInt32("child.age", 10000);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(SwitchFromPropertyToInterceptor) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> parent = FunctionTemplate::New(CcTest::isolate());
|
|
|
|
Local<FunctionTemplate> child = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
child->Inherit(parent);
|
|
|
|
AddInterceptor(child, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Child"),
|
|
|
|
child->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var child = new Child;"
|
|
|
|
"function setAge(i){ child.age = i; };"
|
|
|
|
"for(var i = 20000; i >= 9999; i--) setAge(i);");
|
|
|
|
// All i >= 10000 go to child's own property.
|
|
|
|
ExpectInt32("child.age", 10000);
|
|
|
|
// The last i goes to the interceptor.
|
|
|
|
ExpectInt32("child.interceptor_age", 9999);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool interceptor_for_hidden_properties_called;
|
|
|
|
static void InterceptorForHiddenProperties(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
interceptor_for_hidden_properties_called = true;
|
|
|
|
}
|
|
|
|
|
2018-03-15 16:56:17 +00:00
|
|
|
THREADED_TEST(NoSideEffectPropertyHandler) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2018-04-04 19:04:12 +00:00
|
|
|
LocalContext context;
|
|
|
|
|
2018-03-15 16:56:17 +00:00
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
EmptyInterceptorGetter, EmptyInterceptorSetter, EmptyInterceptorQuery,
|
|
|
|
EmptyInterceptorDeleter, EmptyInterceptorEnumerator));
|
|
|
|
v8::Local<v8::Object> object =
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()->Set(context.local(), v8_str("obj"), object).FromJust();
|
|
|
|
|
2019-09-27 11:25:04 +00:00
|
|
|
CHECK(v8::debug::EvaluateGlobal(
|
|
|
|
isolate, v8_str("obj.x"),
|
|
|
|
v8::debug::EvaluateGlobalMode::kDisableBreaksAndThrowOnSideEffect)
|
|
|
|
.IsEmpty());
|
|
|
|
CHECK(v8::debug::EvaluateGlobal(
|
|
|
|
isolate, v8_str("obj.x = 1"),
|
|
|
|
v8::debug::EvaluateGlobalMode::kDisableBreaksAndThrowOnSideEffect)
|
|
|
|
.IsEmpty());
|
|
|
|
CHECK(v8::debug::EvaluateGlobal(
|
|
|
|
isolate, v8_str("'x' in obj"),
|
|
|
|
v8::debug::EvaluateGlobalMode::kDisableBreaksAndThrowOnSideEffect)
|
|
|
|
.IsEmpty());
|
|
|
|
CHECK(v8::debug::EvaluateGlobal(
|
|
|
|
isolate, v8_str("delete obj.x"),
|
|
|
|
v8::debug::EvaluateGlobalMode::kDisableBreaksAndThrowOnSideEffect)
|
2018-03-15 16:56:17 +00:00
|
|
|
.IsEmpty());
|
|
|
|
// Wrap the variable declaration since declaring globals is a side effect.
|
|
|
|
CHECK(v8::debug::EvaluateGlobal(
|
2019-09-27 11:25:04 +00:00
|
|
|
isolate, v8_str("(function() { for (var p in obj) ; })()"),
|
|
|
|
v8::debug::EvaluateGlobalMode::kDisableBreaksAndThrowOnSideEffect)
|
2018-03-15 16:56:17 +00:00
|
|
|
.IsEmpty());
|
|
|
|
|
2018-04-04 19:04:12 +00:00
|
|
|
// Side-effect-free version.
|
|
|
|
Local<ObjectTemplate> templ2 = ObjectTemplate::New(isolate);
|
|
|
|
templ2->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
EmptyInterceptorGetter, EmptyInterceptorSetter, EmptyInterceptorQuery,
|
|
|
|
EmptyInterceptorDeleter, EmptyInterceptorEnumerator,
|
|
|
|
v8::Local<v8::Value>(), v8::PropertyHandlerFlags::kHasNoSideEffect));
|
|
|
|
v8::Local<v8::Object> object2 =
|
|
|
|
templ2->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()->Set(context.local(), v8_str("obj2"), object2).FromJust();
|
2018-03-15 16:56:17 +00:00
|
|
|
|
2019-09-27 11:25:04 +00:00
|
|
|
v8::debug::EvaluateGlobal(
|
|
|
|
isolate, v8_str("obj2.x"),
|
|
|
|
v8::debug::EvaluateGlobalMode::kDisableBreaksAndThrowOnSideEffect)
|
|
|
|
.ToLocalChecked();
|
|
|
|
CHECK(v8::debug::EvaluateGlobal(
|
|
|
|
isolate, v8_str("obj2.x = 1"),
|
|
|
|
v8::debug::EvaluateGlobalMode::kDisableBreaksAndThrowOnSideEffect)
|
|
|
|
.IsEmpty());
|
|
|
|
v8::debug::EvaluateGlobal(
|
|
|
|
isolate, v8_str("'x' in obj2"),
|
|
|
|
v8::debug::EvaluateGlobalMode::kDisableBreaksAndThrowOnSideEffect)
|
2018-03-15 16:56:17 +00:00
|
|
|
.ToLocalChecked();
|
2019-09-27 11:25:04 +00:00
|
|
|
CHECK(v8::debug::EvaluateGlobal(
|
|
|
|
isolate, v8_str("delete obj2.x"),
|
|
|
|
v8::debug::EvaluateGlobalMode::kDisableBreaksAndThrowOnSideEffect)
|
2018-03-15 16:56:17 +00:00
|
|
|
.IsEmpty());
|
|
|
|
v8::debug::EvaluateGlobal(
|
2019-09-27 11:25:04 +00:00
|
|
|
isolate, v8_str("(function() { for (var p in obj2) ; })()"),
|
|
|
|
v8::debug::EvaluateGlobalMode::kDisableBreaksAndThrowOnSideEffect)
|
2018-03-15 16:56:17 +00:00
|
|
|
.ToLocalChecked();
|
|
|
|
}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
THREADED_TEST(HiddenPropertiesWithInterceptors) {
|
|
|
|
LocalContext context;
|
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
|
|
|
|
interceptor_for_hidden_properties_called = false;
|
|
|
|
|
2015-10-29 14:17:24 +00:00
|
|
|
v8::Local<v8::Private> key =
|
|
|
|
v8::Private::New(isolate, v8_str("api-test::hidden-key"));
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
// Associate an interceptor with an object and start setting hidden values.
|
|
|
|
Local<v8::FunctionTemplate> fun_templ = v8::FunctionTemplate::New(isolate);
|
|
|
|
Local<v8::ObjectTemplate> instance_templ = fun_templ->InstanceTemplate();
|
|
|
|
instance_templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorForHiddenProperties));
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<v8::Function> function =
|
|
|
|
fun_templ->GetFunction(context.local()).ToLocalChecked();
|
|
|
|
Local<v8::Object> obj =
|
|
|
|
function->NewInstance(context.local()).ToLocalChecked();
|
2015-10-29 14:17:24 +00:00
|
|
|
CHECK(obj->SetPrivate(context.local(), key, v8::Integer::New(isolate, 2302))
|
|
|
|
.FromJust());
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(2302, obj->GetPrivate(context.local(), key)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(context.local())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
CHECK(!interceptor_for_hidden_properties_called);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void XPropertyGetter(Local<Name> property,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
CHECK(info.Data()->IsUndefined());
|
|
|
|
info.GetReturnValue().Set(property);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(NamedInterceptorPropertyRead) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(XPropertyGetter));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
Local<Script> script = v8_compile("obj.x");
|
|
|
|
for (int i = 0; i < 10; i++) {
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<Value> result = script->Run(context.local()).ToLocalChecked();
|
|
|
|
CHECK(result->Equals(context.local(), v8_str("x")).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(NamedInterceptorDictionaryIC) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(XPropertyGetter));
|
|
|
|
LocalContext context;
|
|
|
|
// Create an object with a named interceptor.
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("interceptor_obj"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
Local<Script> script = v8_compile("interceptor_obj.x");
|
|
|
|
for (int i = 0; i < 10; i++) {
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<Value> result = script->Run(context.local()).ToLocalChecked();
|
|
|
|
CHECK(result->Equals(context.local(), v8_str("x")).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
// Create a slow case object and a function accessing a property in
|
|
|
|
// that slow case object (with dictionary probing in generated
|
|
|
|
// code). Then force object with a named interceptor into slow-case,
|
|
|
|
// pass it to the function, and check that the interceptor is called
|
|
|
|
// instead of accessing the local property.
|
|
|
|
Local<Value> result = CompileRun(
|
|
|
|
"function get_x(o) { return o.x; };"
|
|
|
|
"var obj = { x : 42, y : 0 };"
|
|
|
|
"delete obj.y;"
|
|
|
|
"for (var i = 0; i < 10; i++) get_x(obj);"
|
|
|
|
"interceptor_obj.x = 42;"
|
|
|
|
"interceptor_obj.y = 10;"
|
|
|
|
"delete interceptor_obj.y;"
|
|
|
|
"get_x(interceptor_obj)");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(result->Equals(context.local(), v8_str("x")).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(NamedInterceptorDictionaryICMultipleContext) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<Context> context1 = Context::New(isolate);
|
|
|
|
|
|
|
|
context1->Enter();
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(XPropertyGetter));
|
|
|
|
// Create an object with a named interceptor.
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Object> object = templ->NewInstance(context1).ToLocalChecked();
|
|
|
|
context1->Global()
|
|
|
|
->Set(context1, v8_str("interceptor_obj"), object)
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
// Force the object into the slow case.
|
|
|
|
CompileRun(
|
|
|
|
"interceptor_obj.y = 0;"
|
|
|
|
"delete interceptor_obj.y;");
|
|
|
|
context1->Exit();
|
|
|
|
|
|
|
|
{
|
|
|
|
// Introduce the object into a different context.
|
|
|
|
// Repeat named loads to exercise ICs.
|
|
|
|
LocalContext context2;
|
2015-12-08 18:38:37 +00:00
|
|
|
context2->Global()
|
|
|
|
->Set(context2.local(), v8_str("interceptor_obj"), object)
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
Local<Value> result = CompileRun(
|
|
|
|
"function get_x(o) { return o.x; }"
|
|
|
|
"interceptor_obj.x = 42;"
|
|
|
|
"for (var i=0; i != 10; i++) {"
|
|
|
|
" get_x(interceptor_obj);"
|
|
|
|
"}"
|
|
|
|
"get_x(interceptor_obj)");
|
|
|
|
// Check that the interceptor was actually invoked.
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(result->Equals(context2.local(), v8_str("x")).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return to the original context and force some object to the slow case
|
|
|
|
// to cause the NormalizedMapCache to verify.
|
|
|
|
context1->Enter();
|
|
|
|
CompileRun("var obj = { x : 0 }; delete obj.x;");
|
|
|
|
context1->Exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void SetXOnPrototypeGetter(
|
|
|
|
Local<Name> property, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
// Set x on the prototype object and do not handle the get request.
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Value> proto = info.Holder()->GetPrototype();
|
|
|
|
proto.As<v8::Object>()
|
|
|
|
->Set(info.GetIsolate()->GetCurrentContext(), v8_str("x"),
|
|
|
|
v8::Integer::New(info.GetIsolate(), 23))
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This is a regression test for http://crbug.com/20104. Map
|
|
|
|
// transitions should not interfere with post interceptor lookup.
|
|
|
|
THREADED_TEST(NamedInterceptorMapTransitionRead) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<v8::FunctionTemplate> function_template =
|
|
|
|
v8::FunctionTemplate::New(isolate);
|
|
|
|
Local<v8::ObjectTemplate> instance_template =
|
|
|
|
function_template->InstanceTemplate();
|
|
|
|
instance_template->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(SetXOnPrototypeGetter));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("F"),
|
|
|
|
function_template->GetFunction(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
// Create an instance of F and introduce a map transition for x.
|
|
|
|
CompileRun("var o = new F(); o.x = 23;");
|
|
|
|
// Create an instance of F and invoke the getter. The result should be 23.
|
|
|
|
Local<Value> result = CompileRun("o = new F(); o.x");
|
2017-02-06 12:51:53 +00:00
|
|
|
CHECK_EQ(23, result->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void IndexedPropertyGetter(
|
|
|
|
uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
if (index == 37) {
|
|
|
|
info.GetReturnValue().Set(v8_num(625));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void IndexedPropertySetter(
|
|
|
|
uint32_t index, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
if (index == 39) {
|
|
|
|
info.GetReturnValue().Set(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorWithIndexedAccessor) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
|
|
|
IndexedPropertyGetter, IndexedPropertySetter));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
Local<Script> getter_script =
|
|
|
|
v8_compile("obj.__defineGetter__(\"3\", function(){return 5;});obj[3];");
|
|
|
|
Local<Script> setter_script = v8_compile(
|
|
|
|
"obj.__defineSetter__(\"17\", function(val){this.foo = val;});"
|
|
|
|
"obj[17] = 23;"
|
|
|
|
"obj.foo;");
|
|
|
|
Local<Script> interceptor_setter_script = v8_compile(
|
|
|
|
"obj.__defineSetter__(\"39\", function(val){this.foo = \"hit\";});"
|
|
|
|
"obj[39] = 47;"
|
|
|
|
"obj.foo;"); // This setter should not run, due to the interceptor.
|
|
|
|
Local<Script> interceptor_getter_script = v8_compile("obj[37];");
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<Value> result = getter_script->Run(context.local()).ToLocalChecked();
|
|
|
|
CHECK(v8_num(5)->Equals(context.local(), result).FromJust());
|
|
|
|
result = setter_script->Run(context.local()).ToLocalChecked();
|
|
|
|
CHECK(v8_num(23)->Equals(context.local(), result).FromJust());
|
|
|
|
result = interceptor_setter_script->Run(context.local()).ToLocalChecked();
|
|
|
|
CHECK(v8_num(23)->Equals(context.local(), result).FromJust());
|
|
|
|
result = interceptor_getter_script->Run(context.local()).ToLocalChecked();
|
|
|
|
CHECK(v8_num(625)->Equals(context.local(), result).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void UnboxedDoubleIndexedPropertyGetter(
|
|
|
|
uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
if (index < 25) {
|
|
|
|
info.GetReturnValue().Set(v8_num(index));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void UnboxedDoubleIndexedPropertySetter(
|
|
|
|
uint32_t index, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
if (index < 25) {
|
|
|
|
info.GetReturnValue().Set(v8_num(index));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void UnboxedDoubleIndexedPropertyEnumerator(
|
|
|
|
const v8::PropertyCallbackInfo<v8::Array>& info) {
|
|
|
|
// Force the list of returned keys to be stored in a FastDoubleArray.
|
|
|
|
Local<Script> indexed_property_names_script = v8_compile(
|
|
|
|
"keys = new Array(); keys[125000] = 1;"
|
|
|
|
"for(i = 0; i < 80000; i++) { keys[i] = i; };"
|
|
|
|
"keys.length = 25; keys;");
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<Value> result =
|
|
|
|
indexed_property_names_script->Run(info.GetIsolate()->GetCurrentContext())
|
|
|
|
.ToLocalChecked();
|
2020-11-27 16:06:57 +00:00
|
|
|
info.GetReturnValue().Set(result.As<v8::Array>());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Make sure that the the interceptor code in the runtime properly handles
|
|
|
|
// merging property name lists for double-array-backed arrays.
|
|
|
|
THREADED_TEST(IndexedInterceptorUnboxedDoubleWithIndexedAccessor) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
UnboxedDoubleIndexedPropertyGetter, UnboxedDoubleIndexedPropertySetter,
|
|
|
|
nullptr, nullptr, UnboxedDoubleIndexedPropertyEnumerator));
|
2015-02-06 12:07:48 +00:00
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
// When obj is created, force it to be Stored in a FastDoubleArray.
|
|
|
|
Local<Script> create_unboxed_double_script = v8_compile(
|
|
|
|
"obj[125000] = 1; for(i = 0; i < 80000; i+=2) { obj[i] = i; } "
|
|
|
|
"key_count = 0; "
|
|
|
|
"for (x in obj) {key_count++;};"
|
|
|
|
"obj;");
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<Value> result =
|
|
|
|
create_unboxed_double_script->Run(context.local()).ToLocalChecked();
|
|
|
|
CHECK(result->ToObject(context.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->HasRealIndexedProperty(context.local(), 2000)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
Local<Script> key_count_check = v8_compile("key_count;");
|
2015-12-08 18:38:37 +00:00
|
|
|
result = key_count_check->Run(context.local()).ToLocalChecked();
|
|
|
|
CHECK(v8_num(40013)->Equals(context.local(), result).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SloppyArgsIndexedPropertyEnumerator(
|
|
|
|
const v8::PropertyCallbackInfo<v8::Array>& info) {
|
|
|
|
// Force the list of returned keys to be stored in a Arguments object.
|
|
|
|
Local<Script> indexed_property_names_script = v8_compile(
|
|
|
|
"function f(w,x) {"
|
|
|
|
" return arguments;"
|
|
|
|
"}"
|
|
|
|
"keys = f(0, 1, 2, 3);"
|
|
|
|
"keys;");
|
2020-11-27 16:06:57 +00:00
|
|
|
Local<Object> result =
|
2015-12-08 18:38:37 +00:00
|
|
|
indexed_property_names_script->Run(info.GetIsolate()->GetCurrentContext())
|
2020-11-27 16:06:57 +00:00
|
|
|
.ToLocalChecked()
|
|
|
|
.As<Object>();
|
2015-02-06 12:07:48 +00:00
|
|
|
// Have to populate the handle manually, as it's not Cast-able.
|
2015-11-16 16:48:43 +00:00
|
|
|
i::Handle<i::JSReceiver> o =
|
|
|
|
v8::Utils::OpenHandle<Object, i::JSReceiver>(result);
|
2018-12-08 02:59:17 +00:00
|
|
|
i::Handle<i::JSArray> array(i::JSArray::unchecked_cast(*o), o->GetIsolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(v8::Utils::ToLocal(array));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void SloppyIndexedPropertyGetter(
|
|
|
|
uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
if (index < 4) {
|
|
|
|
info.GetReturnValue().Set(v8_num(index));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Make sure that the the interceptor code in the runtime properly handles
|
|
|
|
// merging property name lists for non-string arguments arrays.
|
|
|
|
THREADED_TEST(IndexedInterceptorSloppyArgsWithIndexedAccessor) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
SloppyIndexedPropertyGetter, nullptr, nullptr, nullptr,
|
2015-02-06 12:07:48 +00:00
|
|
|
SloppyArgsIndexedPropertyEnumerator));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
Local<Script> create_args_script = v8_compile(
|
|
|
|
"var key_count = 0;"
|
|
|
|
"for (x in obj) {key_count++;} key_count;");
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<Value> result =
|
|
|
|
create_args_script->Run(context.local()).ToLocalChecked();
|
|
|
|
CHECK(v8_num(4)->Equals(context.local(), result).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void IdentityIndexedPropertyGetter(
|
|
|
|
uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
info.GetReturnValue().Set(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorWithGetOwnPropertyDescriptor) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(IdentityIndexedPropertyGetter));
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
// Check fast object case.
|
|
|
|
const char* fast_case_code =
|
|
|
|
"Object.getOwnPropertyDescriptor(obj, 0).value.toString()";
|
|
|
|
ExpectString(fast_case_code, "0");
|
|
|
|
|
|
|
|
// Check slow case.
|
|
|
|
const char* slow_case_code =
|
|
|
|
"obj.x = 1; delete obj.x;"
|
|
|
|
"Object.getOwnPropertyDescriptor(obj, 1).value.toString()";
|
|
|
|
ExpectString(slow_case_code, "1");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorWithNoSetter) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(IdentityIndexedPropertyGetter));
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
const char* code =
|
|
|
|
"try {"
|
|
|
|
" obj[0] = 239;"
|
|
|
|
" for (var i = 0; i < 100; i++) {"
|
|
|
|
" var v = obj[0];"
|
|
|
|
" if (v != 0) throw 'Wrong value ' + v + ' at iteration ' + i;"
|
|
|
|
" }"
|
|
|
|
" 'PASSED'"
|
|
|
|
"} catch(e) {"
|
|
|
|
" e"
|
|
|
|
"}";
|
|
|
|
ExpectString(code, "PASSED");
|
|
|
|
}
|
|
|
|
|
2015-10-23 08:13:24 +00:00
|
|
|
static bool AccessAlwaysBlocked(Local<v8::Context> accessing_context,
|
2016-02-03 10:02:26 +00:00
|
|
|
Local<v8::Object> accessed_object,
|
|
|
|
Local<v8::Value> data) {
|
2015-07-02 09:05:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-06 12:07:48 +00:00
|
|
|
THREADED_TEST(IndexedInterceptorWithAccessorCheck) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(IdentityIndexedPropertyGetter));
|
|
|
|
|
2015-10-23 08:13:24 +00:00
|
|
|
templ->SetAccessCheckCallback(AccessAlwaysBlocked);
|
2015-07-02 09:05:39 +00:00
|
|
|
|
2015-02-06 12:07:48 +00:00
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<v8::Object> obj = templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()->Set(context.local(), v8_str("obj"), obj).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
const char* code =
|
|
|
|
"var result = 'PASSED';"
|
|
|
|
"for (var i = 0; i < 100; i++) {"
|
|
|
|
" try {"
|
|
|
|
" var v = obj[0];"
|
|
|
|
" result = 'Wrong value ' + v + ' at iteration ' + i;"
|
|
|
|
" break;"
|
|
|
|
" } catch (e) {"
|
|
|
|
" /* pass */"
|
|
|
|
" }"
|
|
|
|
"}"
|
|
|
|
"result";
|
|
|
|
ExpectString(code, "PASSED");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorWithDifferentIndices) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(IdentityIndexedPropertyGetter));
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<v8::Object> obj = templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()->Set(context.local(), v8_str("obj"), obj).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
const char* code =
|
|
|
|
"try {"
|
|
|
|
" for (var i = 0; i < 100; i++) {"
|
|
|
|
" var v = obj[i];"
|
|
|
|
" if (v != i) throw 'Wrong value ' + v + ' at iteration ' + i;"
|
|
|
|
" }"
|
|
|
|
" 'PASSED'"
|
|
|
|
"} catch(e) {"
|
|
|
|
" e"
|
|
|
|
"}";
|
|
|
|
ExpectString(code, "PASSED");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorWithNegativeIndices) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(IdentityIndexedPropertyGetter));
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<v8::Object> obj = templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()->Set(context.local(), v8_str("obj"), obj).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
const char* code =
|
|
|
|
"try {"
|
|
|
|
" for (var i = 0; i < 100; i++) {"
|
|
|
|
" var expected = i;"
|
|
|
|
" var key = i;"
|
|
|
|
" if (i == 25) {"
|
|
|
|
" key = -1;"
|
|
|
|
" expected = undefined;"
|
|
|
|
" }"
|
|
|
|
" if (i == 50) {"
|
|
|
|
" /* probe minimal Smi number on 32-bit platforms */"
|
|
|
|
" key = -(1 << 30);"
|
|
|
|
" expected = undefined;"
|
|
|
|
" }"
|
|
|
|
" if (i == 75) {"
|
|
|
|
" /* probe minimal Smi number on 64-bit platforms */"
|
|
|
|
" key = 1 << 31;"
|
|
|
|
" expected = undefined;"
|
|
|
|
" }"
|
|
|
|
" var v = obj[key];"
|
|
|
|
" if (v != expected) throw 'Wrong value ' + v + ' at iteration ' + i;"
|
|
|
|
" }"
|
|
|
|
" 'PASSED'"
|
|
|
|
"} catch(e) {"
|
|
|
|
" e"
|
|
|
|
"}";
|
|
|
|
ExpectString(code, "PASSED");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorWithNotSmiLookup) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(IdentityIndexedPropertyGetter));
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<v8::Object> obj = templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()->Set(context.local(), v8_str("obj"), obj).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
const char* code =
|
|
|
|
"try {"
|
|
|
|
" for (var i = 0; i < 100; i++) {"
|
|
|
|
" var expected = i;"
|
|
|
|
" var key = i;"
|
|
|
|
" if (i == 50) {"
|
|
|
|
" key = 'foobar';"
|
|
|
|
" expected = undefined;"
|
|
|
|
" }"
|
|
|
|
" var v = obj[key];"
|
|
|
|
" if (v != expected) throw 'Wrong value ' + v + ' at iteration ' + i;"
|
|
|
|
" }"
|
|
|
|
" 'PASSED'"
|
|
|
|
"} catch(e) {"
|
|
|
|
" e"
|
|
|
|
"}";
|
|
|
|
ExpectString(code, "PASSED");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorGoingMegamorphic) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(IdentityIndexedPropertyGetter));
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<v8::Object> obj = templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()->Set(context.local(), v8_str("obj"), obj).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
const char* code =
|
|
|
|
"var original = obj;"
|
|
|
|
"try {"
|
|
|
|
" for (var i = 0; i < 100; i++) {"
|
|
|
|
" var expected = i;"
|
|
|
|
" if (i == 50) {"
|
|
|
|
" obj = {50: 'foobar'};"
|
|
|
|
" expected = 'foobar';"
|
|
|
|
" }"
|
|
|
|
" var v = obj[i];"
|
|
|
|
" if (v != expected) throw 'Wrong value ' + v + ' at iteration ' + i;"
|
|
|
|
" if (i == 50) obj = original;"
|
|
|
|
" }"
|
|
|
|
" 'PASSED'"
|
|
|
|
"} catch(e) {"
|
|
|
|
" e"
|
|
|
|
"}";
|
|
|
|
ExpectString(code, "PASSED");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorReceiverTurningSmi) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(IdentityIndexedPropertyGetter));
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<v8::Object> obj = templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()->Set(context.local(), v8_str("obj"), obj).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
const char* code =
|
|
|
|
"var original = obj;"
|
|
|
|
"try {"
|
|
|
|
" for (var i = 0; i < 100; i++) {"
|
|
|
|
" var expected = i;"
|
|
|
|
" if (i == 5) {"
|
|
|
|
" obj = 239;"
|
|
|
|
" expected = undefined;"
|
|
|
|
" }"
|
|
|
|
" var v = obj[i];"
|
|
|
|
" if (v != expected) throw 'Wrong value ' + v + ' at iteration ' + i;"
|
|
|
|
" if (i == 5) obj = original;"
|
|
|
|
" }"
|
|
|
|
" 'PASSED'"
|
|
|
|
"} catch(e) {"
|
|
|
|
" e"
|
|
|
|
"}";
|
|
|
|
ExpectString(code, "PASSED");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorOnProto) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
Local<ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(
|
|
|
|
v8::IndexedPropertyHandlerConfiguration(IdentityIndexedPropertyGetter));
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<v8::Object> obj = templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()->Set(context.local(), v8_str("obj"), obj).FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
const char* code =
|
|
|
|
"var o = {__proto__: obj};"
|
|
|
|
"try {"
|
|
|
|
" for (var i = 0; i < 100; i++) {"
|
|
|
|
" var v = o[i];"
|
|
|
|
" if (v != i) throw 'Wrong value ' + v + ' at iteration ' + i;"
|
|
|
|
" }"
|
|
|
|
" 'PASSED'"
|
|
|
|
"} catch(e) {"
|
|
|
|
" e"
|
|
|
|
"}";
|
|
|
|
ExpectString(code, "PASSED");
|
|
|
|
}
|
|
|
|
|
2019-02-27 22:52:30 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
void CheckIndexedInterceptorHasIC(v8::IndexedPropertyGetterCallback getter,
|
|
|
|
v8::IndexedPropertyQueryCallback query,
|
|
|
|
const char* source, int expected) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
|
|
|
templ->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
|
|
|
getter, nullptr, query, nullptr, nullptr, v8_str("data")));
|
|
|
|
LocalContext context;
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
v8::Local<Value> value = CompileRun(source);
|
|
|
|
CHECK_EQ(expected, value->Int32Value(context.local()).FromJust());
|
|
|
|
}
|
|
|
|
|
|
|
|
int indexed_query_counter = 0;
|
|
|
|
void IndexedQueryCallback(uint32_t index,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
indexed_query_counter++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void IndexHasICQueryAbsent(uint32_t index,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
CHECK_EQ(isolate, info.GetIsolate());
|
|
|
|
info.GetReturnValue().Set(v8::Integer::New(isolate, v8::internal::ABSENT));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorHasIC) {
|
|
|
|
indexed_query_counter = 0;
|
|
|
|
CheckIndexedInterceptorHasIC(nullptr, IndexedQueryCallback,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" i in o;"
|
|
|
|
"}",
|
|
|
|
0);
|
|
|
|
CHECK_EQ(1000, indexed_query_counter);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorHasICQueryAbsent) {
|
|
|
|
CheckIndexedInterceptorHasIC(nullptr,
|
|
|
|
// HasICQuery<uint32_t, v8::internal::ABSENT>,
|
|
|
|
IndexHasICQueryAbsent,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" if (i in o) ++result;"
|
|
|
|
"}",
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorHasICQueryNone) {
|
|
|
|
CheckIndexedInterceptorHasIC(nullptr,
|
|
|
|
HasICQuery<uint32_t, v8::internal::NONE>,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" if (i in o) ++result;"
|
|
|
|
"}",
|
|
|
|
1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorHasICGetter) {
|
|
|
|
CheckIndexedInterceptorHasIC(IdentityIndexedPropertyGetter, nullptr,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" if (i in o) ++result;"
|
|
|
|
"}",
|
|
|
|
1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorHasICQueryGetter) {
|
|
|
|
CheckIndexedInterceptorHasIC(IdentityIndexedPropertyGetter,
|
|
|
|
HasICQuery<uint32_t, v8::internal::ABSENT>,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" if (i in o) ++result;"
|
|
|
|
"}",
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(IndexedInterceptorHasICQueryToggle) {
|
|
|
|
CheckIndexedInterceptorHasIC(IdentityIndexedPropertyGetter,
|
|
|
|
HasICQueryToggle<uint32_t>,
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" if (i in o) ++result;"
|
|
|
|
"}",
|
|
|
|
500);
|
|
|
|
}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
static void NoBlockGetterX(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>&) {}
|
|
|
|
|
|
|
|
|
|
|
|
static void NoBlockGetterI(uint32_t index,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>&) {}
|
|
|
|
|
|
|
|
|
|
|
|
static void PDeleter(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Boolean>& info) {
|
2015-12-08 18:38:37 +00:00
|
|
|
if (!name->Equals(info.GetIsolate()->GetCurrentContext(), v8_str("foo"))
|
|
|
|
.FromJust()) {
|
2015-02-06 12:07:48 +00:00
|
|
|
return; // not intercepted
|
|
|
|
}
|
|
|
|
|
|
|
|
info.GetReturnValue().Set(false); // intercepted, don't delete the property
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void IDeleter(uint32_t index,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Boolean>& info) {
|
|
|
|
if (index != 2) {
|
|
|
|
return; // not intercepted
|
|
|
|
}
|
|
|
|
|
|
|
|
info.GetReturnValue().Set(false); // intercepted, don't delete the property
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(Deleter) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> obj = ObjectTemplate::New(isolate);
|
2017-10-13 16:33:03 +00:00
|
|
|
obj->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
NoBlockGetterX, nullptr, nullptr, PDeleter, nullptr));
|
2015-02-06 12:07:48 +00:00
|
|
|
obj->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
2017-10-13 16:33:03 +00:00
|
|
|
NoBlockGetterI, nullptr, nullptr, IDeleter, nullptr));
|
2015-02-06 12:07:48 +00:00
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("k"),
|
|
|
|
obj->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"k.foo = 'foo';"
|
|
|
|
"k.bar = 'bar';"
|
|
|
|
"k[2] = 2;"
|
|
|
|
"k[4] = 4;");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_compile("delete k.foo")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->IsFalse());
|
|
|
|
CHECK(v8_compile("delete k.bar")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->IsTrue());
|
|
|
|
|
|
|
|
CHECK(v8_compile("k.foo")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Equals(context.local(), v8_str("foo"))
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_compile("k.bar")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->IsUndefined());
|
|
|
|
|
|
|
|
CHECK(v8_compile("delete k[2]")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->IsFalse());
|
|
|
|
CHECK(v8_compile("delete k[4]")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->IsTrue());
|
|
|
|
|
|
|
|
CHECK(v8_compile("k[2]")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Equals(context.local(), v8_num(2))
|
|
|
|
.FromJust());
|
|
|
|
CHECK(
|
|
|
|
v8_compile("k[4]")->Run(context.local()).ToLocalChecked()->IsUndefined());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void GetK(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Context> context = info.GetIsolate()->GetCurrentContext();
|
|
|
|
if (name->Equals(context, v8_str("foo")).FromJust() ||
|
|
|
|
name->Equals(context, v8_str("bar")).FromJust() ||
|
|
|
|
name->Equals(context, v8_str("baz")).FromJust()) {
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().SetUndefined();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void IndexedGetK(uint32_t index,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
if (index == 0 || index == 1) info.GetReturnValue().SetUndefined();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void NamedEnum(const v8::PropertyCallbackInfo<v8::Array>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Array> result = v8::Array::New(info.GetIsolate(), 3);
|
|
|
|
v8::Local<v8::Context> context = info.GetIsolate()->GetCurrentContext();
|
2017-09-04 16:45:36 +00:00
|
|
|
CHECK(
|
|
|
|
result
|
|
|
|
->Set(context, v8::Integer::New(info.GetIsolate(), 0), v8_str("foo"))
|
|
|
|
.FromJust());
|
|
|
|
CHECK(
|
|
|
|
result
|
|
|
|
->Set(context, v8::Integer::New(info.GetIsolate(), 1), v8_str("bar"))
|
|
|
|
.FromJust());
|
|
|
|
CHECK(
|
|
|
|
result
|
|
|
|
->Set(context, v8::Integer::New(info.GetIsolate(), 2), v8_str("baz"))
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void IndexedEnum(const v8::PropertyCallbackInfo<v8::Array>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Array> result = v8::Array::New(info.GetIsolate(), 2);
|
|
|
|
v8::Local<v8::Context> context = info.GetIsolate()->GetCurrentContext();
|
2017-09-04 16:45:36 +00:00
|
|
|
CHECK(
|
|
|
|
result->Set(context, v8::Integer::New(info.GetIsolate(), 0), v8_str("0"))
|
|
|
|
.FromJust());
|
|
|
|
CHECK(
|
|
|
|
result->Set(context, v8::Integer::New(info.GetIsolate(), 1), v8_str("1"))
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(Enumerators) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> obj = ObjectTemplate::New(isolate);
|
2017-10-13 16:33:03 +00:00
|
|
|
obj->SetHandler(v8::NamedPropertyHandlerConfiguration(GetK, nullptr, nullptr,
|
|
|
|
nullptr, NamedEnum));
|
2015-02-06 12:07:48 +00:00
|
|
|
obj->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
2017-10-13 16:33:03 +00:00
|
|
|
IndexedGetK, nullptr, nullptr, nullptr, IndexedEnum));
|
2015-02-06 12:07:48 +00:00
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("k"),
|
|
|
|
obj->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2020-11-27 16:06:57 +00:00
|
|
|
v8::Local<v8::Array> result = CompileRun(
|
|
|
|
"k[10] = 0;"
|
|
|
|
"k.a = 0;"
|
|
|
|
"k[5] = 0;"
|
|
|
|
"k.b = 0;"
|
|
|
|
"k[4294967294] = 0;"
|
|
|
|
"k.c = 0;"
|
|
|
|
"k[4294967295] = 0;"
|
|
|
|
"k.d = 0;"
|
|
|
|
"k[140000] = 0;"
|
|
|
|
"k.e = 0;"
|
|
|
|
"k[30000000000] = 0;"
|
|
|
|
"k.f = 0;"
|
|
|
|
"var result = [];"
|
|
|
|
"for (var prop in k) {"
|
|
|
|
" result.push(prop);"
|
|
|
|
"}"
|
|
|
|
"result")
|
|
|
|
.As<v8::Array>();
|
2015-02-06 12:07:48 +00:00
|
|
|
// Check that we get all the property names returned including the
|
|
|
|
// ones from the enumerators in the right order: indexed properties
|
|
|
|
// in numerical order, indexed interceptor properties, named
|
|
|
|
// properties in insertion order, named interceptor properties.
|
|
|
|
// This order is not mandated by the spec, so this test is just
|
|
|
|
// documenting our behavior.
|
|
|
|
CHECK_EQ(17u, result->Length());
|
2016-05-25 09:13:31 +00:00
|
|
|
// Indexed properties.
|
|
|
|
CHECK(v8_str("5")
|
2015-12-08 18:38:37 +00:00
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 0))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
2016-05-25 09:13:31 +00:00
|
|
|
CHECK(v8_str("10")
|
2015-12-08 18:38:37 +00:00
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 1))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
2016-05-25 09:13:31 +00:00
|
|
|
CHECK(v8_str("140000")
|
2015-12-08 18:38:37 +00:00
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 2))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
2016-05-25 09:13:31 +00:00
|
|
|
CHECK(v8_str("4294967294")
|
2015-12-08 18:38:37 +00:00
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 3))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
2016-05-25 09:13:31 +00:00
|
|
|
// Indexed Interceptor properties
|
|
|
|
CHECK(v8_str("0")
|
2015-12-08 18:38:37 +00:00
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 4))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
2016-05-25 09:13:31 +00:00
|
|
|
CHECK(v8_str("1")
|
2015-12-08 18:38:37 +00:00
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 5))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
// Named properties in insertion order.
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_str("a")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 6))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_str("b")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 7))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_str("c")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 8))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_str("4294967295")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 9))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_str("d")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 10))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_str("e")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 11))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
CHECK(v8_str("30000000000")
|
2015-12-08 18:38:37 +00:00
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 12))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_str("f")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 13))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
// Named interceptor properties.
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_str("foo")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 14))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_str("bar")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 15))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_str("baz")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result->Get(context.local(), v8::Integer::New(isolate, 16))
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<Value> call_ic_function;
|
|
|
|
v8::Local<Value> call_ic_function2;
|
|
|
|
v8::Local<Value> call_ic_function3;
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
static void InterceptorCallICGetter(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_str("x")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), name)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(call_ic_function);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This test should hit the call IC for the interceptor case.
|
|
|
|
THREADED_TEST(InterceptorCallIC) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorCallICGetter));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
call_ic_function = v8_compile("function f(x) { return x + 1; }; f")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result = o.x(41);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This test checks that if interceptor doesn't provide
|
|
|
|
// a value, we can fetch regular value.
|
|
|
|
THREADED_TEST(InterceptorCallICSeesOthers) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(NoBlockGetterX));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"o.x = function f(x) { return x + 1; };"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" result = o.x(41);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
static v8::Local<Value> call_ic_function4;
|
2015-02-06 12:07:48 +00:00
|
|
|
static void InterceptorCallICGetter4(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_str("x")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), name)
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(call_ic_function4);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This test checks that if interceptor provides a function,
|
|
|
|
// even if we cached shadowed variant, interceptor's function
|
|
|
|
// is invoked
|
|
|
|
THREADED_TEST(InterceptorCallICCacheableNotNeeded) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorCallICGetter4));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
call_ic_function4 = v8_compile("function f(x) { return x - 1; }; f")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"Object.getPrototypeOf(o).x = function(x) { return x + 1; };"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result = o.x(42);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(41, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when we stored cacheable lookup into
|
|
|
|
// a stub, but it got invalidated later on
|
|
|
|
THREADED_TEST(InterceptorCallICInvalidatedCacheable) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(NoBlockGetterX));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"proto1 = new Object();"
|
|
|
|
"proto2 = new Object();"
|
|
|
|
"o.__proto__ = proto1;"
|
|
|
|
"proto1.__proto__ = proto2;"
|
|
|
|
"proto2.y = function(x) { return x + 1; };"
|
|
|
|
// Invoke it many times to compile a stub
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" o.y(42);"
|
|
|
|
"}"
|
|
|
|
"proto1.y = function(x) { return x - 1; };"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" result += o.y(42);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(41 * 7, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This test checks that if interceptor doesn't provide a function,
|
|
|
|
// cached constant function is used
|
|
|
|
THREADED_TEST(InterceptorCallICConstantFunctionUsed) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(NoBlockGetterX));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"function inc(x) { return x + 1; };"
|
|
|
|
"inc(1);"
|
|
|
|
"o.x = inc;"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result = o.x(42);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(43, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
static v8::Local<Value> call_ic_function5;
|
2015-02-06 12:07:48 +00:00
|
|
|
static void InterceptorCallICGetter5(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
if (v8_str("x")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), name)
|
|
|
|
.FromJust())
|
|
|
|
info.GetReturnValue().Set(call_ic_function5);
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This test checks that if interceptor provides a function,
|
|
|
|
// even if we cached constant function, interceptor's function
|
|
|
|
// is invoked
|
|
|
|
THREADED_TEST(InterceptorCallICConstantFunctionNotNeeded) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorCallICGetter5));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
call_ic_function5 = v8_compile("function f(x) { return x - 1; }; f")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"function inc(x) { return x + 1; };"
|
|
|
|
"inc(1);"
|
|
|
|
"o.x = inc;"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result = o.x(42);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(41, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
static v8::Local<Value> call_ic_function6;
|
2015-02-06 12:07:48 +00:00
|
|
|
static void InterceptorCallICGetter6(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
if (v8_str("x")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), name)
|
|
|
|
.FromJust())
|
|
|
|
info.GetReturnValue().Set(call_ic_function6);
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Same test as above, except the code is wrapped in a function
|
|
|
|
// to test the optimized compiler.
|
|
|
|
THREADED_TEST(InterceptorCallICConstantFunctionNotNeededWrapped) {
|
|
|
|
i::FLAG_allow_natives_syntax = true;
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorCallICGetter6));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
call_ic_function6 = v8_compile("function f(x) { return x - 1; }; f")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"function inc(x) { return x + 1; };"
|
|
|
|
"inc(1);"
|
|
|
|
"o.x = inc;"
|
|
|
|
"function test() {"
|
|
|
|
" var result = 0;"
|
|
|
|
" for (var i = 0; i < 1000; i++) {"
|
|
|
|
" result = o.x(42);"
|
|
|
|
" }"
|
|
|
|
" return result;"
|
|
|
|
"};"
|
2019-04-30 11:04:41 +00:00
|
|
|
"%PrepareFunctionForOptimization(test);"
|
2015-02-06 12:07:48 +00:00
|
|
|
"test();"
|
|
|
|
"test();"
|
|
|
|
"test();"
|
|
|
|
"%OptimizeFunctionOnNextCall(test);"
|
|
|
|
"test()");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(41, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when we stored constant function into
|
|
|
|
// a stub, but it got invalidated later on
|
|
|
|
THREADED_TEST(InterceptorCallICInvalidatedConstantFunction) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(NoBlockGetterX));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"function inc(x) { return x + 1; };"
|
|
|
|
"inc(1);"
|
|
|
|
"proto1 = new Object();"
|
|
|
|
"proto2 = new Object();"
|
|
|
|
"o.__proto__ = proto1;"
|
|
|
|
"proto1.__proto__ = proto2;"
|
|
|
|
"proto2.y = inc;"
|
|
|
|
// Invoke it many times to compile a stub
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" o.y(42);"
|
|
|
|
"}"
|
|
|
|
"proto1.y = function(x) { return x - 1; };"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" result += o.y(42);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(41 * 7, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when we stored constant function into
|
|
|
|
// a stub, but it got invalidated later on due to override on
|
|
|
|
// global object which is between interceptor and constant function' holders.
|
|
|
|
THREADED_TEST(InterceptorCallICInvalidatedConstantFunctionViaGlobal) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(NoBlockGetterX));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"function inc(x) { return x + 1; };"
|
|
|
|
"inc(1);"
|
|
|
|
"o.__proto__ = this;"
|
|
|
|
"this.__proto__.y = inc;"
|
|
|
|
// Invoke it many times to compile a stub
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" if (o.y(42) != 43) throw 'oops: ' + o.y(42);"
|
|
|
|
"}"
|
|
|
|
"this.y = function(x) { return x - 1; };"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 7; i++) {"
|
|
|
|
" result += o.y(42);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(41 * 7, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when actual function to call sits on global object.
|
|
|
|
THREADED_TEST(InterceptorCallICCachedFromGlobal) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_o = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_o->SetHandler(v8::NamedPropertyHandlerConfiguration(NoBlockGetterX));
|
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ_o->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"try {"
|
|
|
|
" o.__proto__ = this;"
|
|
|
|
" for (var i = 0; i < 10; i++) {"
|
|
|
|
" var v = o.parseFloat('239');"
|
|
|
|
" if (v != 239) throw v;"
|
|
|
|
// Now it should be ICed and keep a reference to parseFloat.
|
|
|
|
" }"
|
|
|
|
" var result = 0;"
|
|
|
|
" for (var i = 0; i < 10; i++) {"
|
|
|
|
" result += o.parseFloat('239');"
|
|
|
|
" }"
|
|
|
|
" result"
|
|
|
|
"} catch(e) {"
|
|
|
|
" e"
|
|
|
|
"};");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(239 * 10, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<Value> keyed_call_ic_function;
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
static void InterceptorKeyedCallICGetter(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
if (v8_str("x")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), name)
|
|
|
|
.FromJust()) {
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(keyed_call_ic_function);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when we stored cacheable lookup into
|
|
|
|
// a stub, but the function name changed (to another cacheable function).
|
|
|
|
THREADED_TEST(InterceptorKeyedCallICKeyChange1) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(NoBlockGetterX));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"proto = new Object();"
|
|
|
|
"proto.y = function(x) { return x + 1; };"
|
|
|
|
"proto.z = function(x) { return x - 1; };"
|
|
|
|
"o.__proto__ = proto;"
|
|
|
|
"var result = 0;"
|
|
|
|
"var method = 'y';"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" if (i == 5) { method = 'z'; };"
|
|
|
|
" result += o[method](41);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42 * 5 + 40 * 5, context->Global()
|
|
|
|
->Get(context.local(), v8_str("result"))
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(context.local())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when we stored cacheable lookup into
|
|
|
|
// a stub, but the function name changed (and the new function is present
|
|
|
|
// both before and after the interceptor in the prototype chain).
|
|
|
|
THREADED_TEST(InterceptorKeyedCallICKeyChange2) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorKeyedCallICGetter));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("proto1"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
keyed_call_ic_function = v8_compile("function f(x) { return x - 1; }; f")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"o = new Object();"
|
|
|
|
"proto2 = new Object();"
|
|
|
|
"o.y = function(x) { return x + 1; };"
|
|
|
|
"proto2.y = function(x) { return x + 2; };"
|
|
|
|
"o.__proto__ = proto1;"
|
|
|
|
"proto1.__proto__ = proto2;"
|
|
|
|
"var result = 0;"
|
|
|
|
"var method = 'x';"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" if (i == 5) { method = 'y'; };"
|
|
|
|
" result += o[method](41);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42 * 5 + 40 * 5, context->Global()
|
|
|
|
->Get(context.local(), v8_str("result"))
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(context.local())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Same as InterceptorKeyedCallICKeyChange1 only the cacheable function sit
|
|
|
|
// on the global object.
|
|
|
|
THREADED_TEST(InterceptorKeyedCallICKeyChangeOnGlobal) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(NoBlockGetterX));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"function inc(x) { return x + 1; };"
|
|
|
|
"inc(1);"
|
|
|
|
"function dec(x) { return x - 1; };"
|
|
|
|
"dec(1);"
|
|
|
|
"o.__proto__ = this;"
|
|
|
|
"this.__proto__.x = inc;"
|
|
|
|
"this.__proto__.y = dec;"
|
|
|
|
"var result = 0;"
|
|
|
|
"var method = 'x';"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" if (i == 5) { method = 'y'; };"
|
|
|
|
" result += o[method](41);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42 * 5 + 40 * 5, context->Global()
|
|
|
|
->Get(context.local(), v8_str("result"))
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(context.local())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the case when actual function to call sits on global object.
|
|
|
|
THREADED_TEST(InterceptorKeyedCallICFromGlobal) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_o = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_o->SetHandler(v8::NamedPropertyHandlerConfiguration(NoBlockGetterX));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ_o->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
CompileRun(
|
|
|
|
"function len(x) { return x.length; };"
|
|
|
|
"o.__proto__ = this;"
|
|
|
|
"var m = 'parseFloat';"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" if (i == 5) {"
|
|
|
|
" m = 'len';"
|
|
|
|
" saved_result = result;"
|
|
|
|
" };"
|
|
|
|
" result = o[m]('239');"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(3, context->Global()
|
|
|
|
->Get(context.local(), v8_str("result"))
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(context.local())
|
|
|
|
.FromJust());
|
|
|
|
CHECK_EQ(239, context->Global()
|
|
|
|
->Get(context.local(), v8_str("saved_result"))
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(context.local())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the map transition before the interceptor.
|
|
|
|
THREADED_TEST(InterceptorKeyedCallICMapChangeBefore) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_o = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_o->SetHandler(v8::NamedPropertyHandlerConfiguration(NoBlockGetterX));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("proto"),
|
|
|
|
templ_o->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
CompileRun(
|
|
|
|
"var o = new Object();"
|
|
|
|
"o.__proto__ = proto;"
|
|
|
|
"o.method = function(x) { return x + 1; };"
|
|
|
|
"var m = 'method';"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" if (i == 5) { o.method = function(x) { return x - 1; }; };"
|
|
|
|
" result += o[m](41);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42 * 5 + 40 * 5, context->Global()
|
|
|
|
->Get(context.local(), v8_str("result"))
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(context.local())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test the map transition after the interceptor.
|
|
|
|
THREADED_TEST(InterceptorKeyedCallICMapChangeAfter) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ_o = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ_o->SetHandler(v8::NamedPropertyHandlerConfiguration(NoBlockGetterX));
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("o"),
|
|
|
|
templ_o->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
CompileRun(
|
|
|
|
"var proto = new Object();"
|
|
|
|
"o.__proto__ = proto;"
|
|
|
|
"proto.method = function(x) { return x + 1; };"
|
|
|
|
"var m = 'method';"
|
|
|
|
"var result = 0;"
|
|
|
|
"for (var i = 0; i < 10; i++) {"
|
|
|
|
" if (i == 5) { proto.method = function(x) { return x - 1; }; };"
|
|
|
|
" result += o[m](41);"
|
|
|
|
"}");
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42 * 5 + 40 * 5, context->Global()
|
|
|
|
->Get(context.local(), v8_str("result"))
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Int32Value(context.local())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int interceptor_call_count = 0;
|
|
|
|
|
|
|
|
static void InterceptorICRefErrorGetter(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-12-08 18:38:37 +00:00
|
|
|
if (!is_bootstrapping &&
|
|
|
|
v8_str("x")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), name)
|
|
|
|
.FromJust() &&
|
2015-07-01 15:33:22 +00:00
|
|
|
interceptor_call_count++ < 20) {
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(call_ic_function2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This test should hit load and call ICs for the interceptor case.
|
|
|
|
// Once in a while, the interceptor will reply that a property was not
|
|
|
|
// found in which case we should get a reference error.
|
|
|
|
THREADED_TEST(InterceptorICReferenceErrors) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorICRefErrorGetter));
|
2015-07-01 15:33:22 +00:00
|
|
|
is_bootstrapping = true;
|
2018-09-13 14:55:18 +00:00
|
|
|
LocalContext context(nullptr, templ, v8::Local<Value>());
|
2015-07-01 15:33:22 +00:00
|
|
|
is_bootstrapping = false;
|
2015-12-08 18:38:37 +00:00
|
|
|
call_ic_function2 = v8_compile("function h(x) { return x; }; h")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < 1000; i++) {"
|
|
|
|
" try { x; } catch(e) { return true; }"
|
|
|
|
" }"
|
|
|
|
" return false;"
|
|
|
|
"};"
|
|
|
|
"f();");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(value->BooleanValue(isolate));
|
2015-02-06 12:07:48 +00:00
|
|
|
interceptor_call_count = 0;
|
|
|
|
value = CompileRun(
|
|
|
|
"function g() {"
|
|
|
|
" for (var i = 0; i < 1000; i++) {"
|
|
|
|
" try { x(42); } catch(e) { return true; }"
|
|
|
|
" }"
|
|
|
|
" return false;"
|
|
|
|
"};"
|
|
|
|
"g();");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(value->BooleanValue(isolate));
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int interceptor_ic_exception_get_count = 0;
|
|
|
|
|
|
|
|
static void InterceptorICExceptionGetter(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
2015-07-01 15:33:22 +00:00
|
|
|
if (is_bootstrapping) return;
|
2015-12-08 18:38:37 +00:00
|
|
|
if (v8_str("x")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), name)
|
|
|
|
.FromJust() &&
|
|
|
|
++interceptor_ic_exception_get_count < 20) {
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(call_ic_function3);
|
|
|
|
}
|
|
|
|
if (interceptor_ic_exception_get_count == 20) {
|
|
|
|
info.GetIsolate()->ThrowException(v8_num(42));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test interceptor load/call IC where the interceptor throws an
|
|
|
|
// exception once in a while.
|
|
|
|
THREADED_TEST(InterceptorICGetterExceptions) {
|
|
|
|
interceptor_ic_exception_get_count = 0;
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorICExceptionGetter));
|
2015-07-01 15:39:09 +00:00
|
|
|
is_bootstrapping = true;
|
2018-09-13 14:55:18 +00:00
|
|
|
LocalContext context(nullptr, templ, v8::Local<Value>());
|
2015-07-01 15:39:09 +00:00
|
|
|
is_bootstrapping = false;
|
2015-12-08 18:38:37 +00:00
|
|
|
call_ic_function3 = v8_compile("function h(x) { return x; }; h")
|
|
|
|
->Run(context.local())
|
|
|
|
.ToLocalChecked();
|
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < 100; i++) {"
|
|
|
|
" try { x; } catch(e) { return true; }"
|
|
|
|
" }"
|
|
|
|
" return false;"
|
|
|
|
"};"
|
|
|
|
"f();");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(value->BooleanValue(isolate));
|
2015-02-06 12:07:48 +00:00
|
|
|
interceptor_ic_exception_get_count = 0;
|
|
|
|
value = CompileRun(
|
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < 100; i++) {"
|
|
|
|
" try { x(42); } catch(e) { return true; }"
|
|
|
|
" }"
|
|
|
|
" return false;"
|
|
|
|
"};"
|
|
|
|
"f();");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(value->BooleanValue(isolate));
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int interceptor_ic_exception_set_count = 0;
|
|
|
|
|
|
|
|
static void InterceptorICExceptionSetter(
|
|
|
|
Local<Name> key, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
if (++interceptor_ic_exception_set_count > 20) {
|
|
|
|
info.GetIsolate()->ThrowException(v8_num(42));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test interceptor store IC where the interceptor throws an exception
|
|
|
|
// once in a while.
|
|
|
|
THREADED_TEST(InterceptorICSetterExceptions) {
|
|
|
|
interceptor_ic_exception_set_count = 0;
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2018-09-13 14:55:18 +00:00
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
|
|
|
nullptr, InterceptorICExceptionSetter));
|
|
|
|
LocalContext context(nullptr, templ, v8::Local<Value>());
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<Value> value = CompileRun(
|
2015-02-06 12:07:48 +00:00
|
|
|
"function f() {"
|
|
|
|
" for (var i = 0; i < 100; i++) {"
|
|
|
|
" try { x = 42; } catch(e) { return true; }"
|
|
|
|
" }"
|
|
|
|
" return false;"
|
|
|
|
"};"
|
|
|
|
"f();");
|
2018-09-24 11:05:31 +00:00
|
|
|
CHECK(value->BooleanValue(isolate));
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test that we ignore null interceptors.
|
|
|
|
THREADED_TEST(NullNamedInterceptor) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
static_cast<v8::GenericNamedPropertyGetterCallback>(nullptr)));
|
2015-02-06 12:07:48 +00:00
|
|
|
LocalContext context;
|
|
|
|
templ->Set(CcTest::isolate(), "x", v8_num(42));
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Object> obj =
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()->Set(context.local(), v8_str("obj"), obj).FromJust();
|
|
|
|
v8::Local<Value> value = CompileRun("obj.x");
|
2015-02-06 12:07:48 +00:00
|
|
|
CHECK(value->IsInt32());
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Test that we ignore null interceptors.
|
|
|
|
THREADED_TEST(NullIndexedInterceptor) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> templ = ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
2018-09-13 14:55:18 +00:00
|
|
|
static_cast<v8::IndexedPropertyGetterCallback>(nullptr)));
|
2015-02-06 12:07:48 +00:00
|
|
|
LocalContext context;
|
|
|
|
templ->Set(CcTest::isolate(), "42", v8_num(42));
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Object> obj =
|
|
|
|
templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()->Set(context.local(), v8_str("obj"), obj).FromJust();
|
|
|
|
v8::Local<Value> value = CompileRun("obj[42]");
|
2015-02-06 12:07:48 +00:00
|
|
|
CHECK(value->IsInt32());
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK_EQ(42, value->Int32Value(context.local()).FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(NamedPropertyHandlerGetterAttributes) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
templ->InstanceTemplate()->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(InterceptorLoadXICGetter));
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("obj"), templ->GetFunction(env.local())
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(env.local())
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
ExpectTrue("obj.x === 42");
|
|
|
|
ExpectTrue("!obj.propertyIsEnumerable('x')");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(Regress256330) {
|
2017-04-28 13:33:43 +00:00
|
|
|
if (!i::FLAG_opt) return;
|
2015-02-06 12:07:48 +00:00
|
|
|
i::FLAG_allow_natives_syntax = true;
|
|
|
|
LocalContext context;
|
|
|
|
v8::HandleScope scope(context->GetIsolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(context->GetIsolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddInterceptor(templ, InterceptorGetter, InterceptorSetter);
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("Bug"),
|
|
|
|
templ->GetFunction(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"\"use strict\"; var o = new Bug;"
|
|
|
|
"function f(o) { o.x = 10; };"
|
2019-04-30 11:04:41 +00:00
|
|
|
"%PrepareFunctionForOptimization(f);"
|
2015-02-06 12:07:48 +00:00
|
|
|
"f(o); f(o); f(o);"
|
|
|
|
"%OptimizeFunctionOnNextCall(f);"
|
|
|
|
"f(o);");
|
2017-01-27 10:13:53 +00:00
|
|
|
int status = v8_run_int32value(v8_compile("%GetOptimizationStatus(f)"));
|
|
|
|
int mask = static_cast<int>(i::OptimizationStatus::kIsFunction) |
|
|
|
|
static_cast<int>(i::OptimizationStatus::kOptimized);
|
|
|
|
CHECK_EQ(mask, status & mask);
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
|
|
|
|
2018-08-23 11:34:44 +00:00
|
|
|
THREADED_TEST(OptimizedInterceptorSetter) {
|
2015-02-06 12:07:48 +00:00
|
|
|
i::FLAG_allow_natives_syntax = true;
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddInterceptor(templ, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Obj"),
|
|
|
|
templ->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var obj = new Obj;"
|
|
|
|
// Initialize fields to avoid transitions later.
|
|
|
|
"obj.age = 0;"
|
|
|
|
"obj.accessor_age = 42;"
|
|
|
|
"function setter(i) { this.accessor_age = i; };"
|
|
|
|
"function getter() { return this.accessor_age; };"
|
|
|
|
"function setAge(i) { obj.age = i; };"
|
|
|
|
"Object.defineProperty(obj, 'age', { get:getter, set:setter });"
|
2019-04-30 11:04:41 +00:00
|
|
|
"%PrepareFunctionForOptimization(setAge);"
|
2015-02-06 12:07:48 +00:00
|
|
|
"setAge(1);"
|
|
|
|
"setAge(2);"
|
|
|
|
"setAge(3);"
|
|
|
|
"%OptimizeFunctionOnNextCall(setAge);"
|
|
|
|
"setAge(4);");
|
|
|
|
// All stores went through the interceptor.
|
|
|
|
ExpectInt32("obj.interceptor_age", 4);
|
|
|
|
ExpectInt32("obj.accessor_age", 42);
|
|
|
|
}
|
|
|
|
|
2018-08-23 11:34:44 +00:00
|
|
|
THREADED_TEST(OptimizedInterceptorGetter) {
|
2015-02-06 12:07:48 +00:00
|
|
|
i::FLAG_allow_natives_syntax = true;
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddInterceptor(templ, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Obj"),
|
|
|
|
templ->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var obj = new Obj;"
|
|
|
|
// Initialize fields to avoid transitions later.
|
|
|
|
"obj.age = 1;"
|
|
|
|
"obj.accessor_age = 42;"
|
|
|
|
"function getter() { return this.accessor_age; };"
|
|
|
|
"function getAge() { return obj.interceptor_age; };"
|
|
|
|
"Object.defineProperty(obj, 'interceptor_age', { get:getter });"
|
2019-04-30 11:04:41 +00:00
|
|
|
"%PrepareFunctionForOptimization(getAge);"
|
2015-02-06 12:07:48 +00:00
|
|
|
"getAge();"
|
|
|
|
"getAge();"
|
|
|
|
"getAge();"
|
|
|
|
"%OptimizeFunctionOnNextCall(getAge);");
|
|
|
|
// Access through interceptor.
|
|
|
|
ExpectInt32("getAge()", 1);
|
|
|
|
}
|
|
|
|
|
2018-08-23 11:34:44 +00:00
|
|
|
THREADED_TEST(OptimizedInterceptorFieldRead) {
|
2015-02-06 12:07:48 +00:00
|
|
|
i::FLAG_allow_natives_syntax = true;
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddInterceptor(templ, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Obj"),
|
|
|
|
templ->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var obj = new Obj;"
|
|
|
|
"obj.__proto__.interceptor_age = 42;"
|
|
|
|
"obj.age = 100;"
|
2019-04-30 11:04:41 +00:00
|
|
|
"function getAge() { return obj.interceptor_age; };"
|
|
|
|
"%PrepareFunctionForOptimization(getAge);");
|
2015-02-06 12:07:48 +00:00
|
|
|
ExpectInt32("getAge();", 100);
|
|
|
|
ExpectInt32("getAge();", 100);
|
|
|
|
ExpectInt32("getAge();", 100);
|
|
|
|
CompileRun("%OptimizeFunctionOnNextCall(getAge);");
|
|
|
|
// Access through interceptor.
|
|
|
|
ExpectInt32("getAge();", 100);
|
|
|
|
}
|
|
|
|
|
2018-08-23 11:34:44 +00:00
|
|
|
THREADED_TEST(OptimizedInterceptorFieldWrite) {
|
2015-02-06 12:07:48 +00:00
|
|
|
i::FLAG_allow_natives_syntax = true;
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddInterceptor(templ, InterceptorGetter, InterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Obj"),
|
|
|
|
templ->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var obj = new Obj;"
|
|
|
|
"obj.age = 100000;"
|
|
|
|
"function setAge(i) { obj.age = i };"
|
2019-04-30 11:04:41 +00:00
|
|
|
"%PrepareFunctionForOptimization(setAge);"
|
2015-02-06 12:07:48 +00:00
|
|
|
"setAge(100);"
|
|
|
|
"setAge(101);"
|
|
|
|
"setAge(102);"
|
|
|
|
"%OptimizeFunctionOnNextCall(setAge);"
|
|
|
|
"setAge(103);");
|
|
|
|
ExpectInt32("obj.age", 100000);
|
|
|
|
ExpectInt32("obj.interceptor_age", 103);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(Regress149912) {
|
|
|
|
LocalContext context;
|
|
|
|
v8::HandleScope scope(context->GetIsolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(context->GetIsolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddInterceptor(templ, EmptyInterceptorGetter, EmptyInterceptorSetter);
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("Bug"),
|
|
|
|
templ->GetFunction(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun("Number.prototype.__proto__ = new Bug; var x = 0; x.foo();");
|
|
|
|
}
|
|
|
|
|
2016-07-25 12:30:45 +00:00
|
|
|
THREADED_TEST(Regress625155) {
|
|
|
|
LocalContext context;
|
|
|
|
v8::HandleScope scope(context->GetIsolate());
|
|
|
|
Local<FunctionTemplate> templ = FunctionTemplate::New(context->GetIsolate());
|
|
|
|
AddInterceptor(templ, EmptyInterceptorGetter, EmptyInterceptorSetter);
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("Bug"),
|
|
|
|
templ->GetFunction(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
CompileRun(
|
|
|
|
"Number.prototype.__proto__ = new Bug;"
|
|
|
|
"var x;"
|
2017-12-02 00:30:37 +00:00
|
|
|
"x = 0xDEAD;"
|
2016-07-25 12:30:45 +00:00
|
|
|
"x.boom = 0;"
|
|
|
|
"x = 's';"
|
|
|
|
"x.boom = 0;"
|
|
|
|
"x = 1.5;"
|
|
|
|
"x.boom = 0;");
|
|
|
|
}
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
THREADED_TEST(Regress125988) {
|
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2015-12-08 18:38:37 +00:00
|
|
|
Local<FunctionTemplate> intercept = FunctionTemplate::New(CcTest::isolate());
|
2015-02-06 12:07:48 +00:00
|
|
|
AddInterceptor(intercept, EmptyInterceptorGetter, EmptyInterceptorSetter);
|
|
|
|
LocalContext env;
|
2015-12-08 18:38:37 +00:00
|
|
|
env->Global()
|
|
|
|
->Set(env.local(), v8_str("Intercept"),
|
|
|
|
intercept->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun(
|
|
|
|
"var a = new Object();"
|
|
|
|
"var b = new Intercept();"
|
|
|
|
"var c = new Object();"
|
|
|
|
"c.__proto__ = b;"
|
|
|
|
"b.__proto__ = a;"
|
|
|
|
"a.x = 23;"
|
|
|
|
"for (var i = 0; i < 3; i++) c.x;");
|
|
|
|
ExpectBoolean("c.hasOwnProperty('x')", false);
|
|
|
|
ExpectInt32("c.x", 23);
|
|
|
|
CompileRun(
|
|
|
|
"a.y = 42;"
|
|
|
|
"for (var i = 0; i < 3; i++) c.x;");
|
|
|
|
ExpectBoolean("c.hasOwnProperty('x')", false);
|
|
|
|
ExpectInt32("c.x", 23);
|
|
|
|
ExpectBoolean("c.hasOwnProperty('y')", false);
|
|
|
|
ExpectInt32("c.y", 42);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void IndexedPropertyEnumerator(
|
|
|
|
const v8::PropertyCallbackInfo<v8::Array>& info) {
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Array> result = v8::Array::New(info.GetIsolate(), 1);
|
|
|
|
result->Set(info.GetIsolate()->GetCurrentContext(), 0,
|
|
|
|
v8::Integer::New(info.GetIsolate(), 7))
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void NamedPropertyEnumerator(
|
|
|
|
const v8::PropertyCallbackInfo<v8::Array>& info) {
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Array> result = v8::Array::New(info.GetIsolate(), 2);
|
|
|
|
v8::Local<v8::Context> context = info.GetIsolate()->GetCurrentContext();
|
|
|
|
result->Set(context, 0, v8_str("x")).FromJust();
|
|
|
|
result->Set(context, 1, v8::Symbol::GetIterator(info.GetIsolate()))
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
info.GetReturnValue().Set(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(GetOwnPropertyNamesWithInterceptor) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> obj_template = v8::ObjectTemplate::New(isolate);
|
2015-02-06 12:07:48 +00:00
|
|
|
|
2020-09-09 11:07:28 +00:00
|
|
|
obj_template->Set(isolate, "7", v8::Integer::New(isolate, 7));
|
|
|
|
obj_template->Set(isolate, "x", v8::Integer::New(isolate, 42));
|
2015-02-06 12:07:48 +00:00
|
|
|
obj_template->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
2017-10-13 16:33:03 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, IndexedPropertyEnumerator));
|
2015-02-06 12:07:48 +00:00
|
|
|
obj_template->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2017-10-13 16:33:03 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, NamedPropertyEnumerator));
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Object> global = context->Global();
|
|
|
|
global->Set(context.local(), v8_str("object"),
|
|
|
|
obj_template->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-02-06 12:07:48 +00:00
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Value> result =
|
2015-02-06 12:07:48 +00:00
|
|
|
CompileRun("Object.getOwnPropertyNames(object)");
|
|
|
|
CHECK(result->IsArray());
|
2020-11-27 16:06:57 +00:00
|
|
|
v8::Local<v8::Array> result_array = result.As<v8::Array>();
|
2015-02-06 12:07:48 +00:00
|
|
|
CHECK_EQ(2u, result_array->Length());
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(result_array->Get(context.local(), 0).ToLocalChecked()->IsString());
|
|
|
|
CHECK(result_array->Get(context.local(), 1).ToLocalChecked()->IsString());
|
|
|
|
CHECK(v8_str("7")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result_array->Get(context.local(), 0).ToLocalChecked())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_str("x")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result_array->Get(context.local(), 1).ToLocalChecked())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
result = CompileRun("var ret = []; for (var k in object) ret.push(k); ret");
|
|
|
|
CHECK(result->IsArray());
|
2020-11-27 16:06:57 +00:00
|
|
|
result_array = result.As<v8::Array>();
|
2015-02-06 12:07:48 +00:00
|
|
|
CHECK_EQ(2u, result_array->Length());
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(result_array->Get(context.local(), 0).ToLocalChecked()->IsString());
|
|
|
|
CHECK(result_array->Get(context.local(), 1).ToLocalChecked()->IsString());
|
|
|
|
CHECK(v8_str("7")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result_array->Get(context.local(), 0).ToLocalChecked())
|
|
|
|
.FromJust());
|
|
|
|
CHECK(v8_str("x")
|
|
|
|
->Equals(context.local(),
|
|
|
|
result_array->Get(context.local(), 1).ToLocalChecked())
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
|
|
|
|
result = CompileRun("Object.getOwnPropertySymbols(object)");
|
|
|
|
CHECK(result->IsArray());
|
2020-11-27 16:06:57 +00:00
|
|
|
result_array = result.As<v8::Array>();
|
2015-02-06 12:07:48 +00:00
|
|
|
CHECK_EQ(1u, result_array->Length());
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(result_array->Get(context.local(), 0)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->Equals(context.local(), v8::Symbol::GetIterator(isolate))
|
|
|
|
.FromJust());
|
2015-02-06 12:07:48 +00:00
|
|
|
}
|
2015-02-09 11:33:36 +00:00
|
|
|
|
|
|
|
|
2015-10-26 17:24:17 +00:00
|
|
|
static void IndexedPropertyEnumeratorException(
|
|
|
|
const v8::PropertyCallbackInfo<v8::Array>& info) {
|
|
|
|
info.GetIsolate()->ThrowException(v8_num(42));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(GetOwnPropertyNamesWithIndexedInterceptorExceptions_regress4026) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> obj_template = v8::ObjectTemplate::New(isolate);
|
2015-10-26 17:24:17 +00:00
|
|
|
|
2020-09-09 11:07:28 +00:00
|
|
|
obj_template->Set(isolate, "7", v8::Integer::New(isolate, 7));
|
|
|
|
obj_template->Set(isolate, "x", v8::Integer::New(isolate, 42));
|
2015-10-26 17:24:17 +00:00
|
|
|
// First just try a failing indexed interceptor.
|
|
|
|
obj_template->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
2017-10-13 16:33:03 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, IndexedPropertyEnumeratorException));
|
2015-10-26 17:24:17 +00:00
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Object> global = context->Global();
|
|
|
|
global->Set(context.local(), v8_str("object"),
|
|
|
|
obj_template->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
v8::Local<v8::Value> result = CompileRun(
|
2015-10-26 17:24:17 +00:00
|
|
|
"var result = []; "
|
|
|
|
"try { "
|
|
|
|
" for (var k in object) result .push(k);"
|
|
|
|
"} catch (e) {"
|
|
|
|
" result = e"
|
|
|
|
"}"
|
|
|
|
"result ");
|
|
|
|
CHECK(!result->IsArray());
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_num(42)->Equals(context.local(), result).FromJust());
|
2015-10-26 17:24:17 +00:00
|
|
|
|
|
|
|
result = CompileRun(
|
|
|
|
"var result = [];"
|
|
|
|
"try { "
|
|
|
|
" result = Object.keys(object);"
|
|
|
|
"} catch (e) {"
|
|
|
|
" result = e;"
|
|
|
|
"}"
|
|
|
|
"result");
|
|
|
|
CHECK(!result->IsArray());
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_num(42)->Equals(context.local(), result).FromJust());
|
2015-10-26 17:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void NamedPropertyEnumeratorException(
|
|
|
|
const v8::PropertyCallbackInfo<v8::Array>& info) {
|
|
|
|
info.GetIsolate()->ThrowException(v8_num(43));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(GetOwnPropertyNamesWithNamedInterceptorExceptions_regress4026) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::ObjectTemplate> obj_template = v8::ObjectTemplate::New(isolate);
|
2015-10-26 17:24:17 +00:00
|
|
|
|
2020-09-09 11:07:28 +00:00
|
|
|
obj_template->Set(isolate, "7", v8::Integer::New(isolate, 7));
|
|
|
|
obj_template->Set(isolate, "x", v8::Integer::New(isolate, 42));
|
2015-10-26 17:24:17 +00:00
|
|
|
// First just try a failing indexed interceptor.
|
|
|
|
obj_template->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2017-10-13 16:33:03 +00:00
|
|
|
nullptr, nullptr, nullptr, nullptr, NamedPropertyEnumeratorException));
|
2015-10-26 17:24:17 +00:00
|
|
|
|
|
|
|
LocalContext context;
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Object> global = context->Global();
|
|
|
|
global->Set(context.local(), v8_str("object"),
|
|
|
|
obj_template->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-10-26 17:24:17 +00:00
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
v8::Local<v8::Value> result = CompileRun(
|
2015-10-26 17:24:17 +00:00
|
|
|
"var result = []; "
|
|
|
|
"try { "
|
|
|
|
" for (var k in object) result.push(k);"
|
|
|
|
"} catch (e) {"
|
|
|
|
" result = e"
|
|
|
|
"}"
|
|
|
|
"result");
|
|
|
|
CHECK(!result->IsArray());
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_num(43)->Equals(context.local(), result).FromJust());
|
2015-10-26 17:24:17 +00:00
|
|
|
|
|
|
|
result = CompileRun(
|
|
|
|
"var result = [];"
|
|
|
|
"try { "
|
|
|
|
" result = Object.keys(object);"
|
|
|
|
"} catch (e) {"
|
|
|
|
" result = e;"
|
|
|
|
"}"
|
|
|
|
"result");
|
|
|
|
CHECK(!result->IsArray());
|
2015-12-08 18:38:37 +00:00
|
|
|
CHECK(v8_num(43)->Equals(context.local(), result).FromJust());
|
2015-10-26 17:24:17 +00:00
|
|
|
}
|
|
|
|
|
2015-02-09 11:33:36 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
Local<Object> BuildWrappedObject(v8::Isolate* isolate, T* data) {
|
|
|
|
auto templ = v8::ObjectTemplate::New(isolate);
|
|
|
|
templ->SetInternalFieldCount(1);
|
2015-12-08 18:38:37 +00:00
|
|
|
auto instance =
|
|
|
|
templ->NewInstance(isolate->GetCurrentContext()).ToLocalChecked();
|
2015-02-09 11:33:36 +00:00
|
|
|
instance->SetAlignedPointerInInternalField(0, data);
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T* GetWrappedObject(Local<Value> data) {
|
|
|
|
return reinterpret_cast<T*>(
|
|
|
|
Object::Cast(*data)->GetAlignedPointerFromInternalField(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct AccessCheckData {
|
|
|
|
int count;
|
|
|
|
bool result;
|
|
|
|
};
|
|
|
|
|
2015-10-23 08:13:24 +00:00
|
|
|
AccessCheckData* g_access_check_data = nullptr;
|
2015-02-09 11:33:36 +00:00
|
|
|
|
2015-10-23 08:13:24 +00:00
|
|
|
bool SimpleAccessChecker(Local<v8::Context> accessing_context,
|
2016-02-03 10:02:26 +00:00
|
|
|
Local<v8::Object> access_object,
|
|
|
|
Local<v8::Value> data) {
|
2015-10-23 08:13:24 +00:00
|
|
|
g_access_check_data->count++;
|
|
|
|
return g_access_check_data->result;
|
2015-02-09 11:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct ShouldInterceptData {
|
|
|
|
int value;
|
|
|
|
bool should_intercept;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void ShouldNamedInterceptor(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(ShouldNamedInterceptor));
|
|
|
|
auto data = GetWrappedObject<ShouldInterceptData>(info.Data());
|
|
|
|
if (!data->should_intercept) return;
|
|
|
|
info.GetReturnValue().Set(v8_num(data->value));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ShouldIndexedInterceptor(uint32_t,
|
|
|
|
const v8::PropertyCallbackInfo<Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
CheckReturnValue(info, FUNCTION_ADDR(ShouldIndexedInterceptor));
|
|
|
|
auto data = GetWrappedObject<ShouldInterceptData>(info.Data());
|
|
|
|
if (!data->should_intercept) return;
|
|
|
|
info.GetReturnValue().Set(v8_num(data->value));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
2015-10-23 08:13:24 +00:00
|
|
|
TEST(NamedAllCanReadInterceptor) {
|
2015-02-09 11:33:36 +00:00
|
|
|
auto isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
LocalContext context;
|
|
|
|
|
|
|
|
AccessCheckData access_check_data;
|
2015-07-02 09:05:39 +00:00
|
|
|
access_check_data.result = true;
|
2015-02-09 11:33:36 +00:00
|
|
|
access_check_data.count = 0;
|
|
|
|
|
2015-10-23 08:13:24 +00:00
|
|
|
g_access_check_data = &access_check_data;
|
|
|
|
|
2015-02-09 11:33:36 +00:00
|
|
|
ShouldInterceptData intercept_data_0;
|
|
|
|
intercept_data_0.value = 239;
|
|
|
|
intercept_data_0.should_intercept = true;
|
|
|
|
|
|
|
|
ShouldInterceptData intercept_data_1;
|
|
|
|
intercept_data_1.value = 165;
|
|
|
|
intercept_data_1.should_intercept = false;
|
|
|
|
|
|
|
|
auto intercepted_0 = v8::ObjectTemplate::New(isolate);
|
|
|
|
{
|
|
|
|
v8::NamedPropertyHandlerConfiguration conf(ShouldNamedInterceptor);
|
|
|
|
conf.flags = v8::PropertyHandlerFlags::kAllCanRead;
|
|
|
|
conf.data =
|
|
|
|
BuildWrappedObject<ShouldInterceptData>(isolate, &intercept_data_0);
|
|
|
|
intercepted_0->SetHandler(conf);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto intercepted_1 = v8::ObjectTemplate::New(isolate);
|
|
|
|
{
|
|
|
|
v8::NamedPropertyHandlerConfiguration conf(ShouldNamedInterceptor);
|
|
|
|
conf.flags = v8::PropertyHandlerFlags::kAllCanRead;
|
|
|
|
conf.data =
|
|
|
|
BuildWrappedObject<ShouldInterceptData>(isolate, &intercept_data_1);
|
|
|
|
intercepted_1->SetHandler(conf);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto checked = v8::ObjectTemplate::New(isolate);
|
2015-10-23 08:13:24 +00:00
|
|
|
checked->SetAccessCheckCallback(SimpleAccessChecker);
|
2015-02-09 11:33:36 +00:00
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("intercepted_0"),
|
|
|
|
intercepted_0->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("intercepted_1"),
|
|
|
|
intercepted_1->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
auto checked_instance =
|
|
|
|
checked->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
checked_instance->Set(context.local(), v8_str("whatever"), v8_num(17))
|
|
|
|
.FromJust();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("checked"), checked_instance)
|
|
|
|
.FromJust();
|
2015-02-09 11:33:36 +00:00
|
|
|
CompileRun(
|
|
|
|
"checked.__proto__ = intercepted_1;"
|
|
|
|
"intercepted_1.__proto__ = intercepted_0;");
|
|
|
|
|
2015-07-02 09:05:39 +00:00
|
|
|
CHECK_EQ(3, access_check_data.count);
|
2015-02-09 11:33:36 +00:00
|
|
|
|
|
|
|
ExpectInt32("checked.whatever", 17);
|
2015-03-24 16:09:59 +00:00
|
|
|
CHECK(!CompileRun("Object.getOwnPropertyDescriptor(checked, 'whatever')")
|
|
|
|
->IsUndefined());
|
2018-07-16 23:18:04 +00:00
|
|
|
CHECK_EQ(5, access_check_data.count);
|
2015-02-09 11:33:36 +00:00
|
|
|
|
|
|
|
access_check_data.result = false;
|
|
|
|
ExpectInt32("checked.whatever", intercept_data_0.value);
|
2015-03-24 16:09:59 +00:00
|
|
|
{
|
|
|
|
v8::TryCatch try_catch(isolate);
|
|
|
|
CompileRun("Object.getOwnPropertyDescriptor(checked, 'whatever')");
|
|
|
|
CHECK(try_catch.HasCaught());
|
|
|
|
}
|
2018-07-16 23:18:04 +00:00
|
|
|
CHECK_EQ(8, access_check_data.count);
|
2015-02-09 11:33:36 +00:00
|
|
|
|
|
|
|
intercept_data_1.should_intercept = true;
|
|
|
|
ExpectInt32("checked.whatever", intercept_data_1.value);
|
2015-03-24 16:09:59 +00:00
|
|
|
{
|
|
|
|
v8::TryCatch try_catch(isolate);
|
|
|
|
CompileRun("Object.getOwnPropertyDescriptor(checked, 'whatever')");
|
|
|
|
CHECK(try_catch.HasCaught());
|
|
|
|
}
|
2018-07-16 23:18:04 +00:00
|
|
|
CHECK_EQ(11, access_check_data.count);
|
2015-10-23 08:13:24 +00:00
|
|
|
g_access_check_data = nullptr;
|
2015-02-09 11:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-23 08:13:24 +00:00
|
|
|
TEST(IndexedAllCanReadInterceptor) {
|
2015-02-09 11:33:36 +00:00
|
|
|
auto isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
LocalContext context;
|
|
|
|
|
|
|
|
AccessCheckData access_check_data;
|
2015-07-02 09:05:39 +00:00
|
|
|
access_check_data.result = true;
|
2015-02-09 11:33:36 +00:00
|
|
|
access_check_data.count = 0;
|
|
|
|
|
2015-10-23 08:13:24 +00:00
|
|
|
g_access_check_data = &access_check_data;
|
|
|
|
|
2015-02-09 11:33:36 +00:00
|
|
|
ShouldInterceptData intercept_data_0;
|
|
|
|
intercept_data_0.value = 239;
|
|
|
|
intercept_data_0.should_intercept = true;
|
|
|
|
|
|
|
|
ShouldInterceptData intercept_data_1;
|
|
|
|
intercept_data_1.value = 165;
|
|
|
|
intercept_data_1.should_intercept = false;
|
|
|
|
|
|
|
|
auto intercepted_0 = v8::ObjectTemplate::New(isolate);
|
|
|
|
{
|
|
|
|
v8::IndexedPropertyHandlerConfiguration conf(ShouldIndexedInterceptor);
|
|
|
|
conf.flags = v8::PropertyHandlerFlags::kAllCanRead;
|
|
|
|
conf.data =
|
|
|
|
BuildWrappedObject<ShouldInterceptData>(isolate, &intercept_data_0);
|
|
|
|
intercepted_0->SetHandler(conf);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto intercepted_1 = v8::ObjectTemplate::New(isolate);
|
|
|
|
{
|
|
|
|
v8::IndexedPropertyHandlerConfiguration conf(ShouldIndexedInterceptor);
|
|
|
|
conf.flags = v8::PropertyHandlerFlags::kAllCanRead;
|
|
|
|
conf.data =
|
|
|
|
BuildWrappedObject<ShouldInterceptData>(isolate, &intercept_data_1);
|
|
|
|
intercepted_1->SetHandler(conf);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto checked = v8::ObjectTemplate::New(isolate);
|
2015-10-23 08:13:24 +00:00
|
|
|
checked->SetAccessCheckCallback(SimpleAccessChecker);
|
2015-02-09 11:33:36 +00:00
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("intercepted_0"),
|
|
|
|
intercepted_0->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("intercepted_1"),
|
|
|
|
intercepted_1->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
auto checked_instance =
|
|
|
|
checked->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("checked"), checked_instance)
|
|
|
|
.FromJust();
|
|
|
|
checked_instance->Set(context.local(), 15, v8_num(17)).FromJust();
|
2015-02-09 11:33:36 +00:00
|
|
|
CompileRun(
|
|
|
|
"checked.__proto__ = intercepted_1;"
|
|
|
|
"intercepted_1.__proto__ = intercepted_0;");
|
|
|
|
|
2015-07-02 09:05:39 +00:00
|
|
|
CHECK_EQ(3, access_check_data.count);
|
2015-02-09 11:33:36 +00:00
|
|
|
|
|
|
|
access_check_data.result = true;
|
|
|
|
ExpectInt32("checked[15]", 17);
|
2015-03-24 16:09:59 +00:00
|
|
|
CHECK(!CompileRun("Object.getOwnPropertyDescriptor(checked, '15')")
|
|
|
|
->IsUndefined());
|
2018-07-16 23:18:04 +00:00
|
|
|
CHECK_EQ(5, access_check_data.count);
|
2015-02-09 11:33:36 +00:00
|
|
|
|
|
|
|
access_check_data.result = false;
|
|
|
|
ExpectInt32("checked[15]", intercept_data_0.value);
|
2015-06-02 11:10:50 +00:00
|
|
|
{
|
|
|
|
v8::TryCatch try_catch(isolate);
|
|
|
|
CompileRun("Object.getOwnPropertyDescriptor(checked, '15')");
|
|
|
|
CHECK(try_catch.HasCaught());
|
|
|
|
}
|
2018-07-16 23:18:04 +00:00
|
|
|
CHECK_EQ(8, access_check_data.count);
|
2015-02-09 11:33:36 +00:00
|
|
|
|
|
|
|
intercept_data_1.should_intercept = true;
|
|
|
|
ExpectInt32("checked[15]", intercept_data_1.value);
|
2015-06-02 11:10:50 +00:00
|
|
|
{
|
|
|
|
v8::TryCatch try_catch(isolate);
|
|
|
|
CompileRun("Object.getOwnPropertyDescriptor(checked, '15')");
|
|
|
|
CHECK(try_catch.HasCaught());
|
|
|
|
}
|
2018-07-16 23:18:04 +00:00
|
|
|
CHECK_EQ(11, access_check_data.count);
|
2015-10-23 08:13:24 +00:00
|
|
|
|
|
|
|
g_access_check_data = nullptr;
|
2015-02-09 11:33:36 +00:00
|
|
|
}
|
2015-03-18 12:50:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(NonMaskingInterceptorOwnProperty) {
|
|
|
|
auto isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
LocalContext context;
|
|
|
|
|
|
|
|
ShouldInterceptData intercept_data;
|
|
|
|
intercept_data.value = 239;
|
|
|
|
intercept_data.should_intercept = true;
|
|
|
|
|
|
|
|
auto interceptor_templ = v8::ObjectTemplate::New(isolate);
|
|
|
|
v8::NamedPropertyHandlerConfiguration conf(ShouldNamedInterceptor);
|
|
|
|
conf.flags = v8::PropertyHandlerFlags::kNonMasking;
|
|
|
|
conf.data = BuildWrappedObject<ShouldInterceptData>(isolate, &intercept_data);
|
|
|
|
interceptor_templ->SetHandler(conf);
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
auto interceptor =
|
|
|
|
interceptor_templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"), interceptor)
|
|
|
|
.FromJust();
|
2015-03-18 12:50:41 +00:00
|
|
|
|
|
|
|
ExpectInt32("obj.whatever", 239);
|
|
|
|
|
|
|
|
CompileRun("obj.whatever = 4;");
|
2016-09-02 13:15:30 +00:00
|
|
|
|
|
|
|
// obj.whatever exists, thus it is not affected by the non-masking
|
|
|
|
// interceptor.
|
2015-03-18 12:50:41 +00:00
|
|
|
ExpectInt32("obj.whatever", 4);
|
|
|
|
|
|
|
|
CompileRun("delete obj.whatever;");
|
|
|
|
ExpectInt32("obj.whatever", 239);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(NonMaskingInterceptorPrototypeProperty) {
|
|
|
|
auto isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
LocalContext context;
|
|
|
|
|
|
|
|
ShouldInterceptData intercept_data;
|
|
|
|
intercept_data.value = 239;
|
|
|
|
intercept_data.should_intercept = true;
|
|
|
|
|
|
|
|
auto interceptor_templ = v8::ObjectTemplate::New(isolate);
|
|
|
|
v8::NamedPropertyHandlerConfiguration conf(ShouldNamedInterceptor);
|
|
|
|
conf.flags = v8::PropertyHandlerFlags::kNonMasking;
|
|
|
|
conf.data = BuildWrappedObject<ShouldInterceptData>(isolate, &intercept_data);
|
|
|
|
interceptor_templ->SetHandler(conf);
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
auto interceptor =
|
|
|
|
interceptor_templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"), interceptor)
|
|
|
|
.FromJust();
|
2015-03-18 12:50:41 +00:00
|
|
|
|
|
|
|
ExpectInt32("obj.whatever", 239);
|
|
|
|
|
|
|
|
CompileRun("obj.__proto__ = {'whatever': 4};");
|
|
|
|
ExpectInt32("obj.whatever", 4);
|
|
|
|
|
|
|
|
CompileRun("delete obj.__proto__.whatever;");
|
|
|
|
ExpectInt32("obj.whatever", 239);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(NonMaskingInterceptorPrototypePropertyIC) {
|
|
|
|
auto isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
LocalContext context;
|
|
|
|
|
|
|
|
ShouldInterceptData intercept_data;
|
|
|
|
intercept_data.value = 239;
|
|
|
|
intercept_data.should_intercept = true;
|
|
|
|
|
|
|
|
auto interceptor_templ = v8::ObjectTemplate::New(isolate);
|
|
|
|
v8::NamedPropertyHandlerConfiguration conf(ShouldNamedInterceptor);
|
|
|
|
conf.flags = v8::PropertyHandlerFlags::kNonMasking;
|
|
|
|
conf.data = BuildWrappedObject<ShouldInterceptData>(isolate, &intercept_data);
|
|
|
|
interceptor_templ->SetHandler(conf);
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
auto interceptor =
|
|
|
|
interceptor_templ->NewInstance(context.local()).ToLocalChecked();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"), interceptor)
|
|
|
|
.FromJust();
|
2015-03-18 12:50:41 +00:00
|
|
|
|
|
|
|
CompileRun(
|
|
|
|
"outer = {};"
|
|
|
|
"outer.__proto__ = obj;"
|
|
|
|
"function f(obj) {"
|
|
|
|
" var x;"
|
|
|
|
" for (var i = 0; i < 4; i++) {"
|
|
|
|
" x = obj.whatever;"
|
|
|
|
" }"
|
|
|
|
" return x;"
|
|
|
|
"}");
|
|
|
|
|
|
|
|
// Receiver == holder.
|
|
|
|
CompileRun("obj.__proto__ = null;");
|
|
|
|
ExpectInt32("f(obj)", 239);
|
|
|
|
ExpectInt32("f(outer)", 239);
|
|
|
|
|
|
|
|
// Receiver != holder.
|
|
|
|
CompileRun("Object.setPrototypeOf(obj, {});");
|
|
|
|
ExpectInt32("f(obj)", 239);
|
|
|
|
ExpectInt32("f(outer)", 239);
|
|
|
|
|
|
|
|
// Masked value on prototype.
|
|
|
|
CompileRun("obj.__proto__.whatever = 4;");
|
|
|
|
CompileRun("obj.__proto__.__proto__ = { 'whatever' : 5 };");
|
|
|
|
ExpectInt32("f(obj)", 4);
|
|
|
|
ExpectInt32("f(outer)", 4);
|
|
|
|
|
|
|
|
// Masked value on prototype prototype.
|
|
|
|
CompileRun("delete obj.__proto__.whatever;");
|
|
|
|
ExpectInt32("f(obj)", 5);
|
|
|
|
ExpectInt32("f(outer)", 5);
|
|
|
|
|
|
|
|
// Reset.
|
|
|
|
CompileRun("delete obj.__proto__.__proto__.whatever;");
|
|
|
|
ExpectInt32("f(obj)", 239);
|
|
|
|
ExpectInt32("f(outer)", 239);
|
|
|
|
|
|
|
|
// Masked value on self.
|
|
|
|
CompileRun("obj.whatever = 4;");
|
|
|
|
ExpectInt32("f(obj)", 4);
|
|
|
|
ExpectInt32("f(outer)", 4);
|
|
|
|
|
|
|
|
// Reset.
|
|
|
|
CompileRun("delete obj.whatever;");
|
|
|
|
ExpectInt32("f(obj)", 239);
|
|
|
|
ExpectInt32("f(outer)", 239);
|
|
|
|
|
|
|
|
CompileRun("outer.whatever = 4;");
|
|
|
|
ExpectInt32("f(obj)", 239);
|
|
|
|
ExpectInt32("f(outer)", 4);
|
|
|
|
}
|
2015-03-25 12:34:01 +00:00
|
|
|
|
2017-09-04 16:45:36 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
void ConcatNamedPropertyGetter(
|
|
|
|
Local<Name> name, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
info.GetReturnValue().Set(
|
|
|
|
// Return the property name concatenated with itself.
|
2018-07-24 13:56:11 +00:00
|
|
|
String::Concat(info.GetIsolate(), name.As<String>(), name.As<String>()));
|
2017-09-04 16:45:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConcatIndexedPropertyGetter(
|
|
|
|
uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
info.GetReturnValue().Set(
|
|
|
|
// Return the double value of the index.
|
|
|
|
v8_num(index + index));
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnumCallbackWithNames(const v8::PropertyCallbackInfo<v8::Array>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
v8::Local<v8::Array> result = v8::Array::New(info.GetIsolate(), 4);
|
|
|
|
v8::Local<v8::Context> context = info.GetIsolate()->GetCurrentContext();
|
|
|
|
CHECK(
|
|
|
|
result
|
|
|
|
->Set(context, v8::Integer::New(info.GetIsolate(), 0), v8_str("foo"))
|
|
|
|
.FromJust());
|
|
|
|
CHECK(
|
|
|
|
result
|
|
|
|
->Set(context, v8::Integer::New(info.GetIsolate(), 1), v8_str("bar"))
|
|
|
|
.FromJust());
|
|
|
|
CHECK(
|
|
|
|
result
|
|
|
|
->Set(context, v8::Integer::New(info.GetIsolate(), 2), v8_str("baz"))
|
|
|
|
.FromJust());
|
|
|
|
CHECK(
|
|
|
|
result->Set(context, v8::Integer::New(info.GetIsolate(), 3), v8_str("10"))
|
|
|
|
.FromJust());
|
|
|
|
|
|
|
|
// Create a holey array.
|
|
|
|
CHECK(result->Delete(context, v8::Integer::New(info.GetIsolate(), 1))
|
|
|
|
.FromJust());
|
|
|
|
info.GetReturnValue().Set(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnumCallbackWithIndices(const v8::PropertyCallbackInfo<v8::Array>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
v8::Local<v8::Array> result = v8::Array::New(info.GetIsolate(), 4);
|
|
|
|
v8::Local<v8::Context> context = info.GetIsolate()->GetCurrentContext();
|
|
|
|
|
|
|
|
CHECK(result->Set(context, v8::Integer::New(info.GetIsolate(), 0), v8_num(10))
|
|
|
|
.FromJust());
|
|
|
|
CHECK(result->Set(context, v8::Integer::New(info.GetIsolate(), 1), v8_num(11))
|
|
|
|
.FromJust());
|
|
|
|
CHECK(result->Set(context, v8::Integer::New(info.GetIsolate(), 2), v8_num(12))
|
|
|
|
.FromJust());
|
|
|
|
CHECK(result->Set(context, v8::Integer::New(info.GetIsolate(), 3), v8_num(14))
|
|
|
|
.FromJust());
|
|
|
|
|
|
|
|
// Create a holey array.
|
|
|
|
CHECK(result->Delete(context, v8::Integer::New(info.GetIsolate(), 1))
|
|
|
|
.FromJust());
|
|
|
|
info.GetReturnValue().Set(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RestrictiveNamedQuery(Local<Name> property,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
// Only "foo" is enumerable.
|
|
|
|
if (v8_str("foo")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), property)
|
|
|
|
.FromJust()) {
|
|
|
|
info.GetReturnValue().Set(v8::PropertyAttribute::None);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
info.GetReturnValue().Set(v8::PropertyAttribute::DontEnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RestrictiveIndexedQuery(
|
|
|
|
uint32_t index, const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
// Only index 2 and 12 are enumerable.
|
|
|
|
if (index == 2 || index == 12) {
|
|
|
|
info.GetReturnValue().Set(v8::PropertyAttribute::None);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
info.GetReturnValue().Set(v8::PropertyAttribute::DontEnum);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// Regression test for V8 bug 6627.
|
|
|
|
// Object.keys() must return enumerable keys only.
|
|
|
|
THREADED_TEST(EnumeratorsAndUnenumerableNamedProperties) {
|
|
|
|
// The enumerator interceptor returns a list
|
|
|
|
// of items which are filtered according to the
|
|
|
|
// properties defined in the query interceptor.
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::ObjectTemplate> obj = ObjectTemplate::New(isolate);
|
|
|
|
obj->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2017-10-13 16:33:03 +00:00
|
|
|
ConcatNamedPropertyGetter, nullptr, RestrictiveNamedQuery, nullptr,
|
2017-09-04 16:45:36 +00:00
|
|
|
EnumCallbackWithNames));
|
|
|
|
LocalContext context;
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"),
|
|
|
|
obj->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
|
|
|
ExpectInt32("Object.getOwnPropertyNames(obj).length", 3);
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[0]", "foo");
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[1]", "baz");
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[2]", "10");
|
|
|
|
|
|
|
|
ExpectTrue("Object.getOwnPropertyDescriptor(obj, 'foo').enumerable");
|
|
|
|
ExpectFalse("Object.getOwnPropertyDescriptor(obj, 'baz').enumerable");
|
|
|
|
|
|
|
|
ExpectInt32("Object.entries(obj).length", 1);
|
|
|
|
ExpectString("Object.entries(obj)[0][0]", "foo");
|
|
|
|
ExpectString("Object.entries(obj)[0][1]", "foofoo");
|
|
|
|
|
|
|
|
ExpectInt32("Object.keys(obj).length", 1);
|
|
|
|
ExpectString("Object.keys(obj)[0]", "foo");
|
|
|
|
|
|
|
|
ExpectInt32("Object.values(obj).length", 1);
|
|
|
|
ExpectString("Object.values(obj)[0]", "foofoo");
|
|
|
|
}
|
|
|
|
|
2017-09-05 21:40:20 +00:00
|
|
|
namespace {
|
|
|
|
void QueryInterceptorForFoo(Local<Name> property,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Integer>& info) {
|
|
|
|
// Don't intercept anything except "foo."
|
|
|
|
if (!v8_str("foo")
|
|
|
|
->Equals(info.GetIsolate()->GetCurrentContext(), property)
|
|
|
|
.FromJust()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// "foo" is enumerable.
|
|
|
|
info.GetReturnValue().Set(v8::PropertyAttribute::None);
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// Test that calls to the query interceptor are independent of each
|
|
|
|
// other.
|
|
|
|
THREADED_TEST(EnumeratorsAndUnenumerableNamedPropertiesWithoutSet) {
|
|
|
|
// The enumerator interceptor returns a list
|
|
|
|
// of items which are filtered according to the
|
|
|
|
// properties defined in the query interceptor.
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::ObjectTemplate> obj = ObjectTemplate::New(isolate);
|
|
|
|
obj->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2017-10-13 16:33:03 +00:00
|
|
|
ConcatNamedPropertyGetter, nullptr, QueryInterceptorForFoo, nullptr,
|
2017-09-05 21:40:20 +00:00
|
|
|
EnumCallbackWithNames));
|
|
|
|
LocalContext context;
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"),
|
|
|
|
obj->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
|
|
|
ExpectInt32("Object.getOwnPropertyNames(obj).length", 3);
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[0]", "foo");
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[1]", "baz");
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[2]", "10");
|
|
|
|
|
|
|
|
ExpectTrue("Object.getOwnPropertyDescriptor(obj, 'foo').enumerable");
|
|
|
|
ExpectInt32("Object.keys(obj).length", 1);
|
|
|
|
}
|
|
|
|
|
2017-09-04 16:45:36 +00:00
|
|
|
THREADED_TEST(EnumeratorsAndUnenumerableIndexedPropertiesArgumentsElements) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::ObjectTemplate> obj = ObjectTemplate::New(isolate);
|
|
|
|
obj->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
2017-10-13 16:33:03 +00:00
|
|
|
ConcatIndexedPropertyGetter, nullptr, RestrictiveIndexedQuery, nullptr,
|
2017-09-04 16:45:36 +00:00
|
|
|
SloppyArgsIndexedPropertyEnumerator));
|
|
|
|
LocalContext context;
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"),
|
|
|
|
obj->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
|
|
|
ExpectInt32("Object.getOwnPropertyNames(obj).length", 4);
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[0]", "0");
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[1]", "1");
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[2]", "2");
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[3]", "3");
|
|
|
|
|
|
|
|
ExpectTrue("Object.getOwnPropertyDescriptor(obj, '2').enumerable");
|
|
|
|
|
|
|
|
ExpectInt32("Object.entries(obj).length", 1);
|
|
|
|
ExpectString("Object.entries(obj)[0][0]", "2");
|
|
|
|
ExpectInt32("Object.entries(obj)[0][1]", 4);
|
|
|
|
|
|
|
|
ExpectInt32("Object.keys(obj).length", 1);
|
|
|
|
ExpectString("Object.keys(obj)[0]", "2");
|
|
|
|
|
|
|
|
ExpectInt32("Object.values(obj).length", 1);
|
|
|
|
ExpectInt32("Object.values(obj)[0]", 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
THREADED_TEST(EnumeratorsAndUnenumerableIndexedProperties) {
|
|
|
|
// The enumerator interceptor returns a list
|
|
|
|
// of items which are filtered according to the
|
|
|
|
// properties defined in the query interceptor.
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::ObjectTemplate> obj = ObjectTemplate::New(isolate);
|
|
|
|
obj->SetHandler(v8::IndexedPropertyHandlerConfiguration(
|
2017-10-13 16:33:03 +00:00
|
|
|
ConcatIndexedPropertyGetter, nullptr, RestrictiveIndexedQuery, nullptr,
|
2017-09-04 16:45:36 +00:00
|
|
|
EnumCallbackWithIndices));
|
|
|
|
LocalContext context;
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"),
|
|
|
|
obj->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
|
|
|
ExpectInt32("Object.getOwnPropertyNames(obj).length", 3);
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[0]", "10");
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[1]", "12");
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[2]", "14");
|
|
|
|
|
|
|
|
ExpectFalse("Object.getOwnPropertyDescriptor(obj, '10').enumerable");
|
|
|
|
ExpectTrue("Object.getOwnPropertyDescriptor(obj, '12').enumerable");
|
|
|
|
|
|
|
|
ExpectInt32("Object.entries(obj).length", 1);
|
|
|
|
ExpectString("Object.entries(obj)[0][0]", "12");
|
|
|
|
ExpectInt32("Object.entries(obj)[0][1]", 24);
|
|
|
|
|
|
|
|
ExpectInt32("Object.keys(obj).length", 1);
|
|
|
|
ExpectString("Object.keys(obj)[0]", "12");
|
|
|
|
|
|
|
|
ExpectInt32("Object.values(obj).length", 1);
|
|
|
|
ExpectInt32("Object.values(obj)[0]", 24);
|
|
|
|
}
|
2017-08-10 12:00:26 +00:00
|
|
|
|
2017-08-10 12:00:26 +00:00
|
|
|
THREADED_TEST(EnumeratorsAndForIn) {
|
|
|
|
v8::Isolate* isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::ObjectTemplate> obj = ObjectTemplate::New(isolate);
|
|
|
|
obj->SetHandler(v8::NamedPropertyHandlerConfiguration(
|
2017-10-13 16:33:03 +00:00
|
|
|
ConcatNamedPropertyGetter, nullptr, RestrictiveNamedQuery, nullptr,
|
|
|
|
NamedEnum));
|
2017-08-10 12:00:26 +00:00
|
|
|
LocalContext context;
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("obj"),
|
|
|
|
obj->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
|
|
|
|
ExpectInt32("Object.getOwnPropertyNames(obj).length", 3);
|
|
|
|
ExpectString("Object.getOwnPropertyNames(obj)[0]", "foo");
|
|
|
|
|
|
|
|
ExpectTrue("Object.getOwnPropertyDescriptor(obj, 'foo').enumerable");
|
|
|
|
|
|
|
|
CompileRun(
|
|
|
|
"let concat = '';"
|
|
|
|
"for(var prop in obj) {"
|
|
|
|
" concat += `key:${prop}:value:${obj[prop]}`;"
|
|
|
|
"}");
|
|
|
|
|
|
|
|
// Check that for...in only iterates over enumerable properties.
|
|
|
|
ExpectString("concat", "key:foo:value:foofoo");
|
|
|
|
}
|
|
|
|
|
2015-03-25 12:34:01 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
void DatabaseGetter(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
auto context = info.GetIsolate()->GetCurrentContext();
|
|
|
|
Local<v8::Object> db = info.Holder()
|
|
|
|
->GetRealNamedProperty(context, v8_str("db"))
|
|
|
|
.ToLocalChecked()
|
|
|
|
.As<v8::Object>();
|
|
|
|
if (!db->Has(context, name).FromJust()) return;
|
|
|
|
info.GetReturnValue().Set(db->Get(context, name).ToLocalChecked());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DatabaseSetter(Local<Name> name, Local<Value> value,
|
|
|
|
const v8::PropertyCallbackInfo<Value>& info) {
|
|
|
|
ApiTestFuzzer::Fuzz();
|
|
|
|
auto context = info.GetIsolate()->GetCurrentContext();
|
2015-12-08 18:38:37 +00:00
|
|
|
if (name->Equals(context, v8_str("db")).FromJust()) return;
|
2015-03-25 12:34:01 +00:00
|
|
|
Local<v8::Object> db = info.Holder()
|
|
|
|
->GetRealNamedProperty(context, v8_str("db"))
|
|
|
|
.ToLocalChecked()
|
|
|
|
.As<v8::Object>();
|
|
|
|
db->Set(context, name, value).FromJust();
|
|
|
|
info.GetReturnValue().Set(value);
|
|
|
|
}
|
2015-09-30 13:46:56 +00:00
|
|
|
|
|
|
|
} // namespace
|
2015-03-25 12:34:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
THREADED_TEST(NonMaskingInterceptorGlobalEvalRegression) {
|
|
|
|
auto isolate = CcTest::isolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
LocalContext context;
|
|
|
|
|
|
|
|
auto interceptor_templ = v8::ObjectTemplate::New(isolate);
|
|
|
|
v8::NamedPropertyHandlerConfiguration conf(DatabaseGetter, DatabaseSetter);
|
|
|
|
conf.flags = v8::PropertyHandlerFlags::kNonMasking;
|
|
|
|
interceptor_templ->SetHandler(conf);
|
|
|
|
|
2015-12-08 18:38:37 +00:00
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("intercepted_1"),
|
|
|
|
interceptor_templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
|
|
|
context->Global()
|
|
|
|
->Set(context.local(), v8_str("intercepted_2"),
|
|
|
|
interceptor_templ->NewInstance(context.local()).ToLocalChecked())
|
|
|
|
.FromJust();
|
2015-03-25 12:34:01 +00:00
|
|
|
|
|
|
|
// Init dbs.
|
|
|
|
CompileRun(
|
|
|
|
"intercepted_1.db = {};"
|
|
|
|
"intercepted_2.db = {};");
|
|
|
|
|
|
|
|
ExpectInt32(
|
|
|
|
"var obj = intercepted_1;"
|
|
|
|
"obj.x = 4;"
|
|
|
|
"eval('obj.x');"
|
|
|
|
"eval('obj.x');"
|
|
|
|
"eval('obj.x');"
|
|
|
|
"obj = intercepted_2;"
|
|
|
|
"obj.x = 9;"
|
|
|
|
"eval('obj.x');",
|
|
|
|
9);
|
|
|
|
}
|
2016-05-12 11:04:47 +00:00
|
|
|
|
|
|
|
static void CheckReceiver(Local<Name> name,
|
|
|
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
|
|
|
CHECK(info.This()->IsObject());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(Regress609134Interceptor) {
|
|
|
|
LocalContext env;
|
|
|
|
v8::Isolate* isolate = env->GetIsolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
auto fun_templ = v8::FunctionTemplate::New(isolate);
|
|
|
|
fun_templ->InstanceTemplate()->SetHandler(
|
|
|
|
v8::NamedPropertyHandlerConfiguration(CheckReceiver));
|
|
|
|
|
|
|
|
CHECK(env->Global()
|
|
|
|
->Set(env.local(), v8_str("Fun"),
|
|
|
|
fun_templ->GetFunction(env.local()).ToLocalChecked())
|
|
|
|
.FromJust());
|
|
|
|
|
|
|
|
CompileRun(
|
|
|
|
"var f = new Fun();"
|
|
|
|
"Number.prototype.__proto__ = f;"
|
|
|
|
"var a = 42;"
|
|
|
|
"for (var i = 0; i<3; i++) { a.foo; }");
|
|
|
|
}
|