memory allocation refactoring

Change-Id: Ic63b4f5ea44f2dc5e009e3e58652a661e957b7d6
This commit is contained in:
Evgeny
2018-04-27 20:00:20 -05:00
parent 0d286e5efa
commit c9c0ecc976
14 changed files with 194 additions and 175 deletions
+16 -14
View File
@@ -121,9 +121,6 @@ class Group {
Context* GetContext() { return context_; }
uint32_t GetIndex() const { return index_; }
rocprofiler_group_t GetGroup() {
return rocprofiler_group_t{index_, &info_vector_[0], (uint32_t)info_vector_.size(), context_};
}
void ResetRefs() { refs_ = n_profiles_; }
uint32_t DecrRefs() {
return (refs_ > 0) ? --refs_ : 0;
@@ -279,15 +276,18 @@ class Context {
uint32_t GetGroupCount() const { return set_.size(); }
rocprofiler_group_t GetGroupInfo(const uint32_t& index) {
rocprofiler::info_vector_t& info_vector = set_[index].GetInfoVector();
rocprofiler_group_t GetGroupInfo(Group* g) {
rocprofiler::info_vector_t& info_vector = g->GetInfoVector();
rocprofiler_group_t group = {};
group.feature_count = info_vector.size();
group.features = &info_vector[0];
group.index = g->GetIndex();
group.context = reinterpret_cast<rocprofiler_t*>(this);
group.index = index;
group.features = &info_vector[0];
group.feature_count = info_vector.size();
return group;
}
rocprofiler_group_t GetGroupInfo(const uint32_t& index) {
return GetGroupInfo(&set_[index]);
}
const pkt_vector_t& StartPackets(const uint32_t& group_index) const {
return set_[group_index].GetStartVector();
@@ -391,11 +391,12 @@ class Context {
static bool Handler(hsa_signal_value_t value, void* arg) {
Group* group = reinterpret_cast<Group*>(arg);
group->GetContext()->mutex_.lock();
Context* context = group->GetContext();
context->mutex_.lock();
uint32_t r = group->DecrRefs();
group->GetContext()->mutex_.unlock();
context->mutex_.unlock();
if (r == 0) {
return group->GetContext()->handler_(group->GetGroup(), group->GetContext()->handler_arg_);
return context->handler_(context->GetGroupInfo(group), context->handler_arg_);
}
return false;
}
@@ -427,8 +428,9 @@ class Context {
if (rinfo->data.result_bytes.copy) {
if (sample_id == 0) {
const uint32_t output_buffer_size = profile->output_buffer.size;
const uint32_t output_buffer_size64 = output_buffer_size / sizeof(uint64_t);
void* ptr = calloc(output_buffer_size64, sizeof(uint64_t));
util::HsaRsrcFactory* hsa_rsrc = &util::HsaRsrcFactory::Instance();
const util::AgentInfo* agent_info = hsa_rsrc->GetAgentInfo(profile->agent);
void* ptr = hsa_rsrc->AllocateSysMemory(agent_info, output_buffer_size);
rinfo->data.result_bytes.size = output_buffer_size;
rinfo->data.result_bytes.ptr = ptr;
callback_data->ptr = reinterpret_cast<char*>(ptr);
@@ -446,7 +448,7 @@ class Context {
else EXC_RAISING(HSA_STATUS_ERROR, "SQTT data out of output buffer");
}
const bool suc = util::HsaRsrcFactory::CopyToHost(dest, src, size);
bool suc = util::HsaRsrcFactory::Memcpy(profile->agent, dest, src, size);
if (suc) {
*header = size;
callback_data->ptr = dest + align_size(size, sizeof(uint32_t));
+2 -2
View File
@@ -88,8 +88,8 @@ class Profile {
}
virtual ~Profile() {
info_vector_.clear();
if (profile_.command_buffer.ptr) util::HsaRsrcFactory::MemoryFree(profile_.command_buffer.ptr);
if (profile_.output_buffer.ptr) util::HsaRsrcFactory::MemoryFree(profile_.output_buffer.ptr);
if (profile_.command_buffer.ptr) util::HsaRsrcFactory::FreeMemory(profile_.command_buffer.ptr);
if (profile_.output_buffer.ptr) util::HsaRsrcFactory::FreeMemory(profile_.output_buffer.ptr);
if (profile_.events) free(const_cast<event_t*>(profile_.events));
if (profile_.parameters) free(const_cast<parameter_t*>(profile_.parameters));
if (completion_signal_.handle) {