diff options
author | 2017-08-09 10:12:06 +0000 | |
---|---|---|
committer | 2017-08-09 10:12:06 +0000 | |
commit | 6921d90a241f0307ac25120f8f976744d4a57706 (patch) | |
tree | 04365479a12f9be9bfee324395284eb28391d965 /runtime/compiler_callbacks.h | |
parent | 0b1c341d2d89a483142cd14bdeb4650ab00184f1 (diff) |
Revert "Support class unloading in dex2oat for quicken multidex"
This reverts commit 0b1c341d2d89a483142cd14bdeb4650ab00184f1.
New test Dex2oatDeterminism.UnloadCompile fails on bots gtest-debug-gc and friends.
Change-Id: Ib101fc4390d90f88fe017d8482775d5e975f2ccb
Diffstat (limited to 'runtime/compiler_callbacks.h')
-rw-r--r-- | runtime/compiler_callbacks.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/runtime/compiler_callbacks.h b/runtime/compiler_callbacks.h index c51bb5e176..806653a265 100644 --- a/runtime/compiler_callbacks.h +++ b/runtime/compiler_callbacks.h @@ -22,8 +22,6 @@ namespace art { -class CompilerDriver; - namespace verifier { class MethodVerifier; @@ -51,13 +49,6 @@ class CompilerCallbacks { virtual verifier::VerifierDeps* GetVerifierDeps() const = 0; virtual void SetVerifierDeps(verifier::VerifierDeps* deps ATTRIBUTE_UNUSED) {} - virtual bool CanAssumeVerified(ClassReference ref ATTRIBUTE_UNUSED) { - return false; - } - - virtual void SetDoesClassUnloading(bool does_class_unloading ATTRIBUTE_UNUSED, - CompilerDriver* compiler_driver ATTRIBUTE_UNUSED) {} - bool IsBootImage() { return mode_ == CallbackMode::kCompileBootImage; } |