Changeset 128219 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Sep 11, 2012, 1:00:31 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r128096 r128219 292 292 293 293 #if ENABLE(LLINT) 294 Structure* structure = instruction[4].u.structure.get(); 295 dataLog(" llint("); 296 dumpStructure("struct", exec, structure, ident); 297 dataLog(")"); 294 if (exec->interpreter()->getOpcodeID(instruction[0].u.opcode) == op_get_array_length) 295 dataLog(" llint(array_length)"); 296 else { 297 Structure* structure = instruction[4].u.structure.get(); 298 dataLog(" llint("); 299 dumpStructure("struct", exec, structure, ident); 300 dataLog(")"); 301 } 298 302 #endif 299 303 … … 2082 2086 curInstruction[0].u.opcode = interpreter->getOpcode(op_put_by_id); 2083 2087 break; 2088 case op_get_array_length: 2089 break; 2084 2090 default: 2085 2091 ASSERT_NOT_REACHED();
Note:
See TracChangeset
for help on using the changeset viewer.