c08daece99
Mostly mechanical, the only interesting change is in KeyedLoadIC::Load, where we now handle x[symbol] in the same way we handle x['string'] R=verwaest@chromium.org Review URL: https://codereview.chromium.org/461603002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23038 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
104 lines
3.6 KiB
C++
104 lines
3.6 KiB
C++
// Copyright 2012 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.
|
|
|
|
#ifndef V8_ACCESSORS_H_
|
|
#define V8_ACCESSORS_H_
|
|
|
|
#include "src/allocation.h"
|
|
#include "src/globals.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
// The list of accessor descriptors. This is a second-order macro
|
|
// taking a macro to be applied to all accessor descriptor names.
|
|
#define ACCESSOR_INFO_LIST(V) \
|
|
V(ArrayLength) \
|
|
V(FunctionArguments) \
|
|
V(FunctionCaller) \
|
|
V(FunctionName) \
|
|
V(FunctionLength) \
|
|
V(FunctionPrototype) \
|
|
V(ScriptColumnOffset) \
|
|
V(ScriptCompilationType) \
|
|
V(ScriptContextData) \
|
|
V(ScriptEvalFromScript) \
|
|
V(ScriptEvalFromScriptPosition) \
|
|
V(ScriptEvalFromFunctionName) \
|
|
V(ScriptId) \
|
|
V(ScriptLineEnds) \
|
|
V(ScriptLineOffset) \
|
|
V(ScriptName) \
|
|
V(ScriptSource) \
|
|
V(ScriptType) \
|
|
V(ScriptSourceUrl) \
|
|
V(ScriptSourceMappingUrl) \
|
|
V(StringLength)
|
|
|
|
// Accessors contains all predefined proxy accessors.
|
|
|
|
class Accessors : public AllStatic {
|
|
public:
|
|
// Accessor descriptors.
|
|
#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 {
|
|
#define ACCESSOR_INFO_DECLARATION(name) \
|
|
k##name##Getter, \
|
|
k##name##Setter,
|
|
ACCESSOR_INFO_LIST(ACCESSOR_INFO_DECLARATION)
|
|
#undef ACCESSOR_INFO_DECLARATION
|
|
descriptorCount
|
|
};
|
|
|
|
// Accessor functions called directly from the runtime system.
|
|
static Handle<Object> FunctionSetPrototype(Handle<JSFunction> object,
|
|
Handle<Object> value);
|
|
static Handle<Object> FunctionGetPrototype(Handle<JSFunction> object);
|
|
static Handle<Object> FunctionGetArguments(Handle<JSFunction> object);
|
|
|
|
// Accessor infos.
|
|
static Handle<AccessorInfo> MakeModuleExport(
|
|
Handle<String> name, int index, PropertyAttributes attributes);
|
|
|
|
// Returns true for properties that are accessors to object fields.
|
|
// If true, *object_offset contains offset of object field.
|
|
template <class T>
|
|
static bool IsJSObjectFieldAccessor(typename T::TypeHandle type,
|
|
Handle<Name> name,
|
|
int* object_offset);
|
|
|
|
static Handle<AccessorInfo> MakeAccessor(
|
|
Isolate* isolate,
|
|
Handle<String> name,
|
|
AccessorGetterCallback getter,
|
|
AccessorSetterCallback setter,
|
|
PropertyAttributes attributes);
|
|
|
|
static Handle<ExecutableAccessorInfo> CloneAccessor(
|
|
Isolate* isolate,
|
|
Handle<ExecutableAccessorInfo> accessor);
|
|
|
|
|
|
private:
|
|
// Helper functions.
|
|
static Handle<Object> FlattenNumber(Isolate* isolate, Handle<Object> value);
|
|
};
|
|
|
|
} } // namespace v8::internal
|
|
|
|
#endif // V8_ACCESSORS_H_
|