| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal); | 62 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal); |
| 63 virtual void CheckNotCharacter(uint32_t c, Label* on_not_equal); | 63 virtual void CheckNotCharacter(uint32_t c, Label* on_not_equal); |
| 64 virtual void CheckNotCharacterAfterAnd(uint32_t c, | 64 virtual void CheckNotCharacterAfterAnd(uint32_t c, |
| 65 uint32_t and_with, | 65 uint32_t and_with, |
| 66 Label* on_not_equal); | 66 Label* on_not_equal); |
| 67 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, | 67 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, |
| 68 uc16 minus, | 68 uc16 minus, |
| 69 uc16 and_with, | 69 uc16 and_with, |
| 70 Label* on_not_equal); | 70 Label* on_not_equal); |
| 71 virtual bool CheckSpecialCharacterClass(uc16 type, | 71 virtual bool CheckSpecialCharacterClass(uc16 type, |
| 72 int cp_offset, | |
| 73 bool check_offset, | |
| 74 Label* on_no_match); | 72 Label* on_no_match); |
| 75 virtual void Fail(); | 73 virtual void Fail(); |
| 76 virtual Handle<Object> GetCode(Handle<String> source); | 74 virtual Handle<Object> GetCode(Handle<String> source); |
| 77 virtual void GoTo(Label* label); | 75 virtual void GoTo(Label* label); |
| 78 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge); | 76 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge); |
| 79 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt); | 77 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt); |
| 80 virtual void IfRegisterEqPos(int reg, Label* if_eq); | 78 virtual void IfRegisterEqPos(int reg, Label* if_eq); |
| 81 virtual IrregexpImplementation Implementation(); | 79 virtual IrregexpImplementation Implementation(); |
| 82 virtual void LoadCurrentCharacter(int cp_offset, | 80 virtual void LoadCurrentCharacter(int cp_offset, |
| 83 Label* on_end_of_input, | 81 Label* on_end_of_input, |
| (...skipping 12 matching lines...) Expand all Loading... |
| 96 virtual void WriteCurrentPositionToRegister(int reg, int cp_offset); | 94 virtual void WriteCurrentPositionToRegister(int reg, int cp_offset); |
| 97 virtual void ClearRegisters(int reg_from, int reg_to); | 95 virtual void ClearRegisters(int reg_from, int reg_to); |
| 98 virtual void WriteStackPointerToRegister(int reg); | 96 virtual void WriteStackPointerToRegister(int reg); |
| 99 private: | 97 private: |
| 100 RegExpMacroAssembler* assembler_; | 98 RegExpMacroAssembler* assembler_; |
| 101 }; | 99 }; |
| 102 | 100 |
| 103 }} // namespace v8::internal | 101 }} // namespace v8::internal |
| 104 | 102 |
| 105 #endif // V8_REGEXP_MACRO_ASSEMBLER_TRACER_H_ | 103 #endif // V8_REGEXP_MACRO_ASSEMBLER_TRACER_H_ |
| OLD | NEW |