From b2120a182fcb5c8d1d41e796bebf2a41c4c25f14 Mon Sep 17 00:00:00 2001 From: Gliniak Date: Thu, 9 Jan 2020 20:55:38 +0100 Subject: [PATCH] [Log] Added information about implementation state --- src/xenia/kernel/util/shim_utils.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/xenia/kernel/util/shim_utils.h b/src/xenia/kernel/util/shim_utils.h index 60e7525c5..b507a65c3 100644 --- a/src/xenia/kernel/util/shim_utils.h +++ b/src/xenia/kernel/util/shim_utils.h @@ -488,6 +488,15 @@ template void PrintKernelCall(cpu::Export* export_entry, const Tuple& params) { auto& string_buffer = *thread_local_string_buffer(); string_buffer.Reset(); + + if (export_entry->tags & xe::cpu::ExportTag::kStub) { + string_buffer.Append("[STUB] "); + } + + if (export_entry->tags & xe::cpu::ExportTag::kSketchy) { + string_buffer.Append("[SKETCHY] "); + } + string_buffer.Append(export_entry->name); string_buffer.Append('('); AppendKernelCallParams(string_buffer, export_entry, params);