Searched refs:variableObject (Results 1 – 6 of 6) sorted by relevance
/external/webkit/JavaScriptCore/jit/ |
D | JIT.cpp | 559 void JIT::emitGetVariableObjectRegister(RegisterID variableObject, int index, RegisterID dst) in emitGetVariableObjectRegister() argument 561 loadPtr(Address(variableObject, OBJECT_OFFSETOF(JSVariableObject, d)), dst); in emitGetVariableObjectRegister() 566 void JIT::emitPutVariableObjectRegister(RegisterID src, RegisterID variableObject, int index) in emitPutVariableObjectRegister() argument 568 loadPtr(Address(variableObject, OBJECT_OFFSETOF(JSVariableObject, d)), variableObject); in emitPutVariableObjectRegister() 569 …loadPtr(Address(variableObject, OBJECT_OFFSETOF(JSVariableObject::JSVariableObjectData, registers)… in emitPutVariableObjectRegister() 570 storePtr(src, Address(variableObject, index * sizeof(Register))); in emitPutVariableObjectRegister()
|
D | JIT.h | 474 void emitGetVariableObjectRegister(RegisterID variableObject, int index, RegisterID dst); 475 void emitPutVariableObjectRegister(RegisterID src, RegisterID variableObject, int index);
|
/external/webkit/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 827 JSVariableObject* variableObject; in execute() local 831 variableObject = static_cast<JSVariableObject*>(node->object); in execute() 838 BatchedTransitionOptimizer optimizer(variableObject); in execute() 844 if (!variableObject->hasProperty(callFrame, ident)) { in execute() 846 variableObject->put(callFrame, ident, jsUndefined(), slot); in execute() 854 … variableObject->put(callFrame, (*it)->m_ident, (*it)->makeFunction(callFrame, scopeChain), slot); in execute()
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2007-10-14 | 10710 (KJS::Context::variableObject): 18862 (KJS::ContextImp::variableObject): 18982 (Context::variableObject):
|
D | ChangeLog-2008-08-10 | 14545 The variableObject() and activationObject() accessors are obsolete
|
/external/webkit/WebCore/ |
D | ChangeLog-2002-12-03 | 14683 (Context::variableObject), (Context::thisValue), (Context::callingContext),
|