Changeset 176109 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Nov 13, 2014, 5:07:48 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r175845 r176109 1272 1272 case op_new_func: { 1273 1273 int r0 = (++it)->u.operand; 1274 int r1 = (++it)->u.operand; 1274 1275 int f0 = (++it)->u.operand; 1275 1276 int shouldCheck = (++it)->u.operand; 1276 1277 printLocationAndOp(out, exec, location, it, "new_func"); 1277 out.printf("%s, f%d, %s", registerName(r0).data(), f0, shouldCheck ? "<Checked>" : "<Unchecked>");1278 out.printf("%s, %s, f%d, %s", registerName(r0).data(), registerName(r1).data(), f0, shouldCheck ? "<Checked>" : "<Unchecked>"); 1278 1279 break; 1279 1280 } 1280 1281 case op_new_func_exp: { 1281 1282 int r0 = (++it)->u.operand; 1283 int r1 = (++it)->u.operand; 1282 1284 int f0 = (++it)->u.operand; 1283 1285 printLocationAndOp(out, exec, location, it, "new_func_exp"); 1284 out.printf("%s, f%d", registerName(r0).data(), f0);1286 out.printf("%s, %s, f%d", registerName(r0).data(), registerName(r1).data(), f0); 1285 1287 break; 1286 1288 }
Note:
See TracChangeset
for help on using the changeset viewer.