jsregexp-inl.h 2.66 KB
Newer Older
1
// Copyright 2013 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4 5


6 7
#ifndef V8_REGEXP_JSREGEXP_INL_H_
#define V8_REGEXP_JSREGEXP_INL_H_
8

9 10
#include "src/allocation.h"
#include "src/objects.h"
11
#include "src/objects/js-regexp-inl.h"
12
#include "src/regexp/jsregexp.h"
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33

namespace v8 {
namespace internal {


RegExpImpl::GlobalCache::~GlobalCache() {
  // Deallocate the register array if we allocated it in the constructor
  // (as opposed to using the existing jsregexp_static_offsets_vector).
  if (register_array_size_ > Isolate::kJSRegexpStaticOffsetsVectorSize) {
    DeleteArray(register_array_);
  }
}


int32_t* RegExpImpl::GlobalCache::FetchNext() {
  current_match_index_++;
  if (current_match_index_ >= num_matches_) {
    // Current batch of results exhausted.
    // Fail if last batch was not even fully filled.
    if (num_matches_ < max_matches_) {
      num_matches_ = 0;  // Signal failed match.
34
      return nullptr;
35 36 37 38 39 40 41
    }

    int32_t* last_match =
        &register_array_[(current_match_index_ - 1) * registers_per_match_];
    int last_end_index = last_match[1];

    if (regexp_->TypeTag() == JSRegExp::ATOM) {
42 43 44
      num_matches_ =
          RegExpImpl::AtomExecRaw(isolate_, regexp_, subject_, last_end_index,
                                  register_array_, register_array_size_);
45 46
    } else {
      int last_start_index = last_match[0];
47 48 49 50
      if (last_start_index == last_end_index) {
        // Zero-length match. Advance by one code point.
        last_end_index = AdvanceZeroLength(last_end_index);
      }
51 52
      if (last_end_index > subject_->length()) {
        num_matches_ = 0;  // Signal failed match.
53
        return nullptr;
54
      }
55 56 57
      num_matches_ = RegExpImpl::IrregexpExecRaw(
          isolate_, regexp_, subject_, last_end_index, register_array_,
          register_array_size_);
58 59
    }

60
    if (num_matches_ <= 0) return nullptr;
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
    current_match_index_ = 0;
    return register_array_;
  } else {
    return &register_array_[current_match_index_ * registers_per_match_];
  }
}


int32_t* RegExpImpl::GlobalCache::LastSuccessfulMatch() {
  int index = current_match_index_ * registers_per_match_;
  if (num_matches_ == 0) {
    // After a failed match we shift back by one result.
    index -= registers_per_match_;
  }
  return &register_array_[index];
}

78 79 80 81
RegExpEngine::CompilationResult::CompilationResult(Isolate* isolate,
                                                   const char* error_message)
    : error_message(error_message),
      code(ReadOnlyRoots(isolate).the_hole_value()) {}
82

83 84
}  // namespace internal
}  // namespace v8
85

86
#endif  // V8_REGEXP_JSREGEXP_INL_H_