Changeset 43331 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- May 6, 2009, 5:06:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.cpp
r43122 r43331 1008 1008 break; 1009 1009 } 1010 case op_strcat: { 1011 int r0 = (++it)->u.operand; 1012 int r1 = (++it)->u.operand; 1013 int count = (++it)->u.operand; 1014 printf("[%4d] op_strcat\t %s, %s, %d\n", location, registerName(r0).c_str(), registerName(r1).c_str(), count); 1015 break; 1016 } 1017 case op_to_primitive: { 1018 int r0 = (++it)->u.operand; 1019 int r1 = (++it)->u.operand; 1020 printf("[%4d] op_to_primitive\t %s, %s\n", location, registerName(r0).c_str(), registerName(r1).c_str()); 1021 break; 1022 } 1010 1023 case op_get_pnames: { 1011 1024 int r0 = (++it)->u.operand;
Note:
See TracChangeset
for help on using the changeset viewer.