Bug 1867190 - Add prefs for PHC probablities r=glandium
[gecko.git] / js / src / jit / WarpCacheIRTranspiler.h
blob19022b9e1ad23aea3bfca21cebb73706e4037250
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 #ifndef jit_WarpCacheIRTranspiler_h
8 #define jit_WarpCacheIRTranspiler_h
10 #include <initializer_list>
12 namespace js {
14 class BytecodeLocation;
16 namespace jit {
18 class CallInfo;
19 class MDefinition;
20 class WarpBuilder;
21 class WarpCacheIR;
23 // Generate MIR from a Baseline ICStub's CacheIR.
24 [[nodiscard]] bool TranspileCacheIRToMIR(
25 WarpBuilder* builder, BytecodeLocation loc,
26 const WarpCacheIR* cacheIRSnapshot,
27 std::initializer_list<MDefinition*> inputs,
28 CallInfo* maybeCallInfo = nullptr);
30 } // namespace jit
31 } // namespace js
33 #endif /* jit_WarpCacheIRTranspiler_h */