| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 virtual void CheckCharacter(uc16 c, Label* on_equal); | 45 virtual void CheckCharacter(uc16 c, Label* on_equal); |
| 46 virtual void CheckCharacterGT(uc16 limit, Label* on_greater); | 46 virtual void CheckCharacterGT(uc16 limit, Label* on_greater); |
| 47 virtual void CheckCharacterLT(uc16 limit, Label* on_less); | 47 virtual void CheckCharacterLT(uc16 limit, Label* on_less); |
| 48 virtual void CheckCharacters(Vector<const uc16> str, | 48 virtual void CheckCharacters(Vector<const uc16> str, |
| 49 int cp_offset, | 49 int cp_offset, |
| 50 Label* on_failure); | 50 Label* on_failure); |
| 51 virtual void CheckCurrentPosition(int register_index, Label* on_equal); | 51 virtual void CheckCurrentPosition(int register_index, Label* on_equal); |
| 52 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); | 52 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); |
| 53 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, | 53 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, |
| 54 Label* on_no_match); | 54 Label* on_no_match); |
| 55 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal); |
| 55 virtual void CheckNotCharacter(uc16 c, Label* on_not_equal); | 56 virtual void CheckNotCharacter(uc16 c, Label* on_not_equal); |
| 56 virtual void CheckNotCharacterAfterOr(uc16 c, uc16 mask, Label* on_not_equal); | 57 virtual void CheckNotCharacterAfterOr(uc16 c, uc16 mask, Label* on_not_equal); |
| 57 virtual void CheckNotCharacterAfterMinusOr(uc16 c, | 58 virtual void CheckNotCharacterAfterMinusOr(uc16 c, |
| 58 uc16 mask, | 59 uc16 mask, |
| 59 Label* on_not_equal); | 60 Label* on_not_equal); |
| 60 virtual void DispatchByteMap(uc16 start, | 61 virtual void DispatchByteMap(uc16 start, |
| 61 Label* byte_map, | 62 Label* byte_map, |
| 62 const Vector<Label*>& destinations); | 63 const Vector<Label*>& destinations); |
| 63 virtual void DispatchHalfNibbleMap(uc16 start, | 64 virtual void DispatchHalfNibbleMap(uc16 start, |
| 64 Label* half_nibble_map, | 65 Label* half_nibble_map, |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 Label start_label_; | 156 Label start_label_; |
| 156 Label success_label_; | 157 Label success_label_; |
| 157 Label exit_label_; | 158 Label exit_label_; |
| 158 // Handle used to represent the generated code object itself. | 159 // Handle used to represent the generated code object itself. |
| 159 Handle<Object> self_; | 160 Handle<Object> self_; |
| 160 }; | 161 }; |
| 161 | 162 |
| 162 }} // namespace v8::internal | 163 }} // namespace v8::internal |
| 163 | 164 |
| 164 #endif /* REGEXP_MACRO_ASSEMBLER_IA32_H_ */ | 165 #endif /* REGEXP_MACRO_ASSEMBLER_IA32_H_ */ |
| OLD | NEW |