Changeset 34851 in webkit for trunk/JavaScriptCore/VM/CodeBlock.cpp
- Timestamp:
- Jun 28, 2008, 8:50:49 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeBlock.cpp
r34842 r34851 31 31 #include "CodeBlock.h" 32 32 33 #include "JSValue.h" 33 34 #include "Machine.h" 34 35 #include "debugger.h" 35 #include "JSValue.h"36 36 #include <stdio.h> 37 37 … … 218 218 } 219 219 case op_new_array: { 220 int r0 = (++it)->u.operand; 221 printf("[%4d] new_array\t %s\n", location, registerName(r0).c_str()); 220 int dst = (++it)->u.operand; 221 int argv = (++it)->u.operand; 222 int argc = (++it)->u.operand; 223 printf("[%4d] new_array\t %s, %s, %d\n", location, registerName(dst).c_str(), registerName(argv).c_str(), argc); 222 224 break; 223 225 }
Note:
See TracChangeset
for help on using the changeset viewer.