| Index: src/regexp/mips/regexp-macro-assembler-mips.h
|
| diff --git a/src/regexp/mips/regexp-macro-assembler-mips.h b/src/regexp/mips/regexp-macro-assembler-mips.h
|
| index da59546a79190341b4f96f82521b3656953a673e..cec5a424fedc95548fdb878f1c84a9915997599b 100644
|
| --- a/src/regexp/mips/regexp-macro-assembler-mips.h
|
| +++ b/src/regexp/mips/regexp-macro-assembler-mips.h
|
| @@ -33,9 +33,11 @@ class RegExpMacroAssemblerMIPS: public NativeRegExpMacroAssembler {
|
| // A "greedy loop" is a loop that is both greedy and with a simple
|
| // body. It has a particularly simple implementation.
|
| virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
|
| - virtual void CheckNotAtStart(Label* on_not_at_start);
|
| - virtual void CheckNotBackReference(int start_reg, Label* on_no_match);
|
| + virtual void CheckNotAtStart(int cp_offset, Label* on_not_at_start);
|
| + virtual void CheckNotBackReference(int start_reg, bool read_backward,
|
| + Label* on_no_match);
|
| virtual void CheckNotBackReferenceIgnoreCase(int start_reg,
|
| + bool read_backward,
|
| Label* on_no_match);
|
| virtual void CheckNotCharacter(uint32_t c, Label* on_not_equal);
|
| virtual void CheckNotCharacterAfterAnd(uint32_t c,
|
|
|