summaryrefslogtreecommitdiff
path: root/compiler/dex/quick_compiler_callbacks.cc
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2017-08-09 12:17:02 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-08-09 12:17:02 +0000
commitb00c8b076714b779a2d34f581e849f33f407d6d8 (patch)
tree9fa3ab6deb99f0bf892e987f3d1ae789f67bbd71 /compiler/dex/quick_compiler_callbacks.cc
parenta4a1e69af66ea9620a20a955b0e89bb50da873c9 (diff)
parent6921d90a241f0307ac25120f8f976744d4a57706 (diff)
Merge "Revert "Support class unloading in dex2oat for quicken multidex""
Diffstat (limited to 'compiler/dex/quick_compiler_callbacks.cc')
-rw-r--r--compiler/dex/quick_compiler_callbacks.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/compiler/dex/quick_compiler_callbacks.cc b/compiler/dex/quick_compiler_callbacks.cc
index c7e9f4fc07..872f7ea15d 100644
--- a/compiler/dex/quick_compiler_callbacks.cc
+++ b/compiler/dex/quick_compiler_callbacks.cc
@@ -16,7 +16,6 @@
#include "quick_compiler_callbacks.h"
-#include "driver/compiler_driver.h"
#include "verification_results.h"
#include "verifier/method_verifier-inl.h"
@@ -34,17 +33,4 @@ void QuickCompilerCallbacks::ClassRejected(ClassReference ref) {
}
}
-bool QuickCompilerCallbacks::CanAssumeVerified(ClassReference ref) {
- // If we don't have class unloading enabled in the compiler, we will never see class that were
- // previously verified. Return false to avoid overhead from the lookup in the compiler driver.
- if (!does_class_unloading_) {
- return false;
- }
- DCHECK(compiler_driver_ != nullptr);
- // In the case of the quicken filter: avoiding verification of quickened instructions, which the
- // verifier doesn't currently support.
- // In the case of the verify filter, avoiding verifiying twice.
- return compiler_driver_->CanAssumeVerified(ref);
-}
-
} // namespace art