regexp-macro-assembler.cc 10.6 KB
Newer Older
1
// Copyright 2012 the V8 project authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include "v8.h"
#include "ast.h"
#include "assembler.h"
31
#include "regexp-stack.h"
32
#include "regexp-macro-assembler.h"
33
#include "simulator.h"
34

35 36
namespace v8 {
namespace internal {
37

38
RegExpMacroAssembler::RegExpMacroAssembler(Zone* zone)
39
  : slow_safe_compiler_(false),
40 41
    global_mode_(NOT_GLOBAL),
    zone_(zone) {
42 43 44 45 46 47 48
}


RegExpMacroAssembler::~RegExpMacroAssembler() {
}


lrn@chromium.org's avatar
lrn@chromium.org committed
49 50 51 52 53 54 55 56 57
bool RegExpMacroAssembler::CanReadUnaligned() {
#ifdef V8_HOST_CAN_READ_UNALIGNED
  return true;
#else
  return false;
#endif
}


58
#ifndef V8_INTERPRETED_REGEXP  // Avoid unused code, e.g., on ARM.
59

60 61
NativeRegExpMacroAssembler::NativeRegExpMacroAssembler(Zone* zone)
    : RegExpMacroAssembler(zone) {
62
}
63 64


65 66
NativeRegExpMacroAssembler::~NativeRegExpMacroAssembler() {
}
67

lrn@chromium.org's avatar
lrn@chromium.org committed
68 69

bool NativeRegExpMacroAssembler::CanReadUnaligned() {
70
  return FLAG_enable_unaligned_accesses && !slow_safe();
lrn@chromium.org's avatar
lrn@chromium.org committed
71 72
}

73 74 75 76 77 78 79
const byte* NativeRegExpMacroAssembler::StringCharacterPosition(
    String* subject,
    int start_index) {
  // Not just flat, but ultra flat.
  ASSERT(subject->IsExternalString() || subject->IsSeqString());
  ASSERT(start_index >= 0);
  ASSERT(start_index <= subject->length());
80
  if (subject->IsOneByteRepresentation()) {
81 82
    const byte* address;
    if (StringShape(subject).IsExternal()) {
83
      const uint8_t* data = ExternalAsciiString::cast(subject)->GetChars();
84 85
      address = reinterpret_cast<const byte*>(data);
    } else {
86
      ASSERT(subject->IsSeqOneByteString());
87
      const uint8_t* data = SeqOneByteString::cast(subject)->GetChars();
88
      address = reinterpret_cast<const byte*>(data);
89
    }
90 91 92 93
    return address + start_index;
  }
  const uc16* data;
  if (StringShape(subject).IsExternal()) {
94
    data = ExternalTwoByteString::cast(subject)->GetChars();
95 96 97
  } else {
    ASSERT(subject->IsSeqTwoByteString());
    data = SeqTwoByteString::cast(subject)->GetChars();
98
  }
99
  return reinterpret_cast<const byte*>(data + start_index);
100 101
}

102

103 104 105 106 107
NativeRegExpMacroAssembler::Result NativeRegExpMacroAssembler::Match(
    Handle<Code> regexp_code,
    Handle<String> subject,
    int* offsets_vector,
    int offsets_vector_length,
108 109
    int previous_index,
    Isolate* isolate) {
110 111 112 113 114 115

  ASSERT(subject->IsFlat());
  ASSERT(previous_index >= 0);
  ASSERT(previous_index <= subject->length());

  // No allocations before calling the regexp, but we can't use
116 117
  // DisallowHeapAllocation, since regexps might be preempted, and another
  // thread might do allocation anyway.
118 119 120 121

  String* subject_ptr = *subject;
  // Character offsets into string.
  int start_offset = previous_index;
122 123
  int char_length = subject_ptr->length() - start_offset;
  int slice_offset = 0;
124

125
  // The string has been flattened, so if it is a cons string it contains the
126
  // full string in the first part.
127
  if (StringShape(subject_ptr).IsCons()) {
128
    ASSERT_EQ(0, ConsString::cast(subject_ptr)->second()->length());
129
    subject_ptr = ConsString::cast(subject_ptr)->first();
130 131 132 133
  } else if (StringShape(subject_ptr).IsSliced()) {
    SlicedString* slice = SlicedString::cast(subject_ptr);
    subject_ptr = slice->parent();
    slice_offset = slice->offset();
134
  }
135
  // Ensure that an underlying string has the same ASCII-ness.
136
  bool is_ascii = subject_ptr->IsOneByteRepresentation();
137 138 139 140 141
  ASSERT(subject_ptr->IsExternalString() || subject_ptr->IsSeqString());
  // String is now either Sequential or External
  int char_size_shift = is_ascii ? 0 : 1;

  const byte* input_start =
142
      StringCharacterPosition(subject_ptr, start_offset + slice_offset);
143 144 145
  int byte_length = char_length << char_size_shift;
  const byte* input_end = input_start + byte_length;
  Result res = Execute(*regexp_code,
146
                       *subject,
147 148 149
                       start_offset,
                       input_start,
                       input_end,
150
                       offsets_vector,
151
                       offsets_vector_length,
152
                       isolate);
153
  return res;
154
}
155 156 157 158


NativeRegExpMacroAssembler::Result NativeRegExpMacroAssembler::Execute(
    Code* code,
159
    String* input,  // This needs to be the unpacked (sliced, cons) string.
160 161 162
    int start_offset,
    const byte* input_start,
    const byte* input_end,
163
    int* output,
164
    int output_size,
165
    Isolate* isolate) {
166
  // Ensure that the minimum stack has been allocated.
167 168
  RegExpStackScope stack_scope(isolate);
  Address stack_base = stack_scope.stack()->stack_base();
169

170
  int direct_call = 0;
171
  int result = CALL_GENERATED_REGEXP_CODE(code->entry(),
lrn@chromium.org's avatar
lrn@chromium.org committed
172 173 174 175 176
                                          input,
                                          start_offset,
                                          input_start,
                                          input_end,
                                          output,
177
                                          output_size,
178
                                          stack_base,
179 180
                                          direct_call,
                                          isolate);
181 182
  ASSERT(result >= RETRY);

183
  if (result == EXCEPTION && !isolate->has_pending_exception()) {
184 185
    // We detected a stack overflow (on the backtrack stack) in RegExp code,
    // but haven't created the exception yet.
186
    isolate->StackOverflow();
187 188 189 190 191
  }
  return static_cast<Result>(result);
}


192
const byte NativeRegExpMacroAssembler::word_character_map[] = {
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,

    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu,  // '0' - '7'
    0xffu, 0xffu, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,  // '8' - '9'

    0x00u, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu,  // 'A' - 'G'
    0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu,  // 'H' - 'O'
    0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu,  // 'P' - 'W'
    0xffu, 0xffu, 0xffu, 0x00u, 0x00u, 0x00u, 0x00u, 0xffu,  // 'X' - 'Z', '_'

    0x00u, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu,  // 'a' - 'g'
    0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu,  // 'h' - 'o'
    0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu, 0xffu,  // 'p' - 'w'
    0xffu, 0xffu, 0xffu, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,  // 'x' - 'z'
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
    // Latin-1 range
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,

    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,

    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,

    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
    0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u, 0x00u,
232 233 234
};


235 236 237
int NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16(
    Address byte_offset1,
    Address byte_offset2,
238 239 240 241
    size_t byte_length,
    Isolate* isolate) {
  unibrow::Mapping<unibrow::Ecma262Canonicalize>* canonicalize =
      isolate->regexp_macro_assembler_canonicalize();
242 243 244 245 246 247 248 249 250 251 252 253 254
  // This function is not allowed to cause a garbage collection.
  // A GC might move the calling generated code and invalidate the
  // return address on the stack.
  ASSERT(byte_length % 2 == 0);
  uc16* substring1 = reinterpret_cast<uc16*>(byte_offset1);
  uc16* substring2 = reinterpret_cast<uc16*>(byte_offset2);
  size_t length = byte_length >> 1;

  for (size_t i = 0; i < length; i++) {
    unibrow::uchar c1 = substring1[i];
    unibrow::uchar c2 = substring2[i];
    if (c1 != c2) {
      unibrow::uchar s1[1] = { c1 };
255
      canonicalize->get(c1, '\0', s1);
256 257
      if (s1[0] != c2) {
        unibrow::uchar s2[1] = { c2 };
258
        canonicalize->get(c2, '\0', s2);
259 260 261 262 263 264 265 266 267
        if (s1[0] != s2[0]) {
          return 0;
        }
      }
    }
  }
  return 1;
}

lrn@chromium.org's avatar
lrn@chromium.org committed
268 269

Address NativeRegExpMacroAssembler::GrowStack(Address stack_pointer,
270 271 272 273 274
                                              Address* stack_base,
                                              Isolate* isolate) {
  RegExpStack* regexp_stack = isolate->regexp_stack();
  size_t size = regexp_stack->stack_capacity();
  Address old_stack_base = regexp_stack->stack_base();
lrn@chromium.org's avatar
lrn@chromium.org committed
275 276 277
  ASSERT(old_stack_base == *stack_base);
  ASSERT(stack_pointer <= old_stack_base);
  ASSERT(static_cast<size_t>(old_stack_base - stack_pointer) <= size);
278
  Address new_stack_base = regexp_stack->EnsureCapacity(size * 2);
lrn@chromium.org's avatar
lrn@chromium.org committed
279 280 281 282 283 284 285 286
  if (new_stack_base == NULL) {
    return NULL;
  }
  *stack_base = new_stack_base;
  intptr_t stack_content_size = old_stack_base - stack_pointer;
  return new_stack_base - stack_content_size;
}

287 288
#endif  // V8_INTERPRETED_REGEXP

289
} }  // namespace v8::internal