Changeset 37891 in webkit for trunk/JavaScriptCore/VM/Machine.h
- Timestamp:
- Oct 25, 2008, 12:59:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Machine.h
r37845 r37891 158 158 } 159 159 160 SamplingTool* m_sampler; 160 void setSampler(SamplingTool* sampler) { m_sampler = sampler; } 161 SamplingTool* sampler() { return m_sampler; } 161 162 162 163 #if ENABLE(CTI) … … 319 320 void* getCTIStringLengthTrampoline(CallFrame*, CodeBlock*); 320 321 322 JITCodeBuffer* jitCodeBuffer() const { return m_jitCodeBuffer.get(); } 323 #endif 324 325 SamplingTool* m_sampler; 326 327 #if ENABLE(CTI) 321 328 void* m_ctiArrayLengthTrampoline; 322 329 void* m_ctiStringLengthTrampoline; 323 330 324 331 OwnPtr<JITCodeBuffer> m_jitCodeBuffer; 325 JITCodeBuffer* jitCodeBuffer() const { return m_jitCodeBuffer.get(); }326 332 #endif 327 333
Note:
See TracChangeset
for help on using the changeset viewer.