OLD | NEW |
1 // Copyright 2008-2009 the V8 project authors. All rights reserved. | 1 // Copyright 2008-2009 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 int cp_offset, | 62 int cp_offset, |
63 Label* on_failure, | 63 Label* on_failure, |
64 bool check_end_of_string); | 64 bool check_end_of_string); |
65 // A "greedy loop" is a loop that is both greedy and with a simple | 65 // A "greedy loop" is a loop that is both greedy and with a simple |
66 // body. It has a particularly simple implementation. | 66 // body. It has a particularly simple implementation. |
67 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position); | 67 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position); |
68 virtual void CheckNotAtStart(Label* on_not_at_start); | 68 virtual void CheckNotAtStart(Label* on_not_at_start); |
69 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); | 69 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); |
70 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, | 70 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, |
71 Label* on_no_match); | 71 Label* on_no_match); |
72 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal); | |
73 virtual void CheckNotCharacter(uint32_t c, Label* on_not_equal); | 72 virtual void CheckNotCharacter(uint32_t c, Label* on_not_equal); |
74 virtual void CheckNotCharacterAfterAnd(uint32_t c, | 73 virtual void CheckNotCharacterAfterAnd(uint32_t c, |
75 uint32_t mask, | 74 uint32_t mask, |
76 Label* on_not_equal); | 75 Label* on_not_equal); |
77 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, | 76 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, |
78 uc16 minus, | 77 uc16 minus, |
79 uc16 mask, | 78 uc16 mask, |
80 Label* on_not_equal); | 79 Label* on_not_equal); |
81 virtual void CheckCharacterInRange(uc16 from, | 80 virtual void CheckCharacterInRange(uc16 from, |
82 uc16 to, | 81 uc16 to, |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 Label backtrack_label_; | 217 Label backtrack_label_; |
219 Label exit_label_; | 218 Label exit_label_; |
220 Label check_preempt_label_; | 219 Label check_preempt_label_; |
221 Label stack_overflow_label_; | 220 Label stack_overflow_label_; |
222 }; | 221 }; |
223 #endif // V8_INTERPRETED_REGEXP | 222 #endif // V8_INTERPRETED_REGEXP |
224 | 223 |
225 }} // namespace v8::internal | 224 }} // namespace v8::internal |
226 | 225 |
227 #endif // V8_IA32_REGEXP_MACRO_ASSEMBLER_IA32_H_ | 226 #endif // V8_IA32_REGEXP_MACRO_ASSEMBLER_IA32_H_ |
OLD | NEW |