Changeset 221111 in webkit for trunk/Source/JavaScriptCore/yarr/YarrJIT.cpp
- Timestamp:
- Aug 23, 2017, 3:24:30 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/yarr/YarrJIT.cpp
r221052 r221111 1269 1269 } 1270 1270 1271 add32(TrustedImm32(1), countRegister);1272 1271 add32(TrustedImm32(1), index); 1273 1272 #ifdef JIT_UNICODE_EXPRESSIONS … … 1279 1278 } 1280 1279 #endif 1280 add32(TrustedImm32(1), countRegister); 1281 1281 1282 1282 if (term->quantityMaxCount != quantifyInfinite) { … … 1375 1375 } 1376 1376 1377 add32(TrustedImm32(1), countRegister);1378 1377 add32(TrustedImm32(1), index); 1379 1378 #ifdef JIT_UNICODE_EXPRESSIONS 1380 1379 if (m_decodeSurrogatePairs) { 1380 nonGreedyFailures.append(atEndOfInput()); 1381 1381 Jump isBMPChar = branch32(LessThan, character, supplementaryPlanesBase); 1382 1382 add32(TrustedImm32(1), index); … … 1384 1384 } 1385 1385 #endif 1386 add32(TrustedImm32(1), countRegister); 1386 1387 1387 1388 jump(op.m_reentry);
Note:
See TracChangeset
for help on using the changeset viewer.