diff options
Diffstat (limited to 'deps/v8/src/regexp/regexp-interpreter.cc')
-rw-r--r-- | deps/v8/src/regexp/regexp-interpreter.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/deps/v8/src/regexp/regexp-interpreter.cc b/deps/v8/src/regexp/regexp-interpreter.cc index f9a959d258..be3bb45a5f 100644 --- a/deps/v8/src/regexp/regexp-interpreter.cc +++ b/deps/v8/src/regexp/regexp-interpreter.cc @@ -1060,12 +1060,12 @@ IrregexpInterpreter::Result IrregexpInterpreter::Match( if (FLAG_regexp_tier_up) regexp.TierUpTick(); bool is_one_byte = String::IsOneByteRepresentationUnderneath(subject_string); - ByteArray code_array = ByteArray::cast(regexp.Bytecode(is_one_byte)); - int total_register_count = regexp.MaxRegisterCount(); + ByteArray code_array = ByteArray::cast(regexp.bytecode(is_one_byte)); + int total_register_count = regexp.max_register_count(); return MatchInternal(isolate, code_array, subject_string, output_registers, output_register_count, total_register_count, - start_position, call_origin, regexp.BacktrackLimit()); + start_position, call_origin, regexp.backtrack_limit()); } IrregexpInterpreter::Result IrregexpInterpreter::MatchInternal( @@ -1111,7 +1111,7 @@ IrregexpInterpreter::Result IrregexpInterpreter::MatchInternal( // builtin. IrregexpInterpreter::Result IrregexpInterpreter::MatchForCallFromJs( Address subject, int32_t start_position, Address, Address, - int* output_registers, int32_t output_register_count, Address, + int* output_registers, int32_t output_register_count, RegExp::CallOrigin call_origin, Isolate* isolate, Address regexp) { DCHECK_NOT_NULL(isolate); DCHECK_NOT_NULL(output_registers); |