Changeset 69045 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Oct 4, 2010, 3:43:18 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.h
r68171 r69045 409 409 return m_argumentsRegister; 410 410 } 411 void setActivationRegister(int activationRegister) 412 { 413 m_activationRegister = activationRegister; 414 } 415 int activationRegister() 416 { 417 ASSERT(needsFullScopeChain()); 418 return m_activationRegister; 419 } 411 420 bool usesArguments() const { return m_argumentsRegister != -1; } 412 421 … … 420 429 unsigned jumpTarget(int index) const { return m_jumpTargets[index]; } 421 430 unsigned lastJumpTarget() const { return m_jumpTargets.last(); } 431 432 void createActivation(CallFrame*); 422 433 423 434 #if ENABLE(INTERPRETER) … … 549 560 int m_thisRegister; 550 561 int m_argumentsRegister; 562 int m_activationRegister; 551 563 552 564 bool m_needsFullScopeChain;
Note:
See TracChangeset
for help on using the changeset viewer.