Changeset 39993 in webkit for trunk/JavaScriptCore/jit/JITCall.cpp
- Timestamp:
- Jan 16, 2009, 3:34:46 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITCall.cpp
r39851 r39993 168 168 emitPutVirtualRegister(dst); 169 169 170 #if ENABLE(CODEBLOCK_SAMPLING) 171 storePtr(ImmPtr(m_codeBlock), m_interpreter->sampler()->codeBlockSlot()); 172 #endif 170 sampleCodeBlock(m_codeBlock); 173 171 } 174 172 … … 185 183 emitPutVirtualRegister(dst); 186 184 187 #if ENABLE(CODEBLOCK_SAMPLING) 188 storePtr(ImmPtr(m_codeBlock), m_interpreter->sampler()->codeBlockSlot()); 189 #endif 185 sampleCodeBlock(m_codeBlock); 190 186 } 191 187 … … 257 253 emitPutVirtualRegister(dst); 258 254 259 #if ENABLE(CODEBLOCK_SAMPLING) 260 storePtr(ImmPtr(m_codeBlock), m_interpreter->sampler()->codeBlockSlot()); 261 #endif 255 sampleCodeBlock(m_codeBlock); 262 256 } 263 257 … … 342 336 emitPutVirtualRegister(dst); 343 337 344 #if ENABLE(CODEBLOCK_SAMPLING) 345 storePtr(ImmPtr(m_codeBlock), m_interpreter->sampler()->codeBlockSlot()); 338 sampleCodeBlock(m_codeBlock); 339 } 340 346 341 #endif 347 }348 349 #endif350 342 351 343 } // namespace JSC
Note:
See TracChangeset
for help on using the changeset viewer.