Trampoline-none.cpp (1442B)
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 #include "jit/Bailouts.h" 8 #include "jit/BaselineIC.h" 9 #include "jit/JitRuntime.h" 10 #include "vm/Realm.h" 11 12 using namespace js; 13 using namespace js::jit; 14 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. 18 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{}; 24 } 25 void JitRuntime::generateInvalidator(MacroAssembler&, Label*) { MOZ_CRASH(); } 26 void JitRuntime::generateBailoutHandler(MacroAssembler&, Label*) { 27 MOZ_CRASH(); 28 } 29 uint32_t JitRuntime::generatePreBarrier(JSContext*, MacroAssembler&, MIRType) { 30 MOZ_CRASH(); 31 } 32 void JitRuntime::generateBailoutTailStub(MacroAssembler&, Label*) { 33 MOZ_CRASH(); 34 } 35 36 bool JitRuntime::generateVMWrapper(JSContext*, MacroAssembler&, VMFunctionId, 37 const VMFunctionData&, DynFn, uint32_t*) { 38 MOZ_CRASH(); 39 }