mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-12 15:02:11 +00:00
Backed out changeset 83e8b0ff394c (Bug 1081268) for Octane Mandreel regression.
This commit is contained in:
parent
2f0c409d2d
commit
5524b4afff
@ -308,13 +308,18 @@ class TypedArrayObjectTemplate : public TypedArrayObject
|
||||
makeTypedInstance(JSContext *cx, uint32_t len, gc::AllocKind allocKind)
|
||||
{
|
||||
const Class *clasp = instanceClass();
|
||||
bool largeAllocation = len * sizeof(NativeType) >= TypedArrayObject::SINGLETON_TYPE_BYTE_LENGTH;
|
||||
if (len * sizeof(NativeType) >= TypedArrayObject::SINGLETON_TYPE_BYTE_LENGTH) {
|
||||
JSObject *obj = NewBuiltinClassInstance(cx, clasp, allocKind, SingletonObject);
|
||||
if (!obj)
|
||||
return nullptr;
|
||||
return &obj->as<TypedArrayObject>();
|
||||
}
|
||||
|
||||
jsbytecode *pc;
|
||||
RootedScript script(cx, cx->currentScript(&pc));
|
||||
NewObjectKind newKind = script
|
||||
? UseNewTypeForInitializer(script, pc, clasp)
|
||||
: (largeAllocation ? SingletonObject : GenericObject);
|
||||
: GenericObject;
|
||||
RootedObject obj(cx, NewBuiltinClassInstance(cx, clasp, allocKind, newKind));
|
||||
if (!obj)
|
||||
return nullptr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user