2012-05-22 14:05:44 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2008-11-25 11:07:48 +00:00
|
|
|
|
|
|
|
#ifndef V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
|
|
|
|
#define V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
|
|
|
|
|
2009-05-25 10:05:56 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2008-11-25 11:07:48 +00:00
|
|
|
|
2010-04-19 19:30:11 +00:00
|
|
|
#ifdef V8_INTERPRETED_REGEXP
|
2008-11-25 11:07:48 +00:00
|
|
|
|
|
|
|
class RegExpMacroAssemblerIrregexp: public RegExpMacroAssembler {
|
|
|
|
public:
|
2008-11-28 10:37:06 +00:00
|
|
|
// Create an assembler. Instructions and relocation information are emitted
|
|
|
|
// into a buffer, with the instructions starting from the beginning and the
|
|
|
|
// relocation information starting from the end of the buffer. See CodeDesc
|
|
|
|
// for a detailed comment on the layout (globals.h).
|
|
|
|
//
|
|
|
|
// If the provided buffer is NULL, the assembler allocates and grows its own
|
|
|
|
// buffer, and buffer_size determines the initial buffer size. The buffer is
|
|
|
|
// owned by the assembler and deallocated upon destruction of the assembler.
|
|
|
|
//
|
|
|
|
// If the provided buffer is not NULL, the assembler uses the provided buffer
|
|
|
|
// for code generation and assumes its size to be buffer_size. If the buffer
|
|
|
|
// is too small, a fatal error occurs. No deallocation of the buffer is done
|
|
|
|
// upon destruction of the assembler.
|
2012-06-14 17:06:16 +00:00
|
|
|
RegExpMacroAssemblerIrregexp(Vector<byte>, Zone* zone);
|
2008-11-25 11:07:48 +00:00
|
|
|
virtual ~RegExpMacroAssemblerIrregexp();
|
2009-01-12 13:05:23 +00:00
|
|
|
// The byte-code interpreter checks on each push anyway.
|
|
|
|
virtual int stack_limit_slack() { return 1; }
|
2008-11-25 11:07:48 +00:00
|
|
|
virtual void Bind(Label* label);
|
|
|
|
virtual void AdvanceCurrentPosition(int by); // Signed cp change.
|
|
|
|
virtual void PopCurrentPosition();
|
|
|
|
virtual void PushCurrentPosition();
|
|
|
|
virtual void Backtrack();
|
|
|
|
virtual void GoTo(Label* label);
|
|
|
|
virtual void PushBacktrack(Label* label);
|
2012-05-22 14:05:44 +00:00
|
|
|
virtual bool Succeed();
|
2008-11-25 11:07:48 +00:00
|
|
|
virtual void Fail();
|
|
|
|
virtual void PopRegister(int register_index);
|
2009-01-12 13:05:23 +00:00
|
|
|
virtual void PushRegister(int register_index,
|
|
|
|
StackCheckFlag check_stack_limit);
|
2008-11-25 11:07:48 +00:00
|
|
|
virtual void AdvanceRegister(int reg, int by); // r[reg] += by.
|
2010-10-19 14:00:01 +00:00
|
|
|
virtual void SetCurrentPositionFromEnd(int by);
|
2008-11-25 11:07:48 +00:00
|
|
|
virtual void SetRegister(int register_index, int to);
|
2008-12-08 09:22:12 +00:00
|
|
|
virtual void WriteCurrentPositionToRegister(int reg, int cp_offset);
|
2009-01-26 14:38:17 +00:00
|
|
|
virtual void ClearRegisters(int reg_from, int reg_to);
|
2008-11-25 11:07:48 +00:00
|
|
|
virtual void ReadCurrentPositionFromRegister(int reg);
|
|
|
|
virtual void WriteStackPointerToRegister(int reg);
|
|
|
|
virtual void ReadStackPointerFromRegister(int reg);
|
2008-12-19 12:02:34 +00:00
|
|
|
virtual void LoadCurrentCharacter(int cp_offset,
|
|
|
|
Label* on_end_of_input,
|
|
|
|
bool check_bounds = true,
|
|
|
|
int characters = 1);
|
2011-01-12 11:56:41 +00:00
|
|
|
virtual void CheckCharacter(unsigned c, Label* on_equal);
|
|
|
|
virtual void CheckCharacterAfterAnd(unsigned c,
|
|
|
|
unsigned mask,
|
2008-12-19 12:02:34 +00:00
|
|
|
Label* on_equal);
|
2008-11-25 11:07:48 +00:00
|
|
|
virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
|
2008-12-19 12:02:34 +00:00
|
|
|
virtual void CheckCharacterLT(uc16 limit, Label* on_less);
|
2008-12-08 09:22:12 +00:00
|
|
|
virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
|
2009-01-19 18:56:47 +00:00
|
|
|
virtual void CheckAtStart(Label* on_at_start);
|
2008-11-28 11:48:22 +00:00
|
|
|
virtual void CheckNotAtStart(Label* on_not_at_start);
|
2011-01-12 11:56:41 +00:00
|
|
|
virtual void CheckNotCharacter(unsigned c, Label* on_not_equal);
|
|
|
|
virtual void CheckNotCharacterAfterAnd(unsigned c,
|
|
|
|
unsigned mask,
|
2008-12-19 12:02:34 +00:00
|
|
|
Label* on_not_equal);
|
|
|
|
virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
|
|
|
|
uc16 minus,
|
|
|
|
uc16 mask,
|
|
|
|
Label* on_not_equal);
|
2012-03-30 07:43:48 +00:00
|
|
|
virtual void CheckCharacterInRange(uc16 from,
|
|
|
|
uc16 to,
|
|
|
|
Label* on_in_range);
|
|
|
|
virtual void CheckCharacterNotInRange(uc16 from,
|
|
|
|
uc16 to,
|
|
|
|
Label* on_not_in_range);
|
|
|
|
virtual void CheckBitInTable(Handle<ByteArray> table, Label* on_bit_set);
|
2008-11-25 11:07:48 +00:00
|
|
|
virtual void CheckNotBackReference(int start_reg, Label* on_no_match);
|
2008-11-27 07:27:08 +00:00
|
|
|
virtual void CheckNotBackReferenceIgnoreCase(int start_reg,
|
|
|
|
Label* on_no_match);
|
2008-11-25 11:07:48 +00:00
|
|
|
virtual void IfRegisterLT(int register_index, int comparand, Label* if_lt);
|
|
|
|
virtual void IfRegisterGE(int register_index, int comparand, Label* if_ge);
|
2009-01-08 12:40:47 +00:00
|
|
|
virtual void IfRegisterEqPos(int register_index, Label* if_eq);
|
2008-11-25 11:07:48 +00:00
|
|
|
|
|
|
|
virtual IrregexpImplementation Implementation();
|
2011-05-11 06:39:27 +00:00
|
|
|
virtual Handle<HeapObject> GetCode(Handle<String> source);
|
2011-09-08 19:57:14 +00:00
|
|
|
|
2008-11-25 11:07:48 +00:00
|
|
|
private:
|
2008-11-28 10:37:06 +00:00
|
|
|
void Expand();
|
|
|
|
// Code and bitmap emission.
|
2009-08-14 11:24:32 +00:00
|
|
|
inline void EmitOrLink(Label* label);
|
2008-11-28 10:37:06 +00:00
|
|
|
inline void Emit32(uint32_t x);
|
|
|
|
inline void Emit16(uint32_t x);
|
2012-03-30 07:43:48 +00:00
|
|
|
inline void Emit8(uint32_t x);
|
2009-01-20 18:50:01 +00:00
|
|
|
inline void Emit(uint32_t bc, uint32_t arg);
|
2008-11-28 10:37:06 +00:00
|
|
|
// Bytecode buffer.
|
|
|
|
int length();
|
|
|
|
void Copy(Address a);
|
|
|
|
|
|
|
|
// The buffer into which code and relocation info are generated.
|
|
|
|
Vector<byte> buffer_;
|
|
|
|
// The program counter.
|
|
|
|
int pc_;
|
|
|
|
// True if the assembler owns the buffer, false if buffer is external.
|
|
|
|
bool own_buffer_;
|
2008-12-08 09:22:12 +00:00
|
|
|
Label backtrack_;
|
2008-11-28 10:37:06 +00:00
|
|
|
|
2009-02-19 10:03:27 +00:00
|
|
|
int advance_current_start_;
|
|
|
|
int advance_current_offset_;
|
|
|
|
int advance_current_end_;
|
|
|
|
|
2013-06-07 08:38:05 +00:00
|
|
|
Isolate* isolate_;
|
|
|
|
|
2009-02-19 10:03:27 +00:00
|
|
|
static const int kInvalidPC = -1;
|
|
|
|
|
2008-11-28 10:37:06 +00:00
|
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(RegExpMacroAssemblerIrregexp);
|
2008-11-25 11:07:48 +00:00
|
|
|
};
|
|
|
|
|
2010-04-19 19:30:11 +00:00
|
|
|
#endif // V8_INTERPRETED_REGEXP
|
2009-08-31 12:40:37 +00:00
|
|
|
|
2008-11-25 11:07:48 +00:00
|
|
|
} } // namespace v8::internal
|
|
|
|
|
|
|
|
#endif // V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
|