Bug 1867190 - Add prefs for PHC probablities r=glandium
[gecko.git] / js / src / jit / none / Trampoline-none.cpp
blob33265a23412a42045df347bc9966b1ad3deeee37
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 #include "jit/Bailouts.h"
8 #include "jit/BaselineIC.h"
9 #include "jit/JitRuntime.h"
10 #include "vm/Realm.h"
12 using namespace js;
13 using namespace js::jit;
15 // This file includes stubs for generating the JIT trampolines when there is no
16 // JIT backend, and also includes implementations for assorted random things
17 // which can't be implemented in headers.
19 void JitRuntime::generateEnterJIT(JSContext*, MacroAssembler&) { MOZ_CRASH(); }
20 // static
21 mozilla::Maybe<::JS::ProfilingFrameIterator::RegisterState>
22 JitRuntime::getCppEntryRegisters(JitFrameLayout* frameStackAddress) {
23 return mozilla::Nothing{};
25 void JitRuntime::generateInvalidator(MacroAssembler&, Label*) { MOZ_CRASH(); }
26 void JitRuntime::generateArgumentsRectifier(MacroAssembler&,
27 ArgumentsRectifierKind kind) {
28 MOZ_CRASH();
30 void JitRuntime::generateBailoutHandler(MacroAssembler&, Label*) {
31 MOZ_CRASH();
33 uint32_t JitRuntime::generatePreBarrier(JSContext*, MacroAssembler&, MIRType) {
34 MOZ_CRASH();
36 void JitRuntime::generateBailoutTailStub(MacroAssembler&, Label*) {
37 MOZ_CRASH();
40 bool JitRuntime::generateVMWrapper(JSContext*, MacroAssembler&, VMFunctionId,
41 const VMFunctionData&, DynFn, uint32_t*) {
42 MOZ_CRASH();