| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 Label* on_no_match); | 59 Label* on_no_match); |
| 60 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal); | 60 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal); |
| 61 virtual void CheckNotCharacter(uint32_t c, Label* on_not_equal); | 61 virtual void CheckNotCharacter(uint32_t c, Label* on_not_equal); |
| 62 virtual void CheckNotCharacterAfterAnd(uint32_t c, | 62 virtual void CheckNotCharacterAfterAnd(uint32_t c, |
| 63 uint32_t and_with, | 63 uint32_t and_with, |
| 64 Label* on_not_equal); | 64 Label* on_not_equal); |
| 65 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, | 65 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, |
| 66 uc16 minus, | 66 uc16 minus, |
| 67 uc16 and_with, | 67 uc16 and_with, |
| 68 Label* on_not_equal); | 68 Label* on_not_equal); |
| 69 virtual bool CheckSpecialCharacterClass(uc16 type, |
| 70 int cp_offset, |
| 71 bool check_offset, |
| 72 Label* on_no_match); |
| 69 virtual void DispatchByteMap( | 73 virtual void DispatchByteMap( |
| 70 uc16 start, | 74 uc16 start, |
| 71 Label* byte_map, | 75 Label* byte_map, |
| 72 const Vector<Label*>& destinations); | 76 const Vector<Label*>& destinations); |
| 73 virtual void DispatchHalfNibbleMap( | 77 virtual void DispatchHalfNibbleMap( |
| 74 uc16 start, | 78 uc16 start, |
| 75 Label* half_nibble_map, | 79 Label* half_nibble_map, |
| 76 const Vector<Label*>& destinations); | 80 const Vector<Label*>& destinations); |
| 77 virtual void DispatchHighByteMap( | 81 virtual void DispatchHighByteMap( |
| 78 byte start, | 82 byte start, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 100 virtual void Succeed(); | 104 virtual void Succeed(); |
| 101 virtual void WriteCurrentPositionToRegister(int reg, int cp_offset); | 105 virtual void WriteCurrentPositionToRegister(int reg, int cp_offset); |
| 102 virtual void WriteStackPointerToRegister(int reg); | 106 virtual void WriteStackPointerToRegister(int reg); |
| 103 private: | 107 private: |
| 104 RegExpMacroAssembler* assembler_; | 108 RegExpMacroAssembler* assembler_; |
| 105 }; | 109 }; |
| 106 | 110 |
| 107 }} // namespace v8::internal | 111 }} // namespace v8::internal |
| 108 | 112 |
| 109 #endif // REGEXP_MACRO_ASSEMBLER_TRACER_H_ | 113 #endif // REGEXP_MACRO_ASSEMBLER_TRACER_H_ |
| OLD | NEW |