Changeset 37285 in webkit for trunk/JavaScriptCore/VM/CodeBlock.cpp
- Timestamp:
- Oct 4, 2008, 12:15:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeBlock.cpp
r37050 r37285 349 349 int location = it - begin; 350 350 switch (exec->machine()->getOpcodeID(it->u.opcode)) { 351 case op_ init: {352 printf("[%4d] init\n", location);353 break; 354 } 355 case op_ init_activation: {356 printf("[%4d] init_activation\n", location);351 case op_enter: { 352 printf("[%4d] enter\n", location); 353 break; 354 } 355 case op_enter_with_activation: { 356 printf("[%4d] enter_with_activation\n", location); 357 357 break; 358 358 } 359 359 case op_init_arguments: { 360 360 printf("[%4d] init_arguments\n", location); 361 break; 362 } 363 case op_convert_this: { 364 int r0 = (++it)->u.operand; 365 printf("[%4d] convert_this %s\n", location, registerName(r0).c_str()); 361 366 break; 362 367 }
Note:
See TracChangeset
for help on using the changeset viewer.