Lines Matching refs:slowPath
250 Label slowPath(env); \
252 builder.method(glue, thisValue, numArgs, &res, &exit, &slowPath); \
253 Bind(&slowPath); \
268 Label slowPath(env); \
271 builder.method(&res, &exit, &slowPath); \
272 Bind(&slowPath); \
287 Label slowPath(env); \
290 builder.method(&res, &exit, &slowPath); \
291 Bind(&slowPath); \
306 Label slowPath(env); \
309 builder.function<DataViewType::numType>(glue, thisValue, numArgs, &res, &exit, &slowPath); \
310 Bind(&slowPath); \
356 Label slowPath(env); \
358 builder.method(glue, thisValue, numArgs, &res, &exit, &slowPath); \
359 Bind(&slowPath); \
384 Label slowPath(env); \
386 containersBuilder.method(glue, thisValue, numArgs, &res, &exit, &slowPath, ContainersType::methodType); \
387 Bind(&slowPath); \
406 Label slowPath(env);
410 BRANCH(TaggedIsHeapObject(newTarget), &newTargetIsHeapObject, &slowPath);
412 BRANCH(IsJSFunction(newTarget), &newTargetIsJSFunction, &slowPath);
441 Bind(&slowPath);
459 Label slowPath(env);
463 BRANCH(TaggedIsHeapObject(newTarget), &newTargetIsHeapObject, &slowPath);
465 BRANCH(IsJSFunction(newTarget), &newTargetIsJSFunction, &slowPath);
483 BRANCH(TaggedIsNumber(value), &valueIsNumber, &slowPath);
493 BRANCH(Int64Equal(numArgs, IntPtr(3)), &threeArgs, &slowPath); // 3: year month day
500 BRANCH(IsNumberYearMonthDay(year, month, day), &numberYearMonthDay, &slowPath);
534 Bind(&slowPath);