2024-04-08 16:43:02 -03:00
|
|
|
// MIT License
|
|
|
|
|
//
|
2025-01-23 06:41:20 +05:30
|
|
|
// Copyright (c) 2024-2025 Advanced Micro Devices, Inc. All rights reserved.
|
2024-04-08 16:43:02 -03:00
|
|
|
//
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
//
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
|
//
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
// SOFTWARE.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <random>
|
2024-07-08 16:59:40 -03:00
|
|
|
#include <set>
|
2024-04-08 16:43:02 -03:00
|
|
|
#include <string>
|
|
|
|
|
#include <unordered_set>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
2024-07-08 16:59:40 -03:00
|
|
|
namespace rocprofiler
|
2024-04-08 16:43:02 -03:00
|
|
|
{
|
2024-08-01 00:10:09 -05:00
|
|
|
namespace sdk
|
|
|
|
|
{
|
2024-07-08 16:59:40 -03:00
|
|
|
namespace codeobj
|
|
|
|
|
{
|
|
|
|
|
namespace segment
|
|
|
|
|
{
|
|
|
|
|
using marker_id_t = size_t;
|
2024-04-08 16:43:02 -03:00
|
|
|
|
2024-07-08 16:59:40 -03:00
|
|
|
struct address_range_t
|
|
|
|
|
{
|
|
|
|
|
uint64_t addr{0};
|
|
|
|
|
uint64_t size{0};
|
|
|
|
|
marker_id_t id{0};
|
2024-04-08 16:43:02 -03:00
|
|
|
|
2024-07-08 16:59:40 -03:00
|
|
|
bool operator==(const address_range_t& other) const
|
2024-04-08 16:43:02 -03:00
|
|
|
{
|
2024-07-08 16:59:40 -03:00
|
|
|
return (addr >= other.addr && addr < other.addr + other.size) ||
|
|
|
|
|
(other.addr >= addr && other.addr < addr + size);
|
2024-04-08 16:43:02 -03:00
|
|
|
}
|
2024-07-08 16:59:40 -03:00
|
|
|
bool operator<(const address_range_t& other) const
|
2024-04-08 16:43:02 -03:00
|
|
|
{
|
2024-07-08 16:59:40 -03:00
|
|
|
if(*this == other) return false;
|
|
|
|
|
return addr < other.addr;
|
2024-04-08 16:43:02 -03:00
|
|
|
}
|
2024-07-08 16:59:40 -03:00
|
|
|
bool inrange(uint64_t _addr) const { return addr <= _addr && addr + size > _addr; };
|
2024-04-08 16:43:02 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Finds a candidate codeobj for the given vaddr
|
|
|
|
|
*/
|
2024-07-08 16:59:40 -03:00
|
|
|
class CodeobjTableTranslator : public std::set<address_range_t>
|
2024-04-08 16:43:02 -03:00
|
|
|
{
|
2024-07-08 16:59:40 -03:00
|
|
|
using Super = std::set<address_range_t>;
|
2024-04-08 16:43:02 -03:00
|
|
|
|
|
|
|
|
public:
|
2024-07-08 16:59:40 -03:00
|
|
|
address_range_t find_codeobj_in_range(uint64_t addr)
|
2024-04-08 16:43:02 -03:00
|
|
|
{
|
2024-07-08 16:59:40 -03:00
|
|
|
if(!cached_segment.inrange(addr))
|
|
|
|
|
{
|
|
|
|
|
auto it = this->find(address_range_t{addr, 0, 0});
|
|
|
|
|
if(it == this->end()) throw std::exception();
|
|
|
|
|
cached_segment = *it;
|
|
|
|
|
}
|
|
|
|
|
return cached_segment;
|
2024-04-08 16:43:02 -03:00
|
|
|
}
|
|
|
|
|
|
2024-07-08 16:59:40 -03:00
|
|
|
void clear_cache() { cached_segment = {}; }
|
|
|
|
|
bool remove(const address_range_t& range)
|
2024-04-08 16:43:02 -03:00
|
|
|
{
|
2024-07-08 16:59:40 -03:00
|
|
|
clear_cache();
|
|
|
|
|
return this->erase(range) != 0;
|
2024-04-08 16:43:02 -03:00
|
|
|
}
|
2024-07-08 16:59:40 -03:00
|
|
|
bool remove(uint64_t addr) { return remove(address_range_t{addr, 0, 0}); }
|
2024-04-08 16:43:02 -03:00
|
|
|
|
|
|
|
|
private:
|
2024-07-08 16:59:40 -03:00
|
|
|
address_range_t cached_segment{};
|
2024-04-08 16:43:02 -03:00
|
|
|
};
|
|
|
|
|
|
2024-07-08 16:59:40 -03:00
|
|
|
} // namespace segment
|
|
|
|
|
} // namespace codeobj
|
2024-08-01 00:10:09 -05:00
|
|
|
} // namespace sdk
|
2024-07-08 16:59:40 -03:00
|
|
|
} // namespace rocprofiler
|