mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 15:58:39 +09:00
Issue #3049 - loongarch64: reserve extract temps in shared IC register pools
This commit is contained in:
parent
ff4332d605
commit
f50509bb2e
1 changed files with 5 additions and 0 deletions
|
|
@ -1067,6 +1067,8 @@ class ICStubCompiler
|
|||
MOZ_ASSERT(!regs.has(PseudoStackPointer));
|
||||
MOZ_ASSERT(!regs.has(RealStackPointer));
|
||||
MOZ_ASSERT(!regs.has(ICTailCallReg));
|
||||
#elif defined(JS_CODEGEN_LOONGARCH64)
|
||||
MOZ_ASSERT(!regs.has(BaselineStackReg));
|
||||
#else
|
||||
MOZ_ASSERT(!regs.has(BaselineStackReg));
|
||||
#endif
|
||||
|
|
@ -1075,6 +1077,9 @@ class ICStubCompiler
|
|||
#ifdef JS_CODEGEN_X64
|
||||
regs.take(ExtractTemp0);
|
||||
regs.take(ExtractTemp1);
|
||||
#elif defined(JS_CODEGEN_LOONGARCH64)
|
||||
regs.take(ExtractTemp0);
|
||||
regs.take(ExtractTemp1);
|
||||
#endif
|
||||
|
||||
switch (numInputs) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue