Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(660)

Unified Diff: runtime/vm/locations.h

Issue 1314673008: Migrate logging infrastructure Isolate->Thread (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix test. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/locations.h
diff --git a/runtime/vm/locations.h b/runtime/vm/locations.h
index 48fbd6f43f9d147feb1fcc8cf65edd9e45967a1d..5e92c1612aeb2479b821c8be586eaba67df4f0f6 100644
--- a/runtime/vm/locations.h
+++ b/runtime/vm/locations.h
@@ -519,7 +519,7 @@ class RegisterSet : public ValueObject {
for (intptr_t i = 0; i < kNumberOfCpuRegisters; i++) {
Register r = static_cast<Register>(i);
if (ContainsRegister(r)) {
- ISL_Print("%s %s\n", Assembler::RegisterName(r),
+ THR_Print("%s %s\n", Assembler::RegisterName(r),
IsTagged(r) ? "tagged" : "untagged");
}
}
@@ -527,7 +527,7 @@ class RegisterSet : public ValueObject {
for (intptr_t i = 0; i < kNumberOfFpuRegisters; i++) {
FpuRegister r = static_cast<FpuRegister>(i);
if (ContainsFpuRegister(r)) {
- ISL_Print("%s\n", Assembler::FpuRegisterName(r));
+ THR_Print("%s\n", Assembler::FpuRegisterName(r));
}
}
}
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/locations.cc » ('j') | runtime/vm/thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698