Home
last modified time | relevance | path

Searched refs:isStrictMode (Results 1 – 21 of 21) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
DPutPropertySlot.h41 PutPropertySlot(bool isStrictMode = false)
44 , m_isStrictMode(isStrictMode) in m_type()
65 bool isStrictMode() const { return m_isStrictMode; } in isStrictMode() function
DArguments.h56 bool isStrictMode : 1; member
182 d->isStrictMode = callFrame->codeBlock()->isStrictMode(); in Arguments()
183 if (d->isStrictMode) in Arguments()
215 d->isStrictMode = callFrame->codeBlock()->isStrictMode(); in Arguments()
216 if (d->isStrictMode) in Arguments()
DArguments.cpp199 if (!d->isStrictMode) { in getOwnPropertySlot()
206 if (propertyName == exec->propertyNames().caller && d->isStrictMode) in getOwnPropertySlot()
230 if (!d->isStrictMode) { in getOwnPropertyDescriptor()
237 if (propertyName == exec->propertyNames().caller && d->isStrictMode) in getOwnPropertyDescriptor()
289 if (!d->isStrictMode) { in put()
297 if (propertyName == exec->propertyNames().caller && d->isStrictMode) in put()
340 if (!d->isStrictMode) { in deleteProperty()
347 if (propertyName == exec->propertyNames().caller && !d->isStrictMode) in deleteProperty()
DJSFunction.cpp200 if (jsExecutable()->isStrictMode()) { in getOwnPropertySlot()
216 if (jsExecutable()->isStrictMode()) { in getOwnPropertySlot()
240 if (jsExecutable()->isStrictMode()) in getOwnPropertyDescriptor()
253 if (jsExecutable()->isStrictMode()) in getOwnPropertyDescriptor()
290 if (jsExecutable()->isStrictMode()) { in put()
DExecutable.cpp105 …icalGlobalObject, lexicalGlobalObject->debugger(), exec, m_source, 0, isStrictMode() ? JSParseStri… in compileInternal()
164 …icalGlobalObject, lexicalGlobalObject->debugger(), exec, m_source, 0, isStrictMode() ? JSParseStri… in compileInternal()
235 …ode>(exec->lexicalGlobalObject(), 0, 0, m_source, m_parameters.get(), isStrictMode() ? JSParseStri… in compileForCallInternal()
283 …ode>(exec->lexicalGlobalObject(), 0, 0, m_source, m_parameters.get(), isStrictMode() ? JSParseStri… in compileForConstructInternal()
364 …ame, body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo… in fromGlobalCode()
DJSObject.cpp122 …(!putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot) && slot.isStrictMode()) in put()
131 if (slot.isStrictMode()) in put()
163 …(!putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot) && slot.isStrictMode()) in put()
DExecutable.h188 bool isStrictMode() const { return m_features & StrictModeFeature; } in isStrictMode() function
DJSObject.h810 …sObject(asCell())->putDirect(exec->globalData(), propertyName, value, slot) && slot.isStrictMode()) in putDirect()
/external/webkit/Source/JavaScriptCore/debugger/
DDebuggerCallFrame.cpp92 … EvalExecutable::create(m_callFrame, makeSource(script), m_callFrame->codeBlock()->isStrictMode()); in evaluate()
/external/webkit/Source/JavaScriptCore/bytecompiler/
DBytecodeGenerator.h401 bool isStrictMode() const { return m_codeBlock->isStrictMode(); } in isStrictMode() function
482 …t(), body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo… in makeFunction()
487 …t(), body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo… in makeFunction()
DBytecodeGenerator.cpp377 if (m_codeBlock->isStrictMode()) { in BytecodeGenerator()
479 if (codeBlock->isStrictMode()) in BytecodeGenerator()
1316 if (!m_codeBlock->isStrictMode()) in emitResolveBaseForPut()
1625 if (m_codeBlock->isStrictMode()) in createArgumentsIfNecessary()
1739 …&& !m_codeBlock->isStrictMode()) { // If there are no named parameters, there's nothing to tear of… in emitReturn()
/external/webkit/Source/JavaScriptCore/dfg/
DDFGNonSpeculativeJIT.cpp529 …callOperation(m_jit.codeBlock()->isStrictMode() ? operationPutByValStrict : operationPutByValNonSt… in compile()
553 …callOperation(m_jit.codeBlock()->isStrictMode() ? operationPutByIdStrict : operationPutByIdNonStri… in compile()
565 …callOperation(m_jit.codeBlock()->isStrictMode() ? operationPutByIdDirectStrict : operationPutByIdD… in compile()
DDFGSpeculativeJIT.cpp730 …callOperation(m_jit.codeBlock()->isStrictMode() ? operationPutByIdStrict : operationPutByIdNonStri… in compile()
742 …callOperation(m_jit.codeBlock()->isStrictMode() ? operationPutByIdDirectStrict : operationPutByIdD… in compile()
/external/webkit/Source/JavaScriptCore/jit/
DJITStubs.cpp1401 PutPropertySlot slot(stackFrame.callFrame->codeBlock()->isStrictMode()); in DEFINE_STUB_FUNCTION()
1410 PutPropertySlot slot(stackFrame.callFrame->codeBlock()->isStrictMode()); in DEFINE_STUB_FUNCTION()
1438 PutPropertySlot slot(callFrame->codeBlock()->isStrictMode()); in DEFINE_STUB_FUNCTION()
1457 PutPropertySlot slot(callFrame->codeBlock()->isStrictMode()); in DEFINE_STUB_FUNCTION()
1477 PutPropertySlot slot(callFrame->codeBlock()->isStrictMode()); in DEFINE_STUB_FUNCTION()
1490 PutPropertySlot slot(callFrame->codeBlock()->isStrictMode()); in DEFINE_STUB_FUNCTION()
1893 if (!couldDelete && callFrame->codeBlock()->isStrictMode()) in DEFINE_STUB_FUNCTION()
2228 if (!stackFrame.callFrame->codeBlock()->isStrictMode()) in DEFINE_STUB_FUNCTION()
2236 if (!stackFrame.callFrame->codeBlock()->isStrictMode()) in DEFINE_STUB_FUNCTION()
2503 PutPropertySlot slot(callFrame->codeBlock()->isStrictMode()); in DEFINE_STUB_FUNCTION()
[all …]
DJITOpcodes32_64.cpp1291 if (base != m_codeBlock->thisRegister() || m_codeBlock->isStrictMode()) { in emit_op_get_pnames()
DJITOpcodes.cpp898 if (base != m_codeBlock->thisRegister() || m_codeBlock->isStrictMode()) { in emit_op_get_pnames()
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp396 if (!codeBlock->isStrictMode()) { in callEval()
406 …alCodeCache().get(callFrame, codeBlock->ownerExecutable(), codeBlock->isStrictMode(), programSourc… in callEval()
568 if (!oldCodeBlock->isStrictMode()) in unwindCallFrame()
571 } else if (oldCodeBlock->usesArguments() && !oldCodeBlock->isStrictMode()) { in unwindCallFrame()
1087 if (codeBlock->isStrictMode()) { in execute()
3029 PutPropertySlot slot(codeBlock->isStrictMode()); in privateExecute()
3148 PutPropertySlot slot(codeBlock->isStrictMode()); in privateExecute()
3174 if (!result && codeBlock->isStrictMode()) { in privateExecute()
3334 PutPropertySlot slot(codeBlock->isStrictMode()); in privateExecute()
3368 if (!result && codeBlock->isStrictMode()) { in privateExecute()
[all …]
/external/webkit/Source/JavaScriptCore/bytecode/
DCodeBlock.h224 bool isStrictMode() const { return m_isStrictMode; } in isStrictMode() function
DCodeBlock.cpp1378 , m_isStrictMode(ownerExecutable->isStrictMode()) in CodeBlock()
/external/webkit/Source/JavaScriptCore/parser/
DNodes.h1417 bool isStrictMode() const { return m_features & StrictModeFeature; } in isStrictMode() function
1488 static FunctionBodyNode* create(JSGlobalData*, bool isStrictMode);
/external/webkit/Source/JavaScriptCore/
DChangeLog-2011-02-1612610 (JSC::CodeBlock::isStrictMode):
12619 (JSC::BytecodeGenerator::isStrictMode):
12733 (JSC::ScopeNode::isStrictMode):
12806 (JSC::ScriptExecutable::isStrictMode):
12844 (JSC::PutPropertySlot::isStrictMode):