Changeset 64938 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Aug 7, 2010, 11:04:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.cpp
r64790 r64938 1521 1521 m_functionDecls[i]->markAggregate(markStack); 1522 1522 markStack.append(m_globalObject); 1523 #if ENABLE(MOVABLE_GC_OBJECTS) 1524 // This is the code that is responsible for marking the actual pointers 1525 // to JSCell*s in the JIT'ed code. Normally, these pointers are marked 1526 // elsewhere, however when we have movable objects, we will need to update 1527 // all of the references. 1528 for (size_t i = 0; i < m_structureStubInfos.size(); ++i) 1529 m_structureStubInfos[i].markAggregate(markStack, this); 1530 #endif 1523 1531 } 1524 1532
Note:
See TracChangeset
for help on using the changeset viewer.