OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_AST_H_ | 5 #ifndef V8_AST_H_ |
6 #define V8_AST_H_ | 6 #define V8_AST_H_ |
7 | 7 |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #include "src/assembler.h" | 10 #include "src/assembler.h" |
(...skipping 2854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2865 RegExpNode* on_success) override; | 2865 RegExpNode* on_success) override; |
2866 RegExpDisjunction* AsDisjunction() override; | 2866 RegExpDisjunction* AsDisjunction() override; |
2867 Interval CaptureRegisters() override; | 2867 Interval CaptureRegisters() override; |
2868 bool IsDisjunction() override; | 2868 bool IsDisjunction() override; |
2869 bool IsAnchoredAtStart() override; | 2869 bool IsAnchoredAtStart() override; |
2870 bool IsAnchoredAtEnd() override; | 2870 bool IsAnchoredAtEnd() override; |
2871 int min_match() override { return min_match_; } | 2871 int min_match() override { return min_match_; } |
2872 int max_match() override { return max_match_; } | 2872 int max_match() override { return max_match_; } |
2873 ZoneList<RegExpTree*>* alternatives() { return alternatives_; } | 2873 ZoneList<RegExpTree*>* alternatives() { return alternatives_; } |
2874 private: | 2874 private: |
2875 bool SortConsecutiveAtoms(RegExpCompiler* compiler); | |
2876 void RationalizeConsecutiveAtoms(RegExpCompiler* compiler); | |
2877 void FixSingleCharacterDisjunctions(RegExpCompiler* compiler); | |
2878 ZoneList<RegExpTree*>* alternatives_; | 2875 ZoneList<RegExpTree*>* alternatives_; |
2879 int min_match_; | 2876 int min_match_; |
2880 int max_match_; | 2877 int max_match_; |
2881 }; | 2878 }; |
2882 | 2879 |
2883 | 2880 |
2884 class RegExpAlternative final : public RegExpTree { | 2881 class RegExpAlternative final : public RegExpTree { |
2885 public: | 2882 public: |
2886 explicit RegExpAlternative(ZoneList<RegExpTree*>* nodes); | 2883 explicit RegExpAlternative(ZoneList<RegExpTree*>* nodes); |
2887 void* Accept(RegExpVisitor* visitor, void* data) override; | 2884 void* Accept(RegExpVisitor* visitor, void* data) override; |
(...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3597 | 3594 |
3598 private: | 3595 private: |
3599 Zone* zone_; | 3596 Zone* zone_; |
3600 AstValueFactory* ast_value_factory_; | 3597 AstValueFactory* ast_value_factory_; |
3601 }; | 3598 }; |
3602 | 3599 |
3603 | 3600 |
3604 } } // namespace v8::internal | 3601 } } // namespace v8::internal |
3605 | 3602 |
3606 #endif // V8_AST_H_ | 3603 #endif // V8_AST_H_ |
OLD | NEW |