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