Handlify and convert string.length to new API-style accessor.
BUG= R=dcarney@chromium.org, yangguo@chromium.org Review URL: https://codereview.chromium.org/230693003 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@20652 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
dcc142d547
commit
2564c72036
@ -37,11 +37,33 @@
|
|||||||
#include "isolate.h"
|
#include "isolate.h"
|
||||||
#include "list-inl.h"
|
#include "list-inl.h"
|
||||||
#include "property-details.h"
|
#include "property-details.h"
|
||||||
|
#include "api.h"
|
||||||
|
|
||||||
namespace v8 {
|
namespace v8 {
|
||||||
namespace internal {
|
namespace internal {
|
||||||
|
|
||||||
|
|
||||||
|
static Handle<AccessorInfo> MakeAccessor(Isolate* isolate,
|
||||||
|
Handle<String> name,
|
||||||
|
AccessorGetterCallback getter,
|
||||||
|
AccessorSetterCallback setter,
|
||||||
|
PropertyAttributes attributes) {
|
||||||
|
Factory* factory = isolate->factory();
|
||||||
|
Handle<ExecutableAccessorInfo> info = factory->NewExecutableAccessorInfo();
|
||||||
|
info->set_property_attributes(attributes);
|
||||||
|
info->set_all_can_read(true);
|
||||||
|
info->set_all_can_write(true);
|
||||||
|
info->set_prohibits_overwriting(true);
|
||||||
|
info->set_name(*factory->length_string());
|
||||||
|
info->set_property_attributes(attributes);
|
||||||
|
Handle<Object> get = v8::FromCData(isolate, getter);
|
||||||
|
Handle<Object> set = v8::FromCData(isolate, setter);
|
||||||
|
info->set_getter(*get);
|
||||||
|
if (!(attributes & ReadOnly)) info->set_setter(*set);
|
||||||
|
return info;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
template <class C>
|
template <class C>
|
||||||
static C* FindInstanceOf(Isolate* isolate, Object* obj) {
|
static C* FindInstanceOf(Isolate* isolate, Object* obj) {
|
||||||
for (Object* cur = obj; !cur->IsNull(); cur = cur->GetPrototype(isolate)) {
|
for (Object* cur = obj; !cur->IsNull(); cur = cur->GetPrototype(isolate)) {
|
||||||
@ -234,24 +256,42 @@ const AccessorDescriptor Accessors::ArrayLength = {
|
|||||||
// Accessors::StringLength
|
// Accessors::StringLength
|
||||||
//
|
//
|
||||||
|
|
||||||
|
void Accessors::StringLengthGetter(
|
||||||
MaybeObject* Accessors::StringGetLength(Isolate* isolate,
|
v8::Local<v8::String> name,
|
||||||
Object* object,
|
const v8::PropertyCallbackInfo<v8::Value>& info) {
|
||||||
void*) {
|
i::Isolate* isolate = reinterpret_cast<i::Isolate*>(info.GetIsolate());
|
||||||
Object* value = object;
|
DisallowHeapAllocation no_allocation;
|
||||||
if (object->IsJSValue()) value = JSValue::cast(object)->value();
|
HandleScope scope(isolate);
|
||||||
if (value->IsString()) return Smi::FromInt(String::cast(value)->length());
|
Object* value = *Utils::OpenHandle(*info.This());
|
||||||
// If object is not a string we return 0 to be compatible with WebKit.
|
Object* result;
|
||||||
// Note: Firefox returns the length of ToString(object).
|
if (value->IsJSValue()) value = JSValue::cast(value)->value();
|
||||||
return Smi::FromInt(0);
|
if (value->IsString()) {
|
||||||
|
result = Smi::FromInt(String::cast(value)->length());
|
||||||
|
} else {
|
||||||
|
// If object is not a string we return 0 to be compatible with WebKit.
|
||||||
|
// Note: Firefox returns the length of ToString(object).
|
||||||
|
result = Smi::FromInt(0);
|
||||||
|
}
|
||||||
|
info.GetReturnValue().Set(Utils::ToLocal(Handle<Object>(result, isolate)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
const AccessorDescriptor Accessors::StringLength = {
|
void Accessors::StringLengthSetter(
|
||||||
StringGetLength,
|
v8::Local<v8::String> name,
|
||||||
IllegalSetter,
|
v8::Local<v8::Value> value,
|
||||||
0
|
const v8::PropertyCallbackInfo<void>& info) {
|
||||||
};
|
UNREACHABLE();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Handle<AccessorInfo> Accessors::StringLengthInfo(
|
||||||
|
Isolate* isolate, PropertyAttributes attributes) {
|
||||||
|
return MakeAccessor(isolate,
|
||||||
|
isolate->factory()->length_string(),
|
||||||
|
&StringLengthGetter,
|
||||||
|
&StringLengthSetter,
|
||||||
|
attributes);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -43,7 +43,6 @@ namespace internal {
|
|||||||
V(FunctionArguments) \
|
V(FunctionArguments) \
|
||||||
V(FunctionCaller) \
|
V(FunctionCaller) \
|
||||||
V(ArrayLength) \
|
V(ArrayLength) \
|
||||||
V(StringLength) \
|
|
||||||
V(ScriptSource) \
|
V(ScriptSource) \
|
||||||
V(ScriptName) \
|
V(ScriptName) \
|
||||||
V(ScriptId) \
|
V(ScriptId) \
|
||||||
@ -57,6 +56,9 @@ namespace internal {
|
|||||||
V(ScriptEvalFromScriptPosition) \
|
V(ScriptEvalFromScriptPosition) \
|
||||||
V(ScriptEvalFromFunctionName)
|
V(ScriptEvalFromFunctionName)
|
||||||
|
|
||||||
|
#define ACCESSOR_INFO_LIST(V) \
|
||||||
|
V(StringLength) \
|
||||||
|
|
||||||
// Accessors contains all predefined proxy accessors.
|
// Accessors contains all predefined proxy accessors.
|
||||||
|
|
||||||
class Accessors : public AllStatic {
|
class Accessors : public AllStatic {
|
||||||
@ -67,11 +69,30 @@ class Accessors : public AllStatic {
|
|||||||
ACCESSOR_DESCRIPTOR_LIST(ACCESSOR_DESCRIPTOR_DECLARATION)
|
ACCESSOR_DESCRIPTOR_LIST(ACCESSOR_DESCRIPTOR_DECLARATION)
|
||||||
#undef ACCESSOR_DESCRIPTOR_DECLARATION
|
#undef ACCESSOR_DESCRIPTOR_DECLARATION
|
||||||
|
|
||||||
|
#define ACCESSOR_INFO_DECLARATION(name) \
|
||||||
|
static void name##Getter( \
|
||||||
|
v8::Local<v8::String> name, \
|
||||||
|
const v8::PropertyCallbackInfo<v8::Value>& info); \
|
||||||
|
static void name##Setter( \
|
||||||
|
v8::Local<v8::String> name, \
|
||||||
|
v8::Local<v8::Value> value, \
|
||||||
|
const v8::PropertyCallbackInfo<void>& info); \
|
||||||
|
static Handle<AccessorInfo> name##Info( \
|
||||||
|
Isolate* isolate, \
|
||||||
|
PropertyAttributes attributes);
|
||||||
|
ACCESSOR_INFO_LIST(ACCESSOR_INFO_DECLARATION)
|
||||||
|
#undef ACCESSOR_INFO_DECLARATION
|
||||||
|
|
||||||
enum DescriptorId {
|
enum DescriptorId {
|
||||||
#define ACCESSOR_DESCRIPTOR_DECLARATION(name) \
|
#define ACCESSOR_DESCRIPTOR_DECLARATION(name) \
|
||||||
k##name,
|
k##name,
|
||||||
ACCESSOR_DESCRIPTOR_LIST(ACCESSOR_DESCRIPTOR_DECLARATION)
|
ACCESSOR_DESCRIPTOR_LIST(ACCESSOR_DESCRIPTOR_DECLARATION)
|
||||||
#undef ACCESSOR_DESCRIPTOR_DECLARATION
|
#undef ACCESSOR_DESCRIPTOR_DECLARATION
|
||||||
|
#define ACCESSOR_INFO_DECLARATION(name) \
|
||||||
|
k##name##Getter, \
|
||||||
|
k##name##Setter,
|
||||||
|
ACCESSOR_INFO_LIST(ACCESSOR_INFO_DECLARATION)
|
||||||
|
#undef ACCESSOR_INFO_DECLARATION
|
||||||
descriptorCount
|
descriptorCount
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -92,7 +113,6 @@ class Accessors : public AllStatic {
|
|||||||
Handle<String> name,
|
Handle<String> name,
|
||||||
int* object_offset);
|
int* object_offset);
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Accessor functions only used through the descriptor.
|
// Accessor functions only used through the descriptor.
|
||||||
static MaybeObject* FunctionSetPrototype(Isolate* isolate,
|
static MaybeObject* FunctionSetPrototype(Isolate* isolate,
|
||||||
|
@ -920,10 +920,10 @@ void Genesis::InitializeGlobal(Handle<GlobalObject> inner_global,
|
|||||||
factory->NewDescriptorArray(0, 1));
|
factory->NewDescriptorArray(0, 1));
|
||||||
DescriptorArray::WhitenessWitness witness(*string_descriptors);
|
DescriptorArray::WhitenessWitness witness(*string_descriptors);
|
||||||
|
|
||||||
Handle<Foreign> string_length(
|
|
||||||
factory->NewForeign(&Accessors::StringLength));
|
|
||||||
PropertyAttributes attribs = static_cast<PropertyAttributes>(
|
PropertyAttributes attribs = static_cast<PropertyAttributes>(
|
||||||
DONT_ENUM | DONT_DELETE | READ_ONLY);
|
DONT_ENUM | DONT_DELETE | READ_ONLY);
|
||||||
|
Handle<AccessorInfo> string_length(
|
||||||
|
Accessors::StringLengthInfo(isolate, attribs));
|
||||||
string_map->set_instance_descriptors(*string_descriptors);
|
string_map->set_instance_descriptors(*string_descriptors);
|
||||||
|
|
||||||
{ // Add length.
|
{ // Add length.
|
||||||
|
@ -276,10 +276,21 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) {
|
|||||||
ACCESSOR, \
|
ACCESSOR, \
|
||||||
Accessors::k##name, \
|
Accessors::k##name, \
|
||||||
"Accessors::" #name);
|
"Accessors::" #name);
|
||||||
|
|
||||||
ACCESSOR_DESCRIPTOR_LIST(ACCESSOR_DESCRIPTOR_DECLARATION)
|
ACCESSOR_DESCRIPTOR_LIST(ACCESSOR_DESCRIPTOR_DECLARATION)
|
||||||
#undef ACCESSOR_DESCRIPTOR_DECLARATION
|
#undef ACCESSOR_DESCRIPTOR_DECLARATION
|
||||||
|
|
||||||
|
#define ACCESSOR_INFO_DECLARATION(name) \
|
||||||
|
Add(FUNCTION_ADDR(&Accessors::name##Getter), \
|
||||||
|
ACCESSOR, \
|
||||||
|
Accessors::k##name##Getter, \
|
||||||
|
"Accessors::" #name "Getter"); \
|
||||||
|
Add(FUNCTION_ADDR(&Accessors::name##Setter), \
|
||||||
|
ACCESSOR, \
|
||||||
|
Accessors::k##name##Setter, \
|
||||||
|
"Accessors::" #name "Setter");
|
||||||
|
ACCESSOR_INFO_LIST(ACCESSOR_INFO_DECLARATION)
|
||||||
|
#undef ACCESSOR_INFO_DECLARATION
|
||||||
|
|
||||||
StubCache* stub_cache = isolate->stub_cache();
|
StubCache* stub_cache = isolate->stub_cache();
|
||||||
|
|
||||||
// Stub cache tables
|
// Stub cache tables
|
||||||
|
Loading…
Reference in New Issue
Block a user