Changeset 38477 in webkit for trunk/JavaScriptCore/VM/CodeBlock.h
- Timestamp:
- Nov 16, 2008, 8:25:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeBlock.h
r38440 r38477 74 74 struct OffsetLocation { 75 75 int32_t branchOffset; 76 #if ENABLE( CTI)76 #if ENABLE(JIT) 77 77 void* ctiOffset; 78 78 #endif … … 165 165 typedef HashMap<RefPtr<UString::Rep>, OffsetLocation> StringOffsetTable; 166 166 StringOffsetTable offsetTable; 167 #if ENABLE( CTI)167 #if ENABLE(JIT) 168 168 void* ctiDefault; // FIXME: it should not be necessary to store this. 169 169 #endif … … 178 178 } 179 179 180 #if ENABLE( CTI)180 #if ENABLE(JIT) 181 181 inline void* ctiForValue(UString::Rep* value) 182 182 { … … 194 194 Vector<int32_t> branchOffsets; 195 195 int32_t min; 196 #if ENABLE( CTI)196 #if ENABLE(JIT) 197 197 Vector<void*> ctiOffsets; 198 198 void* ctiDefault; … … 206 206 } 207 207 208 #if ENABLE( CTI)208 #if ENABLE(JIT) 209 209 inline void* ctiForValue(int32_t value) 210 210 { … … 220 220 : ownerNode(ownerNode) 221 221 , globalData(0) 222 #if ENABLE( CTI)222 #if ENABLE(JIT) 223 223 , ctiCode(0) 224 224 #endif … … 238 238 ~CodeBlock(); 239 239 240 #if ENABLE( CTI)240 #if ENABLE(JIT) 241 241 void unlinkCallers(); 242 242 #endif … … 313 313 ScopeNode* ownerNode; 314 314 JSGlobalData* globalData; 315 #if ENABLE( CTI)315 #if ENABLE(JIT) 316 316 void* ctiCode; 317 317 #endif … … 355 355 Vector<StringJumpTable> stringSwitchJumpTables; 356 356 357 #if ENABLE( CTI)357 #if ENABLE(JIT) 358 358 HashMap<void*, unsigned> ctiReturnAddressVPCMap; 359 359 #endif
Note:
See TracChangeset
for help on using the changeset viewer.