Bug 1867190 - Add prefs for PHC probablities r=glandium
[gecko.git] / js / src / jit / none / SharedICHelpers-none-inl.h
blob2d63956ba7b5b3e4ab06ea06c38c5068c2826253
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/. */
7 #ifndef jit_none_SharedICHelpers_none_inl_h
8 #define jit_none_SharedICHelpers_none_inl_h
10 #include "jit/SharedICHelpers.h"
12 namespace js {
13 namespace jit {
15 inline void EmitBaselineTailCallVM(TrampolinePtr, MacroAssembler&, uint32_t) {
16 MOZ_CRASH();
18 inline void EmitBaselineCreateStubFrameDescriptor(MacroAssembler&, Register,
19 uint32_t) {
20 MOZ_CRASH();
22 inline void EmitBaselineCallVM(TrampolinePtr, MacroAssembler&) { MOZ_CRASH(); }
24 inline void EmitBaselineEnterStubFrame(MacroAssembler&, Register) {
25 MOZ_CRASH();
28 } // namespace jit
29 } // namespace js
31 #endif /* jit_none_SharedICHelpers_none_inl_h */