Changeset 50538 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Nov 4, 2009, 6:22:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.cpp
r50537 r50538 811 811 } 812 812 case op_method_check: { 813 printf("[%4d] op_method_check\n", location);813 printf("[%4d] method_check\n", location); 814 814 break; 815 815 } … … 1019 1019 int r1 = (++it)->u.operand; 1020 1020 int count = (++it)->u.operand; 1021 printf("[%4d] op_strcat\t %s, %s, %d\n", location, registerName(exec, r0).c_str(), registerName(exec, r1).c_str(), count);1021 printf("[%4d] strcat\t\t %s, %s, %d\n", location, registerName(exec, r0).c_str(), registerName(exec, r1).c_str(), count); 1022 1022 break; 1023 1023 } … … 1025 1025 int r0 = (++it)->u.operand; 1026 1026 int r1 = (++it)->u.operand; 1027 printf("[%4d] op_to_primitive\t %s, %s\n", location, registerName(exec, r0).c_str(), registerName(exec, r1).c_str());1027 printf("[%4d] to_primitive\t %s, %s\n", location, registerName(exec, r0).c_str(), registerName(exec, r1).c_str()); 1028 1028 break; 1029 1029 }
Note:
See TracChangeset
for help on using the changeset viewer.