Changeset 193606 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Dec 6, 2015, 5:54:43 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r193584 r193606 770 770 break; 771 771 } 772 case op_load_arrowfunction_this: { 773 int r0 = (++it)->u.operand; 774 printLocationOpAndRegisterOperand(out, exec, location, it, "load_arrowfunction_this", r0); 775 break; 776 } 772 777 case op_create_direct_arguments: { 773 778 int r0 = (++it)->u.operand; … … 1323 1328 int r1 = (++it)->u.operand; 1324 1329 int f0 = (++it)->u.operand; 1330 int r2 = (++it)->u.operand; 1325 1331 printLocationAndOp(out, exec, location, it, "op_new_arrow_func_exp"); 1326 out.printf("%s, %s, f%d ", registerName(r0).data(), registerName(r1).data(), f0);1332 out.printf("%s, %s, f%d, %s", registerName(r0).data(), registerName(r1).data(), f0, registerName(r2).data()); 1327 1333 break; 1328 1334 }
Note:
See TracChangeset
for help on using the changeset viewer.