Changeset 43331 in webkit for trunk/JavaScriptCore/bytecode
- Timestamp:
- May 6, 2009, 5:06:07 PM (16 years ago)
- Location:
- trunk/JavaScriptCore/bytecode
- Files:
-
- 2 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; -
trunk/JavaScriptCore/bytecode/Opcode.h
r42337 r43331 149 149 macro(op_construct, 7) \ 150 150 macro(op_construct_verify, 3) \ 151 macro(op_strcat, 4) \ 152 macro(op_to_primitive, 3) \ 151 153 \ 152 154 macro(op_get_pnames, 3) \
Note:
See TracChangeset
for help on using the changeset viewer.