Changeset 39255 in webkit for trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h
- Timestamp:
- Dec 12, 2008, 2:48:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h
r39070 r39255 209 209 m_codeBlock->addExpressionInfo(info); 210 210 } 211 212 void emitGetByIdExceptionInfo(OpcodeID opcodeID) 213 { 214 // Only op_construct and op_instanceof need exception info for 215 // a preceding op_get_by_id. 216 ASSERT(opcodeID == op_construct || opcodeID == op_instanceof); 217 GetByIdExceptionInfo info; 218 info.bytecodeOffset = instructions().size(); 219 info.isOpConstruct = (opcodeID == op_construct); 220 m_codeBlock->addGetByIdExceptionInfo(info); 221 } 211 222 212 223 ALWAYS_INLINE bool leftHandSideNeedsCopy(bool rightHasAssignments, bool rightIsPure)
Note:
See TracChangeset
for help on using the changeset viewer.