966 خطوط
32 KiB
C++
966 خطوط
32 KiB
C++
#include "../include/hip/hcc_detail/program_state.hpp"
|
|
|
|
#include "../include/hip/hcc_detail/code_object_bundle.hpp"
|
|
#include "../include/hip/hcc_detail/hsa_helpers.hpp"
|
|
|
|
#if !defined(__cpp_exceptions)
|
|
#define try if (true)
|
|
#define catch(...) if (false)
|
|
#endif
|
|
#include "../include/hip/hcc_detail/elfio/elfio.hpp"
|
|
#if !defined(__cpp_exceptions)
|
|
#undef try
|
|
#undef catch
|
|
#endif
|
|
|
|
#include <hsa/amd_hsa_kernel_code.h>
|
|
#include <hsa/hsa.h>
|
|
#include <hsa/hsa_ext_amd.h>
|
|
#include <hsa/hsa_ven_amd_loader.h>
|
|
#include <amd_comgr.h>
|
|
#include "hc.hpp"
|
|
|
|
#include <link.h>
|
|
|
|
#include <cassert>
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <cstdio>
|
|
#include <deque>
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <sstream>
|
|
#include <unordered_map>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
namespace std {
|
|
template<>
|
|
struct hash<hsa_agent_t> {
|
|
size_t operator()(hsa_agent_t x) const {
|
|
return hash<decltype(x.handle)>{}(x.handle);
|
|
}
|
|
};
|
|
|
|
template<>
|
|
struct hash<hsa_isa_t> {
|
|
size_t operator()(hsa_isa_t x) const {
|
|
return hash<decltype(x.handle)>{}(x.handle);
|
|
}
|
|
};
|
|
} // namespace std
|
|
|
|
inline constexpr bool operator==(hsa_agent_t x, hsa_agent_t y) {
|
|
return x.handle == y.handle;
|
|
}
|
|
inline constexpr bool operator==(hsa_isa_t x, hsa_isa_t y) {
|
|
return x.handle == y.handle;
|
|
}
|
|
|
|
namespace hip_impl {
|
|
|
|
[[noreturn]]
|
|
void hip_throw(const std::exception&);
|
|
|
|
std::vector<hsa_agent_t> all_hsa_agents();
|
|
|
|
extern std::mutex executables_cache_mutex;
|
|
|
|
std::vector<hsa_executable_t>& executables_cache(std::string, hsa_isa_t, hsa_agent_t);
|
|
|
|
template<typename P>
|
|
inline
|
|
ELFIO::section* find_section_if(ELFIO::elfio& reader, P p) {
|
|
const auto it = std::find_if(
|
|
reader.sections.begin(), reader.sections.end(), std::move(p));
|
|
|
|
return it != reader.sections.end() ? *it : nullptr;
|
|
}
|
|
|
|
struct Symbol {
|
|
std::string name;
|
|
ELFIO::Elf64_Addr value = 0;
|
|
ELFIO::Elf_Xword size = 0;
|
|
ELFIO::Elf_Half sect_idx = 0;
|
|
std::uint8_t bind = 0;
|
|
std::uint8_t type = 0;
|
|
std::uint8_t other = 0;
|
|
};
|
|
|
|
class Kernel_descriptor {
|
|
std::uint64_t kernel_object_{};
|
|
amd_kernel_code_t const* header_{};
|
|
std::string name_;
|
|
std::vector<std::pair<std::size_t, std::size_t>> kernarg_layout_{};
|
|
bool is_code_object_v3_{};
|
|
public:
|
|
Kernel_descriptor() = default;
|
|
Kernel_descriptor(
|
|
std::uint64_t kernel_object,
|
|
const std::string& name,
|
|
std::vector<std::pair<std::size_t, std::size_t>> kernarg_layout = {})
|
|
:
|
|
kernel_object_{kernel_object},
|
|
name_{name},
|
|
kernarg_layout_{std::move(kernarg_layout)},
|
|
is_code_object_v3_{name.find(".kd") != std::string::npos}
|
|
{
|
|
bool supported{false};
|
|
std::uint16_t min_v{UINT16_MAX};
|
|
auto r = hsa_system_major_extension_supported(
|
|
HSA_EXTENSION_AMD_LOADER, 1, &min_v, &supported);
|
|
|
|
if (r != HSA_STATUS_SUCCESS || !supported) return;
|
|
|
|
hsa_ven_amd_loader_1_01_pfn_t tbl{};
|
|
|
|
r = hsa_system_get_major_extension_table(
|
|
HSA_EXTENSION_AMD_LOADER,
|
|
1,
|
|
sizeof(tbl),
|
|
reinterpret_cast<void*>(&tbl));
|
|
|
|
if (r != HSA_STATUS_SUCCESS) return;
|
|
if (!tbl.hsa_ven_amd_loader_query_host_address) return;
|
|
|
|
r = tbl.hsa_ven_amd_loader_query_host_address(
|
|
reinterpret_cast<void*>(kernel_object_),
|
|
reinterpret_cast<const void**>(&header_));
|
|
|
|
if (r != HSA_STATUS_SUCCESS) return;
|
|
}
|
|
Kernel_descriptor(const Kernel_descriptor&) = default;
|
|
Kernel_descriptor(Kernel_descriptor&&) = default;
|
|
~Kernel_descriptor() = default;
|
|
|
|
Kernel_descriptor& operator=(const Kernel_descriptor&) = default;
|
|
Kernel_descriptor& operator=(Kernel_descriptor&&) = default;
|
|
|
|
operator hipFunction_t() const { // TODO: this is awful and only meant for illustration.
|
|
return reinterpret_cast<hipFunction_t>(const_cast<Kernel_descriptor*>(this));
|
|
}
|
|
};
|
|
|
|
class program_state_impl {
|
|
|
|
public:
|
|
|
|
std::pair<
|
|
std::once_flag,
|
|
std::unordered_map<
|
|
std::string,
|
|
std::unordered_map<
|
|
hsa_isa_t,
|
|
std::vector<std::string>>>> code_object_blobs;
|
|
|
|
std::pair<
|
|
std::once_flag,
|
|
std::unordered_map<
|
|
std::string,
|
|
std::pair<ELFIO::Elf64_Addr, ELFIO::Elf_Xword>>> symbol_addresses;
|
|
|
|
std::unordered_map<
|
|
hsa_agent_t,
|
|
std::pair<
|
|
std::once_flag,
|
|
std::vector<hsa_executable_t>>> executables;
|
|
|
|
std::unordered_map<
|
|
hsa_agent_t,
|
|
std::pair<
|
|
std::once_flag,
|
|
std::unordered_map<
|
|
std::string,
|
|
std::vector<hsa_executable_symbol_t>>>> kernels;
|
|
|
|
std::pair<
|
|
std::once_flag,
|
|
std::unordered_map<
|
|
std::string, std::vector<std::pair<std::size_t, std::size_t>>>> kernargs;
|
|
|
|
std::pair<
|
|
std::once_flag,
|
|
std::unordered_map<std::uintptr_t, std::string>> function_names;
|
|
|
|
std::unordered_map<
|
|
hsa_agent_t,
|
|
std::pair<
|
|
std::once_flag,
|
|
std::unordered_map<
|
|
std::uintptr_t,
|
|
Kernel_descriptor>>> functions;
|
|
|
|
std::tuple<
|
|
std::once_flag,
|
|
std::mutex,
|
|
// map from string to pair<global_addr, pinned_addr>
|
|
std::unordered_map<std::string, std::pair<void*, void*>>> globals;
|
|
|
|
using RAII_code_reader =
|
|
std::unique_ptr<hsa_code_object_reader_t,
|
|
std::function<void(hsa_code_object_reader_t*)>>;
|
|
std::pair<
|
|
std::mutex,
|
|
std::deque<std::pair<std::string, RAII_code_reader>>> code_readers;
|
|
|
|
program_state_impl() {
|
|
// Create placeholder for each agent for the per-agent members.
|
|
for (auto&& x : hip_impl::all_hsa_agents()) {
|
|
(void)executables[x];
|
|
(void)kernels[x];
|
|
(void)functions[x];
|
|
}
|
|
}
|
|
|
|
const std::unordered_map<
|
|
std::string,
|
|
std::unordered_map<
|
|
hsa_isa_t,
|
|
std::vector<std::string>>>& get_code_object_blobs() {
|
|
|
|
std::call_once(code_object_blobs.first, [this]() {
|
|
dl_iterate_phdr([](dl_phdr_info* info, std::size_t, void* p) {
|
|
ELFIO::elfio tmp;
|
|
|
|
const auto elf = (info->dlpi_addr && std::strlen(info->dlpi_name) != 0) ?
|
|
info->dlpi_name : "/proc/self/exe";
|
|
|
|
if (!tmp.load(elf)) return 0;
|
|
|
|
const auto it = find_section_if(tmp, [](const ELFIO::section* x) {
|
|
return x->get_name() == ".kernel";
|
|
});
|
|
|
|
if (!it) return 0;
|
|
|
|
auto& impl = *static_cast<program_state_impl*>(p);
|
|
|
|
std::vector<char> multi_arch_blob(it->get_data(), it->get_data() + it->get_size());
|
|
auto blob_it = multi_arch_blob.begin();
|
|
while (blob_it != multi_arch_blob.end()) {
|
|
Bundled_code_header tmp{blob_it, multi_arch_blob.end()};
|
|
|
|
if (!valid(tmp)) break;
|
|
|
|
for (auto&& bundle : bundles(tmp)) {
|
|
if(bundle.blob.size())
|
|
impl.code_object_blobs.second[elf][triple_to_hsa_isa(bundle.triple)].push_back(bundle.blob);
|
|
}
|
|
|
|
blob_it += tmp.bundled_code_size;
|
|
};
|
|
|
|
return 0;
|
|
}, this);
|
|
});
|
|
|
|
return code_object_blobs.second;
|
|
}
|
|
|
|
Symbol read_symbol(const ELFIO::symbol_section_accessor& section,
|
|
unsigned int idx) {
|
|
assert(idx < section.get_symbols_num());
|
|
|
|
Symbol r;
|
|
section.get_symbol(
|
|
idx, r.name, r.value, r.size, r.bind, r.type, r.sect_idx, r.other);
|
|
|
|
return r;
|
|
}
|
|
|
|
const std::unordered_map<
|
|
std::string,
|
|
std::pair<ELFIO::Elf64_Addr, ELFIO::Elf_Xword>>& get_symbol_addresses() {
|
|
|
|
std::call_once(symbol_addresses.first, [this]() {
|
|
dl_iterate_phdr([](dl_phdr_info* info, std::size_t, void* psi_ptr) {
|
|
|
|
if (!psi_ptr)
|
|
return 0;
|
|
|
|
program_state_impl* t = static_cast<program_state_impl*>(psi_ptr);
|
|
|
|
ELFIO::elfio tmp;
|
|
const auto elf = (info->dlpi_addr && std::strlen(info->dlpi_name) != 0) ?
|
|
info->dlpi_name : "/proc/self/exe";
|
|
|
|
if (!tmp.load(elf)) return 0;
|
|
|
|
auto it = find_section_if(tmp, [](const ELFIO::section* x) {
|
|
return x->get_type() == SHT_SYMTAB;
|
|
});
|
|
|
|
if (!it) return 0;
|
|
|
|
const ELFIO::symbol_section_accessor symtab{tmp, it};
|
|
|
|
for (auto i = 0u; i != symtab.get_symbols_num(); ++i) {
|
|
auto s = t->read_symbol(symtab, i);
|
|
|
|
if (s.type != STT_OBJECT || s.sect_idx == SHN_UNDEF) continue;
|
|
|
|
const auto addr = s.value + info->dlpi_addr;
|
|
t->symbol_addresses.second.emplace(std::move(s.name), std::make_pair(addr, s.size));
|
|
}
|
|
|
|
return 0;
|
|
}, this);
|
|
});
|
|
|
|
return symbol_addresses.second;
|
|
}
|
|
|
|
std::unordered_map<std::string, std::pair<void*, void*>>& get_globals() {
|
|
std::call_once(std::get<0>(globals), [this]() {
|
|
std::get<2>(globals).reserve(get_symbol_addresses().size());
|
|
});
|
|
return std::get<2>(globals);
|
|
}
|
|
|
|
std::mutex& get_globals_mutex() {
|
|
return std::get<1>(globals);
|
|
}
|
|
|
|
std::vector<std::string> copy_names_of_undefined_symbols(
|
|
const ELFIO::symbol_section_accessor& section) {
|
|
std::vector<std::string> r;
|
|
|
|
for (auto i = 0u; i != section.get_symbols_num(); ++i) {
|
|
// TODO: this is boyscout code, caching the temporaries
|
|
// may be of worth.
|
|
auto tmp = read_symbol(section, i);
|
|
if (tmp.sect_idx != SHN_UNDEF || tmp.name.empty()) continue;
|
|
|
|
r.push_back(std::move(tmp.name));
|
|
}
|
|
|
|
return r;
|
|
}
|
|
|
|
void associate_code_object_symbols_with_host_allocation(
|
|
const ELFIO::elfio& reader,
|
|
ELFIO::section* code_object_dynsym,
|
|
hsa_agent_t agent,
|
|
hsa_executable_t executable) {
|
|
if (!code_object_dynsym) return;
|
|
|
|
const auto undefined_symbols = copy_names_of_undefined_symbols(
|
|
ELFIO::symbol_section_accessor{reader, code_object_dynsym});
|
|
|
|
auto& g = get_globals();
|
|
auto& g_mutex = get_globals_mutex();
|
|
for (auto&& x : undefined_symbols) {
|
|
|
|
const auto it1 = get_symbol_addresses().find(x);
|
|
if (it1 == get_symbol_addresses().cend()) {
|
|
// For a unknown symbol, initialize it with a magic poison
|
|
hsa_executable_agent_global_variable_define(
|
|
executable, agent, x.c_str(),
|
|
reinterpret_cast<void*>(0xDEADBEEFDEADBEEFull));
|
|
continue;
|
|
}
|
|
|
|
hsa_status_t status;
|
|
auto check_hsa_global_var_define_error = [&x](hsa_status_t s) {
|
|
if (s != HSA_STATUS_SUCCESS) {
|
|
const char* es;
|
|
hsa_status_string(s, &es);
|
|
hip_throw(std::runtime_error{ "Error when defining symbol " + x + " : " + es});
|
|
}
|
|
};
|
|
|
|
auto retrieve_pinned_address_from_cache = [](decltype(g) g, decltype(x) x) {
|
|
const auto& global_addr = g.find(x);
|
|
if (global_addr != g.cend()) {
|
|
return global_addr->second.second;
|
|
}
|
|
return (void*)nullptr;
|
|
};
|
|
|
|
void* p = retrieve_pinned_address_from_cache(g, x);
|
|
if (p == nullptr) {
|
|
std::lock_guard<std::mutex> lck{g_mutex};
|
|
p = retrieve_pinned_address_from_cache(g, x);
|
|
if (p == nullptr) {
|
|
if (x == "_ZN2hc13printf_bufferE") {
|
|
// This is the printf buffer, get the pinned address from HCC
|
|
p = Kalmar::getContext()->getPrintfBufferPointerVA();
|
|
}
|
|
else {
|
|
status = hsa_amd_memory_lock(reinterpret_cast<void*>(it1->second.first),
|
|
it1->second.second,
|
|
nullptr, // All agents.
|
|
0, &p);
|
|
check_hsa_global_var_define_error(status);
|
|
}
|
|
// cache the global address and its pinned address
|
|
g.emplace(x, std::make_pair(reinterpret_cast<void*>(it1->second.first), p));
|
|
}
|
|
}
|
|
status = hsa_executable_agent_global_variable_define(
|
|
executable, agent, x.c_str(), p);
|
|
check_hsa_global_var_define_error(status);
|
|
}
|
|
}
|
|
|
|
void load_code_object_and_freeze_executable(
|
|
const std::string& file, hsa_agent_t agent, hsa_executable_t executable) {
|
|
// TODO: the following sequence is inefficient, should be refactored
|
|
// into a single load of the file and subsequent ELFIO
|
|
// processing.
|
|
if (file.empty()) return;
|
|
|
|
static const auto cor_deleter = [] (hsa_code_object_reader_t* p) {
|
|
if (!p) return;
|
|
hsa_code_object_reader_destroy(*p);
|
|
delete p;
|
|
};
|
|
|
|
RAII_code_reader tmp{new hsa_code_object_reader_t, cor_deleter};
|
|
|
|
decltype(code_readers.second)::iterator it;
|
|
{
|
|
std::lock_guard<std::mutex> lck{code_readers.first};
|
|
code_readers.second.emplace_back(move(file), move(tmp));
|
|
it = std::prev(code_readers.second.end());
|
|
}
|
|
|
|
auto check_hsa_error = [](hsa_status_t s) {
|
|
if (s != HSA_STATUS_SUCCESS) {
|
|
const char* hsa_err_msg;
|
|
hsa_status_string(s, &hsa_err_msg);
|
|
hip_throw(std::runtime_error{
|
|
std::string("error when loading code object: ") +
|
|
hsa_err_msg});
|
|
}
|
|
};
|
|
|
|
check_hsa_error(hsa_code_object_reader_create_from_memory(
|
|
it->first.data(), it->first.size(), it->second.get()));
|
|
|
|
check_hsa_error(hsa_executable_load_agent_code_object(
|
|
executable, agent, *it->second, nullptr, nullptr));
|
|
|
|
check_hsa_error(hsa_executable_freeze(executable, nullptr));
|
|
}
|
|
|
|
|
|
const std::vector<hsa_executable_t>& get_executables(hsa_agent_t agent) {
|
|
|
|
if (executables.find(agent) == executables.cend()) {
|
|
hip_throw(std::runtime_error{"invalid agent"});
|
|
}
|
|
|
|
std::call_once(executables[agent].first, [this](hsa_agent_t aa) {
|
|
auto data = std::make_pair(this, &aa);
|
|
hsa_agent_iterate_isas(aa, [](hsa_isa_t x, void* d) {
|
|
auto& p = *static_cast<decltype(data)*>(d);
|
|
auto& impl = *(p.first);
|
|
for (const auto code_object_it : impl.get_code_object_blobs()) {
|
|
const auto elf = code_object_it.first;
|
|
const auto code_object_blobs = code_object_it.second;
|
|
const auto it = code_object_blobs.find(x);
|
|
|
|
if (it == code_object_blobs.cend()) continue;
|
|
|
|
hsa_agent_t a = *static_cast<hsa_agent_t*>(p.second);
|
|
|
|
std::lock_guard<std::mutex> lck{executables_cache_mutex};
|
|
|
|
std::vector<hsa_executable_t>& current_exes =
|
|
hip_impl::executables_cache(elf, x, a);
|
|
// check the cache for already loaded executables
|
|
if (current_exes.empty()) {
|
|
// executables do not yet exist for this elf+isa+agent, create and cache them
|
|
for (auto&& blob : it->second) {
|
|
hsa_executable_t tmp = {};
|
|
|
|
hsa_executable_create_alt(
|
|
HSA_PROFILE_FULL,
|
|
HSA_DEFAULT_FLOAT_ROUNDING_MODE_DEFAULT,
|
|
nullptr,
|
|
&tmp);
|
|
|
|
// TODO: this is massively inefficient and only meant for
|
|
// illustration.
|
|
tmp = impl.load_executable(blob.data(), blob.size(), tmp, a);
|
|
|
|
if (tmp.handle) current_exes.push_back(tmp);
|
|
}
|
|
}
|
|
// append cached executables to our agent's vector of executables
|
|
impl.executables[a].second.insert(impl.executables[a].second.end(),
|
|
current_exes.begin(), current_exes.end());
|
|
}
|
|
return HSA_STATUS_SUCCESS;
|
|
}, &data);
|
|
}, agent);
|
|
|
|
return executables[agent].second;
|
|
}
|
|
|
|
hsa_executable_t load_executable(const char* data,
|
|
const size_t data_size,
|
|
hsa_executable_t executable,
|
|
hsa_agent_t agent) {
|
|
ELFIO::elfio reader;
|
|
std::string ts = std::string(data, data_size);
|
|
std::stringstream tmp{ts};
|
|
|
|
if (!reader.load(tmp)) return hsa_executable_t{};
|
|
const auto code_object_dynsym = find_section_if(
|
|
reader, [](const ELFIO::section* x) {
|
|
return x->get_type() == SHT_DYNSYM;
|
|
});
|
|
|
|
associate_code_object_symbols_with_host_allocation(reader,
|
|
code_object_dynsym,
|
|
agent, executable);
|
|
|
|
load_code_object_and_freeze_executable(move(ts), agent, executable);
|
|
|
|
return executable;
|
|
}
|
|
|
|
std::vector<std::pair<std::uintptr_t, std::string>> function_names_for(
|
|
const ELFIO::elfio& reader, ELFIO::section* symtab) {
|
|
std::vector<std::pair<std::uintptr_t, std::string>> r;
|
|
ELFIO::symbol_section_accessor symbols{reader, symtab};
|
|
|
|
for (auto i = 0u; i != symbols.get_symbols_num(); ++i) {
|
|
// TODO: this is boyscout code, caching the temporaries
|
|
// may be of worth.
|
|
auto tmp = read_symbol(symbols, i);
|
|
|
|
if (tmp.type != STT_FUNC) continue;
|
|
if (tmp.type == SHN_UNDEF) continue;
|
|
if (tmp.name.empty()) continue;
|
|
|
|
r.emplace_back(tmp.value, tmp.name);
|
|
}
|
|
|
|
return r;
|
|
}
|
|
|
|
const std::unordered_map<std::uintptr_t, std::string>& get_function_names() {
|
|
|
|
std::call_once(function_names.first, [this]() {
|
|
dl_iterate_phdr([](dl_phdr_info* info, std::size_t, void* p) {
|
|
ELFIO::elfio tmp;
|
|
const auto elf = (info->dlpi_addr && std::strlen(info->dlpi_name) != 0) ?
|
|
info->dlpi_name : "/proc/self/exe";
|
|
|
|
if (!tmp.load(elf)) return 0;
|
|
|
|
const auto it = find_section_if(tmp, [](const ELFIO::section* x) {
|
|
return x->get_type() == SHT_SYMTAB;
|
|
});
|
|
|
|
if (!it) return 0;
|
|
|
|
auto& impl = *static_cast<program_state_impl*>(p);
|
|
|
|
auto names = impl.function_names_for(tmp, it);
|
|
for (auto&& x : names) x.first += info->dlpi_addr;
|
|
|
|
impl.function_names.second.insert(
|
|
std::make_move_iterator(names.begin()),
|
|
std::make_move_iterator(names.end()));
|
|
|
|
return 0;
|
|
}, this);
|
|
});
|
|
|
|
return function_names.second;
|
|
}
|
|
|
|
const std::unordered_map<
|
|
std::string, std::vector<hsa_executable_symbol_t>>& get_kernels(hsa_agent_t agent) {
|
|
|
|
if (kernels.find(agent) == kernels.cend()) {
|
|
hip_throw(std::runtime_error{"invalid agent"});
|
|
}
|
|
|
|
std::call_once(kernels[agent].first, [this](hsa_agent_t aa) {
|
|
static const auto copy_kernels = [](
|
|
hsa_executable_t, hsa_agent_t a, hsa_executable_symbol_t x, void* p) {
|
|
auto& impl = *static_cast<program_state_impl*>(p);
|
|
if (type(x) == HSA_SYMBOL_KIND_KERNEL) impl.kernels[a].second[hip_impl::name(x)].push_back(x);
|
|
|
|
return HSA_STATUS_SUCCESS;
|
|
};
|
|
|
|
for (auto&& executable : get_executables(aa)) {
|
|
hsa_executable_iterate_agent_symbols(
|
|
executable, aa, copy_kernels, this);
|
|
}
|
|
}, agent);
|
|
|
|
return kernels[agent].second;
|
|
}
|
|
|
|
const std::unordered_map<
|
|
std::uintptr_t,
|
|
Kernel_descriptor>& get_functions(hsa_agent_t agent) {
|
|
|
|
if (functions.find(agent) == functions.cend()) {
|
|
hip_throw(std::runtime_error{"invalid agent"});
|
|
}
|
|
|
|
std::call_once(functions[agent].first, [this](hsa_agent_t aa) {
|
|
for (auto&& function : get_function_names()) {
|
|
auto it = get_kernels(aa).find(function.second);
|
|
|
|
if (it == get_kernels(aa).cend()) {
|
|
it = get_kernels(aa).find(function.second + ".kd");
|
|
if (it == get_kernels(aa).cend())
|
|
continue;
|
|
}
|
|
|
|
for (auto&& kernel_symbol : it->second) {
|
|
functions[aa].second.emplace(
|
|
function.first,
|
|
Kernel_descriptor{kernel_object(kernel_symbol), it->first,
|
|
kernargs_size_align(function.first)});
|
|
}
|
|
}
|
|
}, agent);
|
|
|
|
return functions[agent].second;
|
|
}
|
|
|
|
static
|
|
std::size_t parse_args_v2(
|
|
const std::string& metadata,
|
|
std::size_t f,
|
|
std::size_t l,
|
|
std::vector<std::pair<std::size_t, std::size_t>>& size_align) {
|
|
if (f == l) return f;
|
|
if (!size_align.empty()) return l;
|
|
|
|
do {
|
|
static constexpr size_t size_sz{5};
|
|
f = metadata.find("Size:", f) + size_sz;
|
|
|
|
if (l <= f) return f;
|
|
|
|
auto size = std::strtoul(&metadata[f], nullptr, 10);
|
|
|
|
static constexpr size_t align_sz{6};
|
|
f = metadata.find("Align:", f) + align_sz;
|
|
|
|
char* l{};
|
|
auto align = std::strtoul(&metadata[f], &l, 10);
|
|
|
|
f += (l - &metadata[f]) + 1;
|
|
|
|
size_align.emplace_back(size, align);
|
|
} while (true);
|
|
}
|
|
|
|
static
|
|
void read_kernarg_metadata_v2(
|
|
const std::string& kernels_md,
|
|
std::size_t dx,
|
|
std::unordered_map<
|
|
std::string,
|
|
std::vector<std::pair<std::size_t, std::size_t>>>& kernargs) {
|
|
do {
|
|
dx = kernels_md.find("Name:", dx);
|
|
|
|
if (dx == std::string::npos) break;
|
|
|
|
static constexpr decltype(kernels_md.size()) name_sz{5};
|
|
dx = kernels_md.find_first_not_of(" '", dx + name_sz);
|
|
|
|
auto fn =
|
|
kernels_md.substr(dx, kernels_md.find_first_of("'\n", dx) - dx);
|
|
dx += fn.size();
|
|
|
|
auto dx1 = kernels_md.find("CodeProps", dx);
|
|
dx = kernels_md.find("Args:", dx);
|
|
|
|
if (dx1 < dx || dx == std::string::npos) {
|
|
dx = dx1;
|
|
// create an empty kernarg laybout vector for kernels without any arg
|
|
kernargs[fn];
|
|
continue;
|
|
}
|
|
|
|
static constexpr decltype(kernels_md.size()) args_sz{5};
|
|
dx = parse_args_v2(kernels_md, dx + args_sz, dx1, kernargs[fn]);
|
|
} while (true);
|
|
}
|
|
|
|
static
|
|
std::string metadata_to_string(const amd_comgr_metadata_node_t& md) {
|
|
std::string str;
|
|
size_t size;
|
|
|
|
if (amd_comgr_get_metadata_string(md, &size, NULL)
|
|
== AMD_COMGR_STATUS_SUCCESS) {
|
|
str.resize(size - 1);
|
|
amd_comgr_get_metadata_string(md, &size, &str[0]);
|
|
}
|
|
return str;
|
|
}
|
|
|
|
static
|
|
void parse_args_v3(
|
|
const amd_comgr_metadata_node_t& args_md,
|
|
std::vector<std::pair<std::size_t, std::size_t>>& size_align) {
|
|
size_t arg_count = 0;
|
|
if (amd_comgr_get_metadata_list_size(args_md, &arg_count)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
|
|
for (size_t i = 0; i < arg_count; ++i) {
|
|
amd_comgr_metadata_node_t arg_md;
|
|
|
|
if (amd_comgr_index_list_metadata(args_md, i, &arg_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
|
|
amd_comgr_metadata_node_t arg_size_md;
|
|
if (amd_comgr_metadata_lookup(arg_md, ".size", &arg_size_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
|
|
size_t arg_size = std::stoul(metadata_to_string(arg_size_md));
|
|
|
|
if (amd_comgr_destroy_metadata(arg_size_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
|
|
size_t arg_align;
|
|
|
|
amd_comgr_metadata_node_t arg_offset_md;
|
|
if (amd_comgr_metadata_lookup(arg_md, ".offset", &arg_offset_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
|
|
size_t arg_offset = std::stoul(metadata_to_string(arg_offset_md));
|
|
|
|
if (amd_comgr_destroy_metadata(arg_offset_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
|
|
arg_align = 1;
|
|
while (arg_offset && (arg_offset & 1) == 0) {
|
|
arg_offset >>= 1;
|
|
arg_align <<= 1;
|
|
}
|
|
|
|
size_align.emplace_back(arg_size, arg_align);
|
|
|
|
if (amd_comgr_destroy_metadata(arg_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
}
|
|
}
|
|
|
|
static
|
|
void read_kernarg_metadata_v3(
|
|
const std::string& blob,
|
|
std::unordered_map<
|
|
std::string,
|
|
std::vector<std::pair<std::size_t, std::size_t>>>& kernargs) {
|
|
amd_comgr_data_t dataIn;
|
|
amd_comgr_status_t status;
|
|
|
|
if (amd_comgr_create_data(AMD_COMGR_DATA_KIND_RELOCATABLE, &dataIn)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
|
|
if (amd_comgr_set_data(dataIn, blob.size(), blob.data())
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
|
|
amd_comgr_metadata_node_t metadata;
|
|
if (amd_comgr_get_data_metadata(dataIn, &metadata)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
|
|
amd_comgr_metadata_node_t kernels_md;
|
|
if (amd_comgr_metadata_lookup(metadata, "Kernels", &kernels_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS) {
|
|
if (amd_comgr_metadata_lookup(metadata,
|
|
"amdhsa.kernels",
|
|
&kernels_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
}
|
|
|
|
size_t kernel_count = 0;
|
|
if (amd_comgr_get_metadata_list_size(kernels_md, &kernel_count)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
|
|
for (size_t i = 0; i < kernel_count; i++) {
|
|
amd_comgr_metadata_node_t kernel_md;
|
|
|
|
if (amd_comgr_index_list_metadata(kernels_md, i, &kernel_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
continue;
|
|
|
|
amd_comgr_metadata_node_t name_md;
|
|
if (amd_comgr_metadata_lookup(kernel_md, ".name", &name_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
continue;
|
|
|
|
std::string kernel_name_str = metadata_to_string(name_md);
|
|
|
|
if (amd_comgr_destroy_metadata(name_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
continue;
|
|
|
|
amd_comgr_metadata_node_t args_md;
|
|
if (amd_comgr_metadata_lookup(kernel_md, ".args", &args_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
continue;
|
|
|
|
auto foundKernel = kernargs.find(kernel_name_str);
|
|
// parse arguments for a given kernel only once
|
|
if (foundKernel == kernargs.end()) {
|
|
parse_args_v3(args_md, kernargs[kernel_name_str]);
|
|
}
|
|
|
|
if (amd_comgr_destroy_metadata(args_md) != AMD_COMGR_STATUS_SUCCESS
|
|
|| amd_comgr_destroy_metadata(kernel_md)
|
|
!= AMD_COMGR_STATUS_SUCCESS)
|
|
continue;
|
|
}
|
|
|
|
if (amd_comgr_destroy_metadata(kernels_md) != AMD_COMGR_STATUS_SUCCESS
|
|
|| amd_comgr_destroy_metadata(metadata) != AMD_COMGR_STATUS_SUCCESS)
|
|
return;
|
|
|
|
amd_comgr_release_data(dataIn);
|
|
}
|
|
|
|
static
|
|
void read_kernarg_metadata(
|
|
const std::string& blob,
|
|
std::unordered_map<
|
|
std::string,
|
|
std::vector<std::pair<std::size_t, std::size_t>>>& kernargs)
|
|
{
|
|
std::istringstream istr{blob};
|
|
ELFIO::elfio reader;
|
|
|
|
if (!reader.load(istr)) return;
|
|
|
|
// TODO: this is inefficient.
|
|
auto it = find_section_if(reader, [](const ELFIO::section* x) {
|
|
return x->get_type() == SHT_NOTE;
|
|
});
|
|
|
|
if (!it) return;
|
|
|
|
const ELFIO::note_section_accessor acc{reader, it};
|
|
auto n{acc.get_notes_num()};
|
|
while (n--) {
|
|
ELFIO::Elf_Word type{};
|
|
std::string name{};
|
|
void* desc{};
|
|
ELFIO::Elf_Word desc_size{};
|
|
|
|
acc.get_note(n, type, name, desc, desc_size);
|
|
|
|
if (name == "AMDGPU") {
|
|
return read_kernarg_metadata_v3(blob, kernargs);
|
|
}
|
|
if (name != "AMD") continue; // TODO: switch to using NT_AMD_AMDGPU_HSA_METADATA.
|
|
|
|
std::string tmp{
|
|
static_cast<char*>(desc), static_cast<char*>(desc) + desc_size};
|
|
|
|
auto dx = tmp.find("Kernels:");
|
|
|
|
if (dx == std::string::npos) continue;
|
|
|
|
return read_kernarg_metadata_v2(tmp, dx + 8u, kernargs); // Skip "Kernels:".
|
|
}
|
|
}
|
|
|
|
const std::unordered_map<std::string,
|
|
std::vector<std::pair<std::size_t, std::size_t>>>& get_kernargs() {
|
|
|
|
std::call_once(kernargs.first, [this]() {
|
|
for (auto&& name_and_isa_blobs : get_code_object_blobs()) {
|
|
for (auto&& isa_blobs : name_and_isa_blobs.second) {
|
|
for (auto&& blob : isa_blobs.second) {
|
|
read_kernarg_metadata(blob, kernargs.second);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
return kernargs.second;
|
|
}
|
|
|
|
std::string name(std::uintptr_t function_address)
|
|
{
|
|
const auto it = get_function_names().find(function_address);
|
|
|
|
if (it == get_function_names().cend()) {
|
|
hip_throw(std::runtime_error{
|
|
"Invalid function passed to hipLaunchKernelGGL."});
|
|
}
|
|
|
|
return it->second;
|
|
}
|
|
|
|
std::string name(hsa_agent_t agent)
|
|
{
|
|
char n[64]{};
|
|
hsa_agent_get_info(agent, HSA_AGENT_INFO_NAME, n);
|
|
|
|
return std::string{n};
|
|
}
|
|
|
|
const Kernel_descriptor& kernel_descriptor(std::uintptr_t function_address,
|
|
hsa_agent_t agent) {
|
|
|
|
auto it0 = get_functions(agent).find(function_address);
|
|
|
|
if (it0 == get_functions(agent).cend()) {
|
|
hip_throw(std::runtime_error{
|
|
"No device code available for function: " +
|
|
std::string(name(function_address)) +
|
|
", for agent: " + name(agent)});
|
|
}
|
|
|
|
return it0->second;
|
|
}
|
|
|
|
const std::vector<std::pair<std::size_t, std::size_t>>&
|
|
kernargs_size_align(std::uintptr_t kernel) {
|
|
|
|
auto it = get_function_names().find(kernel);
|
|
if (it == get_function_names().cend()) {
|
|
hip_throw(std::runtime_error{"Undefined __global__ function."});
|
|
}
|
|
|
|
auto it1 = get_kernargs().find(it->second);
|
|
if (it1 == get_kernargs().end()) {
|
|
it1 = get_kernargs().find(it->second + ".kd");
|
|
if (it1 == get_kernargs().end()) {
|
|
hip_throw(std::runtime_error{
|
|
"Missing metadata for __global__ function: " + it->second});
|
|
}
|
|
}
|
|
|
|
return it1->second;
|
|
}
|
|
}; // class program_state_impl
|
|
|
|
struct kernarg_impl {
|
|
std::vector<std::uint8_t> v;
|
|
};
|
|
|
|
|
|
};
|