summaryrefslogtreecommitdiffstats
path: root/vm/interp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-10-12 17:24:48 +0100
committerSteve Block <steveblock@google.com>2011-10-25 16:28:17 +0100
commit1663a6c12fdf4732d7ea0a0406af6085b3c408e4 (patch)
treefbd778f88a7a4b124b03989c05a29f42efcce975 /vm/interp
parentb78eab06552c503106eec5dc832a1eb5b1e0205a (diff)
downloadandroid_dalvik-1663a6c12fdf4732d7ea0a0406af6085b3c408e4.tar.gz
android_dalvik-1663a6c12fdf4732d7ea0a0406af6085b3c408e4.tar.bz2
android_dalvik-1663a6c12fdf4732d7ea0a0406af6085b3c408e4.zip
Rename (IF_)LOG() to (IF_)ALOG() DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/141576 Bug: 5449033 Change-Id: Ie3bc0d5436218ea05f98cb0373ecf5924f78db05
Diffstat (limited to 'vm/interp')
-rw-r--r--vm/interp/Interp.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/vm/interp/Interp.cpp b/vm/interp/Interp.cpp
index 85d06db13..8ab8d8acf 100644
--- a/vm/interp/Interp.cpp
+++ b/vm/interp/Interp.cpp
@@ -952,14 +952,14 @@ void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly)
localCount = method->registersSize - method->insSize;
- LOG(LOG_VERBOSE, LOG_TAG"i", "Registers (fp=%p):", framePtr);
+ ALOG(LOG_VERBOSE, LOG_TAG"i", "Registers (fp=%p):", framePtr);
for (i = method->registersSize-1; i >= 0; i--) {
if (i >= localCount) {
- LOG(LOG_VERBOSE, LOG_TAG"i", " v%-2d in%-2d : 0x%08x",
+ ALOG(LOG_VERBOSE, LOG_TAG"i", " v%-2d in%-2d : 0x%08x",
i, i-localCount, framePtr[i]);
} else {
if (inOnly) {
- LOG(LOG_VERBOSE, LOG_TAG"i", " [...]");
+ ALOG(LOG_VERBOSE, LOG_TAG"i", " [...]");
break;
}
const char* name = "";
@@ -976,7 +976,7 @@ void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly)
}
}
#endif
- LOG(LOG_VERBOSE, LOG_TAG"i", " v%-2d : 0x%08x %s",
+ ALOG(LOG_VERBOSE, LOG_TAG"i", " v%-2d : 0x%08x %s",
i, framePtr[i], name);
}
}