Changeset 44713 in webkit for trunk/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- Jun 15, 2009, 11:52:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JIT.cpp
r44711 r44713 430 430 ASSERT(m_jmpTable.isEmpty()); 431 431 432 PatchBuffer patchBuffer(this, m_globalData->executableAllocator.poolForSize(m_assembler.size()));432 LinkBuffer patchBuffer(this, m_globalData->executableAllocator.poolForSize(m_assembler.size())); 433 433 434 434 // Translate vPC offsets into addresses in JIT generated code, for switch tables. … … 852 852 853 853 // All trampolines constructed! copy the code, link up calls, and set the pointers on the Machine object. 854 PatchBuffer patchBuffer(this, m_globalData->executableAllocator.poolForSize(m_assembler.size()));854 LinkBuffer patchBuffer(this, m_globalData->executableAllocator.poolForSize(m_assembler.size())); 855 855 856 856 #if ENABLE(JIT_OPTIMIZE_PROPERTY_ACCESS)
Note:
See TracChangeset
for help on using the changeset viewer.