mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
Debugger: Optimize cpu_thread::dump_regs()
Reuse string buffer. Copies and reallocations are expensive with such large strings.
This commit is contained in:
parent
794cbd8708
commit
5e01ffdfd8
12 changed files with 35 additions and 41 deletions
|
@ -119,7 +119,7 @@ std::string dump_useful_thread_info()
|
|||
|
||||
if (auto cpu = get_current_cpu_thread())
|
||||
{
|
||||
result = cpu->dump_all();
|
||||
cpu->dump_all(result);
|
||||
}
|
||||
|
||||
guard = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue