// Copyright 2014 Dolphin Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include #include #include "Common/CommonTypes.h" namespace JitRegister { void Init(const std::string& perf_dir); void Shutdown(); void Register(const void* base_address, u32 code_size, const std::string& symbol_name); bool IsEnabled(); template inline void Register(const void* base_address, u32 code_size, fmt::format_string format, Args&&... args) { Register(base_address, code_size, fmt::format(format, std::forward(args)...)); } template inline void Register(const void* start, const void* end, fmt::format_string format, Args&&... args) { u32 code_size = (u32)((const char*)end - (const char*)start); Register(start, code_size, fmt::format(format, std::forward(args)...)); } } // namespace JitRegister