Changeset 38425 in webkit for trunk/JavaScriptCore/jsc.cpp
- Timestamp:
- Nov 15, 2008, 12:34:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jsc.cpp
r38423 r38425 321 321 CodeGenerator::setDumpsGeneratedCode(true); 322 322 323 #if ENABLE( OPCODE_SAMPLING)323 #if ENABLE(BYTECODE_SAMPLING) 324 324 BytecodeInterpreter* interpreter = globalObject->globalData()->interpreter; 325 325 interpreter->setSampler(new SamplingTool(machine)); … … 333 333 return false; // fail early so we can catch missing files 334 334 335 #if ENABLE( OPCODE_SAMPLING)335 #if ENABLE(BYTECODE_SAMPLING) 336 336 interpreter->sampler()->start(); 337 337 #endif … … 347 347 globalObject->globalExec()->clearException(); 348 348 349 #if ENABLE( OPCODE_SAMPLING)349 #if ENABLE(BYTECODE_SAMPLING) 350 350 interpreter->sampler()->stop(); 351 351 #endif 352 352 } 353 353 354 #if ENABLE( OPCODE_SAMPLING)354 #if ENABLE(BYTECODE_SAMPLING) 355 355 interpreter->sampler()->dump(globalObject->globalExec()); 356 356 delete interpreter->sampler();
Note:
See TracChangeset
for help on using the changeset viewer.