Changeset 43363 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- May 7, 2009, 1:42:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.cpp
r43331 r43363 898 898 case op_jnless: { 899 899 int r0 = (++it)->u.operand; 900 JSValue function = JSValue((++it)->u.jsCell);900 int r1 = (++it)->u.operand; 901 901 int offset = (++it)->u.operand; 902 printf("[%4d] jnless\t\t %s, %s, %d(->%d)\n", location, registerName(r0).c_str(), valueToSourceString(exec, function).ascii(), offset, locationForOffset(begin, it, offset));902 printf("[%4d] jnless\t\t %s, %s, %d(->%d)\n", location, registerName(r0).c_str(), registerName(r1).c_str(), offset, locationForOffset(begin, it, offset)); 903 903 break; 904 904 }
Note:
See TracChangeset
for help on using the changeset viewer.