Changeset 43331 in webkit for trunk/JavaScriptCore/interpreter
- Timestamp:
- May 6, 2009, 5:06:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r43220 r43331 3450 3450 NEXT_INSTRUCTION(); 3451 3451 } 3452 DEFINE_OPCODE(op_strcat) { 3453 int dst = (++vPC)->u.operand; 3454 int src = (++vPC)->u.operand; 3455 int count = (++vPC)->u.operand; 3456 3457 callFrame[dst] = concatenateStrings(callFrame, &callFrame->registers()[src], count); 3458 ++vPC; 3459 3460 NEXT_INSTRUCTION(); 3461 } 3462 DEFINE_OPCODE(op_to_primitive) { 3463 int dst = (++vPC)->u.operand; 3464 int src = (++vPC)->u.operand; 3465 3466 callFrame[dst] = callFrame[src].jsValue().toPrimitive(callFrame); 3467 ++vPC; 3468 3469 NEXT_INSTRUCTION(); 3470 } 3452 3471 DEFINE_OPCODE(op_push_scope) { 3453 3472 /* push_scope scope(r)
Note:
See TracChangeset
for help on using the changeset viewer.