Lines Matching refs:match_info
223 TNode<RegExpMatchInfo> match_info, TNode<String> string, in ConstructNewResultFromMatchInfo() argument
228 match_info, RegExpMatchInfo::kNumberOfCapturesIndex))); in ConstructNewResultFromMatchInfo()
231 match_info, RegExpMatchInfo::kFirstCaptureIndex)); in ConstructNewResultFromMatchInfo()
233 match_info, RegExpMatchInfo::kFirstCaptureIndex + 1)); in ConstructNewResultFromMatchInfo()
271 CAST(UnsafeLoadFixedArrayElement(match_info, from_cursor)); in ConstructNewResultFromMatchInfo()
279 CAST(UnsafeLoadFixedArrayElement(match_info, from_cursor_plus1)); in ConstructNewResultFromMatchInfo()
401 match_info, maybe_names)); in ConstructNewResultFromMatchInfo()
435 TNode<Number> last_index, TNode<RegExpMatchInfo> match_info, in RegExpExecInternal() argument
677 SmiSub(LoadFixedArrayBaseLength(match_info), in RegExpExecInternal()
688 match_info, RegExpMatchInfo::kNumberOfCapturesIndex, register_count); in RegExpExecInternal()
689 UnsafeStoreFixedArrayElement(match_info, RegExpMatchInfo::kLastSubjectIndex, in RegExpExecInternal()
691 UnsafeStoreFixedArrayElement(match_info, RegExpMatchInfo::kLastInputIndex, in RegExpExecInternal()
711 StoreNoWriteBarrier(MachineRepresentation::kTagged, match_info, in RegExpExecInternal()
718 var_result = match_info; in RegExpExecInternal()
748 last_index, match_info)); in RegExpExecInternal()
759 last_index, match_info)); in RegExpExecInternal()
768 string, last_index, match_info)); in RegExpExecInternal()
936 auto match_info = Parameter<FixedArray>(Descriptor::kMatchInfo); in TF_BUILTIN() local
982 UnsafeStoreFixedArrayElement(match_info, in TF_BUILTIN()
985 UnsafeStoreFixedArrayElement(match_info, RegExpMatchInfo::kLastSubjectIndex, in TF_BUILTIN()
987 UnsafeStoreFixedArrayElement(match_info, RegExpMatchInfo::kLastInputIndex, in TF_BUILTIN()
990 match_info, RegExpMatchInfo::kFirstCaptureIndex, match_from); in TF_BUILTIN()
992 match_info, RegExpMatchInfo::kFirstCaptureIndex + 1, match_to); in TF_BUILTIN()
994 Return(match_info); in TF_BUILTIN()
1005 auto match_info = Parameter<RegExpMatchInfo>(Descriptor::kMatchInfo); in TF_BUILTIN() local
1011 Return(RegExpExecInternal(context, regexp, string, last_index, match_info)); in TF_BUILTIN()