25 lines
604 B
C++
25 lines
604 B
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2018 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string_view>
|
|
|
|
#include "common/cast_util.h"
|
|
|
|
namespace Dynarmic::Backend::X64 {
|
|
|
|
namespace detail {
|
|
void PerfMapRegister(const void* start, const void* end, std::string_view friendly_name);
|
|
} // namespace detail
|
|
|
|
template<typename T>
|
|
void PerfMapRegister(T start, const void* end, std::string_view friendly_name) {
|
|
detail::PerfMapRegister(Common::BitCast<const void*>(start), end, friendly_name);
|
|
}
|
|
|
|
void PerfMapClear();
|
|
|
|
} // namespace Dynarmic::Backend::X64
|