Changeset 34858 in webkit for trunk/JavaScriptCore/pcre/pcre_internal.h
- Timestamp:
- Jun 28, 2008, 3:21:20 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_internal.h
r34560 r34858 70 70 #ifndef DFTABLES 71 71 72 // Change the following to 1 to dump used regular expressions at process exit time. 73 #define REGEXP_HISTOGRAM 0 74 72 75 #include "Assertions.h" 73 76 … … 316 319 #define EXTRACT_BASIC_MAX 100 317 320 318 /* The index of names and the 319 code vector run on as long as necessary after the end. We store an explicit 320 offset to the name table so that if a regex is compiled on one host, saved, and 321 then run on another where the size of pointers is different, all might still 322 be well. For the case of compiled-on-4 and run-on-8, we include an extra 323 pointer that is always NULL. 324 */ 321 /* The code vector runs on as long as necessary after the end. */ 325 322 326 323 struct JSRegExp { … … 332 329 unsigned short firstByte; 333 330 unsigned short reqByte; 331 332 #if REGEXP_HISTOGRAM 333 size_t stringOffset; 334 size_t stringLength; 335 #endif 334 336 }; 335 337
Note:
See TracChangeset
for help on using the changeset viewer.