mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 01:08:39 +09:00
Merge remote-tracking branch 'origin/master' into custom
This commit is contained in:
commit
a324d0a18c
52 changed files with 459 additions and 241 deletions
|
|
@ -2618,6 +2618,10 @@ IonBuilder::inlineUnsafeSetReservedSlot(CallInfo& callInfo)
|
|||
return InliningStatus_NotInlined;
|
||||
uint32_t slot = uint32_t(arg->toConstant()->toInt32());
|
||||
|
||||
// Don't inline if it's not a fixed slot.
|
||||
if (slot >= NativeObject::MAX_FIXED_SLOTS)
|
||||
return InliningStatus_NotInlined;
|
||||
|
||||
callInfo.setImplicitlyUsedUnchecked();
|
||||
|
||||
MStoreFixedSlot* store =
|
||||
|
|
@ -2649,6 +2653,10 @@ IonBuilder::inlineUnsafeGetReservedSlot(CallInfo& callInfo, MIRType knownValueTy
|
|||
return InliningStatus_NotInlined;
|
||||
uint32_t slot = uint32_t(arg->toConstant()->toInt32());
|
||||
|
||||
// Don't inline if it's not a fixed slot.
|
||||
if (slot >= NativeObject::MAX_FIXED_SLOTS)
|
||||
return InliningStatus_NotInlined;
|
||||
|
||||
callInfo.setImplicitlyUsedUnchecked();
|
||||
|
||||
MLoadFixedSlot* load = MLoadFixedSlot::New(alloc(), callInfo.getArg(0), slot);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue