tor-browser

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

SharedICHelpers-none-inl.h (984B)


      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 #ifndef jit_none_SharedICHelpers_none_inl_h
      8 #define jit_none_SharedICHelpers_none_inl_h
      9 
     10 #include "jit/SharedICHelpers.h"
     11 
     12 namespace js {
     13 namespace jit {
     14 
     15 inline void EmitBaselineTailCallVM(TrampolinePtr, MacroAssembler&, uint32_t) {
     16  MOZ_CRASH();
     17 }
     18 inline void EmitBaselineCreateStubFrameDescriptor(MacroAssembler&, Register,
     19                                                  uint32_t) {
     20  MOZ_CRASH();
     21 }
     22 inline void EmitBaselineCallVM(TrampolinePtr, MacroAssembler&) { MOZ_CRASH(); }
     23 
     24 inline void EmitBaselineEnterStubFrame(MacroAssembler&, Register) {
     25  MOZ_CRASH();
     26 }
     27 
     28 }  // namespace jit
     29 }  // namespace js
     30 
     31 #endif /* jit_none_SharedICHelpers_none_inl_h */