Changeset 34842 in webkit for trunk/JavaScriptCore/VM/CodeBlock.cpp
- Timestamp:
- Jun 27, 2008, 9:02:03 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeBlock.cpp
r34684 r34842 463 463 break; 464 464 } 465 case op_loop: { 466 int offset = (++it)->u.operand; 467 printf("[%4d] loop\t\t %d(->%d)\n", location, offset, jumpTarget(begin, it, offset)); 468 break; 469 } 465 470 case op_jtrue: { 466 471 printConditionalJump(begin, it, location, "jtrue"); 467 472 break; 468 473 } 474 case op_loop_if_true: { 475 printConditionalJump(begin, it, location, "loop_if_true"); 476 break; 477 } 469 478 case op_jfalse: { 470 479 printConditionalJump(begin, it, location, "jfalse"); … … 476 485 int offset = (++it)->u.operand; 477 486 printf("[%4d] jless\t\t %s, %s, %d(->%d)\n", location, registerName(r0).c_str(), registerName(r1).c_str(), offset, jumpTarget(begin, it, offset)); 487 break; 488 } 489 case op_loop_if_less: { 490 int r0 = (++it)->u.operand; 491 int r1 = (++it)->u.operand; 492 int offset = (++it)->u.operand; 493 printf("[%4d] loop_if_less %s, %s, %d(->%d)\n", location, registerName(r0).c_str(), registerName(r1).c_str(), offset, jumpTarget(begin, it, offset)); 478 494 break; 479 495 }
Note:
See TracChangeset
for help on using the changeset viewer.