blob: f1c773b8374fbf6821cf020e7c6946e6c4a44a80 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2008-2009 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#include "v8.h"
Leon Clarkef7060e22010-06-03 12:02:55 +010029
30#if defined(V8_TARGET_ARCH_IA32)
31
Steve Blocka7e24c12009-10-30 11:49:00 +000032#include "unicode.h"
33#include "log.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000034#include "regexp-stack.h"
35#include "macro-assembler.h"
36#include "regexp-macro-assembler.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000037#include "ia32/regexp-macro-assembler-ia32.h"
38
39namespace v8 {
40namespace internal {
41
Steve Block6ded16b2010-05-10 14:33:55 +010042#ifndef V8_INTERPRETED_REGEXP
Steve Blocka7e24c12009-10-30 11:49:00 +000043/*
44 * This assembler uses the following register assignment convention
45 * - edx : current character. Must be loaded using LoadCurrentCharacter
46 * before using any of the dispatch methods.
47 * - edi : current position in input, as negative offset from end of string.
48 * Please notice that this is the byte offset, not the character offset!
49 * - esi : end of input (points to byte after last character in input).
50 * - ebp : frame pointer. Used to access arguments, local variables and
51 * RegExp registers.
52 * - esp : points to tip of C stack.
53 * - ecx : points to tip of backtrack stack
54 *
Kristian Monsen25f61362010-05-21 11:50:48 +010055 * The registers eax and ebx are free to use for computations.
Steve Blocka7e24c12009-10-30 11:49:00 +000056 *
57 * Each call to a public method should retain this convention.
58 * The stack will have the following structure:
Steve Block44f0eee2011-05-26 01:26:41 +010059 * - Isolate* isolate (Address of the current isolate)
Leon Clarkee46be812010-01-19 14:06:41 +000060 * - direct_call (if 1, direct call from JavaScript code, if 0
61 * call through the runtime system)
62 * - stack_area_base (High end of the memory area to use as
63 * backtracking stack)
Leon Clarkee46be812010-01-19 14:06:41 +000064 * - int* capture_array (int[num_saved_registers_], for output).
65 * - end of input (Address of end of string)
66 * - start of input (Address of first character in string)
67 * - start index (character index of start)
68 * - String* input_string (location of a handle containing the string)
Steve Blocka7e24c12009-10-30 11:49:00 +000069 * --- frame alignment (if applicable) ---
70 * - return address
71 * ebp-> - old ebp
72 * - backup of caller esi
73 * - backup of caller edi
74 * - backup of caller ebx
75 * - Offset of location before start of input (effectively character
76 * position -1). Used to initialize capture registers to a non-position.
77 * - register 0 ebp[-4] (Only positions must be stored in the first
78 * - register 1 ebp[-8] num_saved_registers_ registers)
79 * - ...
80 *
81 * The first num_saved_registers_ registers are initialized to point to
82 * "character -1" in the string (i.e., char_size() bytes before the first
83 * character of the string). The remaining registers starts out as garbage.
84 *
85 * The data up to the return address must be placed there by the calling
86 * code, by calling the code entry as cast to a function with the signature:
87 * int (*match)(String* input_string,
Leon Clarkee46be812010-01-19 14:06:41 +000088 * int start_index,
Steve Blocka7e24c12009-10-30 11:49:00 +000089 * Address start,
90 * Address end,
91 * int* capture_output_array,
92 * bool at_start,
Leon Clarkee46be812010-01-19 14:06:41 +000093 * byte* stack_area_base,
94 * bool direct_call)
Steve Blocka7e24c12009-10-30 11:49:00 +000095 */
96
97#define __ ACCESS_MASM(masm_)
98
99RegExpMacroAssemblerIA32::RegExpMacroAssemblerIA32(
100 Mode mode,
101 int registers_to_save)
102 : masm_(new MacroAssembler(NULL, kRegExpCodeSize)),
103 mode_(mode),
104 num_registers_(registers_to_save),
105 num_saved_registers_(registers_to_save),
106 entry_label_(),
107 start_label_(),
108 success_label_(),
109 backtrack_label_(),
110 exit_label_() {
111 ASSERT_EQ(0, registers_to_save % 2);
112 __ jmp(&entry_label_); // We'll write the entry code later.
113 __ bind(&start_label_); // And then continue from here.
114}
115
116
117RegExpMacroAssemblerIA32::~RegExpMacroAssemblerIA32() {
118 delete masm_;
119 // Unuse labels in case we throw away the assembler without calling GetCode.
120 entry_label_.Unuse();
121 start_label_.Unuse();
122 success_label_.Unuse();
123 backtrack_label_.Unuse();
124 exit_label_.Unuse();
125 check_preempt_label_.Unuse();
126 stack_overflow_label_.Unuse();
127}
128
129
130int RegExpMacroAssemblerIA32::stack_limit_slack() {
131 return RegExpStack::kStackLimitSlack;
132}
133
134
135void RegExpMacroAssemblerIA32::AdvanceCurrentPosition(int by) {
136 if (by != 0) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000137 __ add(Operand(edi), Immediate(by * char_size()));
138 }
139}
140
141
142void RegExpMacroAssemblerIA32::AdvanceRegister(int reg, int by) {
143 ASSERT(reg >= 0);
144 ASSERT(reg < num_registers_);
145 if (by != 0) {
146 __ add(register_location(reg), Immediate(by));
147 }
148}
149
150
151void RegExpMacroAssemblerIA32::Backtrack() {
152 CheckPreemption();
153 // Pop Code* offset from backtrack stack, add Code* and jump to location.
154 Pop(ebx);
155 __ add(Operand(ebx), Immediate(masm_->CodeObject()));
156 __ jmp(Operand(ebx));
157}
158
159
160void RegExpMacroAssemblerIA32::Bind(Label* label) {
161 __ bind(label);
162}
163
164
165void RegExpMacroAssemblerIA32::CheckCharacter(uint32_t c, Label* on_equal) {
166 __ cmp(current_character(), c);
167 BranchOrBacktrack(equal, on_equal);
168}
169
170
171void RegExpMacroAssemblerIA32::CheckCharacterGT(uc16 limit, Label* on_greater) {
172 __ cmp(current_character(), limit);
173 BranchOrBacktrack(greater, on_greater);
174}
175
176
177void RegExpMacroAssemblerIA32::CheckAtStart(Label* on_at_start) {
178 Label not_at_start;
179 // Did we start the match at the start of the string at all?
Kristian Monsen25f61362010-05-21 11:50:48 +0100180 __ cmp(Operand(ebp, kStartIndex), Immediate(0));
181 BranchOrBacktrack(not_equal, &not_at_start);
Steve Blocka7e24c12009-10-30 11:49:00 +0000182 // If we did, are we still at the start of the input?
183 __ lea(eax, Operand(esi, edi, times_1, 0));
184 __ cmp(eax, Operand(ebp, kInputStart));
185 BranchOrBacktrack(equal, on_at_start);
186 __ bind(&not_at_start);
187}
188
189
190void RegExpMacroAssemblerIA32::CheckNotAtStart(Label* on_not_at_start) {
191 // Did we start the match at the start of the string at all?
Kristian Monsen25f61362010-05-21 11:50:48 +0100192 __ cmp(Operand(ebp, kStartIndex), Immediate(0));
193 BranchOrBacktrack(not_equal, on_not_at_start);
Steve Blocka7e24c12009-10-30 11:49:00 +0000194 // If we did, are we still at the start of the input?
195 __ lea(eax, Operand(esi, edi, times_1, 0));
196 __ cmp(eax, Operand(ebp, kInputStart));
197 BranchOrBacktrack(not_equal, on_not_at_start);
198}
199
200
201void RegExpMacroAssemblerIA32::CheckCharacterLT(uc16 limit, Label* on_less) {
202 __ cmp(current_character(), limit);
203 BranchOrBacktrack(less, on_less);
204}
205
206
207void RegExpMacroAssemblerIA32::CheckCharacters(Vector<const uc16> str,
208 int cp_offset,
209 Label* on_failure,
210 bool check_end_of_string) {
Kristian Monsen25f61362010-05-21 11:50:48 +0100211#ifdef DEBUG
212 // If input is ASCII, don't even bother calling here if the string to
213 // match contains a non-ascii character.
214 if (mode_ == ASCII) {
Steve Block9fac8402011-05-12 15:51:54 +0100215 ASSERT(String::IsAscii(str.start(), str.length()));
Kristian Monsen25f61362010-05-21 11:50:48 +0100216 }
217#endif
Steve Blocka7e24c12009-10-30 11:49:00 +0000218 int byte_length = str.length() * char_size();
219 int byte_offset = cp_offset * char_size();
220 if (check_end_of_string) {
221 // Check that there are at least str.length() characters left in the input.
222 __ cmp(Operand(edi), Immediate(-(byte_offset + byte_length)));
223 BranchOrBacktrack(greater, on_failure);
224 }
225
226 if (on_failure == NULL) {
227 // Instead of inlining a backtrack, (re)use the global backtrack target.
228 on_failure = &backtrack_label_;
229 }
230
Kristian Monsen25f61362010-05-21 11:50:48 +0100231 // Do one character test first to minimize loading for the case that
232 // we don't match at all (loading more than one character introduces that
233 // chance of reading unaligned and reading across cache boundaries).
234 // If the first character matches, expect a larger chance of matching the
235 // string, and start loading more characters at a time.
236 if (mode_ == ASCII) {
237 __ cmpb(Operand(esi, edi, times_1, byte_offset),
238 static_cast<int8_t>(str[0]));
239 } else {
240 // Don't use 16-bit immediate. The size changing prefix throws off
241 // pre-decoding.
242 __ movzx_w(eax,
243 Operand(esi, edi, times_1, byte_offset));
244 __ cmp(eax, static_cast<int32_t>(str[0]));
245 }
246 BranchOrBacktrack(not_equal, on_failure);
247
248 __ lea(ebx, Operand(esi, edi, times_1, 0));
249 for (int i = 1, n = str.length(); i < n;) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000250 if (mode_ == ASCII) {
Kristian Monsen25f61362010-05-21 11:50:48 +0100251 if (i <= n - 4) {
252 int combined_chars =
253 (static_cast<uint32_t>(str[i + 0]) << 0) |
254 (static_cast<uint32_t>(str[i + 1]) << 8) |
255 (static_cast<uint32_t>(str[i + 2]) << 16) |
256 (static_cast<uint32_t>(str[i + 3]) << 24);
257 __ cmp(Operand(ebx, byte_offset + i), Immediate(combined_chars));
258 i += 4;
259 } else {
260 __ cmpb(Operand(ebx, byte_offset + i),
261 static_cast<int8_t>(str[i]));
262 i += 1;
263 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000264 } else {
265 ASSERT(mode_ == UC16);
Kristian Monsen25f61362010-05-21 11:50:48 +0100266 if (i <= n - 2) {
267 __ cmp(Operand(ebx, byte_offset + i * sizeof(uc16)),
268 Immediate(*reinterpret_cast<const int*>(&str[i])));
269 i += 2;
270 } else {
271 // Avoid a 16-bit immediate operation. It uses the length-changing
272 // 0x66 prefix which causes pre-decoder misprediction and pipeline
273 // stalls. See
274 // "Intel(R) 64 and IA-32 Architectures Optimization Reference Manual"
275 // (248966.pdf) section 3.4.2.3 "Length-Changing Prefixes (LCP)"
276 __ movzx_w(eax,
277 Operand(ebx, byte_offset + i * sizeof(uc16)));
278 __ cmp(eax, static_cast<int32_t>(str[i]));
279 i += 1;
280 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000281 }
282 BranchOrBacktrack(not_equal, on_failure);
283 }
284}
285
286
287void RegExpMacroAssemblerIA32::CheckGreedyLoop(Label* on_equal) {
288 Label fallthrough;
289 __ cmp(edi, Operand(backtrack_stackpointer(), 0));
290 __ j(not_equal, &fallthrough);
291 __ add(Operand(backtrack_stackpointer()), Immediate(kPointerSize)); // Pop.
292 BranchOrBacktrack(no_condition, on_equal);
293 __ bind(&fallthrough);
294}
295
296
297void RegExpMacroAssemblerIA32::CheckNotBackReferenceIgnoreCase(
298 int start_reg,
299 Label* on_no_match) {
300 Label fallthrough;
301 __ mov(edx, register_location(start_reg)); // Index of start of capture
302 __ mov(ebx, register_location(start_reg + 1)); // Index of end of capture
303 __ sub(ebx, Operand(edx)); // Length of capture.
304
305 // The length of a capture should not be negative. This can only happen
306 // if the end of the capture is unrecorded, or at a point earlier than
307 // the start of the capture.
308 BranchOrBacktrack(less, on_no_match, not_taken);
309
310 // If length is zero, either the capture is empty or it is completely
311 // uncaptured. In either case succeed immediately.
312 __ j(equal, &fallthrough);
313
314 if (mode_ == ASCII) {
315 Label success;
316 Label fail;
317 Label loop_increment;
318 // Save register contents to make the registers available below.
319 __ push(edi);
320 __ push(backtrack_stackpointer());
321 // After this, the eax, ecx, and edi registers are available.
322
323 __ add(edx, Operand(esi)); // Start of capture
324 __ add(edi, Operand(esi)); // Start of text to match against capture.
325 __ add(ebx, Operand(edi)); // End of text to match against capture.
326
327 Label loop;
328 __ bind(&loop);
329 __ movzx_b(eax, Operand(edi, 0));
330 __ cmpb_al(Operand(edx, 0));
331 __ j(equal, &loop_increment);
332
333 // Mismatch, try case-insensitive match (converting letters to lower-case).
334 __ or_(eax, 0x20); // Convert match character to lower-case.
335 __ lea(ecx, Operand(eax, -'a'));
336 __ cmp(ecx, static_cast<int32_t>('z' - 'a')); // Is eax a lowercase letter?
337 __ j(above, &fail);
338 // Also convert capture character.
339 __ movzx_b(ecx, Operand(edx, 0));
340 __ or_(ecx, 0x20);
341
342 __ cmp(eax, Operand(ecx));
343 __ j(not_equal, &fail);
344
345 __ bind(&loop_increment);
346 // Increment pointers into match and capture strings.
347 __ add(Operand(edx), Immediate(1));
348 __ add(Operand(edi), Immediate(1));
349 // Compare to end of match, and loop if not done.
350 __ cmp(edi, Operand(ebx));
351 __ j(below, &loop, taken);
352 __ jmp(&success);
353
354 __ bind(&fail);
355 // Restore original values before failing.
356 __ pop(backtrack_stackpointer());
357 __ pop(edi);
358 BranchOrBacktrack(no_condition, on_no_match);
359
360 __ bind(&success);
361 // Restore original value before continuing.
362 __ pop(backtrack_stackpointer());
363 // Drop original value of character position.
364 __ add(Operand(esp), Immediate(kPointerSize));
365 // Compute new value of character position after the matched part.
366 __ sub(edi, Operand(esi));
367 } else {
368 ASSERT(mode_ == UC16);
369 // Save registers before calling C function.
370 __ push(esi);
371 __ push(edi);
372 __ push(backtrack_stackpointer());
373 __ push(ebx);
374
Steve Block6ded16b2010-05-10 14:33:55 +0100375 static const int argument_count = 3;
376 __ PrepareCallCFunction(argument_count, ecx);
Steve Blocka7e24c12009-10-30 11:49:00 +0000377 // Put arguments into allocated stack area, last argument highest on stack.
378 // Parameters are
379 // Address byte_offset1 - Address captured substring's start.
380 // Address byte_offset2 - Address of current character position.
381 // size_t byte_length - length of capture in bytes(!)
382
383 // Set byte_length.
384 __ mov(Operand(esp, 2 * kPointerSize), ebx);
385 // Set byte_offset2.
386 // Found by adding negative string-end offset of current position (edi)
387 // to end of string.
388 __ add(edi, Operand(esi));
389 __ mov(Operand(esp, 1 * kPointerSize), edi);
390 // Set byte_offset1.
391 // Start of capture, where edx already holds string-end negative offset.
392 __ add(edx, Operand(esi));
393 __ mov(Operand(esp, 0 * kPointerSize), edx);
394
395 ExternalReference compare =
Steve Block44f0eee2011-05-26 01:26:41 +0100396 ExternalReference::re_case_insensitive_compare_uc16(masm_->isolate());
Steve Block6ded16b2010-05-10 14:33:55 +0100397 __ CallCFunction(compare, argument_count);
Steve Blocka7e24c12009-10-30 11:49:00 +0000398 // Pop original values before reacting on result value.
399 __ pop(ebx);
400 __ pop(backtrack_stackpointer());
401 __ pop(edi);
402 __ pop(esi);
403
404 // Check if function returned non-zero for success or zero for failure.
405 __ or_(eax, Operand(eax));
406 BranchOrBacktrack(zero, on_no_match);
407 // On success, increment position by length of capture.
408 __ add(edi, Operand(ebx));
409 }
410 __ bind(&fallthrough);
411}
412
413
414void RegExpMacroAssemblerIA32::CheckNotBackReference(
415 int start_reg,
416 Label* on_no_match) {
417 Label fallthrough;
418 Label success;
419 Label fail;
420
421 // Find length of back-referenced capture.
422 __ mov(edx, register_location(start_reg));
423 __ mov(eax, register_location(start_reg + 1));
424 __ sub(eax, Operand(edx)); // Length to check.
425 // Fail on partial or illegal capture (start of capture after end of capture).
426 BranchOrBacktrack(less, on_no_match);
427 // Succeed on empty capture (including no capture)
428 __ j(equal, &fallthrough);
429
430 // Check that there are sufficient characters left in the input.
431 __ mov(ebx, edi);
432 __ add(ebx, Operand(eax));
433 BranchOrBacktrack(greater, on_no_match);
434
435 // Save register to make it available below.
436 __ push(backtrack_stackpointer());
437
438 // Compute pointers to match string and capture string
439 __ lea(ebx, Operand(esi, edi, times_1, 0)); // Start of match.
440 __ add(edx, Operand(esi)); // Start of capture.
441 __ lea(ecx, Operand(eax, ebx, times_1, 0)); // End of match
442
443 Label loop;
444 __ bind(&loop);
445 if (mode_ == ASCII) {
446 __ movzx_b(eax, Operand(edx, 0));
447 __ cmpb_al(Operand(ebx, 0));
448 } else {
449 ASSERT(mode_ == UC16);
450 __ movzx_w(eax, Operand(edx, 0));
451 __ cmpw_ax(Operand(ebx, 0));
452 }
453 __ j(not_equal, &fail);
454 // Increment pointers into capture and match string.
455 __ add(Operand(edx), Immediate(char_size()));
456 __ add(Operand(ebx), Immediate(char_size()));
457 // Check if we have reached end of match area.
458 __ cmp(ebx, Operand(ecx));
459 __ j(below, &loop);
460 __ jmp(&success);
461
462 __ bind(&fail);
463 // Restore backtrack stackpointer.
464 __ pop(backtrack_stackpointer());
465 BranchOrBacktrack(no_condition, on_no_match);
466
467 __ bind(&success);
468 // Move current character position to position after match.
469 __ mov(edi, ecx);
470 __ sub(Operand(edi), esi);
471 // Restore backtrack stackpointer.
472 __ pop(backtrack_stackpointer());
473
474 __ bind(&fallthrough);
475}
476
477
478void RegExpMacroAssemblerIA32::CheckNotRegistersEqual(int reg1,
479 int reg2,
480 Label* on_not_equal) {
481 __ mov(eax, register_location(reg1));
482 __ cmp(eax, register_location(reg2));
483 BranchOrBacktrack(not_equal, on_not_equal);
484}
485
486
487void RegExpMacroAssemblerIA32::CheckNotCharacter(uint32_t c,
488 Label* on_not_equal) {
489 __ cmp(current_character(), c);
490 BranchOrBacktrack(not_equal, on_not_equal);
491}
492
493
494void RegExpMacroAssemblerIA32::CheckCharacterAfterAnd(uint32_t c,
495 uint32_t mask,
496 Label* on_equal) {
497 __ mov(eax, current_character());
498 __ and_(eax, mask);
499 __ cmp(eax, c);
500 BranchOrBacktrack(equal, on_equal);
501}
502
503
504void RegExpMacroAssemblerIA32::CheckNotCharacterAfterAnd(uint32_t c,
505 uint32_t mask,
506 Label* on_not_equal) {
507 __ mov(eax, current_character());
508 __ and_(eax, mask);
509 __ cmp(eax, c);
510 BranchOrBacktrack(not_equal, on_not_equal);
511}
512
513
514void RegExpMacroAssemblerIA32::CheckNotCharacterAfterMinusAnd(
515 uc16 c,
516 uc16 minus,
517 uc16 mask,
518 Label* on_not_equal) {
519 ASSERT(minus < String::kMaxUC16CharCode);
520 __ lea(eax, Operand(current_character(), -minus));
521 __ and_(eax, mask);
522 __ cmp(eax, c);
523 BranchOrBacktrack(not_equal, on_not_equal);
524}
525
526
527bool RegExpMacroAssemblerIA32::CheckSpecialCharacterClass(uc16 type,
Steve Blocka7e24c12009-10-30 11:49:00 +0000528 Label* on_no_match) {
529 // Range checks (c in min..max) are generally implemented by an unsigned
530 // (c - min) <= (max - min) check
531 switch (type) {
532 case 's':
533 // Match space-characters
534 if (mode_ == ASCII) {
535 // ASCII space characters are '\t'..'\r' and ' '.
Steve Blocka7e24c12009-10-30 11:49:00 +0000536 Label success;
537 __ cmp(current_character(), ' ');
538 __ j(equal, &success);
539 // Check range 0x09..0x0d
Leon Clarkee46be812010-01-19 14:06:41 +0000540 __ lea(eax, Operand(current_character(), -'\t'));
541 __ cmp(eax, '\r' - '\t');
Steve Blocka7e24c12009-10-30 11:49:00 +0000542 BranchOrBacktrack(above, on_no_match);
543 __ bind(&success);
544 return true;
545 }
546 return false;
547 case 'S':
548 // Match non-space characters.
Steve Blocka7e24c12009-10-30 11:49:00 +0000549 if (mode_ == ASCII) {
550 // ASCII space characters are '\t'..'\r' and ' '.
551 __ cmp(current_character(), ' ');
552 BranchOrBacktrack(equal, on_no_match);
Leon Clarkee46be812010-01-19 14:06:41 +0000553 __ lea(eax, Operand(current_character(), -'\t'));
554 __ cmp(eax, '\r' - '\t');
Steve Blocka7e24c12009-10-30 11:49:00 +0000555 BranchOrBacktrack(below_equal, on_no_match);
556 return true;
557 }
558 return false;
559 case 'd':
560 // Match ASCII digits ('0'..'9')
Leon Clarkee46be812010-01-19 14:06:41 +0000561 __ lea(eax, Operand(current_character(), -'0'));
562 __ cmp(eax, '9' - '0');
Steve Blocka7e24c12009-10-30 11:49:00 +0000563 BranchOrBacktrack(above, on_no_match);
564 return true;
565 case 'D':
566 // Match non ASCII-digits
Leon Clarkee46be812010-01-19 14:06:41 +0000567 __ lea(eax, Operand(current_character(), -'0'));
568 __ cmp(eax, '9' - '0');
Steve Blocka7e24c12009-10-30 11:49:00 +0000569 BranchOrBacktrack(below_equal, on_no_match);
570 return true;
571 case '.': {
572 // Match non-newlines (not 0x0a('\n'), 0x0d('\r'), 0x2028 and 0x2029)
Leon Clarkee46be812010-01-19 14:06:41 +0000573 __ mov(Operand(eax), current_character());
574 __ xor_(Operand(eax), Immediate(0x01));
Steve Blocka7e24c12009-10-30 11:49:00 +0000575 // See if current character is '\n'^1 or '\r'^1, i.e., 0x0b or 0x0c
Leon Clarkee46be812010-01-19 14:06:41 +0000576 __ sub(Operand(eax), Immediate(0x0b));
577 __ cmp(eax, 0x0c - 0x0b);
Steve Blocka7e24c12009-10-30 11:49:00 +0000578 BranchOrBacktrack(below_equal, on_no_match);
579 if (mode_ == UC16) {
580 // Compare original value to 0x2028 and 0x2029, using the already
581 // computed (current_char ^ 0x01 - 0x0b). I.e., check for
582 // 0x201d (0x2028 - 0x0b) or 0x201e.
Leon Clarkee46be812010-01-19 14:06:41 +0000583 __ sub(Operand(eax), Immediate(0x2028 - 0x0b));
584 __ cmp(eax, 0x2029 - 0x2028);
Steve Blocka7e24c12009-10-30 11:49:00 +0000585 BranchOrBacktrack(below_equal, on_no_match);
586 }
587 return true;
588 }
Leon Clarkee46be812010-01-19 14:06:41 +0000589 case 'w': {
590 if (mode_ != ASCII) {
591 // Table is 128 entries, so all ASCII characters can be tested.
592 __ cmp(Operand(current_character()), Immediate('z'));
593 BranchOrBacktrack(above, on_no_match);
594 }
595 ASSERT_EQ(0, word_character_map[0]); // Character '\0' is not a word char.
596 ExternalReference word_map = ExternalReference::re_word_character_map();
597 __ test_b(current_character(),
598 Operand::StaticArray(current_character(), times_1, word_map));
599 BranchOrBacktrack(zero, on_no_match);
600 return true;
601 }
602 case 'W': {
603 Label done;
604 if (mode_ != ASCII) {
605 // Table is 128 entries, so all ASCII characters can be tested.
606 __ cmp(Operand(current_character()), Immediate('z'));
607 __ j(above, &done);
608 }
609 ASSERT_EQ(0, word_character_map[0]); // Character '\0' is not a word char.
610 ExternalReference word_map = ExternalReference::re_word_character_map();
611 __ test_b(current_character(),
612 Operand::StaticArray(current_character(), times_1, word_map));
613 BranchOrBacktrack(not_zero, on_no_match);
614 if (mode_ != ASCII) {
615 __ bind(&done);
Steve Blocka7e24c12009-10-30 11:49:00 +0000616 }
617 return true;
Leon Clarkee46be812010-01-19 14:06:41 +0000618 }
619 // Non-standard classes (with no syntactic shorthand) used internally.
620 case '*':
621 // Match any character.
622 return true;
623 case 'n': {
624 // Match newlines (0x0a('\n'), 0x0d('\r'), 0x2028 or 0x2029).
625 // The opposite of '.'.
626 __ mov(Operand(eax), current_character());
627 __ xor_(Operand(eax), Immediate(0x01));
628 // See if current character is '\n'^1 or '\r'^1, i.e., 0x0b or 0x0c
629 __ sub(Operand(eax), Immediate(0x0b));
630 __ cmp(eax, 0x0c - 0x0b);
631 if (mode_ == ASCII) {
632 BranchOrBacktrack(above, on_no_match);
633 } else {
634 Label done;
635 BranchOrBacktrack(below_equal, &done);
636 ASSERT_EQ(UC16, mode_);
637 // Compare original value to 0x2028 and 0x2029, using the already
638 // computed (current_char ^ 0x01 - 0x0b). I.e., check for
639 // 0x201d (0x2028 - 0x0b) or 0x201e.
640 __ sub(Operand(eax), Immediate(0x2028 - 0x0b));
641 __ cmp(eax, 1);
642 BranchOrBacktrack(above, on_no_match);
643 __ bind(&done);
644 }
645 return true;
646 }
647 // No custom implementation (yet): s(UC16), S(UC16).
Steve Blocka7e24c12009-10-30 11:49:00 +0000648 default:
649 return false;
650 }
651}
652
653
654void RegExpMacroAssemblerIA32::Fail() {
655 ASSERT(FAILURE == 0); // Return value for failure is zero.
Steve Block9fac8402011-05-12 15:51:54 +0100656 __ Set(eax, Immediate(0));
Steve Blocka7e24c12009-10-30 11:49:00 +0000657 __ jmp(&exit_label_);
658}
659
660
661Handle<Object> RegExpMacroAssemblerIA32::GetCode(Handle<String> source) {
662 // Finalize code - write the entry point code now we know how many
663 // registers we need.
664
665 // Entry code:
666 __ bind(&entry_label_);
667 // Start new stack frame.
668 __ push(ebp);
669 __ mov(ebp, esp);
670 // Save callee-save registers. Order here should correspond to order of
671 // kBackup_ebx etc.
672 __ push(esi);
673 __ push(edi);
674 __ push(ebx); // Callee-save on MacOS.
675 __ push(Immediate(0)); // Make room for "input start - 1" constant.
676
677 // Check if we have space on the stack for registers.
678 Label stack_limit_hit;
679 Label stack_ok;
680
Steve Blockd0582a62009-12-15 09:54:21 +0000681 ExternalReference stack_limit =
Steve Block44f0eee2011-05-26 01:26:41 +0100682 ExternalReference::address_of_stack_limit(masm_->isolate());
Steve Blocka7e24c12009-10-30 11:49:00 +0000683 __ mov(ecx, esp);
Steve Blockd0582a62009-12-15 09:54:21 +0000684 __ sub(ecx, Operand::StaticVariable(stack_limit));
Steve Blocka7e24c12009-10-30 11:49:00 +0000685 // Handle it if the stack pointer is already below the stack limit.
686 __ j(below_equal, &stack_limit_hit, not_taken);
687 // Check if there is room for the variable number of registers above
688 // the stack limit.
689 __ cmp(ecx, num_registers_ * kPointerSize);
690 __ j(above_equal, &stack_ok, taken);
691 // Exit with OutOfMemory exception. There is not enough space on the stack
692 // for our working registers.
693 __ mov(eax, EXCEPTION);
694 __ jmp(&exit_label_);
695
696 __ bind(&stack_limit_hit);
697 CallCheckStackGuardState(ebx);
698 __ or_(eax, Operand(eax));
699 // If returned value is non-zero, we exit with the returned value as result.
700 __ j(not_zero, &exit_label_);
701
702 __ bind(&stack_ok);
Steve Block6ded16b2010-05-10 14:33:55 +0100703 // Load start index for later use.
704 __ mov(ebx, Operand(ebp, kStartIndex));
Steve Blocka7e24c12009-10-30 11:49:00 +0000705
706 // Allocate space on stack for registers.
707 __ sub(Operand(esp), Immediate(num_registers_ * kPointerSize));
708 // Load string length.
709 __ mov(esi, Operand(ebp, kInputEnd));
710 // Load input position.
711 __ mov(edi, Operand(ebp, kInputStart));
712 // Set up edi to be negative offset from string end.
713 __ sub(edi, Operand(esi));
Steve Block6ded16b2010-05-10 14:33:55 +0100714
715 // Set eax to address of char before start of the string.
Steve Blocka7e24c12009-10-30 11:49:00 +0000716 // (effectively string position -1).
Steve Block6ded16b2010-05-10 14:33:55 +0100717 __ neg(ebx);
718 if (mode_ == UC16) {
719 __ lea(eax, Operand(edi, ebx, times_2, -char_size()));
720 } else {
721 __ lea(eax, Operand(edi, ebx, times_1, -char_size()));
722 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000723 // Store this value in a local variable, for use when clearing
724 // position registers.
725 __ mov(Operand(ebp, kInputStartMinusOne), eax);
Leon Clarked91b9f72010-01-27 17:25:45 +0000726
Steve Blocka7e24c12009-10-30 11:49:00 +0000727 if (num_saved_registers_ > 0) { // Always is, if generated from a regexp.
728 // Fill saved registers with initial value = start offset - 1
729 // Fill in stack push order, to avoid accessing across an unwritten
730 // page (a problem on Windows).
731 __ mov(ecx, kRegisterZero);
732 Label init_loop;
733 __ bind(&init_loop);
734 __ mov(Operand(ebp, ecx, times_1, +0), eax);
735 __ sub(Operand(ecx), Immediate(kPointerSize));
736 __ cmp(ecx, kRegisterZero - num_saved_registers_ * kPointerSize);
737 __ j(greater, &init_loop);
738 }
739 // Ensure that we have written to each stack page, in order. Skipping a page
740 // on Windows can cause segmentation faults. Assuming page size is 4k.
741 const int kPageSize = 4096;
742 const int kRegistersPerPage = kPageSize / kPointerSize;
743 for (int i = num_saved_registers_ + kRegistersPerPage - 1;
744 i < num_registers_;
745 i += kRegistersPerPage) {
746 __ mov(register_location(i), eax); // One write every page.
747 }
748
749
750 // Initialize backtrack stack pointer.
751 __ mov(backtrack_stackpointer(), Operand(ebp, kStackHighEnd));
752 // Load previous char as initial value of current-character.
753 Label at_start;
Kristian Monsen25f61362010-05-21 11:50:48 +0100754 __ cmp(Operand(ebp, kStartIndex), Immediate(0));
755 __ j(equal, &at_start);
Steve Blocka7e24c12009-10-30 11:49:00 +0000756 LoadCurrentCharacterUnchecked(-1, 1); // Load previous char.
757 __ jmp(&start_label_);
758 __ bind(&at_start);
759 __ mov(current_character(), '\n');
760 __ jmp(&start_label_);
761
762
763 // Exit code:
764 if (success_label_.is_linked()) {
765 // Save captures when successful.
766 __ bind(&success_label_);
767 if (num_saved_registers_ > 0) {
768 // copy captures to output
769 __ mov(ebx, Operand(ebp, kRegisterOutput));
770 __ mov(ecx, Operand(ebp, kInputEnd));
Steve Block6ded16b2010-05-10 14:33:55 +0100771 __ mov(edx, Operand(ebp, kStartIndex));
Steve Blocka7e24c12009-10-30 11:49:00 +0000772 __ sub(ecx, Operand(ebp, kInputStart));
Steve Block6ded16b2010-05-10 14:33:55 +0100773 if (mode_ == UC16) {
774 __ lea(ecx, Operand(ecx, edx, times_2, 0));
775 } else {
776 __ add(ecx, Operand(edx));
777 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000778 for (int i = 0; i < num_saved_registers_; i++) {
779 __ mov(eax, register_location(i));
Steve Block6ded16b2010-05-10 14:33:55 +0100780 // Convert to index from start of string, not end.
781 __ add(eax, Operand(ecx));
Steve Blocka7e24c12009-10-30 11:49:00 +0000782 if (mode_ == UC16) {
783 __ sar(eax, 1); // Convert byte index to character index.
784 }
785 __ mov(Operand(ebx, i * kPointerSize), eax);
786 }
787 }
788 __ mov(eax, Immediate(SUCCESS));
789 }
790 // Exit and return eax
791 __ bind(&exit_label_);
792 // Skip esp past regexp registers.
793 __ lea(esp, Operand(ebp, kBackup_ebx));
794 // Restore callee-save registers.
795 __ pop(ebx);
796 __ pop(edi);
797 __ pop(esi);
798 // Exit function frame, restore previous one.
799 __ pop(ebp);
800 __ ret(0);
801
802 // Backtrack code (branch target for conditional backtracks).
803 if (backtrack_label_.is_linked()) {
804 __ bind(&backtrack_label_);
805 Backtrack();
806 }
807
808 Label exit_with_exception;
809
810 // Preempt-code
811 if (check_preempt_label_.is_linked()) {
812 SafeCallTarget(&check_preempt_label_);
813
814 __ push(backtrack_stackpointer());
815 __ push(edi);
816
817 CallCheckStackGuardState(ebx);
818 __ or_(eax, Operand(eax));
819 // If returning non-zero, we should end execution with the given
820 // result as return value.
821 __ j(not_zero, &exit_label_);
822
823 __ pop(edi);
824 __ pop(backtrack_stackpointer());
825 // String might have moved: Reload esi from frame.
826 __ mov(esi, Operand(ebp, kInputEnd));
827 SafeReturn();
828 }
829
830 // Backtrack stack overflow code.
831 if (stack_overflow_label_.is_linked()) {
832 SafeCallTarget(&stack_overflow_label_);
833 // Reached if the backtrack-stack limit has been hit.
834
835 Label grow_failed;
836 // Save registers before calling C function
837 __ push(esi);
838 __ push(edi);
839
840 // Call GrowStack(backtrack_stackpointer())
Steve Block6ded16b2010-05-10 14:33:55 +0100841 static const int num_arguments = 2;
842 __ PrepareCallCFunction(num_arguments, ebx);
Steve Blocka7e24c12009-10-30 11:49:00 +0000843 __ lea(eax, Operand(ebp, kStackHighEnd));
844 __ mov(Operand(esp, 1 * kPointerSize), eax);
845 __ mov(Operand(esp, 0 * kPointerSize), backtrack_stackpointer());
Steve Block44f0eee2011-05-26 01:26:41 +0100846 ExternalReference grow_stack =
847 ExternalReference::re_grow_stack(masm_->isolate());
Steve Block6ded16b2010-05-10 14:33:55 +0100848 __ CallCFunction(grow_stack, num_arguments);
Steve Blocka7e24c12009-10-30 11:49:00 +0000849 // If return NULL, we have failed to grow the stack, and
850 // must exit with a stack-overflow exception.
851 __ or_(eax, Operand(eax));
852 __ j(equal, &exit_with_exception);
853 // Otherwise use return value as new stack pointer.
854 __ mov(backtrack_stackpointer(), eax);
855 // Restore saved registers and continue.
856 __ pop(edi);
857 __ pop(esi);
858 SafeReturn();
859 }
860
861 if (exit_with_exception.is_linked()) {
862 // If any of the code above needed to exit with an exception.
863 __ bind(&exit_with_exception);
864 // Exit with Result EXCEPTION(-1) to signal thrown exception.
865 __ mov(eax, EXCEPTION);
866 __ jmp(&exit_label_);
867 }
868
869 CodeDesc code_desc;
870 masm_->GetCode(&code_desc);
Steve Block44f0eee2011-05-26 01:26:41 +0100871 Handle<Code> code =
872 masm_->isolate()->factory()->NewCode(code_desc,
873 Code::ComputeFlags(Code::REGEXP),
874 masm_->CodeObject());
875 PROFILE(masm_->isolate(), RegExpCodeCreateEvent(*code, *source));
Steve Blocka7e24c12009-10-30 11:49:00 +0000876 return Handle<Object>::cast(code);
877}
878
879
880void RegExpMacroAssemblerIA32::GoTo(Label* to) {
881 BranchOrBacktrack(no_condition, to);
882}
883
884
885void RegExpMacroAssemblerIA32::IfRegisterGE(int reg,
886 int comparand,
887 Label* if_ge) {
888 __ cmp(register_location(reg), Immediate(comparand));
889 BranchOrBacktrack(greater_equal, if_ge);
890}
891
892
893void RegExpMacroAssemblerIA32::IfRegisterLT(int reg,
894 int comparand,
895 Label* if_lt) {
896 __ cmp(register_location(reg), Immediate(comparand));
897 BranchOrBacktrack(less, if_lt);
898}
899
900
901void RegExpMacroAssemblerIA32::IfRegisterEqPos(int reg,
902 Label* if_eq) {
903 __ cmp(edi, register_location(reg));
904 BranchOrBacktrack(equal, if_eq);
905}
906
907
908RegExpMacroAssembler::IrregexpImplementation
909 RegExpMacroAssemblerIA32::Implementation() {
910 return kIA32Implementation;
911}
912
913
914void RegExpMacroAssemblerIA32::LoadCurrentCharacter(int cp_offset,
915 Label* on_end_of_input,
916 bool check_bounds,
917 int characters) {
918 ASSERT(cp_offset >= -1); // ^ and \b can look behind one character.
919 ASSERT(cp_offset < (1<<30)); // Be sane! (And ensure negation works)
920 if (check_bounds) {
921 CheckPosition(cp_offset + characters - 1, on_end_of_input);
922 }
923 LoadCurrentCharacterUnchecked(cp_offset, characters);
924}
925
926
927void RegExpMacroAssemblerIA32::PopCurrentPosition() {
928 Pop(edi);
929}
930
931
932void RegExpMacroAssemblerIA32::PopRegister(int register_index) {
933 Pop(eax);
934 __ mov(register_location(register_index), eax);
935}
936
937
938void RegExpMacroAssemblerIA32::PushBacktrack(Label* label) {
939 Push(Immediate::CodeRelativeOffset(label));
940 CheckStackLimit();
941}
942
943
944void RegExpMacroAssemblerIA32::PushCurrentPosition() {
945 Push(edi);
946}
947
948
949void RegExpMacroAssemblerIA32::PushRegister(int register_index,
950 StackCheckFlag check_stack_limit) {
951 __ mov(eax, register_location(register_index));
952 Push(eax);
953 if (check_stack_limit) CheckStackLimit();
954}
955
956
957void RegExpMacroAssemblerIA32::ReadCurrentPositionFromRegister(int reg) {
958 __ mov(edi, register_location(reg));
959}
960
961
962void RegExpMacroAssemblerIA32::ReadStackPointerFromRegister(int reg) {
963 __ mov(backtrack_stackpointer(), register_location(reg));
964 __ add(backtrack_stackpointer(), Operand(ebp, kStackHighEnd));
965}
966
Ben Murdochf87a2032010-10-22 12:50:53 +0100967void RegExpMacroAssemblerIA32::SetCurrentPositionFromEnd(int by) {
968 NearLabel after_position;
969 __ cmp(edi, -by * char_size());
970 __ j(greater_equal, &after_position);
971 __ mov(edi, -by * char_size());
972 // On RegExp code entry (where this operation is used), the character before
973 // the current position is expected to be already loaded.
974 // We have advanced the position, so it's safe to read backwards.
975 LoadCurrentCharacterUnchecked(-1, 1);
976 __ bind(&after_position);
977}
Steve Blocka7e24c12009-10-30 11:49:00 +0000978
979void RegExpMacroAssemblerIA32::SetRegister(int register_index, int to) {
980 ASSERT(register_index >= num_saved_registers_); // Reserved for positions!
981 __ mov(register_location(register_index), Immediate(to));
982}
983
984
985void RegExpMacroAssemblerIA32::Succeed() {
986 __ jmp(&success_label_);
987}
988
989
990void RegExpMacroAssemblerIA32::WriteCurrentPositionToRegister(int reg,
991 int cp_offset) {
992 if (cp_offset == 0) {
993 __ mov(register_location(reg), edi);
994 } else {
995 __ lea(eax, Operand(edi, cp_offset * char_size()));
996 __ mov(register_location(reg), eax);
997 }
998}
999
1000
1001void RegExpMacroAssemblerIA32::ClearRegisters(int reg_from, int reg_to) {
1002 ASSERT(reg_from <= reg_to);
1003 __ mov(eax, Operand(ebp, kInputStartMinusOne));
1004 for (int reg = reg_from; reg <= reg_to; reg++) {
1005 __ mov(register_location(reg), eax);
1006 }
1007}
1008
1009
1010void RegExpMacroAssemblerIA32::WriteStackPointerToRegister(int reg) {
1011 __ mov(eax, backtrack_stackpointer());
1012 __ sub(eax, Operand(ebp, kStackHighEnd));
1013 __ mov(register_location(reg), eax);
1014}
1015
1016
1017// Private methods:
1018
1019void RegExpMacroAssemblerIA32::CallCheckStackGuardState(Register scratch) {
Steve Block6ded16b2010-05-10 14:33:55 +01001020 static const int num_arguments = 3;
1021 __ PrepareCallCFunction(num_arguments, scratch);
Steve Blocka7e24c12009-10-30 11:49:00 +00001022 // RegExp code frame pointer.
1023 __ mov(Operand(esp, 2 * kPointerSize), ebp);
1024 // Code* of self.
1025 __ mov(Operand(esp, 1 * kPointerSize), Immediate(masm_->CodeObject()));
1026 // Next address on the stack (will be address of return address).
1027 __ lea(eax, Operand(esp, -kPointerSize));
1028 __ mov(Operand(esp, 0 * kPointerSize), eax);
1029 ExternalReference check_stack_guard =
Steve Block44f0eee2011-05-26 01:26:41 +01001030 ExternalReference::re_check_stack_guard_state(masm_->isolate());
Steve Block6ded16b2010-05-10 14:33:55 +01001031 __ CallCFunction(check_stack_guard, num_arguments);
Steve Blocka7e24c12009-10-30 11:49:00 +00001032}
1033
1034
1035// Helper function for reading a value out of a stack frame.
1036template <typename T>
1037static T& frame_entry(Address re_frame, int frame_offset) {
1038 return reinterpret_cast<T&>(Memory::int32_at(re_frame + frame_offset));
1039}
1040
1041
1042int RegExpMacroAssemblerIA32::CheckStackGuardState(Address* return_address,
1043 Code* re_code,
1044 Address re_frame) {
Steve Block44f0eee2011-05-26 01:26:41 +01001045 Isolate* isolate = frame_entry<Isolate*>(re_frame, kIsolate);
1046 ASSERT(isolate == Isolate::Current());
1047 if (isolate->stack_guard()->IsStackOverflow()) {
1048 isolate->StackOverflow();
Steve Blocka7e24c12009-10-30 11:49:00 +00001049 return EXCEPTION;
1050 }
1051
1052 // If not real stack overflow the stack guard was used to interrupt
1053 // execution for another purpose.
1054
Leon Clarkee46be812010-01-19 14:06:41 +00001055 // If this is a direct call from JavaScript retry the RegExp forcing the call
1056 // through the runtime system. Currently the direct call cannot handle a GC.
1057 if (frame_entry<int>(re_frame, kDirectCall) == 1) {
1058 return RETRY;
1059 }
1060
Steve Blocka7e24c12009-10-30 11:49:00 +00001061 // Prepare for possible GC.
1062 HandleScope handles;
1063 Handle<Code> code_handle(re_code);
1064
1065 Handle<String> subject(frame_entry<String*>(re_frame, kInputString));
1066 // Current string.
1067 bool is_ascii = subject->IsAsciiRepresentation();
1068
1069 ASSERT(re_code->instruction_start() <= *return_address);
1070 ASSERT(*return_address <=
1071 re_code->instruction_start() + re_code->instruction_size());
1072
John Reck59135872010-11-02 12:39:01 -07001073 MaybeObject* result = Execution::HandleStackGuardInterrupt();
Steve Blocka7e24c12009-10-30 11:49:00 +00001074
1075 if (*code_handle != re_code) { // Return address no longer valid
1076 int delta = *code_handle - re_code;
1077 // Overwrite the return address on the stack.
1078 *return_address += delta;
1079 }
1080
1081 if (result->IsException()) {
1082 return EXCEPTION;
1083 }
1084
1085 // String might have changed.
1086 if (subject->IsAsciiRepresentation() != is_ascii) {
1087 // If we changed between an ASCII and an UC16 string, the specialized
1088 // code cannot be used, and we need to restart regexp matching from
1089 // scratch (including, potentially, compiling a new version of the code).
1090 return RETRY;
1091 }
1092
1093 // Otherwise, the content of the string might have moved. It must still
1094 // be a sequential or external string with the same content.
1095 // Update the start and end pointers in the stack frame to the current
1096 // location (whether it has actually moved or not).
1097 ASSERT(StringShape(*subject).IsSequential() ||
1098 StringShape(*subject).IsExternal());
1099
1100 // The original start address of the characters to match.
1101 const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart);
1102
1103 // Find the current start address of the same character at the current string
1104 // position.
1105 int start_index = frame_entry<int>(re_frame, kStartIndex);
1106 const byte* new_address = StringCharacterPosition(*subject, start_index);
1107
1108 if (start_address != new_address) {
1109 // If there is a difference, update the object pointer and start and end
1110 // addresses in the RegExp stack frame to match the new value.
1111 const byte* end_address = frame_entry<const byte* >(re_frame, kInputEnd);
1112 int byte_length = end_address - start_address;
1113 frame_entry<const String*>(re_frame, kInputString) = *subject;
1114 frame_entry<const byte*>(re_frame, kInputStart) = new_address;
1115 frame_entry<const byte*>(re_frame, kInputEnd) = new_address + byte_length;
1116 }
1117
1118 return 0;
1119}
1120
1121
1122Operand RegExpMacroAssemblerIA32::register_location(int register_index) {
1123 ASSERT(register_index < (1<<30));
1124 if (num_registers_ <= register_index) {
1125 num_registers_ = register_index + 1;
1126 }
1127 return Operand(ebp, kRegisterZero - register_index * kPointerSize);
1128}
1129
1130
1131void RegExpMacroAssemblerIA32::CheckPosition(int cp_offset,
1132 Label* on_outside_input) {
1133 __ cmp(edi, -cp_offset * char_size());
1134 BranchOrBacktrack(greater_equal, on_outside_input);
1135}
1136
1137
1138void RegExpMacroAssemblerIA32::BranchOrBacktrack(Condition condition,
1139 Label* to,
1140 Hint hint) {
1141 if (condition < 0) { // No condition
1142 if (to == NULL) {
1143 Backtrack();
1144 return;
1145 }
1146 __ jmp(to);
1147 return;
1148 }
1149 if (to == NULL) {
1150 __ j(condition, &backtrack_label_, hint);
1151 return;
1152 }
1153 __ j(condition, to, hint);
1154}
1155
1156
1157void RegExpMacroAssemblerIA32::SafeCall(Label* to) {
Steve Block6ded16b2010-05-10 14:33:55 +01001158 Label return_to;
1159 __ push(Immediate::CodeRelativeOffset(&return_to));
1160 __ jmp(to);
1161 __ bind(&return_to);
Steve Blocka7e24c12009-10-30 11:49:00 +00001162}
1163
1164
1165void RegExpMacroAssemblerIA32::SafeReturn() {
Steve Block6ded16b2010-05-10 14:33:55 +01001166 __ pop(ebx);
1167 __ add(Operand(ebx), Immediate(masm_->CodeObject()));
1168 __ jmp(Operand(ebx));
Steve Blocka7e24c12009-10-30 11:49:00 +00001169}
1170
1171
1172void RegExpMacroAssemblerIA32::SafeCallTarget(Label* name) {
1173 __ bind(name);
Steve Blocka7e24c12009-10-30 11:49:00 +00001174}
1175
1176
1177void RegExpMacroAssemblerIA32::Push(Register source) {
1178 ASSERT(!source.is(backtrack_stackpointer()));
1179 // Notice: This updates flags, unlike normal Push.
1180 __ sub(Operand(backtrack_stackpointer()), Immediate(kPointerSize));
1181 __ mov(Operand(backtrack_stackpointer(), 0), source);
1182}
1183
1184
1185void RegExpMacroAssemblerIA32::Push(Immediate value) {
1186 // Notice: This updates flags, unlike normal Push.
1187 __ sub(Operand(backtrack_stackpointer()), Immediate(kPointerSize));
1188 __ mov(Operand(backtrack_stackpointer(), 0), value);
1189}
1190
1191
1192void RegExpMacroAssemblerIA32::Pop(Register target) {
1193 ASSERT(!target.is(backtrack_stackpointer()));
1194 __ mov(target, Operand(backtrack_stackpointer(), 0));
1195 // Notice: This updates flags, unlike normal Pop.
1196 __ add(Operand(backtrack_stackpointer()), Immediate(kPointerSize));
1197}
1198
1199
1200void RegExpMacroAssemblerIA32::CheckPreemption() {
1201 // Check for preemption.
1202 Label no_preempt;
Steve Blockd0582a62009-12-15 09:54:21 +00001203 ExternalReference stack_limit =
Steve Block44f0eee2011-05-26 01:26:41 +01001204 ExternalReference::address_of_stack_limit(masm_->isolate());
Steve Blockd0582a62009-12-15 09:54:21 +00001205 __ cmp(esp, Operand::StaticVariable(stack_limit));
Steve Blocka7e24c12009-10-30 11:49:00 +00001206 __ j(above, &no_preempt, taken);
1207
1208 SafeCall(&check_preempt_label_);
1209
1210 __ bind(&no_preempt);
1211}
1212
1213
1214void RegExpMacroAssemblerIA32::CheckStackLimit() {
Steve Blockd0582a62009-12-15 09:54:21 +00001215 Label no_stack_overflow;
1216 ExternalReference stack_limit =
Steve Block44f0eee2011-05-26 01:26:41 +01001217 ExternalReference::address_of_regexp_stack_limit(masm_->isolate());
Steve Blockd0582a62009-12-15 09:54:21 +00001218 __ cmp(backtrack_stackpointer(), Operand::StaticVariable(stack_limit));
1219 __ j(above, &no_stack_overflow);
Steve Blocka7e24c12009-10-30 11:49:00 +00001220
Steve Blockd0582a62009-12-15 09:54:21 +00001221 SafeCall(&stack_overflow_label_);
Steve Blocka7e24c12009-10-30 11:49:00 +00001222
Steve Blockd0582a62009-12-15 09:54:21 +00001223 __ bind(&no_stack_overflow);
Steve Blocka7e24c12009-10-30 11:49:00 +00001224}
1225
1226
Steve Blocka7e24c12009-10-30 11:49:00 +00001227void RegExpMacroAssemblerIA32::LoadCurrentCharacterUnchecked(int cp_offset,
1228 int characters) {
1229 if (mode_ == ASCII) {
1230 if (characters == 4) {
1231 __ mov(current_character(), Operand(esi, edi, times_1, cp_offset));
1232 } else if (characters == 2) {
1233 __ movzx_w(current_character(), Operand(esi, edi, times_1, cp_offset));
1234 } else {
1235 ASSERT(characters == 1);
1236 __ movzx_b(current_character(), Operand(esi, edi, times_1, cp_offset));
1237 }
1238 } else {
1239 ASSERT(mode_ == UC16);
1240 if (characters == 2) {
1241 __ mov(current_character(),
1242 Operand(esi, edi, times_1, cp_offset * sizeof(uc16)));
1243 } else {
1244 ASSERT(characters == 1);
1245 __ movzx_w(current_character(),
1246 Operand(esi, edi, times_1, cp_offset * sizeof(uc16)));
1247 }
1248 }
1249}
1250
1251
Steve Blocka7e24c12009-10-30 11:49:00 +00001252#undef __
1253
Steve Block6ded16b2010-05-10 14:33:55 +01001254#endif // V8_INTERPRETED_REGEXP
Steve Blocka7e24c12009-10-30 11:49:00 +00001255
1256}} // namespace v8::internal
Leon Clarkef7060e22010-06-03 12:02:55 +01001257
1258#endif // V8_TARGET_ARCH_IA32