| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 int cp_offset, | 63 int cp_offset, |
| 64 Label* on_failure, | 64 Label* on_failure, |
| 65 bool check_end_of_string); | 65 bool check_end_of_string); |
| 66 // A "greedy loop" is a loop that is both greedy and with a simple | 66 // A "greedy loop" is a loop that is both greedy and with a simple |
| 67 // body. It has a particularly simple implementation. | 67 // body. It has a particularly simple implementation. |
| 68 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position); | 68 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position); |
| 69 virtual void CheckNotAtStart(Label* on_not_at_start); | 69 virtual void CheckNotAtStart(Label* on_not_at_start); |
| 70 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); | 70 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); |
| 71 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, | 71 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, |
| 72 Label* on_no_match); | 72 Label* on_no_match); |
| 73 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal); | |
| 74 virtual void CheckNotCharacter(unsigned c, Label* on_not_equal); | 73 virtual void CheckNotCharacter(unsigned c, Label* on_not_equal); |
| 75 virtual void CheckNotCharacterAfterAnd(unsigned c, | 74 virtual void CheckNotCharacterAfterAnd(unsigned c, |
| 76 unsigned mask, | 75 unsigned mask, |
| 77 Label* on_not_equal); | 76 Label* on_not_equal); |
| 78 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, | 77 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, |
| 79 uc16 minus, | 78 uc16 minus, |
| 80 uc16 mask, | 79 uc16 mask, |
| 81 Label* on_not_equal); | 80 Label* on_not_equal); |
| 82 virtual void CheckCharacterInRange(uc16 from, | 81 virtual void CheckCharacterInRange(uc16 from, |
| 83 uc16 to, | 82 uc16 to, |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 Label check_preempt_label_; | 255 Label check_preempt_label_; |
| 257 Label stack_overflow_label_; | 256 Label stack_overflow_label_; |
| 258 }; | 257 }; |
| 259 | 258 |
| 260 #endif // V8_INTERPRETED_REGEXP | 259 #endif // V8_INTERPRETED_REGEXP |
| 261 | 260 |
| 262 | 261 |
| 263 }} // namespace v8::internal | 262 }} // namespace v8::internal |
| 264 | 263 |
| 265 #endif // V8_ARM_REGEXP_MACRO_ASSEMBLER_ARM_H_ | 264 #endif // V8_ARM_REGEXP_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |