| Index: src/string-search.h
|
| diff --git a/src/string-search.h b/src/string-search.h
|
| index 7db09934f5449ca8f3e0e3d7e6b25819f2e103d2..637d000c567872af9c97f12ec18f015ad1d1e252 100644
|
| --- a/src/string-search.h
|
| +++ b/src/string-search.h
|
| @@ -563,6 +563,19 @@ int SearchString(Isolate* isolate,
|
| return search.Search(subject, start_index);
|
| }
|
|
|
| +// A wrapper function around SearchString that wraps raw pointers to the subject
|
| +// and pattern as vectors before calling SearchString. Used from the
|
| +// StringIndexOf builtin.
|
| +template <typename SubjectChar, typename PatternChar>
|
| +int SearchStringRaw(Isolate* isolate, const SubjectChar* subject_ptr,
|
| + int subject_length, const PatternChar* pattern_ptr,
|
| + int pattern_length, int start_index) {
|
| + DisallowHeapAllocation no_gc;
|
| + Vector<const SubjectChar> subject(subject_ptr, subject_length);
|
| + Vector<const PatternChar> pattern(pattern_ptr, pattern_length);
|
| + return SearchString(isolate, subject, pattern, start_index);
|
| +}
|
| +
|
| } // namespace internal
|
| } // namespace v8
|
|
|
|
|