| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 const Vector<Label*>& destinations); | 66 const Vector<Label*>& destinations); |
| 67 virtual void DispatchHighByteMap(byte start, | 67 virtual void DispatchHighByteMap(byte start, |
| 68 Label* byte_map, | 68 Label* byte_map, |
| 69 const Vector<Label*>& destinations); | 69 const Vector<Label*>& destinations); |
| 70 virtual void EmitOrLink(Label* label); | 70 virtual void EmitOrLink(Label* label); |
| 71 virtual void Fail(); | 71 virtual void Fail(); |
| 72 virtual Handle<Object> GetCode(); | 72 virtual Handle<Object> GetCode(); |
| 73 virtual void GoTo(Label* label); | 73 virtual void GoTo(Label* label); |
| 74 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge); | 74 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge); |
| 75 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt); | 75 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt); |
| 76 virtual Re2kImplementation Implementation(); | 76 virtual IrregexpImplementation Implementation(); |
| 77 virtual void LoadCurrentCharacter(int cp_offset, Label* on_end_of_input); | 77 virtual void LoadCurrentCharacter(int cp_offset, Label* on_end_of_input); |
| 78 virtual void PopCurrentPosition(); | 78 virtual void PopCurrentPosition(); |
| 79 virtual void PopRegister(int register_index); | 79 virtual void PopRegister(int register_index); |
| 80 virtual void PushBacktrack(Label* label); | 80 virtual void PushBacktrack(Label* label); |
| 81 virtual void PushCurrentPosition(); | 81 virtual void PushCurrentPosition(); |
| 82 virtual void PushRegister(int register_index); | 82 virtual void PushRegister(int register_index); |
| 83 virtual void ReadCurrentPositionFromRegister(int reg); | 83 virtual void ReadCurrentPositionFromRegister(int reg); |
| 84 virtual void ReadStackPointerFromRegister(int reg); | 84 virtual void ReadStackPointerFromRegister(int reg); |
| 85 virtual void SetRegister(int register_index, int to); | 85 virtual void SetRegister(int register_index, int to); |
| 86 virtual void Succeed(); | 86 virtual void Succeed(); |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 Label success_label_; | 153 Label success_label_; |
| 154 Label exit_label_; | 154 Label exit_label_; |
| 155 // Handle used to represent the generated code object itself. | 155 // Handle used to represent the generated code object itself. |
| 156 Handle<Object> self_; | 156 Handle<Object> self_; |
| 157 }; | 157 }; |
| 158 }} | 158 }} |
| 159 | 159 |
| 160 #endif // !ARM | 160 #endif // !ARM |
| 161 | 161 |
| 162 #endif /* REGEXP_MACRO_ASSEMBLER_IA32_H_ */ | 162 #endif /* REGEXP_MACRO_ASSEMBLER_IA32_H_ */ |
| OLD | NEW |