Changeset 36417 in webkit for trunk/JavaScriptCore/VM/CodeBlock.cpp
- Timestamp:
- Sep 14, 2008, 7:13:10 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeBlock.cpp
r36412 r36417 489 489 } 490 490 case op_instanceof: { 491 printBinaryOp(location, it, "instanceof"); 491 int r0 = (++it)->u.operand; 492 int r1 = (++it)->u.operand; 493 int r2 = (++it)->u.operand; 494 int r3 = (++it)->u.operand; 495 printf("[%4d] instanceof\t\t %s, %s, %s, %s\n", location, registerName(r0).c_str(), registerName(r1).c_str(), registerName(r2).c_str(), registerName(r3).c_str()); 492 496 break; 493 497 }
Note:
See TracChangeset
for help on using the changeset viewer.