Returning code object id information in code_printing.cpp:Instruction (#965)

* Returning code object id information in code_printing.cpp:Instruction

* Adding assertions

* Simplifying decoder library
Этот коммит содержится в:
Giovanni Lenzi Baraldi
2024-07-08 16:59:40 -03:00
коммит произвёл GitHub
родитель 4e2144dbfa
Коммит 78fd8cb379
4 изменённых файлов: 185 добавлений и 255 удалений
+1
Просмотреть файл
@@ -162,6 +162,7 @@ tool_codeobj_tracing_callback(rocprofiler_callback_tracing_record_t record,
while(vaddr < begin_end.second)
{
auto inst = codeobjTranslate.get(vaddr);
assert(inst != nullptr);
if(inst->comment.size())
{
std::string_view source = inst->comment;