Changeset 192882 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Dec 1, 2015, 6:39:58 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r192876 r192882 758 758 break; 759 759 } 760 case op_load_arrowfunction_this: { 761 int r0 = (++it)->u.operand; 762 printLocationOpAndRegisterOperand(out, exec, location, it, "load_arrowfunction_this", r0); 763 break; 764 } 760 765 case op_create_direct_arguments: { 761 766 int r0 = (++it)->u.operand; … … 1303 1308 int r1 = (++it)->u.operand; 1304 1309 int f0 = (++it)->u.operand; 1310 int r2 = (++it)->u.operand; 1305 1311 printLocationAndOp(out, exec, location, it, "op_new_arrow_func_exp"); 1306 out.printf("%s, %s, f%d ", registerName(r0).data(), registerName(r1).data(), f0);1312 out.printf("%s, %s, f%d, %s", registerName(r0).data(), registerName(r1).data(), f0, registerName(r2).data()); 1307 1313 break; 1308 1314 }
Note:
See TracChangeset
for help on using the changeset viewer.