Changeset 155575 in webkit for trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp
- Timestamp:
- Sep 11, 2013, 4:28:09 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp
r155564 r155575 332 332 #if USE(JSVALUE64) 333 333 ASSERT(info.gpr() == source); 334 if (registerFormat == DataFormatInt eger)334 if (registerFormat == DataFormatInt32) 335 335 spillAction = Store32Payload; 336 336 else if (registerFormat == DataFormatCell || registerFormat == DataFormatStorage) … … 351 351 } 352 352 353 if (registerFormat == DataFormatInt eger) {353 if (registerFormat == DataFormatInt32) { 354 354 ASSERT(info.gpr() == source); 355 ASSERT(isJSInt eger(info.registerFormat()));355 ASSERT(isJSInt32(info.registerFormat())); 356 356 if (node->hasConstant()) { 357 357 ASSERT(isInt32Constant(node)); … … 396 396 else 397 397 fillAction = SetJSConstant; 398 } else if (info.spillFormat() == DataFormatInt eger) {399 ASSERT(registerFormat == DataFormatJSInt eger);398 } else if (info.spillFormat() == DataFormatInt32) { 399 ASSERT(registerFormat == DataFormatJSInt32); 400 400 fillAction = Load32PayloadBoxInt; 401 401 } else if (info.spillFormat() == DataFormatDouble) { … … 412 412 else { // Fill the Tag 413 413 switch (info.spillFormat()) { 414 case DataFormatInt eger:415 ASSERT(registerFormat == DataFormatJSInt eger);414 case DataFormatInt32: 415 ASSERT(registerFormat == DataFormatJSInt32); 416 416 fillAction = SetInt32Tag; 417 417 break; … … 1084 1084 break; 1085 1085 case DataFormatJS: 1086 case DataFormatJSInt eger:1086 case DataFormatJSInt32: 1087 1087 case DataFormatJSDouble: 1088 1088 case DataFormatJSCell: … … 1091 1091 break; 1092 1092 #endif 1093 case DataFormatInt eger:1093 case DataFormatInt32: 1094 1094 case DataFormatCell: 1095 1095 case DataFormatBoolean: … … 2219 2219 return GeneratedOperandJSValue; 2220 2220 2221 case DataFormatJSInt eger:2222 case DataFormatInt eger:2221 case DataFormatJSInt32: 2222 case DataFormatInt32: 2223 2223 return GeneratedOperandInteger; 2224 2224 … … 2325 2325 JITCompiler::JumpList converted; 2326 2326 2327 if (info.registerFormat() == DataFormatJSInt eger)2327 if (info.registerFormat() == DataFormatJSInt32) 2328 2328 m_jit.move(payloadGPR, resultGpr); 2329 2329 else {
Note:
See TracChangeset
for help on using the changeset viewer.