mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Auto merge of #13009 - bzbarsky:fix-proto-splice, r=Ms2ger
Use JS_SplicePrototype to set the right proto on the global, instead of JS_SetPrototype, since the latter will permanently deoptimize it. <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [X] These changes do not require tests because it's a performance improvement and I have no idea how to add performance tests. <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13009) <!-- Reviewable:end -->
This commit is contained in:
commit
9d32088116
1 changed files with 2 additions and 2 deletions
|
@ -2394,7 +2394,7 @@ Root::from_ref(&*raw)""" % {'copyUnforgeable': unforgeable, 'createObject': crea
|
||||||
let _ac = JSAutoCompartment::new(cx, obj.get());
|
let _ac = JSAutoCompartment::new(cx, obj.get());
|
||||||
rooted!(in(cx) let mut proto = ptr::null_mut());
|
rooted!(in(cx) let mut proto = ptr::null_mut());
|
||||||
GetProtoObject(cx, obj.handle(), proto.handle_mut());
|
GetProtoObject(cx, obj.handle(), proto.handle_mut());
|
||||||
JS_SetPrototype(cx, obj.handle(), proto.handle());
|
JS_SplicePrototype(cx, obj.handle(), proto.handle());
|
||||||
|
|
||||||
%(copyUnforgeable)s
|
%(copyUnforgeable)s
|
||||||
|
|
||||||
|
@ -5530,7 +5530,7 @@ class CGBindingRoot(CGThing):
|
||||||
'js::jsapi::{JS_HasProperty, JS_HasPropertyById, JS_InitializePropertiesFromCompatibleNativeObject}',
|
'js::jsapi::{JS_HasProperty, JS_HasPropertyById, JS_InitializePropertiesFromCompatibleNativeObject}',
|
||||||
'js::jsapi::{JS_AtomizeAndPinString, JS_NewObject, JS_NewObjectWithGivenProto}',
|
'js::jsapi::{JS_AtomizeAndPinString, JS_NewObject, JS_NewObjectWithGivenProto}',
|
||||||
'js::jsapi::{JS_NewObjectWithoutMetadata, JS_SetProperty}',
|
'js::jsapi::{JS_NewObjectWithoutMetadata, JS_SetProperty}',
|
||||||
'js::jsapi::{JS_SetPrototype, JS_SetReservedSlot, JSAutoCompartment}',
|
'js::jsapi::{JS_SplicePrototype, JS_SetReservedSlot, JSAutoCompartment}',
|
||||||
'js::jsapi::{JSContext, JSClass, JSFreeOp, JSFunctionSpec}',
|
'js::jsapi::{JSContext, JSClass, JSFreeOp, JSFunctionSpec}',
|
||||||
'js::jsapi::{JSJitGetterCallArgs, JSJitInfo, JSJitMethodCallArgs, JSJitSetterCallArgs}',
|
'js::jsapi::{JSJitGetterCallArgs, JSJitInfo, JSJitMethodCallArgs, JSJitSetterCallArgs}',
|
||||||
'js::jsapi::{JSNative, JSObject, JSNativeWrapper, JSPropertySpec}',
|
'js::jsapi::{JSNative, JSObject, JSNativeWrapper, JSPropertySpec}',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue