]>
git.saurik.com Git - apple/javascriptcore.git/blob - runtime/JSActivation.cpp
a2d26347c51c780a178597eed94e7d81865cbd48
2 * Copyright (C) 2008 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
14 * its contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include "JSActivation.h"
32 #include "Arguments.h"
33 #include "Interpreter.h"
34 #include "JSFunction.h"
38 ASSERT_CLASS_FITS_IN_CELL(JSActivation
);
40 const ClassInfo
JSActivation::info
= { "JSActivation", 0, 0, 0 };
42 JSActivation::JSActivation(CallFrame
* callFrame
, PassRefPtr
<FunctionBodyNode
> functionBody
)
43 : Base(callFrame
->globalData().activationStructure
, new JSActivationData(functionBody
, callFrame
))
47 JSActivation::~JSActivation()
52 void JSActivation::mark()
56 Register
* registerArray
= d()->registerArray
.get();
60 size_t numParametersMinusThis
= d()->functionBody
->generatedBytecode().m_numParameters
- 1;
63 size_t count
= numParametersMinusThis
;
64 for ( ; i
< count
; ++i
) {
65 Register
& r
= registerArray
[i
];
70 size_t numVars
= d()->functionBody
->generatedBytecode().m_numVars
;
72 // Skip the call frame, which sits between the parameters and vars.
73 i
+= RegisterFile::CallFrameHeaderSize
;
74 count
+= RegisterFile::CallFrameHeaderSize
+ numVars
;
76 for ( ; i
< count
; ++i
) {
77 Register
& r
= registerArray
[i
];
83 bool JSActivation::getOwnPropertySlot(ExecState
* exec
, const Identifier
& propertyName
, PropertySlot
& slot
)
85 if (symbolTableGet(propertyName
, slot
))
88 if (JSValuePtr
* location
= getDirectLocation(propertyName
)) {
89 slot
.setValueSlot(location
);
93 // Only return the built-in arguments object if it wasn't overridden above.
94 if (propertyName
== exec
->propertyNames().arguments
) {
95 slot
.setCustom(this, getArgumentsGetter());
99 // We don't call through to JSObject because there's no way to give an
100 // activation object getter properties or a prototype.
101 ASSERT(!hasGetterSetterProperties());
102 ASSERT(prototype().isNull());
106 void JSActivation::put(ExecState
*, const Identifier
& propertyName
, JSValuePtr value
, PutPropertySlot
& slot
)
108 ASSERT(!Heap::heap(value
) || Heap::heap(value
) == Heap::heap(this));
110 if (symbolTablePut(propertyName
, value
))
113 // We don't call through to JSObject because __proto__ and getter/setter
114 // properties are non-standard extensions that other implementations do not
115 // expose in the activation object.
116 ASSERT(!hasGetterSetterProperties());
117 putDirect(propertyName
, value
, 0, true, slot
);
120 // FIXME: Make this function honor ReadOnly (const) and DontEnum
121 void JSActivation::putWithAttributes(ExecState
*, const Identifier
& propertyName
, JSValuePtr value
, unsigned attributes
)
123 ASSERT(!Heap::heap(value
) || Heap::heap(value
) == Heap::heap(this));
125 if (symbolTablePutWithAttributes(propertyName
, value
, attributes
))
128 // We don't call through to JSObject because __proto__ and getter/setter
129 // properties are non-standard extensions that other implementations do not
130 // expose in the activation object.
131 ASSERT(!hasGetterSetterProperties());
132 PutPropertySlot slot
;
133 putDirect(propertyName
, value
, attributes
, true, slot
);
136 bool JSActivation::deleteProperty(ExecState
* exec
, const Identifier
& propertyName
)
138 if (propertyName
== exec
->propertyNames().arguments
)
141 return Base::deleteProperty(exec
, propertyName
);
144 JSObject
* JSActivation::toThisObject(ExecState
* exec
) const
146 return exec
->globalThisValue();
149 bool JSActivation::isDynamicScope() const
151 return d()->functionBody
->usesEval();
154 JSValuePtr
JSActivation::argumentsGetter(ExecState
* exec
, const Identifier
&, const PropertySlot
& slot
)
156 JSActivation
* activation
= asActivation(slot
.slotBase());
158 if (activation
->d()->functionBody
->usesArguments()) {
160 activation
->symbolTableGet(exec
->propertyNames().arguments
, slot
);
161 return slot
.getValue(exec
, exec
->propertyNames().arguments
);
164 CallFrame
* callFrame
= CallFrame::create(activation
->d()->registers
);
165 Arguments
* arguments
= callFrame
->optionalCalleeArguments();
167 arguments
= new (callFrame
) Arguments(callFrame
);
168 arguments
->copyRegisters();
169 callFrame
->setCalleeArguments(arguments
);
171 ASSERT(arguments
->isObject(&Arguments::info
));
176 // These two functions serve the purpose of isolating the common case from a
179 PropertySlot::GetValueFunc
JSActivation::getArgumentsGetter()
181 return argumentsGetter
;