28 lines
722 B
C
28 lines
722 B
C
|
/* This file is part of the dynarmic project.
|
||
|
* Copyright (c) 2018 MerryMage
|
||
|
* This software may be used and distributed according to the terms of the GNU
|
||
|
* General Public License version 2 or any later version.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <cstddef>
|
||
|
#include <string>
|
||
|
|
||
|
#include "common/cast_util.h"
|
||
|
|
||
|
namespace Dynarmic::BackendX64 {
|
||
|
|
||
|
namespace detail {
|
||
|
void PerfMapRegister(const void* start, const void* end, const std::string& friendly_name);
|
||
|
} // namespace detail
|
||
|
|
||
|
template<typename T>
|
||
|
void PerfMapRegister(T start, const void* end, const std::string& friendly_name) {
|
||
|
detail::PerfMapRegister(Common::BitCast<const void*>(start), end, friendly_name);
|
||
|
}
|
||
|
|
||
|
void PerfMapClear();
|
||
|
|
||
|
} // namespace Dynarmic::BackendX64
|