Changeset 59817 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- May 19, 2010, 9:57:20 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.cpp
r59742 r59817 1072 1072 break; 1073 1073 } 1074 case op_constructor_ret: { 1075 int r0 = (++it)->u.operand; 1076 int r1 = (++it)->u.operand; 1077 printf("[%4d] constructor_ret\t\t %s %s\n", location, registerName(exec, r0).data(), registerName(exec, r1).data()); 1078 break; 1079 } 1074 1080 case op_construct: { 1075 1081 int dst = (++it)->u.operand; … … 1080 1086 int thisRegister = (++it)->u.operand; 1081 1087 printf("[%4d] construct\t %s, %s, %d, %d, %s, %s\n", location, registerName(exec, dst).data(), registerName(exec, func).data(), argCount, registerOffset, registerName(exec, proto).data(), registerName(exec, thisRegister).data()); 1082 break;1083 }1084 case op_construct_verify: {1085 int r0 = (++it)->u.operand;1086 int r1 = (++it)->u.operand;1087 printf("[%4d] construct_verify\t %s, %s\n", location, registerName(exec, r0).data(), registerName(exec, r1).data());1088 1088 break; 1089 1089 }
Note:
See TracChangeset
for help on using the changeset viewer.