Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: src/regexp/regexp-macro-assembler-tracer.h

Issue 1599303002: [regexp] implement case-insensitive unicode regexps. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@unicodeclass
Patch Set: fixes Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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_REGEXP_REGEXP_MACRO_ASSEMBLER_TRACER_H_ 5 #ifndef V8_REGEXP_REGEXP_MACRO_ASSEMBLER_TRACER_H_
6 #define V8_REGEXP_REGEXP_MACRO_ASSEMBLER_TRACER_H_ 6 #define V8_REGEXP_REGEXP_MACRO_ASSEMBLER_TRACER_H_
7 7
8 #include "src/regexp/regexp-macro-assembler.h" 8 #include "src/regexp/regexp-macro-assembler.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 16 matching lines...) Expand all
27 virtual void CheckCharacterAfterAnd(unsigned c, 27 virtual void CheckCharacterAfterAnd(unsigned c,
28 unsigned and_with, 28 unsigned and_with,
29 Label* on_equal); 29 Label* on_equal);
30 virtual void CheckCharacterGT(uc16 limit, Label* on_greater); 30 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
31 virtual void CheckCharacterLT(uc16 limit, Label* on_less); 31 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
32 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position); 32 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
33 virtual void CheckNotAtStart(int cp_offset, Label* on_not_at_start); 33 virtual void CheckNotAtStart(int cp_offset, Label* on_not_at_start);
34 virtual void CheckNotBackReference(int start_reg, bool read_backward, 34 virtual void CheckNotBackReference(int start_reg, bool read_backward,
35 Label* on_no_match); 35 Label* on_no_match);
36 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, 36 virtual void CheckNotBackReferenceIgnoreCase(int start_reg,
37 bool read_backward, 37 bool read_backward, bool unicode,
38 Label* on_no_match); 38 Label* on_no_match);
39 virtual void CheckNotCharacter(unsigned c, Label* on_not_equal); 39 virtual void CheckNotCharacter(unsigned c, Label* on_not_equal);
40 virtual void CheckNotCharacterAfterAnd(unsigned c, 40 virtual void CheckNotCharacterAfterAnd(unsigned c,
41 unsigned and_with, 41 unsigned and_with,
42 Label* on_not_equal); 42 Label* on_not_equal);
43 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, 43 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
44 uc16 minus, 44 uc16 minus,
45 uc16 and_with, 45 uc16 and_with,
46 Label* on_not_equal); 46 Label* on_not_equal);
47 virtual void CheckCharacterInRange(uc16 from, 47 virtual void CheckCharacterInRange(uc16 from,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 virtual void WriteStackPointerToRegister(int reg); 81 virtual void WriteStackPointerToRegister(int reg);
82 82
83 private: 83 private:
84 RegExpMacroAssembler* assembler_; 84 RegExpMacroAssembler* assembler_;
85 }; 85 };
86 86
87 } // namespace internal 87 } // namespace internal
88 } // namespace v8 88 } // namespace v8
89 89
90 #endif // V8_REGEXP_REGEXP_MACRO_ASSEMBLER_TRACER_H_ 90 #endif // V8_REGEXP_REGEXP_MACRO_ASSEMBLER_TRACER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698