Changeset 427 for trunk/JavaScriptCore/VM/Machine.cpp
- Timestamp:
- 08/01/08 14:47:24 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/VM/Machine.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/VM/Machine.cpp
r424 r427 51 51 #include "debugger.h" 52 52 #include "operations.h" 53 #include "SamplingTool.h" 53 54 #include <stdio.h> 54 55 … … 476 477 477 478 Machine::Machine() 478 : 479 #if SAMPLING_TOOL_ENABLED 480 m_sampler(0), 481 #else 482 m_reentryDepth(0) 483 #endif 479 : m_sampler(0) 480 , m_reentryDepth(0) 484 481 , m_timeoutTime(0) 485 482 , m_timeAtLastCheckTimeout(0) … … 2375 2372 ArgList args(r + firstArg + 1, argCount - 1); 2376 2373 2377 MACHINE_SAMPLING_calling NativeFunction();2374 MACHINE_SAMPLING_callingHostFunction(); 2378 2375 2379 2376 JSValue* returnValue = callData.native.function(exec, static_cast<JSObject*>(v), thisValue, args); … … 2502 2499 2503 2500 ArgList args(r + firstArg + 1, argCount - 1); 2501 2502 MACHINE_SAMPLING_callingHostFunction(); 2503 2504 2504 JSValue* returnValue = constructData.native.function(exec, constructor, args); 2505 2505
