summaryrefslogtreecommitdiffstats
path: root/js/src/irregexp/NativeRegExpMacroAssembler.h
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-11-12 17:03:28 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-11-12 17:03:28 +0100
commitce0dd36a78814c59950fde6c19413c1f7ea85ee1 (patch)
tree7c0828a5828482fd1d542268423e01324ca936f8 /js/src/irregexp/NativeRegExpMacroAssembler.h
parent899be7cedbef6678280d56a4725f2697f808bbb5 (diff)
parentfa473930f424bf17a9e545b601c84dd2e61364e3 (diff)
downloadUXP-ce0dd36a78814c59950fde6c19413c1f7ea85ee1.tar
UXP-ce0dd36a78814c59950fde6c19413c1f7ea85ee1.tar.gz
UXP-ce0dd36a78814c59950fde6c19413c1f7ea85ee1.tar.lz
UXP-ce0dd36a78814c59950fde6c19413c1f7ea85ee1.tar.xz
UXP-ce0dd36a78814c59950fde6c19413c1f7ea85ee1.zip
Merge branch 'issue-1279'
Diffstat (limited to 'js/src/irregexp/NativeRegExpMacroAssembler.h')
-rw-r--r--js/src/irregexp/NativeRegExpMacroAssembler.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/js/src/irregexp/NativeRegExpMacroAssembler.h b/js/src/irregexp/NativeRegExpMacroAssembler.h
index 7a72e252f..fc582dccf 100644
--- a/js/src/irregexp/NativeRegExpMacroAssembler.h
+++ b/js/src/irregexp/NativeRegExpMacroAssembler.h
@@ -105,9 +105,10 @@ class MOZ_STACK_CLASS NativeRegExpMacroAssembler final : public RegExpMacroAssem
void CheckCharacterGT(char16_t limit, jit::Label* on_greater);
void CheckCharacterLT(char16_t limit, jit::Label* on_less);
void CheckGreedyLoop(jit::Label* on_tos_equals_current_position);
- void CheckNotAtStart(jit::Label* on_not_at_start);
- void CheckNotBackReference(int start_reg, jit::Label* on_no_match);
- void CheckNotBackReferenceIgnoreCase(int start_reg, jit::Label* on_no_match, bool unicode);
+ void CheckNotAtStart(int cp_offset, jit::Label* on_not_at_start);
+ void CheckNotBackReference(int start_reg, bool read_backward, jit::Label* on_no_match);
+ void CheckNotBackReferenceIgnoreCase(int start_reg, bool read_backward,
+ jit::Label* on_no_match, bool unicode);
void CheckNotCharacter(unsigned c, jit::Label* on_not_equal);
void CheckNotCharacterAfterAnd(unsigned c, unsigned and_with, jit::Label* on_not_equal);
void CheckNotCharacterAfterMinusAnd(char16_t c, char16_t minus, char16_t and_with,