Changeset 42337 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Apr 8, 2009, 4:08:28 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.cpp
r42065 r42337 966 966 break; 967 967 } 968 case op_call_varargs: { 969 int dst = (++it)->u.operand; 970 int func = (++it)->u.operand; 971 int argCount = (++it)->u.operand; 972 int registerOffset = (++it)->u.operand; 973 printf("[%4d] call_varargs\t %s, %s, %s, %d\n", location, registerName(dst).c_str(), registerName(func).c_str(), registerName(argCount).c_str(), registerOffset); 974 break; 975 } 976 case op_load_varargs: { 977 printUnaryOp(location, it, "load_varargs"); 978 break; 979 } 968 980 case op_tear_off_activation: { 969 981 int r0 = (++it)->u.operand;
Note:
See TracChangeset
for help on using the changeset viewer.