diff options
author | 2019-05-02 11:04:13 -0700 | |
---|---|---|
committer | 2019-05-03 19:46:42 +0000 | |
commit | 765b2a04576f4e985a88165456f5ee55cdfe56b8 (patch) | |
tree | 1eb91d1e6dcdee31b5b396ee0ed8baf8c94aca96 /openjdkjvmti/OpenjdkJvmTi.cc | |
parent | 023533677989028d48f4e64dad0a5b3b4e59b726 (diff) |
Add -verbose:interpreter
Adds a mode to track what methods are being interpreted. Good
for debugging interpreter usage during app startup.
Bug: 130185360
Test: test-art-host
Change-Id: I8119f79e534cdad7d6a72d4f01115a288e9c8d9a
Diffstat (limited to 'openjdkjvmti/OpenjdkJvmTi.cc')
-rw-r--r-- | openjdkjvmti/OpenjdkJvmTi.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openjdkjvmti/OpenjdkJvmTi.cc b/openjdkjvmti/OpenjdkJvmTi.cc index ffa1bd3faf..e889f9872c 100644 --- a/openjdkjvmti/OpenjdkJvmTi.cc +++ b/openjdkjvmti/OpenjdkJvmTi.cc @@ -1414,6 +1414,7 @@ class JvmtiFunctions { art::gLogVerbosity.compiler = val; art::gLogVerbosity.deopt = val; art::gLogVerbosity.heap = val; + art::gLogVerbosity.interpreter = val; art::gLogVerbosity.jdwp = val; art::gLogVerbosity.jit = val; art::gLogVerbosity.monitor = val; |