]>
git.saurik.com Git - apple/javascriptcore.git/blob - runtime/PropertySlot.h
1dd1afafea8c2350bccf19b7c557defd342b0c7a
2 * Copyright (C) 2005, 2007, 2008 Apple Inc. All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 #ifndef PropertySlot_h
22 #define PropertySlot_h
24 #include "Identifier.h"
26 #include "JSImmediate.h"
28 #include <wtf/Assertions.h>
29 #include <wtf/NotFound.h>
36 #define JSC_VALUE_SLOT_MARKER 0
37 #define JSC_REGISTER_SLOT_MARKER reinterpret_cast<GetValueFunc>(1)
42 : m_offset(WTF::notFound
)
48 explicit PropertySlot(const JSValuePtr base
)
50 , m_offset(WTF::notFound
)
55 typedef JSValuePtr (*GetValueFunc
)(ExecState
*, const Identifier
&, const PropertySlot
&);
57 JSValuePtr
getValue(ExecState
* exec
, const Identifier
& propertyName
) const
59 if (m_getValue
== JSC_VALUE_SLOT_MARKER
)
60 return *m_data
.valueSlot
;
61 if (m_getValue
== JSC_REGISTER_SLOT_MARKER
)
62 return (*m_data
.registerSlot
).jsValue(exec
);
63 return m_getValue(exec
, propertyName
, *this);
66 JSValuePtr
getValue(ExecState
* exec
, unsigned propertyName
) const
68 if (m_getValue
== JSC_VALUE_SLOT_MARKER
)
69 return *m_data
.valueSlot
;
70 if (m_getValue
== JSC_REGISTER_SLOT_MARKER
)
71 return (*m_data
.registerSlot
).jsValue(exec
);
72 return m_getValue(exec
, Identifier::from(exec
, propertyName
), *this);
75 bool isCacheable() const { return m_offset
!= WTF::notFound
; }
76 size_t cachedOffset() const
78 ASSERT(isCacheable());
82 void putValue(JSValuePtr value
)
84 if (m_getValue
== JSC_VALUE_SLOT_MARKER
) {
85 *m_data
.valueSlot
= value
;
88 ASSERT(m_getValue
== JSC_REGISTER_SLOT_MARKER
);
89 *m_data
.registerSlot
= JSValuePtr(value
);
92 void setValueSlot(JSValuePtr
* valueSlot
)
95 m_getValue
= JSC_VALUE_SLOT_MARKER
;
97 m_data
.valueSlot
= valueSlot
;
100 void setValueSlot(JSValuePtr slotBase
, JSValuePtr
* valueSlot
)
103 m_getValue
= JSC_VALUE_SLOT_MARKER
;
104 m_slotBase
= slotBase
;
105 m_data
.valueSlot
= valueSlot
;
108 void setValueSlot(JSValuePtr slotBase
, JSValuePtr
* valueSlot
, size_t offset
)
111 m_getValue
= JSC_VALUE_SLOT_MARKER
;
112 m_slotBase
= slotBase
;
113 m_data
.valueSlot
= valueSlot
;
117 void setValue(JSValuePtr value
)
120 m_getValue
= JSC_VALUE_SLOT_MARKER
;
123 m_data
.valueSlot
= &m_value
;
126 void setRegisterSlot(Register
* registerSlot
)
128 ASSERT(registerSlot
);
129 m_getValue
= JSC_REGISTER_SLOT_MARKER
;
131 m_data
.registerSlot
= registerSlot
;
134 void setCustom(JSValuePtr slotBase
, GetValueFunc getValue
)
138 m_getValue
= getValue
;
139 m_slotBase
= slotBase
;
142 void setCustomIndex(JSValuePtr slotBase
, unsigned index
, GetValueFunc getValue
)
146 m_getValue
= getValue
;
147 m_slotBase
= slotBase
;
148 m_data
.index
= index
;
151 void setGetterSlot(JSObject
* getterFunc
)
154 m_getValue
= functionGetter
;
155 m_data
.getterFunc
= getterFunc
;
161 setValue(jsUndefined());
164 JSValuePtr
slotBase() const
170 void setBase(JSValuePtr base
)
180 m_slotBase
= noValue();
191 unsigned index() const { return m_data
.index
; }
194 static JSValuePtr
functionGetter(ExecState
*, const Identifier
&, const PropertySlot
&);
196 GetValueFunc m_getValue
;
198 JSValuePtr m_slotBase
;
200 JSObject
* getterFunc
;
201 JSValuePtr
* valueSlot
;
202 Register
* registerSlot
;
213 #endif // PropertySlot_h