tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Trampoline-wasm32.cpp (1245B)


      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 void JitRuntime::generateEnterJIT(JSContext*, MacroAssembler&) { MOZ_CRASH(); }
     16 
     17 // static
     18 mozilla::Maybe<::JS::ProfilingFrameIterator::RegisterState>
     19 JitRuntime::getCppEntryRegisters(JitFrameLayout* frameStackAddress) {
     20  return mozilla::Nothing{};
     21 }
     22 
     23 void JitRuntime::generateInvalidator(MacroAssembler&, Label*) { MOZ_CRASH(); }
     24 
     25 void JitRuntime::generateBailoutHandler(MacroAssembler&, Label*) {
     26  MOZ_CRASH();
     27 }
     28 
     29 uint32_t JitRuntime::generatePreBarrier(JSContext*, MacroAssembler&, MIRType) {
     30  MOZ_CRASH();
     31  return 0;
     32 }
     33 
     34 void JitRuntime::generateBailoutTailStub(MacroAssembler&, Label*) {
     35  MOZ_CRASH();
     36 }
     37 
     38 bool JitRuntime::generateVMWrapper(JSContext*, MacroAssembler&,
     39                                   const VMFunctionData&, DynFn, uint32_t*) {
     40  MOZ_CRASH();
     41 }