Lines Matching defs:superCtor
1531 GateRef superCtor = GetPrototype(glue, thisFunc);
1545 BRANCH(TaggedIsHeapObject(superCtor), &ctorIsHeapObject, &slowPath);
1547 BRANCH(IsJSFunction(superCtor), &ctorIsJSFunction, &slowPath);
1549 BRANCH(IsConstructor(superCtor), &ctorIsConstructor, &slowPath);
1554 BRANCH(IsBase(superCtor), &ctorIsBase, &ctorNotBase);
1557 thisObj = objBuilder.FastSuperAllocateThis(glue, superCtor, newTarget);
1565 METHOD_ENTRY_ENV_DEFINED(superCtor);
1569 CallStubBuilder callBuilder(this, glue, superCtor, argvLen, jumpSize, nullptr, hotnessCounter, callArgs,
3529 GateRef superCtor = GetPrototype(glue, thisFunc);
3543 BRANCH(TaggedIsHeapObject(superCtor), &ctorIsHeapObject, &slowPath);
3545 BRANCH(IsJSFunction(superCtor), &ctorIsJSFunction, &slowPath);
3547 BRANCH(IsConstructor(superCtor), &ctorIsConstructor, &slowPath);
3552 BRANCH(IsBase(superCtor), &ctorIsBase, &ctorNotBase);
3556 thisObj = newBuilder.FastSuperAllocateThis(glue, superCtor, newTarget);
3562 METHOD_ENTRY_ENV_DEFINED(superCtor);
3567 CallStubBuilder callBuilder(this, glue, superCtor, actualNumArgs, jumpSize, nullptr, hotnessCounter, callArgs,