Changeset 34371 in webkit for trunk/JavaScriptCore/VM/Opcode.h
- Timestamp:
- Jun 4, 2008, 9:39:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Opcode.h
r33979 r34371 34 34 35 35 namespace KJS { 36 36 37 #define DUMP_OPCODE_STATS 0 38 37 39 #define FOR_EACH_OPCODE_ID(macro) \ 38 40 macro(op_load) \ … … 137 139 #endif 138 140 141 #if DUMP_OPCODE_STATS 142 143 struct OpcodeStats { 144 OpcodeStats(); 145 ~OpcodeStats(); 146 static unsigned opcodeCounts[numOpcodeIDs]; 147 static void recordInstruction(int opcode); 148 }; 149 150 #endif 151 139 152 } // namespace KJS 140 153
Note:
See TracChangeset
for help on using the changeset viewer.