blob: f8a412d4f8687b4255580ce21fa0f6e44880d8e2 [file] [log] [blame]
mstarzinger@chromium.org15613d02012-05-23 12:04:37 +00001// Copyright 2012 the V8 project authors. All rights reserved.
ager@chromium.orga74f0da2008-12-03 16:05:52 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#ifndef V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
29#define V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
30
kasperl@chromium.org71affb52009-05-26 05:44:31 +000031namespace v8 {
32namespace internal {
ager@chromium.orga74f0da2008-12-03 16:05:52 +000033
ricow@chromium.orgc9c80822010-04-21 08:22:37 +000034#ifdef V8_INTERPRETED_REGEXP
ager@chromium.orga74f0da2008-12-03 16:05:52 +000035
36class RegExpMacroAssemblerIrregexp: public RegExpMacroAssembler {
37 public:
38 // Create an assembler. Instructions and relocation information are emitted
39 // into a buffer, with the instructions starting from the beginning and the
40 // relocation information starting from the end of the buffer. See CodeDesc
41 // for a detailed comment on the layout (globals.h).
42 //
43 // If the provided buffer is NULL, the assembler allocates and grows its own
44 // buffer, and buffer_size determines the initial buffer size. The buffer is
45 // owned by the assembler and deallocated upon destruction of the assembler.
46 //
47 // If the provided buffer is not NULL, the assembler uses the provided buffer
48 // for code generation and assumes its size to be buffer_size. If the buffer
49 // is too small, a fatal error occurs. No deallocation of the buffer is done
50 // upon destruction of the assembler.
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +000051 RegExpMacroAssemblerIrregexp(Vector<byte>, Zone* zone);
ager@chromium.orga74f0da2008-12-03 16:05:52 +000052 virtual ~RegExpMacroAssemblerIrregexp();
ager@chromium.org32912102009-01-16 10:38:43 +000053 // The byte-code interpreter checks on each push anyway.
54 virtual int stack_limit_slack() { return 1; }
ager@chromium.orga74f0da2008-12-03 16:05:52 +000055 virtual void Bind(Label* label);
ager@chromium.orga74f0da2008-12-03 16:05:52 +000056 virtual void AdvanceCurrentPosition(int by); // Signed cp change.
57 virtual void PopCurrentPosition();
58 virtual void PushCurrentPosition();
59 virtual void Backtrack();
60 virtual void GoTo(Label* label);
61 virtual void PushBacktrack(Label* label);
mstarzinger@chromium.org15613d02012-05-23 12:04:37 +000062 virtual bool Succeed();
ager@chromium.orga74f0da2008-12-03 16:05:52 +000063 virtual void Fail();
64 virtual void PopRegister(int register_index);
ager@chromium.org32912102009-01-16 10:38:43 +000065 virtual void PushRegister(int register_index,
66 StackCheckFlag check_stack_limit);
ager@chromium.orga74f0da2008-12-03 16:05:52 +000067 virtual void AdvanceRegister(int reg, int by); // r[reg] += by.
whesse@chromium.org4a5224e2010-10-20 12:37:07 +000068 virtual void SetCurrentPositionFromEnd(int by);
ager@chromium.orga74f0da2008-12-03 16:05:52 +000069 virtual void SetRegister(int register_index, int to);
ager@chromium.org8bb60582008-12-11 12:02:20 +000070 virtual void WriteCurrentPositionToRegister(int reg, int cp_offset);
ager@chromium.orgddb913d2009-01-27 10:01:48 +000071 virtual void ClearRegisters(int reg_from, int reg_to);
ager@chromium.orga74f0da2008-12-03 16:05:52 +000072 virtual void ReadCurrentPositionFromRegister(int reg);
73 virtual void WriteStackPointerToRegister(int reg);
74 virtual void ReadStackPointerFromRegister(int reg);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +000075 virtual void LoadCurrentCharacter(int cp_offset,
76 Label* on_end_of_input,
77 bool check_bounds = true,
78 int characters = 1);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000079 virtual void CheckCharacter(unsigned c, Label* on_equal);
80 virtual void CheckCharacterAfterAnd(unsigned c,
81 unsigned mask,
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +000082 Label* on_equal);
ager@chromium.orga74f0da2008-12-03 16:05:52 +000083 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +000084 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
ager@chromium.org8bb60582008-12-11 12:02:20 +000085 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
ager@chromium.orgddb913d2009-01-27 10:01:48 +000086 virtual void CheckAtStart(Label* on_at_start);
ager@chromium.orga74f0da2008-12-03 16:05:52 +000087 virtual void CheckNotAtStart(Label* on_not_at_start);
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000088 virtual void CheckNotCharacter(unsigned c, Label* on_not_equal);
89 virtual void CheckNotCharacterAfterAnd(unsigned c,
90 unsigned mask,
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +000091 Label* on_not_equal);
92 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
93 uc16 minus,
94 uc16 mask,
95 Label* on_not_equal);
jkummerow@chromium.org1456e702012-03-30 08:38:13 +000096 virtual void CheckCharacterInRange(uc16 from,
97 uc16 to,
98 Label* on_in_range);
99 virtual void CheckCharacterNotInRange(uc16 from,
100 uc16 to,
101 Label* on_not_in_range);
102 virtual void CheckBitInTable(Handle<ByteArray> table, Label* on_bit_set);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000103 virtual void CheckNotBackReference(int start_reg, Label* on_no_match);
104 virtual void CheckNotBackReferenceIgnoreCase(int start_reg,
105 Label* on_no_match);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000106 virtual void IfRegisterLT(int register_index, int comparand, Label* if_lt);
107 virtual void IfRegisterGE(int register_index, int comparand, Label* if_ge);
ager@chromium.org32912102009-01-16 10:38:43 +0000108 virtual void IfRegisterEqPos(int register_index, Label* if_eq);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000109
110 virtual IrregexpImplementation Implementation();
karlklose@chromium.org83a47282011-05-11 11:54:09 +0000111 virtual Handle<HeapObject> GetCode(Handle<String> source);
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000112
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000113 private:
114 void Expand();
115 // Code and bitmap emission.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000116 inline void EmitOrLink(Label* label);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000117 inline void Emit32(uint32_t x);
118 inline void Emit16(uint32_t x);
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000119 inline void Emit8(uint32_t x);
ager@chromium.orgddb913d2009-01-27 10:01:48 +0000120 inline void Emit(uint32_t bc, uint32_t arg);
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000121 // Bytecode buffer.
122 int length();
123 void Copy(Address a);
124
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000125 // The buffer into which code and relocation info are generated.
126 Vector<byte> buffer_;
127 // The program counter.
128 int pc_;
129 // True if the assembler owns the buffer, false if buffer is external.
130 bool own_buffer_;
ager@chromium.org8bb60582008-12-11 12:02:20 +0000131 Label backtrack_;
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000132
ager@chromium.org381abbb2009-02-25 13:23:22 +0000133 int advance_current_start_;
134 int advance_current_offset_;
135 int advance_current_end_;
136
danno@chromium.org1fd77d52013-06-07 16:01:45 +0000137 Isolate* isolate_;
138
ager@chromium.org381abbb2009-02-25 13:23:22 +0000139 static const int kInvalidPC = -1;
140
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000141 DISALLOW_IMPLICIT_CONSTRUCTORS(RegExpMacroAssemblerIrregexp);
142};
143
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000144#endif // V8_INTERPRETED_REGEXP
ager@chromium.org18ad94b2009-09-02 08:22:29 +0000145
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000146} } // namespace v8::internal
147
148#endif // V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_