SharedICHelpers-wasm32-inl.h (1070B)
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- 2 * vim: set ts=8 sts=2 et sw=2 tw=80: 3 * This Source Code Form is subject to the terms of the Mozilla Public 4 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 7 #ifndef jit_wasm32_SharedICHelpers_wasm32_inl_h 8 #define jit_wasm32_SharedICHelpers_wasm32_inl_h 9 10 #include "jit/SharedICHelpers.h" 11 12 namespace js::jit { 13 14 inline void EmitBaselineTailCallVM(TrampolinePtr, MacroAssembler&, uint32_t) { 15 MOZ_CRASH(); 16 } 17 inline void EmitBaselineCreateStubFrameDescriptor(MacroAssembler&, Register, 18 uint32_t) { 19 MOZ_CRASH(); 20 } 21 inline void EmitBaselineCallVM(TrampolinePtr, MacroAssembler&) { MOZ_CRASH(); } 22 23 static const uint32_t STUB_FRAME_SIZE = 0; 24 static const uint32_t STUB_FRAME_SAVED_STUB_OFFSET = 0; 25 26 inline void EmitBaselineEnterStubFrame(MacroAssembler&, Register) { 27 MOZ_CRASH(); 28 } 29 30 } // namespace js::jit 31 32 #endif /* jit_wasm32_SharedICHelpers_wasm32_inl_h */