/* -*- 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/. */ #ifndef jit_BaselineCacheIRCompiler_h #define jit_BaselineCacheIRCompiler_h #include "mozilla/Attributes.h" #include "mozilla/Maybe.h" #include #include #include "jstypes.h" #include "jit/CacheIR.h" #include "jit/CacheIRCompiler.h" #include "jit/CacheIROpsGenerated.h" #include "jit/CacheIRReader.h" struct JS_PUBLIC_API JSContext; class JSScript; namespace js { namespace jit { class CacheIRWriter; class ICFallbackStub; class ICScript; class JitCode; class Label; class MacroAssembler; struct Address; struct Register; enum class TailCallVMFunctionId; enum class ICAttachResult { Attached, DuplicateStub, TooLarge, OOM }; ICAttachResult AttachBaselineCacheIRStub(JSContext* cx, const CacheIRWriter& writer, CacheKind kind, JSScript* outerScript, ICScript* icScript, ICFallbackStub* stub); // BaselineCacheIRCompiler compiles CacheIR to BaselineIC native code. class MOZ_RAII BaselineCacheIRCompiler : public CacheIRCompiler { bool makesGCCalls_; void tailCallVMInternal(MacroAssembler& masm, TailCallVMFunctionId id); template void tailCallVM(MacroAssembler& masm); [[nodiscard]] bool emitStoreSlotShared(bool isFixed, ObjOperandId objId, uint32_t offsetOffset, ValOperandId rhsId); [[nodiscard]] bool emitAddAndStoreSlotShared( CacheOp op, ObjOperandId objId, uint32_t offsetOffset, ValOperandId rhsId, uint32_t newShapeOffset, mozilla::Maybe numNewSlotsOffset); bool updateArgc(CallFlags flags, Register argcReg, Register scratch); void loadStackObject(ArgumentKind kind, CallFlags flags, size_t stackPushed, Register argcReg, Register dest); void pushArguments(Register argcReg, Register calleeReg, Register scratch, Register scratch2, CallFlags flags, bool isJitCall); void pushStandardArguments(Register argcReg, Register scratch, Register scratch2, bool isJitCall, bool isConstructing); void pushArrayArguments(Register argcReg, Register scratch, Register scratch2, bool isJitCall, bool isConstructing); void pushFunCallArguments(Register argcReg, Register calleeReg, Register scratch, Register scratch2, bool isJitCall); void pushFunApplyArgsObj(Register argcReg, Register calleeReg, Register scratch, Register scratch2, bool isJitCall); void createThis(Register argcReg, Register calleeReg, Register scratch, CallFlags flags); template void storeThis(const T& newThis, Register argcReg, CallFlags flags); void updateReturnValue(); enum class NativeCallType { Native, ClassHook }; bool emitCallNativeShared(NativeCallType callType, ObjOperandId calleeId, Int32OperandId argcId, CallFlags flags, mozilla::Maybe ignoresReturnValue, mozilla::Maybe targetOffset); enum class StringCode { CodeUnit, CodePoint }; bool emitStringFromCodeResult(Int32OperandId codeId, StringCode stringCode); void emitAtomizeString(Register str, Register temp, Label* failure); bool emitCallScriptedGetterShared(ValOperandId receiverId, uint32_t getterOffset, bool sameRealm, uint32_t nargsAndFlagsOffset, mozilla::Maybe icScriptOffset); bool emitCallScriptedSetterShared(ObjOperandId receiverId, uint32_t setterOffset, ValOperandId rhsId, bool sameRealm, uint32_t nargsAndFlagsOffset, mozilla::Maybe icScriptOffset); public: friend class AutoStubFrame; BaselineCacheIRCompiler(JSContext* cx, const CacheIRWriter& writer, uint32_t stubDataOffset); [[nodiscard]] bool init(CacheKind kind); template void callVM(MacroAssembler& masm); JitCode* compile(); bool makesGCCalls() const; Address stubAddress(uint32_t offset) const; private: CACHE_IR_COMPILER_UNSHARED_GENERATED }; } // namespace jit } // namespace js #endif /* jit_BaselineCacheIRCompiler_h */