Lines Matching defs:superCtor
1410 GateRef superCtor = GetPrototype(glue, thisFunc);
1426 Branch(TaggedIsHeapObject(superCtor), &ctorIsHeapObject, &slowPath);
1428 Branch(IsJSFunction(superCtor), &ctorIsJSFunction, &slowPath);
1430 Branch(IsConstructor(superCtor), &ctorIsConstructor, &slowPath);
1435 Branch(IsBase(superCtor), &ctorIsBase, &ctorNotBase);
1439 thisObj = newBuilder.FastSuperAllocateThis(glue, superCtor, newTarget);
1447 METHOD_ENTRY_ENV_DEFINED(superCtor);
1452 CallStubBuilder callBuilder(this, glue, superCtor, actualNumArgs, jumpSize, &res, hotnessCounter, callArgs,
1660 GateRef superCtor = GetPrototype(glue, acc);
1675 Branch(TaggedIsHeapObject(superCtor), &ctorIsHeapObject, &slowPath);
1677 Branch(IsJSFunction(superCtor), &ctorIsJSFunction, &slowPath);
1679 Branch(IsConstructor(superCtor), &ctorIsConstructor, &slowPath);
1684 Branch(IsBase(superCtor), &ctorIsBase, &ctorNotBase);
1688 thisObj = objBuilder.FastSuperAllocateThis(glue, superCtor, newTarget);
1696 METHOD_ENTRY_ENV_DEFINED(superCtor);
1700 CallStubBuilder callBuilder(this, glue, superCtor, argvLen, jumpSize, &res, hotnessCounter, callArgs,