Changeset 36566 in webkit for trunk/JavaScriptCore/VM/Machine.cpp
- Timestamp:
- Sep 17, 2008, 3:40:23 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Machine.cpp
r36546 r36566 4319 4319 RegisterFile* registerFile = ARG_registerFile; 4320 4320 Register* r = ARG_r; 4321 CodeBlock* codeBlock = ARG_codeBlock; 4322 ScopeChainNode* scopeChain = ARG_scopeChain; 4323 4324 Machine* machine = exec->machine(); 4321 4325 4322 JSValue* exceptionValue = 0; 4326 4323 Register* registerBase = registerFile->base(); … … 4349 4346 4350 4347 Register* callFrame = r + firstArg - RegisterFile::CallFrameHeaderSize; 4351 machine->initializeCallFrame(callFrame, codeBlock, ARG_instr5, scopeChain, r, 0/*dst*/, firstArg, argCount, funcVal);4352 4348 exec->m_callFrame = callFrame; 4353 4349 … … 4401 4397 4402 4398 if (callType == CallTypeHost) { 4403 CodeBlock* codeBlock = ARG_codeBlock;4404 ScopeChainNode* scopeChain = ARG_scopeChain;4405 Machine* machine = exec->machine();4406 4407 4399 Register* oldCallFrame = exec->m_callFrame; 4408 4400 Register* callFrame = r + firstArg - RegisterFile::CallFrameHeaderSize; 4409 machine->initializeCallFrame(callFrame, codeBlock, ARG_instr5, scopeChain, r, 0/*dst*/, firstArg, argCount, funcVal);4410 4401 exec->m_callFrame = callFrame; 4411 4402 … … 4503 4494 RegisterFile* registerFile = ARG_registerFile; 4504 4495 Register* r = ARG_r; 4505 CodeBlock* codeBlock = ARG_codeBlock;4506 4496 ScopeChainNode* scopeChain = ARG_scopeChain; 4507 4497 4508 Machine* machine = exec->machine();4509 4498 JSValue* exceptionValue = 0; 4510 4499 Register* registerBase = registerFile->base(); … … 4544 4533 4545 4534 Register* callFrame = r + firstArg - RegisterFile::CallFrameHeaderSize; 4546 machine->initializeCallFrame(callFrame, codeBlock, ARG_instr5, scopeChain, r, 0/*dst*/, firstArg, argCount, constructor);4547 4535 exec->m_callFrame = callFrame; 4548 4536 … … 4589 4577 4590 4578 if (constructType == ConstructTypeHost) { 4591 CodeBlock* codeBlock = ARG_codeBlock;4592 ScopeChainNode* scopeChain = ARG_scopeChain;4593 Machine* machine = exec->machine();4594 4595 4579 Register* oldCallFrame = exec->m_callFrame; 4596 4580 Register* callFrame = r + firstArg - RegisterFile::CallFrameHeaderSize; 4597 machine->initializeCallFrame(callFrame, codeBlock, ARG_instr5, scopeChain, r, 0/*dst*/, firstArg, argCount, constrVal);4598 4581 exec->m_callFrame = callFrame; 4599 4582
Note:
See TracChangeset
for help on using the changeset viewer.