3e5c0b63b478f6df7f6de56fb3662de2445bc540
[platform/upstream/v8.git] / src / regexp.js
1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 var $regexpLastMatchInfoOverride;
6
7 (function(global, utils) {
8
9 %CheckIsBootstrapping();
10
11 // -------------------------------------------------------------------
12 // Imports
13
14 var FLAG_harmony_regexps;
15 var FLAG_harmony_unicode_regexps;
16 var GlobalRegExp = global.RegExp;
17 var InternalPackedArray = utils.InternalPackedArray;
18 var ToNumber;
19
20 utils.Import(function(from) {
21   ToNumber = from.ToNumber;
22 });
23
24 utils.ImportFromExperimental(function(from) {
25   FLAG_harmony_regexps = from.FLAG_harmony_regexps;
26   FLAG_harmony_unicode_regexps = from.FLAG_harmony_unicode_regexps;
27 });
28
29 // -------------------------------------------------------------------
30
31 // Property of the builtins object for recording the result of the last
32 // regexp match.  The property RegExpLastMatchInfo includes the matchIndices
33 // array of the last successful regexp match (an array of start/end index
34 // pairs for the match and all the captured substrings), the invariant is
35 // that there are at least two capture indeces.  The array also contains
36 // the subject string for the last successful match.
37 var RegExpLastMatchInfo = new InternalPackedArray(
38  2,                 // REGEXP_NUMBER_OF_CAPTURES
39  "",                // Last subject.
40  UNDEFINED,         // Last input - settable with RegExpSetInput.
41  0,                 // REGEXP_FIRST_CAPTURE + 0
42  0                  // REGEXP_FIRST_CAPTURE + 1
43 );
44
45 // Override last match info with an array of actual substrings.
46 // Used internally by replace regexp with function.
47 // The array has the format of an "apply" argument for a replacement
48 // function.
49 $regexpLastMatchInfoOverride = null;
50
51 // -------------------------------------------------------------------
52
53 // A recursive descent parser for Patterns according to the grammar of
54 // ECMA-262 15.10.1, with deviations noted below.
55 function DoConstructRegExp(object, pattern, flags) {
56   // RegExp : Called as constructor; see ECMA-262, section 15.10.4.
57   if (IS_REGEXP(pattern)) {
58     if (!IS_UNDEFINED(flags)) throw MakeTypeError(kRegExpFlags);
59     flags = (pattern.global ? 'g' : '')
60         + (pattern.ignoreCase ? 'i' : '')
61         + (pattern.multiline ? 'm' : '');
62     if (FLAG_harmony_unicode_regexps)
63         flags += (pattern.unicode ? 'u' : '');
64     if (FLAG_harmony_regexps)
65         flags += (pattern.sticky ? 'y' : '');
66     pattern = pattern.source;
67   }
68
69   pattern = IS_UNDEFINED(pattern) ? '' : $toString(pattern);
70   flags = IS_UNDEFINED(flags) ? '' : $toString(flags);
71
72   %RegExpInitializeAndCompile(object, pattern, flags);
73 }
74
75
76 function RegExpConstructor(pattern, flags) {
77   if (%_IsConstructCall()) {
78     DoConstructRegExp(this, pattern, flags);
79   } else {
80     // RegExp : Called as function; see ECMA-262, section 15.10.3.1.
81     if (IS_REGEXP(pattern) && IS_UNDEFINED(flags)) {
82       return pattern;
83     }
84     return new GlobalRegExp(pattern, flags);
85   }
86 }
87
88 // Deprecated RegExp.prototype.compile method.  We behave like the constructor
89 // were called again.  In SpiderMonkey, this method returns the regexp object.
90 // In JSC, it returns undefined.  For compatibility with JSC, we match their
91 // behavior.
92 function RegExpCompileJS(pattern, flags) {
93   // Both JSC and SpiderMonkey treat a missing pattern argument as the
94   // empty subject string, and an actual undefined value passed as the
95   // pattern as the string 'undefined'.  Note that JSC is inconsistent
96   // here, treating undefined values differently in
97   // RegExp.prototype.compile and in the constructor, where they are
98   // the empty string.  For compatibility with JSC, we match their
99   // behavior.
100   if (this == GlobalRegExp.prototype) {
101     // We don't allow recompiling RegExp.prototype.
102     throw MakeTypeError(kIncompatibleMethodReceiver,
103                         'RegExp.prototype.compile', this);
104   }
105   if (IS_UNDEFINED(pattern) && %_ArgumentsLength() != 0) {
106     DoConstructRegExp(this, 'undefined', flags);
107   } else {
108     DoConstructRegExp(this, pattern, flags);
109   }
110 }
111
112
113 function DoRegExpExec(regexp, string, index) {
114   var result = %_RegExpExec(regexp, string, index, RegExpLastMatchInfo);
115   if (result !== null) $regexpLastMatchInfoOverride = null;
116   return result;
117 }
118
119
120 // This is kind of performance sensitive, so we want to avoid unnecessary
121 // type checks on inputs. But we also don't want to inline it several times
122 // manually, so we use a macro :-)
123 macro RETURN_NEW_RESULT_FROM_MATCH_INFO(MATCHINFO, STRING)
124   var numResults = NUMBER_OF_CAPTURES(MATCHINFO) >> 1;
125   var start = MATCHINFO[CAPTURE0];
126   var end = MATCHINFO[CAPTURE1];
127   // Calculate the substring of the first match before creating the result array
128   // to avoid an unnecessary write barrier storing the first result.
129   var first = %_SubString(STRING, start, end);
130   var result = %_RegExpConstructResult(numResults, start, STRING);
131   result[0] = first;
132   if (numResults == 1) return result;
133   var j = REGEXP_FIRST_CAPTURE + 2;
134   for (var i = 1; i < numResults; i++) {
135     start = MATCHINFO[j++];
136     if (start != -1) {
137       end = MATCHINFO[j];
138       result[i] = %_SubString(STRING, start, end);
139     }
140     j++;
141   }
142   return result;
143 endmacro
144
145
146 function RegExpExecNoTests(regexp, string, start) {
147   // Must be called with RegExp, string and positive integer as arguments.
148   var matchInfo = %_RegExpExec(regexp, string, start, RegExpLastMatchInfo);
149   if (matchInfo !== null) {
150     $regexpLastMatchInfoOverride = null;
151     RETURN_NEW_RESULT_FROM_MATCH_INFO(matchInfo, string);
152   }
153   regexp.lastIndex = 0;
154   return null;
155 }
156
157
158 function RegExpExecJS(string) {
159   if (!IS_REGEXP(this)) {
160     throw MakeTypeError(kIncompatibleMethodReceiver,
161                         'RegExp.prototype.exec', this);
162   }
163
164   string = TO_STRING_INLINE(string);
165   var lastIndex = this.lastIndex;
166
167   // Conversion is required by the ES5 specification (RegExp.prototype.exec
168   // algorithm, step 5) even if the value is discarded for non-global RegExps.
169   var i = TO_INTEGER(lastIndex);
170
171   var updateLastIndex = this.global || (FLAG_harmony_regexps && this.sticky);
172   if (updateLastIndex) {
173     if (i < 0 || i > string.length) {
174       this.lastIndex = 0;
175       return null;
176     }
177   } else {
178     i = 0;
179   }
180
181   // matchIndices is either null or the RegExpLastMatchInfo array.
182   var matchIndices = %_RegExpExec(this, string, i, RegExpLastMatchInfo);
183
184   if (IS_NULL(matchIndices)) {
185     this.lastIndex = 0;
186     return null;
187   }
188
189   // Successful match.
190   $regexpLastMatchInfoOverride = null;
191   if (updateLastIndex) {
192     this.lastIndex = RegExpLastMatchInfo[CAPTURE1];
193   }
194   RETURN_NEW_RESULT_FROM_MATCH_INFO(matchIndices, string);
195 }
196
197
198 // One-element cache for the simplified test regexp.
199 var regexp_key;
200 var regexp_val;
201
202 // Section 15.10.6.3 doesn't actually make sense, but the intention seems to be
203 // that test is defined in terms of String.prototype.exec. However, it probably
204 // means the original value of String.prototype.exec, which is what everybody
205 // else implements.
206 function RegExpTest(string) {
207   if (!IS_REGEXP(this)) {
208     throw MakeTypeError(kIncompatibleMethodReceiver,
209                         'RegExp.prototype.test', this);
210   }
211   string = TO_STRING_INLINE(string);
212
213   var lastIndex = this.lastIndex;
214
215   // Conversion is required by the ES5 specification (RegExp.prototype.exec
216   // algorithm, step 5) even if the value is discarded for non-global RegExps.
217   var i = TO_INTEGER(lastIndex);
218
219   if (this.global || (FLAG_harmony_regexps && this.sticky)) {
220     if (i < 0 || i > string.length) {
221       this.lastIndex = 0;
222       return false;
223     }
224     // matchIndices is either null or the RegExpLastMatchInfo array.
225     var matchIndices = %_RegExpExec(this, string, i, RegExpLastMatchInfo);
226     if (IS_NULL(matchIndices)) {
227       this.lastIndex = 0;
228       return false;
229     }
230     $regexpLastMatchInfoOverride = null;
231     this.lastIndex = RegExpLastMatchInfo[CAPTURE1];
232     return true;
233   } else {
234     // Non-global, non-sticky regexp.
235     // Remove irrelevant preceeding '.*' in a test regexp.  The expression
236     // checks whether this.source starts with '.*' and that the third char is
237     // not a '?'.  But see https://code.google.com/p/v8/issues/detail?id=3560
238     var regexp = this;
239     if (regexp.source.length >= 3 &&
240         %_StringCharCodeAt(regexp.source, 0) == 46 &&  // '.'
241         %_StringCharCodeAt(regexp.source, 1) == 42 &&  // '*'
242         %_StringCharCodeAt(regexp.source, 2) != 63) {  // '?'
243       regexp = TrimRegExp(regexp);
244     }
245     // matchIndices is either null or the RegExpLastMatchInfo array.
246     var matchIndices = %_RegExpExec(regexp, string, 0, RegExpLastMatchInfo);
247     if (IS_NULL(matchIndices)) {
248       this.lastIndex = 0;
249       return false;
250     }
251     $regexpLastMatchInfoOverride = null;
252     return true;
253   }
254 }
255
256 function TrimRegExp(regexp) {
257   if (!%_ObjectEquals(regexp_key, regexp)) {
258     regexp_key = regexp;
259     regexp_val =
260       new GlobalRegExp(%_SubString(regexp.source, 2, regexp.source.length),
261                        (regexp.ignoreCase ? regexp.multiline ? "im" : "i"
262                                           : regexp.multiline ? "m" : ""));
263   }
264   return regexp_val;
265 }
266
267
268 function RegExpToString() {
269   if (!IS_REGEXP(this)) {
270     throw MakeTypeError(kIncompatibleMethodReceiver,
271                         'RegExp.prototype.toString', this);
272   }
273   var result = '/' + this.source + '/';
274   if (this.global) result += 'g';
275   if (this.ignoreCase) result += 'i';
276   if (this.multiline) result += 'm';
277   if (FLAG_harmony_unicode_regexps && this.unicode) result += 'u';
278   if (FLAG_harmony_regexps && this.sticky) result += 'y';
279   return result;
280 }
281
282
283 // Getters for the static properties lastMatch, lastParen, leftContext, and
284 // rightContext of the RegExp constructor.  The properties are computed based
285 // on the captures array of the last successful match and the subject string
286 // of the last successful match.
287 function RegExpGetLastMatch() {
288   if ($regexpLastMatchInfoOverride !== null) {
289     return OVERRIDE_MATCH($regexpLastMatchInfoOverride);
290   }
291   var regExpSubject = LAST_SUBJECT(RegExpLastMatchInfo);
292   return %_SubString(regExpSubject,
293                      RegExpLastMatchInfo[CAPTURE0],
294                      RegExpLastMatchInfo[CAPTURE1]);
295 }
296
297
298 function RegExpGetLastParen() {
299   if ($regexpLastMatchInfoOverride) {
300     var override = $regexpLastMatchInfoOverride;
301     if (override.length <= 3) return '';
302     return override[override.length - 3];
303   }
304   var length = NUMBER_OF_CAPTURES(RegExpLastMatchInfo);
305   if (length <= 2) return '';  // There were no captures.
306   // We match the SpiderMonkey behavior: return the substring defined by the
307   // last pair (after the first pair) of elements of the capture array even if
308   // it is empty.
309   var regExpSubject = LAST_SUBJECT(RegExpLastMatchInfo);
310   var start = RegExpLastMatchInfo[CAPTURE(length - 2)];
311   var end = RegExpLastMatchInfo[CAPTURE(length - 1)];
312   if (start != -1 && end != -1) {
313     return %_SubString(regExpSubject, start, end);
314   }
315   return "";
316 }
317
318
319 function RegExpGetLeftContext() {
320   var start_index;
321   var subject;
322   if (!$regexpLastMatchInfoOverride) {
323     start_index = RegExpLastMatchInfo[CAPTURE0];
324     subject = LAST_SUBJECT(RegExpLastMatchInfo);
325   } else {
326     var override = $regexpLastMatchInfoOverride;
327     start_index = OVERRIDE_POS(override);
328     subject = OVERRIDE_SUBJECT(override);
329   }
330   return %_SubString(subject, 0, start_index);
331 }
332
333
334 function RegExpGetRightContext() {
335   var start_index;
336   var subject;
337   if (!$regexpLastMatchInfoOverride) {
338     start_index = RegExpLastMatchInfo[CAPTURE1];
339     subject = LAST_SUBJECT(RegExpLastMatchInfo);
340   } else {
341     var override = $regexpLastMatchInfoOverride;
342     subject = OVERRIDE_SUBJECT(override);
343     var match = OVERRIDE_MATCH(override);
344     start_index = OVERRIDE_POS(override) + match.length;
345   }
346   return %_SubString(subject, start_index, subject.length);
347 }
348
349
350 // The properties $1..$9 are the first nine capturing substrings of the last
351 // successful match, or ''.  The function RegExpMakeCaptureGetter will be
352 // called with indices from 1 to 9.
353 function RegExpMakeCaptureGetter(n) {
354   return function foo() {
355     if ($regexpLastMatchInfoOverride) {
356       if (n < $regexpLastMatchInfoOverride.length - 2) {
357         return OVERRIDE_CAPTURE($regexpLastMatchInfoOverride, n);
358       }
359       return '';
360     }
361     var index = n * 2;
362     if (index >= NUMBER_OF_CAPTURES(RegExpLastMatchInfo)) return '';
363     var matchStart = RegExpLastMatchInfo[CAPTURE(index)];
364     var matchEnd = RegExpLastMatchInfo[CAPTURE(index + 1)];
365     if (matchStart == -1 || matchEnd == -1) return '';
366     return %_SubString(LAST_SUBJECT(RegExpLastMatchInfo), matchStart, matchEnd);
367   };
368 }
369
370 // -------------------------------------------------------------------
371
372 %FunctionSetInstanceClassName(GlobalRegExp, 'RegExp');
373 %AddNamedProperty(
374     GlobalRegExp.prototype, 'constructor', GlobalRegExp, DONT_ENUM);
375 %SetCode(GlobalRegExp, RegExpConstructor);
376
377 utils.InstallFunctions(GlobalRegExp.prototype, DONT_ENUM, [
378   "exec", RegExpExecJS,
379   "test", RegExpTest,
380   "toString", RegExpToString,
381   "compile", RegExpCompileJS
382 ]);
383
384 // The length of compile is 1 in SpiderMonkey.
385 %FunctionSetLength(GlobalRegExp.prototype.compile, 1);
386
387 // The properties `input` and `$_` are aliases for each other.  When this
388 // value is set the value it is set to is coerced to a string.
389 // Getter and setter for the input.
390 var RegExpGetInput = function() {
391   var regExpInput = LAST_INPUT(RegExpLastMatchInfo);
392   return IS_UNDEFINED(regExpInput) ? "" : regExpInput;
393 };
394 var RegExpSetInput = function(string) {
395   LAST_INPUT(RegExpLastMatchInfo) = $toString(string);
396 };
397
398 %OptimizeObjectForAddingMultipleProperties(GlobalRegExp, 22);
399 %DefineAccessorPropertyUnchecked(GlobalRegExp, 'input', RegExpGetInput,
400                                  RegExpSetInput, DONT_DELETE);
401 %DefineAccessorPropertyUnchecked(GlobalRegExp, '$_', RegExpGetInput,
402                                  RegExpSetInput, DONT_ENUM | DONT_DELETE);
403
404 // The properties multiline and $* are aliases for each other.  When this
405 // value is set in SpiderMonkey, the value it is set to is coerced to a
406 // boolean.  We mimic that behavior with a slight difference: in SpiderMonkey
407 // the value of the expression 'RegExp.multiline = null' (for instance) is the
408 // boolean false (i.e., the value after coercion), while in V8 it is the value
409 // null (i.e., the value before coercion).
410
411 // Getter and setter for multiline.
412 var multiline = false;
413 var RegExpGetMultiline = function() { return multiline; };
414 var RegExpSetMultiline = function(flag) { multiline = flag ? true : false; };
415
416 %DefineAccessorPropertyUnchecked(GlobalRegExp, 'multiline', RegExpGetMultiline,
417                                  RegExpSetMultiline, DONT_DELETE);
418 %DefineAccessorPropertyUnchecked(GlobalRegExp, '$*', RegExpGetMultiline,
419                                  RegExpSetMultiline,
420                                  DONT_ENUM | DONT_DELETE);
421
422
423 var NoOpSetter = function(ignored) {};
424
425
426 // Static properties set by a successful match.
427 %DefineAccessorPropertyUnchecked(GlobalRegExp, 'lastMatch', RegExpGetLastMatch,
428                                  NoOpSetter, DONT_DELETE);
429 %DefineAccessorPropertyUnchecked(GlobalRegExp, '$&', RegExpGetLastMatch,
430                                  NoOpSetter, DONT_ENUM | DONT_DELETE);
431 %DefineAccessorPropertyUnchecked(GlobalRegExp, 'lastParen', RegExpGetLastParen,
432                                  NoOpSetter, DONT_DELETE);
433 %DefineAccessorPropertyUnchecked(GlobalRegExp, '$+', RegExpGetLastParen,
434                                  NoOpSetter, DONT_ENUM | DONT_DELETE);
435 %DefineAccessorPropertyUnchecked(GlobalRegExp, 'leftContext',
436                                  RegExpGetLeftContext, NoOpSetter,
437                                  DONT_DELETE);
438 %DefineAccessorPropertyUnchecked(GlobalRegExp, '$`', RegExpGetLeftContext,
439                                  NoOpSetter, DONT_ENUM | DONT_DELETE);
440 %DefineAccessorPropertyUnchecked(GlobalRegExp, 'rightContext',
441                                  RegExpGetRightContext, NoOpSetter,
442                                  DONT_DELETE);
443 %DefineAccessorPropertyUnchecked(GlobalRegExp, "$'", RegExpGetRightContext,
444                                  NoOpSetter, DONT_ENUM | DONT_DELETE);
445
446 for (var i = 1; i < 10; ++i) {
447   %DefineAccessorPropertyUnchecked(GlobalRegExp, '$' + i,
448                                    RegExpMakeCaptureGetter(i), NoOpSetter,
449                                    DONT_DELETE);
450 }
451 %ToFastProperties(GlobalRegExp);
452
453 // -------------------------------------------------------------------
454 // Exports
455
456 utils.Export(function(to) {
457   to.RegExpExec = DoRegExpExec;
458   to.RegExpExecNoTests = RegExpExecNoTests;
459   to.RegExpLastMatchInfo = RegExpLastMatchInfo;
460   to.RegExpTest = RegExpTest;
461 });
462
463 })