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"
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(); }
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
) {
30 void JitRuntime::generateBailoutHandler(MacroAssembler
&, Label
*) {
33 uint32_t JitRuntime::generatePreBarrier(JSContext
*, MacroAssembler
&, MIRType
) {
36 void JitRuntime::generateBailoutTailStub(MacroAssembler
&, Label
*) {
40 bool JitRuntime::generateVMWrapper(JSContext
*, MacroAssembler
&, VMFunctionId
,
41 const VMFunctionData
&, DynFn
, uint32_t*) {