/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- * vim: set ts=8 sts=2 et sw=2 tw=80: * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "jit/mips64/CodeGenerator-mips64.h" #include "mozilla/MathAlgorithms.h" #include "jit/CodeGenerator.h" #include "jit/MIR-wasm.h" #include "jit/MIR.h" #include "jit/MIRGraph.h" #include "js/Conversions.h" #include "vm/Shape.h" #include "jit/MacroAssembler-inl.h" #include "jit/shared/CodeGenerator-shared-inl.h" using namespace js; using namespace js::jit; void CodeGenerator::visitBox(LBox* box) { const LAllocation* in = box->payload(); ValueOperand result = ToOutValue(box); masm.moveValue(TypedOrValueRegister(box->type(), ToAnyRegister(in)), result); } void CodeGenerator::visitUnbox(LUnbox* unbox) { MUnbox* mir = unbox->mir(); Register result = ToRegister(unbox->output()); if (mir->fallible()) { ValueOperand value = ToValue(unbox->input()); Label bail; switch (mir->type()) { case MIRType::Int32: masm.fallibleUnboxInt32(value, result, &bail); break; case MIRType::Boolean: masm.fallibleUnboxBoolean(value, result, &bail); break; case MIRType::Object: masm.fallibleUnboxObject(value, result, &bail); break; case MIRType::String: masm.fallibleUnboxString(value, result, &bail); break; case MIRType::Symbol: masm.fallibleUnboxSymbol(value, result, &bail); break; case MIRType::BigInt: masm.fallibleUnboxBigInt(value, result, &bail); break; default: MOZ_CRASH("Given MIRType cannot be unboxed."); } bailoutFrom(&bail, unbox->snapshot()); return; } LAllocation* input = unbox->getOperand(LUnbox::Input); if (input->isGeneralReg()) { Register inputReg = ToRegister(input); switch (mir->type()) { case MIRType::Int32: masm.unboxInt32(inputReg, result); break; case MIRType::Boolean: masm.unboxBoolean(inputReg, result); break; case MIRType::Object: masm.unboxObject(inputReg, result); break; case MIRType::String: masm.unboxString(inputReg, result); break; case MIRType::Symbol: masm.unboxSymbol(inputReg, result); break; case MIRType::BigInt: masm.unboxBigInt(inputReg, result); break; default: MOZ_CRASH("Given MIRType cannot be unboxed."); } return; } Address inputAddr = ToAddress(input); switch (mir->type()) { case MIRType::Int32: masm.unboxInt32(inputAddr, result); break; case MIRType::Boolean: masm.unboxBoolean(inputAddr, result); break; case MIRType::Object: masm.unboxObject(inputAddr, result); break; case MIRType::String: masm.unboxString(inputAddr, result); break; case MIRType::Symbol: masm.unboxSymbol(inputAddr, result); break; case MIRType::BigInt: masm.unboxBigInt(inputAddr, result); break; default: MOZ_CRASH("Given MIRType cannot be unboxed."); } } void CodeGenerator::visitDivOrModI64(LDivOrModI64* lir) { Register lhs = ToRegister(lir->lhs()); Register rhs = ToRegister(lir->rhs()); Register output = ToRegister(lir->output()); Label done; // Handle divide by zero. if (lir->canBeDivideByZero()) { Label nonZero; masm.ma_b(rhs, rhs, &nonZero, Assembler::NonZero); masm.wasmTrap(wasm::Trap::IntegerDivideByZero, lir->trapSiteDesc()); masm.bind(&nonZero); } // Handle an integer overflow exception from INT64_MIN / -1. if (lir->canBeNegativeOverflow()) { Label notOverflow; masm.branchPtr(Assembler::NotEqual, lhs, ImmWord(INT64_MIN), ¬Overflow); masm.branchPtr(Assembler::NotEqual, rhs, ImmWord(-1), ¬Overflow); if (lir->mir()->isMod()) { masm.ma_xor(output, output); } else { masm.wasmTrap(wasm::Trap::IntegerOverflow, lir->trapSiteDesc()); } masm.jump(&done); masm.bind(¬Overflow); } #ifdef MIPSR6 if (lir->mir()->isMod()) { masm.as_dmod(output, lhs, rhs); } else { masm.as_ddiv(output, lhs, rhs); } #else masm.as_ddiv(lhs, rhs); if (lir->mir()->isMod()) { masm.as_mfhi(output); } else { masm.as_mflo(output); } #endif masm.bind(&done); } void CodeGenerator::visitUDivOrModI64(LUDivOrModI64* lir) { Register lhs = ToRegister(lir->lhs()); Register rhs = ToRegister(lir->rhs()); Register output = ToRegister(lir->output()); Label done; // Prevent divide by zero. if (lir->canBeDivideByZero()) { Label nonZero; masm.ma_b(rhs, rhs, &nonZero, Assembler::NonZero); masm.wasmTrap(wasm::Trap::IntegerDivideByZero, lir->trapSiteDesc()); masm.bind(&nonZero); } #ifdef MIPSR6 if (lir->mir()->isMod()) { masm.as_dmodu(output, lhs, rhs); } else { masm.as_ddivu(output, lhs, rhs); } #else masm.as_ddivu(lhs, rhs); if (lir->mir()->isMod()) { masm.as_mfhi(output); } else { masm.as_mflo(output); } #endif masm.bind(&done); } template void CodeGeneratorMIPS64::emitWasmLoadI64(T* lir) { const MWasmLoad* mir = lir->mir(); Register memoryBase = ToRegister(lir->memoryBase()); Register ptrScratch = ToTempRegisterOrInvalid(lir->temp0()); Register ptrReg = ToRegister(lir->ptr()); if (mir->base()->type() == MIRType::Int32) { // See comment in visitWasmLoad re the type of 'base'. masm.move32ZeroExtendToPtr(ptrReg, ptrReg); } if constexpr (std::is_same_v) { MOZ_ASSERT(IsUnaligned(mir->access())); masm.wasmUnalignedLoadI64(mir->access(), memoryBase, ptrReg, ptrScratch, ToOutRegister64(lir), ToRegister(lir->temp1())); } else { MOZ_ASSERT(!IsUnaligned(mir->access())); masm.wasmLoadI64(mir->access(), memoryBase, ptrReg, ptrScratch, ToOutRegister64(lir)); } } void CodeGenerator::visitWasmLoadI64(LWasmLoadI64* lir) { emitWasmLoadI64(lir); } void CodeGenerator::visitWasmUnalignedLoadI64(LWasmUnalignedLoadI64* lir) { emitWasmLoadI64(lir); } template void CodeGeneratorMIPS64::emitWasmStoreI64(T* lir) { const MWasmStore* mir = lir->mir(); Register memoryBase = ToRegister(lir->memoryBase()); Register ptrScratch = ToTempRegisterOrInvalid(lir->temp0()); Register ptrReg = ToRegister(lir->ptr()); if (mir->base()->type() == MIRType::Int32) { // See comment in visitWasmLoad re the type of 'base'. masm.move32ZeroExtendToPtr(ptrReg, ptrReg); } if constexpr (std::is_same_v) { MOZ_ASSERT(IsUnaligned(mir->access())); masm.wasmUnalignedStoreI64(mir->access(), ToRegister64(lir->value()), memoryBase, ptrReg, ptrScratch, ToRegister(lir->temp1())); } else { MOZ_ASSERT(!IsUnaligned(mir->access())); masm.wasmStoreI64(mir->access(), ToRegister64(lir->value()), memoryBase, ptrReg, ptrScratch); } } void CodeGenerator::visitWasmStoreI64(LWasmStoreI64* lir) { emitWasmStoreI64(lir); } void CodeGenerator::visitWasmUnalignedStoreI64(LWasmUnalignedStoreI64* lir) { emitWasmStoreI64(lir); } void CodeGenerator::visitWasmSelectI64(LWasmSelectI64* lir) { MOZ_ASSERT(lir->mir()->type() == MIRType::Int64); Register cond = ToRegister(lir->condExpr()); LInt64Allocation falseExpr = lir->falseExpr(); Register64 out = ToOutRegister64(lir); MOZ_ASSERT(ToRegister64(lir->trueExpr()) == out, "true expr is reused for input"); if (falseExpr.value().isGeneralReg()) { masm.as_movz(out.reg, ToRegister(falseExpr.value()), cond); } else { Label done; masm.ma_b(cond, cond, &done, Assembler::NonZero, ShortJump); masm.loadPtr(ToAddress(falseExpr.value()), out.reg); masm.bind(&done); } } void CodeGenerator::visitExtendInt32ToInt64(LExtendInt32ToInt64* lir) { const LAllocation* input = lir->input(); Register output = ToRegister(lir->output()); if (lir->mir()->isUnsigned()) { masm.ma_dext(output, ToRegister(input), Imm32(0), Imm32(32)); } else { masm.ma_sll(output, ToRegister(input), Imm32(0)); } } void CodeGenerator::visitWrapInt64ToInt32(LWrapInt64ToInt32* lir) { LInt64Allocation input = lir->input(); Register output = ToRegister(lir->output()); if (lir->mir()->bottomHalf()) { if (input.value().isMemory()) { masm.load32(ToAddress(input), output); } else { masm.move64To32(ToRegister64(input), output); } } else { MOZ_CRASH("Not implemented."); } } void CodeGenerator::visitSignExtendInt64(LSignExtendInt64* lir) { Register64 input = ToRegister64(lir->input()); Register64 output = ToOutRegister64(lir); switch (lir->mir()->mode()) { case MSignExtendInt64::Byte: masm.move32To64SignExtend(input.reg, output); masm.move8SignExtend(output.reg, output.reg); break; case MSignExtendInt64::Half: masm.move32To64SignExtend(input.reg, output); masm.move16SignExtend(output.reg, output.reg); break; case MSignExtendInt64::Word: masm.move32To64SignExtend(input.reg, output); break; } } void CodeGenerator::visitWasmExtendU32Index(LWasmExtendU32Index* lir) { Register input = ToRegister(lir->input()); Register output = ToRegister(lir->output()); MOZ_ASSERT(input == output); masm.move32To64ZeroExtend(input, Register64(output)); } void CodeGenerator::visitWasmWrapU32Index(LWasmWrapU32Index* lir) { Register input = ToRegister(lir->input()); Register output = ToRegister(lir->output()); MOZ_ASSERT(input == output); masm.move64To32(Register64(input), output); } void CodeGenerator::visitBitNotI64(LBitNotI64* ins) { LInt64Allocation input = ins->input(); MOZ_ASSERT(!IsConstant(input)); Register64 inputReg = ToRegister64(input); MOZ_ASSERT(inputReg == ToOutRegister64(ins)); masm.ma_not(inputReg.reg, inputReg.reg); } void CodeGenerator::visitWasmTruncateToInt64(LWasmTruncateToInt64* lir) { FloatRegister input = ToFloatRegister(lir->input()); Register64 output = ToOutRegister64(lir); MWasmTruncateToInt64* mir = lir->mir(); MIRType fromType = mir->input()->type(); MOZ_ASSERT(fromType == MIRType::Double || fromType == MIRType::Float32); auto* ool = new (alloc()) OutOfLineWasmTruncateCheck(mir, input, output); addOutOfLineCode(ool, mir); Label* oolEntry = ool->entry(); Label* oolRejoin = ool->rejoin(); bool isSaturating = mir->isSaturating(); if (fromType == MIRType::Double) { if (mir->isUnsigned()) { masm.wasmTruncateDoubleToUInt64(input, output, isSaturating, oolEntry, oolRejoin, InvalidFloatReg); } else { masm.wasmTruncateDoubleToInt64(input, output, isSaturating, oolEntry, oolRejoin, InvalidFloatReg); } } else { if (mir->isUnsigned()) { masm.wasmTruncateFloat32ToUInt64(input, output, isSaturating, oolEntry, oolRejoin, InvalidFloatReg); } else { masm.wasmTruncateFloat32ToInt64(input, output, isSaturating, oolEntry, oolRejoin, InvalidFloatReg); } } } void CodeGenerator::visitInt64ToFloatingPoint(LInt64ToFloatingPoint* lir) { Register64 input = ToRegister64(lir->input()); FloatRegister output = ToFloatRegister(lir->output()); MIRType outputType = lir->mir()->type(); MOZ_ASSERT(outputType == MIRType::Double || outputType == MIRType::Float32); if (outputType == MIRType::Double) { if (lir->mir()->isUnsigned()) { masm.convertUInt64ToDouble(input, output, Register::Invalid()); } else { masm.convertInt64ToDouble(input, output); } } else { if (lir->mir()->isUnsigned()) { masm.convertUInt64ToFloat32(input, output, Register::Invalid()); } else { masm.convertInt64ToFloat32(input, output); } } } void CodeGenerator::visitAtomicLoad64(LAtomicLoad64* lir) { Register elements = ToRegister(lir->elements()); Register64 out = ToOutRegister64(lir); Scalar::Type storageType = lir->mir()->storageType(); auto source = ToAddressOrBaseIndex(elements, lir->index(), storageType); auto sync = Synchronization::Load(); masm.memoryBarrierBefore(sync); source.match([&](const auto& source) { masm.load64(source, out); }); masm.memoryBarrierAfter(sync); } void CodeGenerator::visitAtomicStore64(LAtomicStore64* lir) { Register elements = ToRegister(lir->elements()); Register64 value = ToRegister64(lir->value()); Scalar::Type writeType = lir->mir()->writeType(); auto dest = ToAddressOrBaseIndex(elements, lir->index(), writeType); auto sync = Synchronization::Store(); masm.memoryBarrierBefore(sync); dest.match([&](const auto& dest) { masm.store64(value, dest); }); masm.memoryBarrierAfter(sync); } void CodeGeneratorMIPS64::emitBigIntPtrDiv(LBigIntPtrDiv* ins, Register dividend, Register divisor, Register output) { // Callers handle division by zero and integer overflow. #ifdef MIPSR6 masm.as_ddiv(/* result= */ output, dividend, divisor); #else masm.as_ddiv(dividend, divisor); masm.as_mflo(/* result= */ output); #endif } void CodeGeneratorMIPS64::emitBigIntPtrMod(LBigIntPtrMod* ins, Register dividend, Register divisor, Register output) { // Callers handle division by zero and integer overflow. #ifdef MIPSR6 masm.as_dmod(/* result= */ output, dividend, divisor); #else masm.as_ddiv(dividend, divisor); masm.as_mfhi(/* result= */ output); #endif }