diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /js/src/irregexp/RegExpAST.cpp | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/irregexp/RegExpAST.cpp')
-rw-r--r-- | js/src/irregexp/RegExpAST.cpp | 265 |
1 files changed, 265 insertions, 0 deletions
diff --git a/js/src/irregexp/RegExpAST.cpp b/js/src/irregexp/RegExpAST.cpp new file mode 100644 index 000000000..8dfd99057 --- /dev/null +++ b/js/src/irregexp/RegExpAST.cpp @@ -0,0 +1,265 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- + * vim: set ts=8 sts=4 et sw=4 tw=99: */ + +// Copyright 2012 the V8 project authors. All rights reserved. +// 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 "irregexp/RegExpAST.h" + +using namespace js; +using namespace js::irregexp; + +#define MAKE_ACCEPT(Name) \ + void* RegExp##Name::Accept(RegExpVisitor* visitor, void* data) { \ + return visitor->Visit##Name(this, data); \ + } +FOR_EACH_REG_EXP_TREE_TYPE(MAKE_ACCEPT) +#undef MAKE_ACCEPT + +#define MAKE_TYPE_CASE(Name) \ + RegExp##Name* RegExpTree::As##Name() { \ + return nullptr; \ + } \ + bool RegExpTree::Is##Name() { return false; } +FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE) +#undef MAKE_TYPE_CASE + +#define MAKE_TYPE_CASE(Name) \ + RegExp##Name* RegExp##Name::As##Name() { \ + return this; \ + } \ + bool RegExp##Name::Is##Name() { return true; } +FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE) +#undef MAKE_TYPE_CASE + +static Interval +ListCaptureRegisters(const RegExpTreeVector& children) +{ + Interval result = Interval::Empty(); + for (size_t i = 0; i < children.length(); i++) + result = result.Union(children[i]->CaptureRegisters()); + return result; +} + +// ---------------------------------------------------------------------------- +// RegExpDisjunction + +RegExpDisjunction::RegExpDisjunction(RegExpTreeVector* alternatives) + : alternatives_(alternatives) +{ + MOZ_ASSERT(alternatives->length() > 1); + RegExpTree* first_alternative = (*alternatives)[0]; + min_match_ = first_alternative->min_match(); + max_match_ = first_alternative->max_match(); + for (size_t i = 1; i < alternatives->length(); i++) { + RegExpTree* alternative = (*alternatives)[i]; + min_match_ = Min(min_match_, alternative->min_match()); + max_match_ = Max(max_match_, alternative->max_match()); + } +} + +Interval +RegExpDisjunction::CaptureRegisters() +{ + return ListCaptureRegisters(alternatives()); +} + +bool +RegExpDisjunction::IsAnchoredAtStart() +{ + const RegExpTreeVector& alternatives = this->alternatives(); + for (size_t i = 0; i < alternatives.length(); i++) { + if (!alternatives[i]->IsAnchoredAtStart()) + return false; + } + return true; +} + +bool +RegExpDisjunction::IsAnchoredAtEnd() +{ + const RegExpTreeVector& alternatives = this->alternatives(); + for (size_t i = 0; i < alternatives.length(); i++) { + if (!alternatives[i]->IsAnchoredAtEnd()) + return false; + } + return true; +} + +// ---------------------------------------------------------------------------- +// RegExpAlternative + +static int IncreaseBy(int previous, int increase) +{ + if (RegExpTree::kInfinity - previous < increase) + return RegExpTree::kInfinity; + return previous + increase; +} + +RegExpAlternative::RegExpAlternative(RegExpTreeVector* nodes) + : nodes_(nodes), + min_match_(0), + max_match_(0) +{ + MOZ_ASSERT(nodes->length() > 1); + for (size_t i = 0; i < nodes->length(); i++) { + RegExpTree* node = (*nodes)[i]; + int node_min_match = node->min_match(); + min_match_ = IncreaseBy(min_match_, node_min_match); + int node_max_match = node->max_match(); + max_match_ = IncreaseBy(max_match_, node_max_match); + } +} + +Interval +RegExpAlternative::CaptureRegisters() +{ + return ListCaptureRegisters(nodes()); +} + +bool +RegExpAlternative::IsAnchoredAtStart() +{ + const RegExpTreeVector& nodes = this->nodes(); + for (size_t i = 0; i < nodes.length(); i++) { + RegExpTree* node = nodes[i]; + if (node->IsAnchoredAtStart()) { return true; } + if (node->max_match() > 0) { return false; } + } + return false; +} + +bool +RegExpAlternative::IsAnchoredAtEnd() +{ + const RegExpTreeVector& nodes = this->nodes(); + for (int i = nodes.length() - 1; i >= 0; i--) { + RegExpTree* node = nodes[i]; + if (node->IsAnchoredAtEnd()) { return true; } + if (node->max_match() > 0) { return false; } + } + return false; +} + +// ---------------------------------------------------------------------------- +// RegExpAssertion + +bool +RegExpAssertion::IsAnchoredAtStart() +{ + return assertion_type() == RegExpAssertion::START_OF_INPUT; +} + +bool +RegExpAssertion::IsAnchoredAtEnd() +{ + return assertion_type() == RegExpAssertion::END_OF_INPUT; +} + +// ---------------------------------------------------------------------------- +// RegExpCharacterClass + +void +RegExpCharacterClass::AppendToText(RegExpText* text) +{ + text->AddElement(TextElement::CharClass(this)); +} + +CharacterRangeVector& +CharacterSet::ranges(LifoAlloc* alloc) +{ + if (ranges_ == nullptr) { + ranges_ = alloc->newInfallible<CharacterRangeVector>(*alloc); + CharacterRange::AddClassEscape(alloc, standard_set_type_, ranges_); + } + return *ranges_; +} + +// ---------------------------------------------------------------------------- +// RegExpAtom + +void +RegExpAtom::AppendToText(RegExpText* text) +{ + text->AddElement(TextElement::Atom(this)); +} + +// ---------------------------------------------------------------------------- +// RegExpText + +void +RegExpText::AppendToText(RegExpText* text) +{ + for (size_t i = 0; i < elements().length(); i++) + text->AddElement(elements()[i]); +} + +// ---------------------------------------------------------------------------- +// RegExpQuantifier + +Interval +RegExpQuantifier::CaptureRegisters() +{ + return body()->CaptureRegisters(); +} + +// ---------------------------------------------------------------------------- +// RegExpCapture + +bool +RegExpCapture::IsAnchoredAtStart() +{ + return body()->IsAnchoredAtStart(); +} + +bool +RegExpCapture::IsAnchoredAtEnd() +{ + return body()->IsAnchoredAtEnd(); +} + +Interval +RegExpCapture::CaptureRegisters() +{ + Interval self(StartRegister(index()), EndRegister(index())); + return self.Union(body()->CaptureRegisters()); +} + +// ---------------------------------------------------------------------------- +// RegExpLookahead + +Interval +RegExpLookahead::CaptureRegisters() +{ + return body()->CaptureRegisters(); +} + +bool +RegExpLookahead::IsAnchoredAtStart() +{ + return is_positive() && body()->IsAnchoredAtStart(); +} |