Searched refs:CallFrameHeaderSize (Results 1 - 15 of 15) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/llint/
H A DLLIntData.cpp71 ASSERT(JSStack::CallFrameHeaderSize * 8 == 48);
78 ASSERT(CallFrame::argumentOffsetIncludingThis(0) == -JSStack::CallFrameHeaderSize - 1);
H A DLowLevelInterpreter.asm34 const CallFrameHeaderSize = 48
42 const ThisArgumentOffset = -CallFrameHeaderSize - 8
/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DJSStack.h55 CallFrameHeaderSize = 6, enumerator in enum:JSC::JSStack::CallFrameHeaderEntry
H A DJSStackInlines.h67 Register* newCallFrameSlot = oldEnd + paddedArgsCount + JSStack::CallFrameHeaderSize;
H A DCallFrame.h223 static int offsetFor(size_t argumentCountIncludingThis) { return argumentCountIncludingThis + JSStack::CallFrameHeaderSize; }
277 static const int s_thisArgumentOffset = -1 - JSStack::CallFrameHeaderSize;
H A DInterpreter.cpp205 CallFrame* newCallFrame = CallFrame::create(callFrame->registers() + firstFreeRegister + argumentCountIncludingThis + JSStack::CallFrameHeaderSize);
219 CallFrame* newCallFrame = CallFrame::create(callFrame->registers() + firstFreeRegister + 1 + JSStack::CallFrameHeaderSize);
337 it = callFrame->registers() - JSStack::CallFrameHeaderSize - callFrame->argumentCountIncludingThis();
338 end = callFrame->registers() - JSStack::CallFrameHeaderSize;
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGVariableEventStream.cpp310 for (unsigned i = JSStack::CallFrameHeaderSize; i--;)
H A DDFGByteCodeParser.cpp398 if (operand >= static_cast<int>(inlineCallFrame->stackOffset - JSStack::CallFrameHeaderSize))
402 if (operand < static_cast<int>(inlineCallFrame->stackOffset - JSStack::CallFrameHeaderSize - inlineCallFrame->arguments.size()))
771 if (JSStack::CallFrameHeaderSize + (unsigned)argCount > m_parameterSlots)
772 m_parameterSlots = JSStack::CallFrameHeaderSize + argCount;
1306 int inlineCallFrameStart = m_inlineStackTop->remapOperand(registerOffset) - JSStack::CallFrameHeaderSize;
1309 for (int arg = inlineCallFrameStart + JSStack::CallFrameHeaderSize + codeBlock->m_numVars; arg-- > inlineCallFrameStart;)
1313 unsigned newNumLocals = inlineCallFrameStart + JSStack::CallFrameHeaderSize + codeBlock->m_numCalleeRegisters;
3073 if (JSStack::CallFrameHeaderSize + argCount > m_parameterSlots)
3074 m_parameterSlots = JSStack::CallFrameHeaderSize + argCount;
3505 inlineCallFrame.stackOffset = inlineCallFrameStart + JSStack::CallFrameHeaderSize;
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITCall.cpp86 add32(TrustedImm32(firstFreeRegister + JSStack::CallFrameHeaderSize), regT1);
H A DJITCall32_64.cpp160 add32(TrustedImm32(firstFreeRegister + JSStack::CallFrameHeaderSize), regT3);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSGlobalObject.h109 Register m_globalCallFrame[JSStack::CallFrameHeaderSize];
H A DJSGlobalObject.cpp539 return CallFrame::create(m_globalCallFrame + JSStack::CallFrameHeaderSize);
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecompiler/
H A DBytecodeGenerator.cpp1831 Vector<RefPtr<RegisterID>, JSStack::CallFrameHeaderSize, UnsafeVectorOverflow> callFrame;
1832 for (int i = 0; i < JSStack::CallFrameHeaderSize; ++i)
1954 Vector<RefPtr<RegisterID>, JSStack::CallFrameHeaderSize, UnsafeVectorOverflow> callFrame;
1955 for (int i = 0; i < JSStack::CallFrameHeaderSize; ++i)
H A DBytecodeGenerator.h624 return m_parameters[index + m_parameters.size() + JSStack::CallFrameHeaderSize];
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DCodeBlock.cpp3360 argumentPosition -= JSStack::CallFrameHeaderSize + 1;

Completed in 192 milliseconds