WarpCacheIRTranspiler.h (913B)
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_WarpCacheIRTranspiler_h 8 #define jit_WarpCacheIRTranspiler_h 9 10 #include <initializer_list> 11 12 namespace js { 13 14 class BytecodeLocation; 15 16 namespace jit { 17 18 class CallInfo; 19 class MDefinition; 20 class WarpBuilder; 21 class WarpCacheIRBase; 22 23 // Generate MIR from a Baseline ICStub's CacheIR. 24 [[nodiscard]] bool TranspileCacheIRToMIR( 25 WarpBuilder* builder, BytecodeLocation loc, 26 const WarpCacheIRBase* cacheIRSnapshot, 27 std::initializer_list<MDefinition*> inputs, 28 CallInfo* maybeCallInfo = nullptr); 29 30 } // namespace jit 31 } // namespace js 32 33 #endif /* jit_WarpCacheIRTranspiler_h */