summaryrefslogtreecommitdiff
path: root/src/core/arm/unicorn
diff options
context:
space:
mode:
authorGravatar Markus Wick2018-09-04 11:02:59 +0200
committerGravatar Markus Wick2018-09-04 11:04:26 +0200
commit10bc725944d41f09ae1425aa1eb8acffcae0a091 (patch)
tree794211794cccdc2c23431a64ab76f7789623cf41 /src/core/arm/unicorn
parentMerge pull request #1231 from lioncash/global (diff)
downloadyuzu-10bc725944d41f09ae1425aa1eb8acffcae0a091.tar.gz
yuzu-10bc725944d41f09ae1425aa1eb8acffcae0a091.tar.xz
yuzu-10bc725944d41f09ae1425aa1eb8acffcae0a091.zip
Update microprofile scopes.
Blame the subsystems which deserve the blame :) The updated list is not complete, just the ones I've spotted on random sampling the stack trace.
Diffstat (limited to 'src/core/arm/unicorn')
-rw-r--r--src/core/arm/unicorn/arm_unicorn.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/arm/unicorn/arm_unicorn.cpp b/src/core/arm/unicorn/arm_unicorn.cpp
index 307f12198..4c4de2623 100644
--- a/src/core/arm/unicorn/arm_unicorn.cpp
+++ b/src/core/arm/unicorn/arm_unicorn.cpp
@@ -193,10 +193,10 @@ void ARM_Unicorn::Step() {
193 ExecuteInstructions(1); 193 ExecuteInstructions(1);
194} 194}
195 195
196MICROPROFILE_DEFINE(ARM_Jit, "ARM JIT", "ARM JIT", MP_RGB(255, 64, 64)); 196MICROPROFILE_DEFINE(ARM_Jit_Unicorn, "ARM JIT", "Unicorn", MP_RGB(255, 64, 64));
197 197
198void ARM_Unicorn::ExecuteInstructions(int num_instructions) { 198void ARM_Unicorn::ExecuteInstructions(int num_instructions) {
199 MICROPROFILE_SCOPE(ARM_Jit); 199 MICROPROFILE_SCOPE(ARM_Jit_Unicorn);
200 CHECKED(uc_emu_start(uc, GetPC(), 1ULL << 63, 0, num_instructions)); 200 CHECKED(uc_emu_start(uc, GetPC(), 1ULL << 63, 0, num_instructions));
201 CoreTiming::AddTicks(num_instructions); 201 CoreTiming::AddTicks(num_instructions);
202 if (GDBStub::IsServerEnabled()) { 202 if (GDBStub::IsServerEnabled()) {