Changeset 37366 in webkit for trunk/JavaScriptCore/VM/CTI.cpp
- Timestamp:
- Oct 6, 2008, 8:53:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CTI.cpp
r37324 r37366 1172 1172 } 1173 1173 case op_tear_off_activation: { 1174 emitGetPutArg(instruction[i + 1].u.operand, 0, X86::ecx); 1174 1175 emitCall(i, Machine::cti_op_tear_off_activation); 1175 i += 1;1176 i += 2; 1176 1177 break; 1177 1178 } … … 1942 1943 } 1943 1944 case op_enter_with_activation: { 1944 emitCall(i, Machine::cti_op_push_activation);1945 1946 1945 // Even though CTI doesn't use them, we initialize our constant 1947 1946 // registers to zap stale pointers, to avoid unnecessarily prolonging … … 1951 1950 emitInitRegister(j); 1952 1951 1953 i+= 1; 1952 emitCall(i, Machine::cti_op_push_activation); 1953 emitPutResult(instruction[i + 1].u.operand); 1954 1955 i+= 2; 1954 1956 break; 1955 1957 }
Note:
See TracChangeset
for help on using the changeset viewer.