mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
parent
ded41ae04d
commit
7db89b07bd
1 changed files with 6 additions and 1 deletions
|
|
@ -470,7 +470,12 @@ class MacroAssemblerMIPS64Compat : public MacroAssemblerMIPS64
|
|||
JSValueTag tag = (JSValueTag)JSVAL_TYPE_TO_TAG(type);
|
||||
ma_li(dest, Imm32(tag));
|
||||
ma_dsll(dest, dest, Imm32(JSVAL_TAG_SHIFT));
|
||||
ma_dins(dest, src, Imm32(0), Imm32(JSVAL_TAG_SHIFT));
|
||||
|
||||
if (type == JSVAL_TYPE_INT32 || type == JSVAL_TYPE_BOOLEAN) {
|
||||
ma_dins(dest, src, Imm32(0), Imm32(32));
|
||||
} else {
|
||||
ma_dins(dest, src, Imm32(0), Imm32(JSVAL_TAG_SHIFT));
|
||||
}
|
||||
}
|
||||
|
||||
void storeValue(ValueOperand val, Operand dst);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue